Skip to content

Commit 7203bd9

Browse files
authored
Merge branch 'main' into message-filter-tuning-1
2 parents e710d93 + 9e57748 commit 7203bd9

File tree

3 files changed

+41
-2
lines changed

3 files changed

+41
-2
lines changed

CHANGELOG.md

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

3+
## 2.24.0
4+
5+
### Core
6+
* [BUG] Properly return pending bytes #1437 @scottf
7+
* Improve ConnectionListener #1438 @scottf
8+
* Server Pool Improvement #1443 @scottf
9+
* Improved reconnect determining when to switch queues #1444 @scottf
10+
* Improve output queue push locking and error message #1446 @scottf
11+
* ConnectionListener event time #1448 @scottf
12+
* Optimize header reading #1449 @scottf
13+
* Header fine tuning #1451 @scottf
14+
* Header tuning don't over engineer #1453 @scottf
15+
* Micro-optimization getBytes(ISO_8859_1) vs getBytes(US_ASCII) #1455 @scottf
16+
* Reduce calls to stats by combining. #1465 @scottf
17+
* [BUG] MessageQueue drainTo was not properly copying length and size. #1468 @scottf
18+
* MessageQueue drainTo more #1469 @scottf
19+
* Auth Error is allowed to be set before being connected #1475 @scottf
20+
21+
### JetStream
22+
* Stream Config Persist mode #1436 @scottf
23+
* Review methods with varargs for proper validation #1456 @scottf
24+
* [BUG] AccountTier read reserved values as int instead of long #1457 @scottf
25+
* Handle both wrong last sequence 10071 / 10164 #1463 @scottf
26+
* Pinned Consumer Support #1472 @scottf
27+
28+
### Docs
29+
* Fixed the Typo in the Example Code #1450 @sikandar
30+
31+
### Test
32+
* Refactor test to validate issue 1426 #1447 @scottf
33+
* Additional test coverage #1452 @scottf
34+
* Demonstrate Pull Status Warning Handling #1454 @scottf
35+
* Miscellaneous Test Coverage #1460 @scottf
36+
* Fix and Enable ReconnectTests testForceReconnectQueueBehaviorCheck #1473 @scottf
37+
* Javadoc Technical Debt #1476 @scottf
38+
39+
### Build
40+
* Build modifications for Coveralls #1459 @scottf
41+
342
## 2.23.0
443

544
### Server 2.12 Specific

README.md

Lines changed: 1 addition & 1 deletion
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.23.0   **Current Snapshot**: 2.23.1-SNAPSHOT
7+
**Current Release**: 2.24.0   **Current Snapshot**: 2.24.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)

build.gradle

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ plugins {
1111
id("signing")
1212
}
1313

14-
def jarVersion = "2.24.0"
14+
def jarVersion = "2.24.1"
1515

1616
def isRelease = System.getenv("BUILD_EVENT") == "release"
1717
def brn = System.getenv("BRANCH_REF_NAME")

0 commit comments

Comments
 (0)