From 8cb6690c9d2ce27dafb0de928eb482e37be112d0 Mon Sep 17 00:00:00 2001 From: Scott Fauerbach Date: Fri, 20 Oct 2023 13:36:03 -0400 Subject: [PATCH] Start 2.17.2 (#1020) --- CHANGELOG.md | 28 ++++++++++++++++++++++++++++ README.md | 6 +++--- build.gradle | 2 +- 3 files changed, 32 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 9fa1a086d..4c292f0d1 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,33 @@ # Change Log +## 2.17.1 + +This release added was mostly about TLS and testing + +#### Core + +* Allow trust store without key store #999 @scottf @jnmoyne +* Allow for custom dispatcher #1001 @scottf +* Expanded support for server sent authorization errors #1006 @scottf +* Reconnect on Connect additional api #1012 @scottf +* Accept Tls First as an Option #1015 @scottf + +#### JetStream + +* Duplicate message for Interest stream fails seq check in PublishAck #1005 @MauriceVanVeen +* Direct Message Subject Header May Contain Multiple Subjects #1016 @scottf + +#### Service Framework + +* Added custom endpoint queue support and fixed InfoResponse to show proper subject. #1010 @scottf + +#### Docs / Testing / Misc + +* Removing generic-ness from naming #1000 #1004 @scottf +* Subscribe options name handling vs 2.8.4 #1011 @scottf +* Client Compatibility Tests engine #1013 @scottf +* Regression and Test Improvements #1017 #1018 @scottf + ## 2.17.0 This release added: diff --git a/README.md b/README.md index 520ee8189..ffd30b766 100644 --- a/README.md +++ b/README.md @@ -4,7 +4,7 @@ ### A [Java](http://java.com) client for the [NATS messaging system](https://nats.io). -**Current Release**: 2.17.0   **Current Snapshot**: 2.17.1-SNAPSHOT +**Current Release**: 2.17.1   **Current Snapshot**: 2.17.2-SNAPSHOT [![License Apache 2](https://img.shields.io/badge/License-Apache2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0) [![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats) @@ -356,9 +356,9 @@ Replace `{major.minor.patch}` with the correct version in the examples. ### Downloading the Jar -You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.0/jnats-2.17.0.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.0/jnats-2.17.0.jar). +You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.1/jnats-2.17.1.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.1/jnats-2.17.1.jar). -The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.0/jnats-2.17.0-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.0/jnats-2.17.0-examples.jar). +The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.1/jnats-2.17.1-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.1/jnats-2.17.1-examples.jar). To use NKeys, you will need the ed25519 library, which can be downloaded at [https://repo1.maven.org/maven2/net/i2p/crypto/eddsa/0.3.0/eddsa-0.3.0.jar](https://repo1.maven.org/maven2/net/i2p/crypto/eddsa/0.3.0/eddsa-0.3.0.jar). diff --git a/build.gradle b/build.gradle index 4bd6bbffa..eb4a6f2a8 100644 --- a/build.gradle +++ b/build.gradle @@ -13,7 +13,7 @@ plugins { id 'signing' } -def jarVersion = "2.17.1" +def jarVersion = "2.17.2" def isRelease = System.getenv("BUILD_EVENT") == "release" def bs = System.getenv("BRANCH_SNAPSHOT")