Skip to content

Commit

Permalink
Start 2.17.3 (#1057)
Browse files Browse the repository at this point in the history
  • Loading branch information
scottf authored Jan 3, 2024
1 parent b05b87e commit 10eaa9b
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.17.2

Robustness and recovery

#### Core
* Support StreamConfiguration creation from JSON #1023 @senior
* TimeoutException instead of CancellationException on timeout #1031 @maximbreitman
* Message Headers Improvement #1054 @scottf

#### JetStream
* Pull Request Validate Idle Heartbeat Against Expiration #1036 @scottf
* Client side consumer recovery #1043 @scottf
* Ensure robustness b/w compatible with server 2.8.4 #1046 @scottf
* Chaos Testing Tuning #1055 @scottf

#### Extensions (KV / OS / Service)
* KV and OS Compression and Metadata #1034 @scottf

#### Docs / Testing / Examples / Etc.
* Initialize SocketDataPort directly #1022 @scottf
* Add dockerfile for compatibility tests #1024 @piotrpio
* Update jnats-server-runner to 1.2.6 #1027 @scottf
* Auth Test Improvement #1028 @scottf
* Test Base Tuning #1030 @scottf
* Publish Expectations Test for JetStream API Code #1032 @scottf
* More Tests for recent NatsRequestCompletableFuture enhancement #1035 @scottf
* Add nats by example link #1037 @Jarema
* Improve test for real user authentication expired #1040 @scottf
* Update readme / better subject validation notes #1047 @scottf
* Fetch Resilient Example #1048 @scottf
* Refactoring and improving example code. #1049 @scottf

## 2.17.1

This release added was mostly about TLS and testing
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.17.1   **Current Snapshot**: 2.17.2-SNAPSHOT
**Current Release**: 2.17.2   **Current Snapshot**: 2.17.3-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 @@ -387,9 +387,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.1/jnats-2.17.1.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.1/jnats-2.17.1.jar).
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.2/jnats-2.17.2.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.2/jnats-2.17.2.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).
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.2/jnats-2.17.2-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.2/jnats-2.17.2-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.17.2"
def jarVersion = "2.17.3"

def isRelease = System.getenv("BUILD_EVENT") == "release"
def bs = System.getenv("BRANCH_SNAPSHOT")
Expand Down

0 comments on commit 10eaa9b

Please sign in to comment.