Update module github.com/nats-io/nats.go to v1.32.0 #48

Merged
kjuulh merged 1 commits from renovate/all into main 2024-01-12 15:34:12 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
github.com/nats-io/nats.go require minor v1.31.0 -> v1.32.0

Release Notes

nats-io/nats.go

v1.32.0

Compare Source

Changelog

Added
  • JetStream:
    • ObjectStore is now available as part of jetstream package (#​1450)
    • Drain method for ConsumeContext and MessagesContext. Unlike Stop(), in addition to unsubscribing and canceling the existing pull requests it will ensure that all messages already stored in client buffer will be available for processing (#​1515)
    • Return account reservations on AccountInfo. NOTE: This is only available since nats-server@v2.10.8 (#​1511)
    • Paging Subjects on Stream.Info() response when WithSubjectFilter() option is used (#​1517)
  • KeyValue:
    • Compression option on KeyValueConfig (#​1451)
    • ListKeys method for efficiently iterating over all keys in KV bucket (#​1490)
    • ResumeFromRevision option for KV watcher. Thanks to @​shadow3x3x3 for the contribution (#​1489)
Fixed
  • Legacy JetStream:
    • Fixed and issue where ordered consumer was recreated with different name format than the original (#​1449)
  • JetStream:
    • Fixed an issue where WithRetryAttempts() and WithRetryWait() options were ignored in PublishAsync() (#​1464)
    • Fixed invalid PullExpiry validation in Consumer.Messages() options (#​1468)
    • Fixed race condition on Stop() method for ConsumeContext and MessagesContext . Thanks to
      @​evanofslack for the contribution (#​1454)
    • Fixed issues with Next() method for ordered consumers (#​1471, #​1472)
    • Fixed ignoring a private inbox prefix in JetStream.Publish(). Thanks to @​oderwat for the contribution (#​1474)
    • Fixed invalid PAF id for PublishAsync() (#​1476)
    • Fixed race condition when getting pull subscriptions in ordered consumer (#​1497)
    • Fixed several issues in checkPending logic (#​1516)
  • KeyValue:
    • Removed KV_ prefix when listing KeyValue store names (#​1487)
  • Service API:
    • Fixed race condition when adding endpoints concurrently. Thanks to @​actatum for the contribution (#​1484)
Improved
  • Bumped nkeys and compress dependencies to latest versions (#​1458, #​1514)
  • Fixed broken link in jetstream/README.md. Thanks to @​sebbbastien for the contribution (#​1448)
  • Improvements for code quality across the library. Thanks to @​sashamelentyev for the contribution (#​1498, #​1500)
  • Legacy JetStream:
    • Library now attempts to delete ordered consumer before creating new one to avoid piling up consumers on reset (#​1449)
  • Service API:
    • Added compatibility tests for Service API (#​1443)
Complete Changes

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Type | Update | Change | |---|---|---|---| | [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | require | minor | `v1.31.0` -> `v1.32.0` | --- ### Release Notes <details> <summary>nats-io/nats.go</summary> ### [`v1.32.0`](https://github.com/nats-io/nats.go/releases/tag/v1.32.0) [Compare Source](https://github.com/nats-io/nats.go/compare/v1.31.0...v1.32.0) #### Changelog ##### Added - JetStream: - ObjectStore is now available as part of `jetstream` package ([#&#8203;1450](https://github.com/nats-io/nats.go/issues/1450)) - `Drain` method for `ConsumeContext` and `MessagesContext`. Unlike `Stop()`, in addition to unsubscribing and canceling the existing pull requests it will ensure that all messages already stored in client buffer will be available for processing ([#&#8203;1515](https://github.com/nats-io/nats.go/issues/1515)) - Return account reservations on `AccountInfo`. **NOTE**: This is only available since nats-server@v2.10.8 ([#&#8203;1511](https://github.com/nats-io/nats.go/issues/1511)) - Paging `Subjects` on `Stream.Info()` response when `WithSubjectFilter()` option is used ([#&#8203;1517](https://github.com/nats-io/nats.go/issues/1517)) - KeyValue: - `Compression` option on `KeyValueConfig` ([#&#8203;1451](https://github.com/nats-io/nats.go/issues/1451)) - `ListKeys` method for efficiently iterating over all keys in KV bucket ([#&#8203;1490](https://github.com/nats-io/nats.go/issues/1490)) - `ResumeFromRevision` option for KV watcher. Thanks to [@&#8203;shadow3x3x3](https://github.com/shadow3x3x3) for the contribution ([#&#8203;1489](https://github.com/nats-io/nats.go/issues/1489)) ##### Fixed - Legacy JetStream: - Fixed and issue where ordered consumer was recreated with different name format than the original ([#&#8203;1449](https://github.com/nats-io/nats.go/issues/1449)) - JetStream: - Fixed an issue where `WithRetryAttempts()` and `WithRetryWait()` options were ignored in `PublishAsync()` ([#&#8203;1464](https://github.com/nats-io/nats.go/issues/1464)) - Fixed invalid `PullExpiry` validation in `Consumer.Messages()` options ([#&#8203;1468](https://github.com/nats-io/nats.go/issues/1468)) - Fixed race condition on `Stop()` method for `ConsumeContext` and `MessagesContext` . Thanks to [@&#8203;evanofslack](https://github.com/evanofslack) for the contribution ([#&#8203;1454](https://github.com/nats-io/nats.go/issues/1454)) - Fixed issues with `Next()` method for ordered consumers ([#&#8203;1471](https://github.com/nats-io/nats.go/issues/1471), [#&#8203;1472](https://github.com/nats-io/nats.go/issues/1472)) - Fixed ignoring a private inbox prefix in `JetStream.Publish()`. Thanks to [@&#8203;oderwat](https://github.com/oderwat) for the contribution ([#&#8203;1474](https://github.com/nats-io/nats.go/issues/1474)) - Fixed invalid PAF id for `PublishAsync()` ([#&#8203;1476](https://github.com/nats-io/nats.go/issues/1476)) - Fixed race condition when getting pull subscriptions in ordered consumer ([#&#8203;1497](https://github.com/nats-io/nats.go/issues/1497)) - Fixed several issues in `checkPending` logic ([#&#8203;1516](https://github.com/nats-io/nats.go/issues/1516)) - KeyValue: - Removed `KV_` prefix when listing KeyValue store names ([#&#8203;1487](https://github.com/nats-io/nats.go/issues/1487)) - Service API: - Fixed race condition when adding endpoints concurrently. Thanks to [@&#8203;actatum](https://github.com/actatum) for the contribution ([#&#8203;1484](https://github.com/nats-io/nats.go/issues/1484)) ##### Improved - Bumped `nkeys` and `compress` dependencies to latest versions ([#&#8203;1458](https://github.com/nats-io/nats.go/issues/1458), [#&#8203;1514](https://github.com/nats-io/nats.go/issues/1514)) - Fixed broken link in `jetstream/README.md`. Thanks to [@&#8203;sebbbastien](https://github.com/sebbbastien) for the contribution ([#&#8203;1448](https://github.com/nats-io/nats.go/issues/1448)) - Improvements for code quality across the library. Thanks to [@&#8203;sashamelentyev](https://github.com/sashamelentyev) for the contribution ([#&#8203;1498](https://github.com/nats-io/nats.go/issues/1498), [#&#8203;1500](https://github.com/nats-io/nats.go/issues/1500)) - Legacy JetStream: - Library now attempts to delete ordered consumer before creating new one to avoid piling up consumers on reset ([#&#8203;1449](https://github.com/nats-io/nats.go/issues/1449)) - Service API: - Added compatibility tests for Service API ([#&#8203;1443](https://github.com/nats-io/nats.go/issues/1443)) ##### Complete Changes </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNC4xNjAuMCIsInVwZGF0ZWRJblZlciI6IjM0LjE2MC4wIn0=-->
kjuulh added 1 commit 2024-01-12 15:07:22 +01:00
Update module github.com/nats-io/nats.go to v1.32.0
All checks were successful
continuous-integration/drone/pr Build is passing
continuous-integration/drone/push Build is passing
bed686ada6
kjuulh merged commit bed686ada6 into main 2024-01-12 15:34:12 +01:00
Sign in to join this conversation.
No reviewers
No Label
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: kjuulh/ceen#48
No description provided.