Skip to content

Commit 71f993b

Browse files
committed
v1.19.2 (2023-08-30)
1 parent dbb798a commit 71f993b

File tree

4 files changed

+13
-4
lines changed

4 files changed

+13
-4
lines changed

CHANGELOG.md

+9
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,14 @@
11
This project uses Break Versioning (https://www.taoensso.com/break-versioning)
22

3+
## `1.19.2` (2023-08-30)
4+
5+
> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.2)
6+
7+
Identical to `1.19.1`, but includes a hotfix (dbb798a) for [#434] to remove the unnecessary logging of potentially sensitive Ring request info when connecting to a server without a client id.
8+
9+
This should be a safe update for users of `1.19.x`.
10+
11+
312
## `1.19.1` (2023-07-18)
413

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

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.19.1"
1+
(defproject com.taoensso.examples/sente "1.19.2"
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.19.1"] ; <--- Sente
18+
[com.taoensso/sente "1.19.2"] ; <--- Sente
1919
[com.taoensso/timbre "6.2.2"]
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.19.1"
1+
(defproject com.taoensso/sente "1.19.2"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Realtime web comms for Clojure/Script applications"
44
:url "https://github.com/taoensso/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 1])
95-
(def sente-version "Useful for identifying client/server mismatch" [1 19 1])
95+
(def sente-version "Useful for identifying client/server mismatch" [1 19 2])
9696

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

0 commit comments

Comments
 (0)