diff --git a/CHANGELOG.md b/CHANGELOG.md index 66131df..0ac3ab8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,14 @@ This project uses Break Versioning (https://www.taoensso.com/break-versioning) +## `1.19.2` (2023-08-30) + +> 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.2) + +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. + +This should be a safe update for users of `1.19.x`. + + ## `1.19.1` (2023-07-18) > 📦 [Available on Clojars](https://clojars.org/com.taoensso/sente/versions/1.19.1) diff --git a/example-project/project.clj b/example-project/project.clj index 1909abe..829e1aa 100644 --- a/example-project/project.clj +++ b/example-project/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso.examples/sente "1.19.1" +(defproject com.taoensso.examples/sente "1.19.2" :description "Sente, reference web-app example project" :url "https://github.com/ptaoussanis/sente" :license {:name "Eclipse Public License" @@ -15,7 +15,7 @@ [org.clojure/core.async "1.6.673"] [nrepl "1.0.0"] ; Optional, for Cider - [com.taoensso/sente "1.19.1"] ; <--- Sente + [com.taoensso/sente "1.19.2"] ; <--- Sente [com.taoensso/timbre "6.2.2"] ;;; TODO Choose (uncomment) a supported web server ----------------------- diff --git a/project.clj b/project.clj index 6bec8fa..a2b4078 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/sente "1.19.1" +(defproject com.taoensso/sente "1.19.2" :author "Peter Taoussanis " :description "Realtime web comms for Clojure/Script applications" :url "https://github.com/taoensso/sente" diff --git a/src/taoensso/sente.cljc b/src/taoensso/sente.cljc index 8ad4d26..3b7a1af 100644 --- a/src/taoensso/sente.cljc +++ b/src/taoensso/sente.cljc @@ -92,7 +92,7 @@ #?(:clj (:import [org.java_websocket.client WebSocketClient]))) (enc/assert-min-encore-version [3 62 1]) -(def sente-version "Useful for identifying client/server mismatch" [1 19 1]) +(def sente-version "Useful for identifying client/server mismatch" [1 19 2]) #?(:cljs (def ^:private node-target? (= *target* "nodejs")))