Skip to content

Commit

Permalink
v1.16.0-alpha2
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Aug 24, 2020
1 parent aa69763 commit 80d9acd
Show file tree
Hide file tree
Showing 4 changed files with 44 additions and 6 deletions.
38 changes: 38 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,43 @@
> This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**.
## v1.16.0-alpha2 - 2020 Aug 24

```clojure
[com.taoensso/sente "1.16.0-alpha2"]
```

> 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)**.
#### Tip! Recommended steps after any significant dependency update:

1. Run `lein deps :tree` (or equivalent) to check for possible dependency conflicts.
2. Run `lein clean` (or equivalent) to ensure no stale build artifacts remain.
3. Please test carefully before running in production!

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

#### Changes since `1.15.0`

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

#### New since `1.15.0`

* [#371 #375] Add Jetty 9 server adapter (@wavejumper).
* [#372] Add `ring-undertow` server adapter (@nikolap).
* [#275 #374] Add Clj WebSocket client support (@kaosko).
* Add optional auth fn to `make-channel-socket-server!` (@kaosko @ptaoussanis).
* [#356] Expose `send-buffers_` as implementation detail (@kaosko).
* [#359 #360] Add :json-verbose format to Transit packer (@p-himik).

#### Fixes since `1.15.0`

* [#366 #353 #358] Make make-channel-socket-client! respect host option (@Rkiouak).
* Use new http-kit v2.4.0 server API internally to fix possible race conditions.
* [#357 #247] Fix for React Native (@currentoor).


## v1.15.0 - 2019 Nov 27

```clojure
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@
**[CHANGELOG]** | [API] | current [Break Version]:

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

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

```clojure
[com.taoensso/sente "1.14.0-RC2"]
[com.taoensso/sente "1.15.0"]
```

### On the server (Clojure) side
Expand Down
4 changes: 2 additions & 2 deletions example-project/project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso.examples/sente "1.16.0-SNAPSHOT"
(defproject com.taoensso.examples/sente "1.16.0-alpha2"
:description "Sente, reference web-app example project"
:url "https://github.com/ptaoussanis/sente"
:license {:name "Eclipse Public License"
Expand All @@ -15,7 +15,7 @@
[org.clojure/core.async "1.3.610"]
[org.clojure/tools.nrepl "0.2.13"] ; Optional, for Cider

[com.taoensso/sente "1.16.0-SNAPSHOT"] ; <--- Sente
[com.taoensso/sente "1.16.0-alpha2"] ; <--- Sente
[com.taoensso/timbre "4.10.0"]

;;; TODO Choose (uncomment) a supported web server -----------------------
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject com.taoensso/sente "1.16.0-SNAPSHOT"
(defproject com.taoensso/sente "1.16.0-alpha2"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Realtime web comms for Clojure/Script"
:url "https://github.com/ptaoussanis/sente"
Expand Down

0 comments on commit 80d9acd

Please sign in to comment.