From b84cfa591ff84c173afc2501c38805e01edf4b55 Mon Sep 17 00:00:00 2001 From: Peter Taoussanis Date: Wed, 15 Jun 2022 13:42:31 +0200 Subject: [PATCH] v1.17.0 2022-06-15 --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ README.md | 7 +++---- example-project/project.clj | 4 ++-- project.clj | 2 +- 4 files changed, 34 insertions(+), 7 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 6bd74a8..3b60ab4 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ > This project uses [Break Versioning](https://github.com/ptaoussanis/encore/blob/master/BREAK-VERSIONING.md) as of **Aug 16, 2014**. +## v1.17.0 - 2022 Jun 13 + +```clojure +[com.taoensso/sente "1.17.0"] +``` + +> This is a non-breaking **maintenance and feature release**. +> See [here](https://github.com/ptaoussanis/encore#recommended-steps-after-any-significant-dependency-update) for recommended steps when updating any Clojure/Script dependencies. + +Identical to `v1.17.0-RC2`. + +### Changes since `1.16.2` + +- Updated dependencies + +### New since `1.16.2` + +- [#398] Enable binary support for custom un/packers (@rosejn, @ptaoussanis) +- [#351 #393][New] Allow CSRF-token to be a function (@eneroth, @ptaoussanis) +- [#390] [Aleph adapter] Add support for websocket-connection options (@KaliszAd) +- [#396][Readme] Add link to Retit+JS example (@dharrigan) +- [#395][Readme] Add link to new SPA example (@FiV0) + +### Fixes since `1.16.2` + +- [#403][Fix] Start ws-kalive loop only after conn is established (@Snurppa) + + ## v1.17.0-RC2 - 2022 Jun 1 ```clojure diff --git a/README.md b/README.md index 0703526..2d4d831 100644 --- a/README.md +++ b/README.md @@ -4,8 +4,7 @@ **[CHANGELOG]** | [API] | current [Break Version]: ```clojure -[com.taoensso/sente "1.17.0-RC2"] ; Dev, see CHANGELOG for details -[com.taoensso/sente "1.16.2"] ; Stable +[com.taoensso/sente "1.17.0"] ; See CHANGELOG for details ``` > See [here](https://taoensso.com/clojure/backers) if you're interested in helping support my open-source work, thanks! - Peter Taoussanis @@ -54,8 +53,8 @@ So you can ignore the underlying protocol and deal directly with Sente's unified Add the necessary dependency to your project: ```clojure -Leiningen: [com.taoensso/sente "1.17.0-RC2"] ; or -deps.edn: com.taoensso/sente {:mvn/version "1.17.0-RC2"} +Leiningen: [com.taoensso/sente "1.17.0"] ; or +deps.edn: com.taoensso/sente {:mvn/version "1.17.0"} ``` ### On the server (Clojure) side diff --git a/example-project/project.clj b/example-project/project.clj index aa4e3db..89c54a4 100644 --- a/example-project/project.clj +++ b/example-project/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso.examples/sente "1.17.0-RC2" +(defproject com.taoensso.examples/sente "1.17.0" :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.5.648"] [org.clojure/tools.nrepl "0.2.13"] ; Optional, for Cider - [com.taoensso/sente "1.17.0-RC2"] ; <--- Sente + [com.taoensso/sente "1.17.0"] ; <--- Sente [com.taoensso/timbre "5.2.1"] ;;; TODO Choose (uncomment) a supported web server ----------------------- diff --git a/project.clj b/project.clj index 52d84be..ea181dd 100644 --- a/project.clj +++ b/project.clj @@ -1,4 +1,4 @@ -(defproject com.taoensso/sente "1.17.0-RC2" +(defproject com.taoensso/sente "1.17.0" :author "Peter Taoussanis " :description "Realtime web comms for Clojure/Script" :url "https://github.com/ptaoussanis/sente"