Skip to content

Commit 80e2b3f

Browse files
committed
v1.22.0 (2026-07-02)
1 parent d314148 commit 80e2b3f

5 files changed

Lines changed: 15 additions & 8 deletions

File tree

CHANGELOG.md

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,15 +2,22 @@ This project uses [**Break Versioning**](https://www.taoensso.com/break-versioni
22

33
---
44

5-
# `v1.22.0-RC1` (2026-06-17)
5+
# `v1.22.0` (2026-07-02)
66

7-
- **Dependency**: [on Clojars](https://clojars.org/com.taoensso/sente/versions/1.22.0-RC1)
7+
- **Dependency**: [on Clojars](https://clojars.org/com.taoensso/sente/versions/1.22.0)
88
- **Versioning**: [Break Versioning](https://www.taoensso.com/break-versioning)
99

1010
Sente v1.22 adds a flexible new connection **rejection** hook (`:reject-fn`) plus small Msgpack fixes. Should be a **safe upgrade** for most users (no breaking changes). Please report any problems to the [Slack channel](http://taoensso.com/sente/slack) or [GitHub](https://github.com/taoensso/sente/issues) 🙏
1111

1212
\- [Peter Taoussanis](https://www.taoensso.com)
1313

14+
## Since `v1.22.0-RC1` (2026-06-17)
15+
16+
No behavioural changes (same as RC1), only docs/dependency maintenance.
17+
18+
- \[doc] Update README \[9807bbae]
19+
- \[nop] Bump deps \[d314148b]
20+
1421
## Since `v1.21.0` (2025-11-04)
1522

1623
### New

README.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
<a href="https://www.taoensso.com/clojure" title="More stuff by @ptaoussanis at www.taoensso.com"><img src="https://www.taoensso.com/open-source.png" alt="Taoensso open source" width="340"/></a>
2-
[**API**][cljdoc] | [**Wiki**][GitHub wiki] | [Slack][] | Latest release: [v1.21.0](../../releases/tag/v1.21.0) (2025-11-04) or [v1.22.0-RC1](../../releases/tag/v1.22.0-RC1) (2026-06-17)
2+
[**API**][cljdoc] | [**Wiki**][GitHub wiki] | [Slack][] | Latest release: [v1.22.0](../../releases/tag/v1.22.0) (2026-07-02)
33

44
# Sente
55

@@ -53,7 +53,7 @@ You can [help support][sponsor] continued work on this project and [others][my w
5353

5454
## License
5555

56-
Copyright &copy; 2012-2025 [Peter Taoussanis][].
56+
Copyright &copy; 2012-2026 [Peter Taoussanis][].
5757
Licensed under [EPL 1.0](LICENSE.txt) (same as Clojure).
5858

5959
<!-- Common -->

example-project/project.clj

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso.examples/sente "1.21.0"
1+
(defproject com.taoensso.examples/sente "1.22.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.8.741"]
1616
[nrepl "1.5.1"] ; Optional, for Cider
1717

18-
[com.taoensso/sente "1.21.0"] ; <--- Sente
18+
[com.taoensso/sente "1.22.0"] ; <--- Sente
1919
[com.taoensso/telemere "1.1.0"] ; Optional, for logging
2020

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

project.clj

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
(defproject com.taoensso/sente "1.22.0-RC1"
1+
(defproject com.taoensso/sente "1.22.0"
22
:author "Peter Taoussanis <https://www.taoensso.com>"
33
:description "Realtime web comms library for Clojure/Script"
44
:url "https://github.com/taoensso/sente"

src/taoensso/sente.cljc

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -93,7 +93,7 @@
9393
(enc/assert-min-encore-version [3 165 0])
9494
(def sente-version
9595
"Useful for identifying client/server mismatch"
96-
[1 21 0])
96+
[1 22 0])
9797

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

0 commit comments

Comments
 (0)