Skip to content

Commit

Permalink
v1.19.0 (2023-07-13)
Browse files Browse the repository at this point in the history
  • Loading branch information
ptaoussanis committed Jul 13, 2023
1 parent e330ef2 commit 2b8039b
Show file tree
Hide file tree
Showing 5 changed files with 25 additions and 5 deletions.
20 changes: 20 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md).

## `1.19.0` (2023-07-13)

> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.0)
This is intended as a **non-breaking maintenance release**, but it touches a lot of code so **please keep an eye out** for (and let me know about) any unexpected problems - thank you! 🙏

**Tip**: the [reference example](https://github.com/ptaoussanis/sente/tree/master/example-project) includes a number of tools to help test Sente in your environment.

### Fixes since `1.18.1`

* 0dc8a12 [fix] [#431] Some disconnected user-ids not removed from `connected-uids`

### New since `1.18.1`

* e330ef2 [new] Allow WebSocket constructors to delay connection
* 6021258 [new] [example] Misc improvements to example project
* d0fd918 [new] Alias client option: `:ws-kalive-ping-timeout-ms` -> `:ws-ping-timeout-ms`
* GraalVM compatibility is now tested during build


## `1.18.1` (2023-07-04)

> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.18.1)
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ Loosely inspired by [Socket.IO](https://socket.io/), it uses **core.async**, **W
## Latest release

- 2023-07-04: `1.18.1` - [release notes](https://github.com/ptaoussanis/sente/releases/tag/v1.18.1) | [Clojars](https://clojars.org/com.taoensso/sente/versions/1.18.1)
- 2023-07-13: `1.19.0` - [release notes](https://github.com/ptaoussanis/sente/releases/tag/v1.19.0) | [Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.0)

<!--- [![tests][tests badge]][tests status] -->

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.18.1"
(defproject com.taoensso.examples/sente "1.19.0"
: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.6.673"]
[nrepl "1.0.0"] ; Optional, for Cider

[com.taoensso/sente "1.18.1"] ; <--- Sente
[com.taoensso/sente "1.19.0"] ; <--- Sente
[com.taoensso/timbre "6.2.1"]

;;; 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.18.1"
(defproject com.taoensso/sente "1.19.0"
:author "Peter Taoussanis <https://www.taoensso.com>"
:description "Realtime web comms for Clojure/Script"
:url "https://github.com/ptaoussanis/sente"
Expand Down
2 changes: 1 addition & 1 deletion src/taoensso/sente.cljc
Original file line number Diff line number Diff line change
Expand Up @@ -92,7 +92,7 @@
#?(:clj (:import [org.java_websocket.client WebSocketClient])))

(enc/assert-min-encore-version [3 62 0])
(def sente-version "Useful for identifying client/server mismatch" [1 18 1])
(def sente-version "Useful for identifying client/server mismatch" [1 18 2])

#?(:cljs (def ^:private node-target? (= *target* "nodejs")))

Expand Down

0 comments on commit 2b8039b

Please sign in to comment.