Skip to content

Commit 80d9acd

Browse files
committed
v1.16.0-alpha2
1 parent aa69763 commit 80d9acd

File tree

4 files changed

+44
-6
lines changed

4 files changed

+44
-6
lines changed

CHANGELOG.md

Lines changed: 38 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,43 @@
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-alpha2 - 2020 Aug 24
4+
5+
```clojure
6+
[com.taoensso/sente "1.16.0-alpha2"]
7+
```
8+
9+
> Major feature release. _Should_ be non-breaking, but users of http-kit **will need to update to >= [http-kit v2.4.0](https://github.com/http-kit/http-kit/releases/tag/v2.4.0)**.
10+
11+
#### Tip! Recommended steps after any significant dependency update:
12+
13+
1. Run `lein deps :tree` (or equivalent) to check for possible dependency conflicts.
14+
2. Run `lein clean` (or equivalent) to ensure no stale build artifacts remain.
15+
3. Please test carefully before running in production!
16+
17+
Some info on how to resolve dependency conflicts [here](https://github.com/ptaoussanis/encore/blob/master/DEP-CONFLICT.md).
18+
19+
#### Changes since `1.15.0`
20+
21+
* **[NB]** http-kit users must now use >= http-kit v2.4.0.
22+
* [#362 #363] Allow additional keys in event-msg maps (@jjttjj).
23+
* [#365] README: incl. example CSRF code (@mattford63).
24+
25+
#### New since `1.15.0`
26+
27+
* [#371 #375] Add Jetty 9 server adapter (@wavejumper).
28+
* [#372] Add `ring-undertow` server adapter (@nikolap).
29+
* [#275 #374] Add Clj WebSocket client support (@kaosko).
30+
* Add optional auth fn to `make-channel-socket-server!` (@kaosko @ptaoussanis).
31+
* [#356] Expose `send-buffers_` as implementation detail (@kaosko).
32+
* [#359 #360] Add :json-verbose format to Transit packer (@p-himik).
33+
34+
#### Fixes since `1.15.0`
35+
36+
* [#366 #353 #358] Make make-channel-socket-client! respect host option (@Rkiouak).
37+
* Use new http-kit v2.4.0 server API internally to fix possible race conditions.
38+
* [#357 #247] Fix for React Native (@currentoor).
39+
40+
341
## v1.15.0 - 2019 Nov 27
442

543
```clojure

README.md

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

66
```clojure
7-
[com.taoensso/sente "1.15.0"] ; Stable, see CHANGELOG for details
8-
[com.taoensso/sente "1.16.0-alpha1"] ; Dev, see commit history for details
7+
[com.taoensso/sente "1.15.0"] ; Stable
8+
[com.taoensso/sente "1.16.0-alpha2"] ; Dev, see CHANGELOG for details
99
```
1010

1111
> Please consider helping to [support my continued open-source Clojure/Script work]?
@@ -60,7 +60,7 @@ So you can ignore the underlying protocol and deal directly with Sente's unified
6060
Add the necessary dependency to your project:
6161

6262
```clojure
63-
[com.taoensso/sente "1.14.0-RC2"]
63+
[com.taoensso/sente "1.15.0"]
6464
```
6565

6666
### 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-SNAPSHOT"
1+
(defproject com.taoensso.examples/sente "1.16.0-alpha2"
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-SNAPSHOT"] ; <--- Sente
18+
[com.taoensso/sente "1.16.0-alpha2"] ; <--- 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-SNAPSHOT"
1+
(defproject com.taoensso/sente "1.16.0-alpha2"
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)