Skip to content

Commit 7119a1a

Browse files
authored
Start 2.18.2 (#1152)
1 parent f090bed commit 7119a1a

File tree

3 files changed

+48
-8
lines changed

3 files changed

+48
-8
lines changed

CHANGELOG.md

Lines changed: 42 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,47 @@
11
# Change Log
22

3-
## 2.17.6
4-
## 2.17.5
3+
## 2.18.1
4+
#### Core
5+
* General Retry Functionality #1145 @scottf
6+
* Cluster string in Placement is optional. #1150 @scottf
7+
* Remove duplicate reconnect event #1151 @scottf
8+
9+
#### JetStream
10+
* Support 409 Leadership Change #1144 @scottf
11+
12+
#### Doc
13+
* Update docs and comments (MessageQueue, forceReconnect) #1142 @scottf
14+
15+
16+
## 2.18.0 / 2.17.7
17+
18+
2.18.0 and 2.17.7 are identical.
19+
20+
2.18.0 attempts to start us on the road to properly [Semantic Version (semver)](https://semver.org/). In the last few patch releases, changes that should have been exposed via a minor version bump were numbered as a patch.
21+
22+
Even if just one api is newly added, semver requires that we bump the minor version. The `forceReconnect` api is an example of one api being added to the Connection interface. It should have resulted in a minor version bump.
23+
24+
Going forward, when a release contains only bug fixes, it's appropriate to simply bump the patch. But if an api is added, even one, then the minor version will be bumped.
25+
26+
27+
#### Core
28+
* Revert headers from being read-only upon message creation #1123 @scottf
29+
* tls_available support #1127 @scottf
30+
* Revisit Write Timeout Handling #1128 @scottf
31+
* Remove rethrowable runtime exception during connection #1137 @ajax-surovskyi-y
32+
33+
#### JetStream
34+
* Fix #1125 NatsJetStreamMetaData timestamp timezone #1126 @mrmx
35+
36+
#### Doc
37+
* Update Readme with links to docs and examples. #1119 @scottf
38+
39+
#### Misc
40+
* Refactor Encoding util for easier replacement of Base64 encoding class #1121 @scottf
41+
42+
43+
44+
## 2.17.6 / 2.17.5
545

646
2.17.6 was released immediately after 2.17.5. The allowing of a comma delimited list of keys was removed.
747
This is noted since it was technically available for several hours even though it was never publicly announced,

README.md

Lines changed: 5 additions & 5 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.18.0   **Current Snapshot**: 2.18.1-SNAPSHOT
7+
**Current Release**: 2.18.1   **Current Snapshot**: 2.18.2-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)
@@ -45,9 +45,9 @@ Check out the [ServiceExample](src/examples/java/io/nats/examples/service/Servic
4545

4646
### Versions Specific Notes
4747

48-
#### Version 2.18.0 (AKA 2.17.7)
48+
#### Version 2.18.1 (AKA 2.17.7)
4949

50-
2.18.0 attempts to start us on the road to properly [Semantic Version (semver)](https://semver.org/).
50+
2.18.1 attempts to start us on the road to properly [Semantic Version (semver)](https://semver.org/).
5151
In the last few patch releases, there were technically things that should cause a minor version bump,
5252
but were numbered as a patch.
5353

@@ -434,9 +434,9 @@ Replace `{major.minor.patch}` with the correct version in the examples.
434434

435435
### Downloading the Jar
436436

437-
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.4/jnats-2.17.4.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.4/jnats-2.17.4.jar).
437+
You can download the latest jar at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.18.1/jnats-2.18.1.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.18.1/jnats-2.18.1.jar).
438438

439-
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.4/jnats-2.17.4-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.17.4/jnats-2.17.4-examples.jar).
439+
The examples are available at [https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.18.1/jnats-2.18.1-examples.jar](https://search.maven.org/remotecontent?filepath=io/nats/jnats/2.18.1/jnats-2.18.1-examples.jar).
440440

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

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.18.1"
16+
def jarVersion = "2.18.2"
1717

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

0 commit comments

Comments
 (0)