|
1 | 1 | > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. |
2 | 2 |
|
| 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 | + |
3 | 41 | ## v1.15.0 - 2019 Nov 27 |
4 | 42 |
|
5 | 43 | ```clojure |
|
0 commit comments