Skip to content

Commit db21f59

Browse files
committed
v1.18.1 (2023-07-04)
1 parent 5c0f4ad commit db21f59

File tree

5 files changed

+21
-5
lines changed

5 files changed

+21
-5
lines changed

CHANGELOG.md

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

3+
## `1.18.1` (2023-07-04)
4+
5+
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.18.1)
6+
7+
This is an important **hotfix release**, please update if you're using `1.18.0`.
8+
9+
### Fixes since `1.18.0`
10+
11+
* ad62f1e [fix] Ajax poll not properly timing out
12+
* 1d15fe5 [fix] [#430] `[:chsk/uidport-close]` server event not firing
13+
14+
### New since `1.18.0`
15+
16+
* 5c0f4ad [new] [example] Add example server-side uidport event handlers
17+
18+
319
## `1.18.0` (2023-06-30)
420

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

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-06-30: `1.18.0` - [release notes](https://github.com/ptaoussanis/sente/releases/tag/v1.18.0) | [Clojars](https://clojars.org/com.taoensso/sente/versions/1.18.0)
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)
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.0"
1+
(defproject com.taoensso.examples/sente "1.18.1"
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.0"] ; <--- Sente
18+
[com.taoensso/sente "1.18.1"] ; <--- 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.0"
1+
(defproject com.taoensso/sente "1.18.1"
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
@@ -91,7 +91,7 @@
9191
#?(:clj (:import [org.java_websocket.client WebSocketClient])))
9292

9393
(enc/assert-min-encore-version [3 49 0])
94-
(def sente-version "Useful for identifying client/server mismatch" [1 18 0])
94+
(def sente-version "Useful for identifying client/server mismatch" [1 18 1])
9595

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

0 commit comments

Comments
 (0)