Skip to content

Commit 22706be

Browse files
committed
v1.16.1 2021-01-31
1 parent 65b3932 commit 22706be

File tree

4 files changed

+23
-5
lines changed

4 files changed

+23
-5
lines changed

CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,23 @@
11
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
22
3+
## v1.16.1 - 2021 Jan 31
4+
5+
```clojure
6+
[com.taoensso/sente "1.16.1"]
7+
```
8+
9+
> This is a **minor maintenance release**.
10+
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
11+
12+
### Fixes since `1.16.0`
13+
14+
- [#385] Fix: pass ring-req to authorized?-fn (@viesti)
15+
16+
### New since `1.16.0`
17+
18+
- chsk server: add `:?unauthorized-fn` option
19+
20+
321
## v1.16.0 - 2020 Sep 19
422

523
```clojure

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
**[CHANGELOG]** | [API] | current [Break Version]:
55

66
```clojure
7-
[com.taoensso/sente "1.16.0"] ; See CHANGELOG for details
7+
[com.taoensso/sente "1.16.1"] ; See CHANGELOG for details
88
```
99

1010
> See [here](https://taoensso.com/clojure/backers) if you're interested in helping support my open-source work, thanks! - Peter Taoussanis
@@ -53,8 +53,8 @@ So you can ignore the underlying protocol and deal directly with Sente's unified
5353
Add the necessary dependency to your project:
5454

5555
```clojure
56-
Leiningen: [com.taoensso/sente "1.16.0"] ; or
57-
deps.edn: com.taoensso/sente {:mvn/version "1.16.0"}
56+
Leiningen: [com.taoensso/sente "1.16.1"] ; or
57+
deps.edn: com.taoensso/sente {:mvn/version "1.16.1"}
5858
```
5959

6060
### On the server (Clojure) side

example-project/project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "1.16.0"
1+
(defproject com.taoensso.examples/sente "1.16.1"
22
:description "Sente, reference web-app example project"
33
:url "https://github.com/ptaoussanis/sente"
44
:license {:name "Eclipse Public License"

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/sente "1.16.0"
1+
(defproject com.taoensso/sente "1.16.1"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Realtime web comms for Clojure/Script"
44
:url "https://github.com/ptaoussanis/sente"

0 commit comments

Comments
 (0)