Skip to content

Commit aa600d4

Browse files
authored
Start 2.20.1 (#1197)
1 parent 7287901 commit aa600d4

File tree

3 files changed

+36
-4
lines changed

3 files changed

+36
-4
lines changed

CHANGELOG.md

Lines changed: 32 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,37 @@
11
# Change Log
22

3+
## 2.20.0
4+
5+
### Core
6+
* CONNECT username and password need json encoding #1168 @scottf
7+
* UTF subject support #1169 @scottf
8+
* Handle InterruptedException when obtaining the lock to queue a message. #1170 @scottf
9+
* Handle duration string when accepting duration properties #1183 @scottf
10+
* Make NatsServerPool extendable #1185 @scottf
11+
* Allow user to set socket read timeout option #1188 @scottf
12+
13+
### JetStream
14+
* Stream state subjects as a map #1177 @scottf
15+
* Stream state more efficient loading of subjects #1179 @scottf
16+
17+
### Key Value
18+
* Add filtering to KV keys methods #1173 @scottf
19+
* Add filtering to KV keys methods - Use greater than constant #1174 @scottf
20+
* Add filtering to KV keys methods - remove unnecessary optimization #1175 @scottf
21+
22+
### Object Store
23+
* Object Store use over leaf-hub domain part 2 #1172 @scottf
24+
25+
### Unit Testing
26+
* Test implementation dependency update #1167 @scottf
27+
* Improve cluster testing support #1171 @scottf
28+
* Change test to run against 2.10 or later #1180 #1181 @scottf
29+
* Flapper Reconnect test fix #1189 @scottf
30+
31+
### Project Management
32+
* Switch to Eclipse Temurin and add SDKMan for local dev #1176 @artur-ciocanu
33+
* Allowing building main on workflow_dispatch #1186 @scottf
34+
335
## 2.19.1
436

537
### Core

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44

55
### A [Java](http://java.com) client for the [NATS messaging system](https://nats.io).
66

7-
**Current Release**: 2.19.1   **Current Snapshot**: 2.19.2-SNAPSHOT
7+
**Current Release**: 2.20.0   **Current Snapshot**: 2.20.1-SNAPSHOT
88

99
[![License Apache 2](https://img.shields.io/badge/License-Apache2-blue.svg)](https://www.apache.org/licenses/LICENSE-2.0)
1010
[![Maven Central](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats/badge.svg)](https://maven-badges.herokuapp.com/maven-central/io.nats/jnats)
@@ -122,9 +122,9 @@ Replace `{major.minor.patch}` with the correct version in the examples.
122122

123123
### Downloading the Jar
124124

125-
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.19.1/jnats-2.19.1.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.19.1/jnats-2.19.1.jar).
125+
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.0/jnats-2.20.0.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.0/jnats-2.20.0.jar).
126126

127-
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.19.1/jnats-2.19.1-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.19.1/jnats-2.19.1-examples.jar).
127+
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.0/jnats-2.20.0-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.20.0/jnats-2.20.0-examples.jar).
128128

129129
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).
130130

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ plugins {
1313
id 'signing'
1414
}
1515

16-
def jarVersion = "2.20.0"
16+
def jarVersion = "2.20.1"
1717

1818
def isRelease = System.getenv("BUILD_EVENT") == "release"
1919
def brn = System.getenv("BRANCH_REF_NAME")

0 commit comments

Comments
 (0)