Skip to content

Releases: nats-io/nats.java

2.15.3 Writeable Placement

06 Jun 19:12
fde09ed
Compare
Choose a tag to compare

JetStream

2.15.2 JetStream Improvements

01 Jun 16:40
cdec545
Compare
Choose a tag to compare

JetStream

  • Pull config changes, ephemeral pull, unit tests PR #645 @scottf
  • Server urls connection management PR #648 @scottf
    • Architecture issue 113 Add option to ignore discovered urls
    • ServersToTryProvider provide a way that a user can provide a complete custom implementation to provide the server urls to try on connect / reconnect. Tiered servers could be implemented this way. EXPERIMENTAL feature.
  • EXPERIMENTAL PullRequestOptions PR #649 @scottf

2.15.1 Remove batch size limitations and add 409 support

21 May 13:20
17dc90d
Compare
Choose a tag to compare

JetStream

2.15.0 Subscription must be made before consumer is created

04 May 20:47
ddad68d
Compare
Choose a tag to compare

The order of creating a subscription on the server and creating a consumer on the server matters. Once the consumer is created, there is interest and the server tries to deliver. But if the subscription is not created, the messages are delivered to...nowhere, but are considered delivered.

This was not strictly a problem but it was a race - if the subscription was ready before the consumer was sent messages, then things went fine. Unit test didn't fail. But when we were testing against NGS and in clusters with mixes of JetStream and non-Jetstream servers, the consumer was always ready because of simple latency.

So now the server subscription is always made first avoiding the problem altogether.

See PR #639

2.14.2 Consumer Configuration Change Validation

04 May 13:33
ba721c7
Compare
Choose a tag to compare

Improvements

PR #637

  • Added additional validation (unit testing) in relation to PR #635 Improve subscription creation with existing durable to be smarter when comparing provided configuration with server configuration.
  • Added more information to the exception message text by including a list of fields that caused the issue.

2.14.1 Improvements, client parity, docs, etc.

26 Apr 13:55
ce2c647
Compare
Choose a tag to compare

Client Parity

PR #630 Support for server Consumer feature Backoff Lists.

Improvements

Issue #616 / PR #617 Support for timeout propagation in async requests
PR #630 Surfaced delay for nak requests
PR #631 Tune kv subscribe supported functions keys / history / purge
PR #634 Added client side limit checks option to allow turning off client side checks which forces check to server. Default behavior is the same.
PR #635 Improve subscription creation with existing durable to be smarter when comparing provided configuration with server configuration.

Bug Fixes

Issue #621 / PR #622 Fixed kv key with dot as part of the key

Documentation etc.

PR #612 Version change and miscellaneous documentation.
PR #629 Rate Limit is bytes per second (bps) not messages per second.

2.14.0 KV Release

08 Mar 23:53
8a35b87
Compare
Choose a tag to compare

Key Value

  • KV API Release

JetStream

  • Allow null or empty subject when appropriate while subscribing / binding
  • new JetStreamManagement api StreamInfo getStreamInfo(String streamName, StreamInfoOptions options)
  • support Stream Configuration and Stream State to reflect server changes up to server V2.7.3
  • support Consumer Configuration reflect server changes up to server V2.7.3
  • Fixed bug with pull subscribe fetch and iterate where it could wait twice the expiration time and improved implementation to reflect server changes in pull behavior.
  • Added combo pull nowait + expires primitive api to match server pull changes.

Miscellaneous

  • Addressed Info level Cure53 audit item regarding version string.
  • Moved JsMultiTool out of example to the example repo.
  • Added NatsJsPushSubAsyncQueueDurable example program.
  • Unit test improvements to prevent flappers

2.13.2 KV Experimental

06 Jan 01:58
55b5e0b
Compare
Choose a tag to compare

JetStream

2.13.2 KV Experimental

2.13.1 Subscription Consumer Configuration Fix

02 Nov 21:17
04eab7f
Compare
Choose a tag to compare

JetStream

  • This release fixes a bug found in the new subscription enhancements where the comparison of default configuration failed to validate properly against an existing (durable) consumer configuration.

  • There are also minor enhancements to the JsMulti tool

2.13.0 Subscription Enhancements

27 Oct 17:12
7525652
Compare
Choose a tag to compare

JetStream

  • Subscription validation. See Subscription Creation
  • Flow Control and Heartbeat handling
  • Domain Support
  • Stream/Subject Binding