Update all dependencies #53

Merged
kjuulh merged 1 commits from renovate/all into main 2024-08-21 22:32:06 +02:00
Owner

This PR contains the following updates:

Package Type Update Change
github.com/nats-io/nats-server/v2 require patch v2.10.17 -> v2.10.18
github.com/nats-io/nats.go require minor v1.36.0 -> v1.37.0
go (source) toolchain minor 1.22.5 -> 1.23.0

Release Notes

nats-io/nats-server (github.com/nats-io/nats-server/v2)

v2.10.18

Compare Source

Changelog

Refer to the 2.10 Upgrade Guide for backwards compatibility notes with 2.9.x.

Go Version
  • 1.22.5
Dependencies
  • github.com/nats-io/jwt v2.5.8 (#​5618)
  • github.com/minio/highwayhash v1.0.3 (#​5627)
  • golang.org/x/crypto v0.25.0 (#​5627)
  • golang.org/x/sys v0.22.0 (#​5627)
Improved

Embedded

  • Export server function to initiate “lame duck mode” when embedding NATS (#​5660)

JetStream

  • CPU spike during recalculation of first message in the memory store (#​5629)
Fixed

JetStream

  • Fix duplicate callbacks on full wildcard match (#​5610)
  • Multiple fixes for the filestore per-subject state (#​5616)
  • Fix checkSkipFirstBlock which could return a negative index if the first block in the per-subject index is outdated (#​5630)
  • Don't ack messages if consumer is filtered and they were not applicable (#​5639, #​5612, #​5638)
  • Protect against possible panic in the filestore where the stree index is nil (#​5662)
  • Prevent panic when shutting down a server immediately after starting it (#​5663)
Complete Changes
nats-io/nats.go (github.com/nats-io/nats.go)

v1.37.0

Compare Source

Changelog

Added
  • JetStream:
    • CleanupPublisher method for removing internal JetStream subscription (#​1690)
    • ConsumeContext.Closed() method for waiting for consume to be closed/drained (#​1691)
Fixed
  • JetStream:
    • Fix deadlock when accessing subscriptions map on a consumer (#​1671)
    • Fix panic in OrderedConsumer (#​1686)
    • Fix setting deliver policy in Fetch() for OrderedConsumer (#​1693)
  • Legacy JetStream:
    • Change Fetch and FetchBatch client timeout to a higher value (#​1689)
Improved
  • Trim trailing slash if set on server address which can cause errors during lookup (#​1654)
  • Fixed README.md formatting. Thanks @​patrick-othmer for the contribution (#​1692)
Deprecated
  • Deprecate encoded connections (#​1674)
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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • 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-server/v2](https://github.com/nats-io/nats-server) | require | patch | `v2.10.17` -> `v2.10.18` | | [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | require | minor | `v1.36.0` -> `v1.37.0` | | [go](https://go.dev/) ([source](https://github.com/golang/go)) | toolchain | minor | `1.22.5` -> `1.23.0` | --- ### Release Notes <details> <summary>nats-io/nats-server (github.com/nats-io/nats-server/v2)</summary> ### [`v2.10.18`](https://github.com/nats-io/nats-server/releases/tag/v2.10.18) [Compare Source](https://github.com/nats-io/nats-server/compare/v2.10.17...v2.10.18) #### Changelog Refer to the [2.10 Upgrade Guide](https://docs.nats.io/release-notes/whats_new/whats_new\_210) for backwards compatibility notes with 2.9.x. ##### Go Version - 1.22.5 ##### Dependencies - github.com/nats-io/jwt v2.5.8 ([#&#8203;5618](https://github.com/nats-io/nats-server/issues/5618)) - github.com/minio/highwayhash v1.0.3 ([#&#8203;5627](https://github.com/nats-io/nats-server/issues/5627)) - golang.org/x/crypto v0.25.0 ([#&#8203;5627](https://github.com/nats-io/nats-server/issues/5627)) - golang.org/x/sys v0.22.0 ([#&#8203;5627](https://github.com/nats-io/nats-server/issues/5627)) ##### Improved Embedded - Export server function to initiate “lame duck mode” when embedding NATS ([#&#8203;5660](https://github.com/nats-io/nats-server/issues/5660)) JetStream - CPU spike during recalculation of first message in the memory store ([#&#8203;5629](https://github.com/nats-io/nats-server/issues/5629)) ##### Fixed JetStream - Fix duplicate callbacks on full wildcard match ([#&#8203;5610](https://github.com/nats-io/nats-server/issues/5610)) - Multiple fixes for the filestore per-subject state ([#&#8203;5616](https://github.com/nats-io/nats-server/issues/5616)) - Fix checkSkipFirstBlock which could return a negative index if the first block in the per-subject index is outdated ([#&#8203;5630](https://github.com/nats-io/nats-server/issues/5630)) - Don't ack messages if consumer is filtered and they were not applicable ([#&#8203;5639](https://github.com/nats-io/nats-server/issues/5639), [#&#8203;5612](https://github.com/nats-io/nats-server/issues/5612), [#&#8203;5638](https://github.com/nats-io/nats-server/issues/5638)) - Protect against possible panic in the filestore where the stree index is nil ([#&#8203;5662](https://github.com/nats-io/nats-server/issues/5662)) - Prevent panic when shutting down a server immediately after starting it ([#&#8203;5663](https://github.com/nats-io/nats-server/issues/5663)) ##### Complete Changes </details> <details> <summary>nats-io/nats.go (github.com/nats-io/nats.go)</summary> ### [`v1.37.0`](https://github.com/nats-io/nats.go/releases/tag/v1.37.0) [Compare Source](https://github.com/nats-io/nats.go/compare/v1.36.0...v1.37.0) #### Changelog ##### Added - JetStream: - `CleanupPublisher` method for removing internal JetStream subscription ([#&#8203;1690](https://github.com/nats-io/nats.go/issues/1690)) - `ConsumeContext.Closed()` method for waiting for consume to be closed/drained ([#&#8203;1691](https://github.com/nats-io/nats.go/issues/1691)) ##### Fixed - JetStream: - Fix deadlock when accessing subscriptions map on a consumer ([#&#8203;1671](https://github.com/nats-io/nats.go/issues/1671)) - Fix panic in `OrderedConsumer` ([#&#8203;1686](https://github.com/nats-io/nats.go/issues/1686)) - Fix setting deliver policy in `Fetch()` for `OrderedConsumer` ([#&#8203;1693](https://github.com/nats-io/nats.go/issues/1693)) - Legacy JetStream: - Change `Fetch` and `FetchBatch` client timeout to a higher value ([#&#8203;1689](https://github.com/nats-io/nats.go/issues/1689)) ##### Improved - Trim trailing slash if set on server address which can cause errors during lookup ([#&#8203;1654](https://github.com/nats-io/nats.go/issues/1654)) - Fixed README.md formatting. Thanks [@&#8203;patrick-othmer](https://github.com/patrick-othmer) for the contribution ([#&#8203;1692](https://github.com/nats-io/nats.go/issues/1692)) ##### Deprecated - Deprecate encoded connections ([#&#8203;1674](https://github.com/nats-io/nats.go/issues/1674)) ##### 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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- 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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MjQuMyIsInVwZGF0ZWRJblZlciI6IjM3LjQyNC4zIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->
kjuulh added 1 commit 2024-08-21 22:32:04 +02:00
Update all dependencies
Some checks reported errors
continuous-integration/drone/push Build encountered an error
continuous-integration/drone/pr Build is passing
059bf8b6d1
kjuulh scheduled this pull request to auto merge when all checks succeed 2024-08-21 22:32:04 +02:00
Author
Owner

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 4 additional dependencies were updated

Details:

Package Change
github.com/minio/highwayhash v1.0.2 -> v1.0.3
github.com/nats-io/jwt/v2 v2.5.7 -> v2.5.8
golang.org/x/crypto v0.24.0 -> v0.25.0
golang.org/x/sys v0.21.0 -> v0.22.0
### ℹ Artifact update notice ##### File name: go.mod In order to perform the update(s) described in the table above, Renovate ran the `go get` command, which resulted in the following additional change(s): - 4 additional dependencies were updated Details: | **Package** | **Change** | | :----------------------------- | :--------------------- | | `github.com/minio/highwayhash` | `v1.0.2` -> `v1.0.3` | | `github.com/nats-io/jwt/v2` | `v2.5.7` -> `v2.5.8` | | `golang.org/x/crypto` | `v0.24.0` -> `v0.25.0` | | `golang.org/x/sys` | `v0.21.0` -> `v0.22.0` |
kjuulh merged commit 059bf8b6d1 into main 2024-08-21 22:32:06 +02: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#53
No description provided.