Skip to content

Commit

Permalink
Start 2.20.1 (#1197)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf authored Aug 12, 2024
1 parent 7287901 commit aa600d4
Show file tree
Hide file tree
Showing 3 changed files with 36 additions and 4 deletions.
32 changes: 32 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,37 @@
# Change Log

## 2.20.0

### Core
* CONNECT username and password need json encoding #1168 @scottf
* UTF subject support #1169 @scottf
* Handle InterruptedException when obtaining the lock to queue a message. #1170 @scottf
* Handle duration string when accepting duration properties #1183 @scottf
* Make NatsServerPool extendable #1185 @scottf
* Allow user to set socket read timeout option #1188 @scottf

### JetStream
* Stream state subjects as a map #1177 @scottf
* Stream state more efficient loading of subjects #1179 @scottf

### Key Value
* Add filtering to KV keys methods #1173 @scottf
* Add filtering to KV keys methods - Use greater than constant #1174 @scottf
* Add filtering to KV keys methods - remove unnecessary optimization #1175 @scottf

### Object Store
* Object Store use over leaf-hub domain part 2 #1172 @scottf

### Unit Testing
* Test implementation dependency update #1167 @scottf
* Improve cluster testing support #1171 @scottf
* Change test to run against 2.10 or later #1180 #1181 @scottf
* Flapper Reconnect test fix #1189 @scottf

### Project Management
* Switch to Eclipse Temurin and add SDKMan for local dev #1176 @artur-ciocanu
* Allowing building main on workflow_dispatch #1186 @scottf

## 2.19.1

### Core
Expand Down
6 changes: 3 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@

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

**Current Release**: 2.19.1   **Current Snapshot**: 2.19.2-SNAPSHOT
**Current Release**: 2.20.0   **Current Snapshot**: 2.20.1-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)
Expand Down Expand Up @@ -122,9 +122,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.19.1/jnats-2.19.1.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.19.1/jnats-2.19.1.jar).
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).

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

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

Expand Down
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ plugins {
id 'signing'
}

def jarVersion = "2.20.0"
def jarVersion = "2.20.1"

def isRelease = System.getenv("BUILD_EVENT") == "release"
def brn = System.getenv("BRANCH_REF_NAME")
Expand Down

0 comments on commit aa600d4

Please sign in to comment.