Skip to content

Commit 2b8039b

Browse files
committed
v1.19.0 (2023-07-13)
1 parent e330ef2 commit 2b8039b

File tree

5 files changed

+25
-5
lines changed

5 files changed

+25
-5
lines changed

CHANGELOG.md

+20
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,25 @@
11
This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md).
22

3+
## `1.19.0` (2023-07-13)
4+
5+
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.0)
6+
7+
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! 🙏
8+
9+
**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.
10+
11+
### Fixes since `1.18.1`
12+
13+
* 0dc8a12 [fix] [#431] Some disconnected user-ids not removed from `connected-uids`
14+
15+
### New since `1.18.1`
16+
17+
* e330ef2 [new] Allow WebSocket constructors to delay connection
18+
* 6021258 [new] [example] Misc improvements to example project
19+
* d0fd918 [new] Alias client option: `:ws-kalive-ping-timeout-ms` -> `:ws-ping-timeout-ms`
20+
* GraalVM compatibility is now tested during build
21+
22+
323
## `1.18.1` (2023-07-04)
424

525
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.18.1)

README.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,7 @@ Loosely inspired by [Socket.IO](https://socket.io/), it uses **core.async**, **W
1515
1616
## Latest release
1717

18-
- 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)
18+
- 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)
1919

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

example-project/project.clj

+2-2
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "1.18.1"
1+
(defproject com.taoensso.examples/sente "1.19.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.6.673"]
1616
[nrepl "1.0.0"] ; Optional, for Cider
1717

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

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

project.clj

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/sente "1.18.1"
1+
(defproject com.taoensso/sente "1.19.0"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Realtime web comms for Clojure/Script"
44
:url "https://github.com/ptaoussanis/sente"

src/taoensso/sente.cljc

+1-1
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
#?(:clj (:import [org.java_websocket.client WebSocketClient])))
9393

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

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

0 commit comments

Comments
 (0)