Skip to content

Commit d38a1b2

Browse files
committed
v1.16.0
1 parent 6b9d621 commit d38a1b2

File tree

4 files changed

+43
-12
lines changed

4 files changed

+43
-12
lines changed

CHANGELOG.md

Lines changed: 38 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
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.0 - 2020 Sep 19
4+
5+
```clojure
6+
[com.taoensso/sente "1.16.0"]
7+
```
8+
9+
> Major feature release. Should be non-breaking, but see [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
10+
11+
Same as `v1.16.0-RC1`, `v1.16.0-alpha2`.
12+
13+
#### Changes since `v1.15.0`
14+
15+
* **[NB]** http-kit users must now use >= http-kit [`v2.4.0`](https://github.com/http-kit/http-kit/releases/tag/v2.4.0) ([`v2.5.0`](https://github.com/http-kit/http-kit/releases/tag/v2.5.0) is latest as of writing)
16+
17+
#### New since `v1.15.0`
18+
19+
* [#371 #375] Add Jetty 9 server adapter (@wavejumper)
20+
* [#372] Add `ring-undertow` server adapter (@nikolap)
21+
* [#275 #374] Add Clj WebSocket client support (@kaosko)
22+
* Add optional auth fn to `make-channel-socket-server!` (@kaosko @ptaoussanis)
23+
* [#356] Expose `send-buffers_` as implementation detail (@kaosko)
24+
* [#359 #360] Add :json-verbose format to Transit packer (@p-himik)
25+
* [#362 #363] Allow additional keys in event-msg maps (@jjttjj)
26+
* [#365] README: incl. example CSRF code (@mattford63)
27+
28+
#### Fixes since `v1.15.0`
29+
30+
* [#366 #353 #358] Make make-channel-socket-client! respect host option (@Rkiouak)
31+
* Use new http-kit v2.4.0 server API internally to fix possible [race conditions](https://github.com/http-kit/http-kit/issues/318)
32+
* [#357 #247] Fix for React Native (@currentoor)
33+
34+
335
## v1.16.0-RC1 - 2020 Sep 10
436

537
```clojure
@@ -8,7 +40,7 @@
840

941
Same as `v1.16.0-alpha2`.
1042

11-
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) recommended steps when updating any Clojure/Script dependencies.
43+
> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies.
1244
1345

1446
## v1.16.0-alpha2 - 2020 Aug 24
@@ -27,22 +59,22 @@ Same as `v1.16.0-alpha2`.
2759

2860
Some info on how to resolve dependency conflicts [here](https://github.com/ptaoussanis/encore/blob/master/DEP-CONFLICT.md).
2961

30-
#### Changes since `1.15.0`
62+
#### Changes since `v1.15.0`
3163

3264
* **[NB]** http-kit users must now use >= http-kit v2.4.0.
33-
* [#362 #363] Allow additional keys in event-msg maps (@jjttjj).
34-
* [#365] README: incl. example CSRF code (@mattford63).
3565

36-
#### New since `1.15.0`
66+
#### New since `v1.15.0`
3767

3868
* [#371 #375] Add Jetty 9 server adapter (@wavejumper).
3969
* [#372] Add `ring-undertow` server adapter (@nikolap).
4070
* [#275 #374] Add Clj WebSocket client support (@kaosko).
4171
* Add optional auth fn to `make-channel-socket-server!` (@kaosko @ptaoussanis).
4272
* [#356] Expose `send-buffers_` as implementation detail (@kaosko).
4373
* [#359 #360] Add :json-verbose format to Transit packer (@p-himik).
74+
* [#362 #363] Allow additional keys in event-msg maps (@jjttjj).
75+
* [#365] README: incl. example CSRF code (@mattford63).
4476

45-
#### Fixes since `1.15.0`
77+
#### Fixes since `v1.15.0`
4678

4779
* [#366 #353 #358] Make make-channel-socket-client! respect host option (@Rkiouak).
4880
* Use new http-kit v2.4.0 server API internally to fix possible [race conditions](https://github.com/http-kit/http-kit/issues/318).

README.md

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

66
```clojure
7-
[com.taoensso/sente "1.15.0"] ; Stable
8-
[com.taoensso/sente "1.16.0-RC1"] ; Dev, see CHANGELOG for details
7+
[com.taoensso/sente "1.16.0"] ; See CHANGELOG for details
98
```
109

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

5857
```clojure
59-
[com.taoensso/sente "1.15.0"]
58+
[com.taoensso/sente "1.16.0"]
6059
```
6160

6261
### On the server (Clojure) side

example-project/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "1.16.0-RC1"
1+
(defproject com.taoensso.examples/sente "1.16.0"
22
:description "Sente, reference web-app example project"
33
:url "https://github.com/ptaoussanis/sente"
44
:license {:name "Eclipse Public License"
@@ -15,7 +15,7 @@
1515
[org.clojure/core.async "1.3.610"]
1616
[org.clojure/tools.nrepl "0.2.13"] ; Optional, for Cider
1717

18-
[com.taoensso/sente "1.16.0-RC1"] ; <--- Sente
18+
[com.taoensso/sente "1.16.0"] ; <--- Sente
1919
[com.taoensso/timbre "4.10.0"]
2020

2121
;;; TODO Choose (uncomment) a supported web server -----------------------

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-RC1"
1+
(defproject com.taoensso/sente "1.16.0"
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)