Update all dependencies #20

Merged
kjuulh merged 1 commits from renovate/all into main 2022-12-20 14:59:18 +01:00
Owner

This PR contains the following updates:

Package Type Update Change
github.com/nats-io/nats-server/v2 require patch v2.9.8 -> v2.9.9
github.com/nats-io/nats.go require minor v1.20.0 -> v1.22.0

Release Notes

nats-io/nats-server

v2.9.9

Compare Source

Changelog

Go Version
  • 1.19.4: Both the release executables and Docker images are built with this Go release
Improved
  • JetStream

    • Avoid full state snapshot for streams with many deleted items (#​3680)
    • Refactor to make stream removal from server consistent (#​3691)
  • Help/Usage

    • Display two additional --reload signal options, ldm and term (#​3683)
Fixed
  • Authorization
    • Prevent returning no_auth_required when a client tries to connect in operator mode (#​3667)
      • Any client (Java) that suppressed sending credentials before of this flag could be affected.
      • This only affects the 2.9.8 server version
  • JetStream
    • Tag policies not honored during stream replica reassignment after a peer is removed (#​3678)
    • Address issues when concurrent "create" requests for the same stream are issued (#​3679)
    • Server panic when consumer state was not decoded correctly (#​3688)
    • Ensure consumers that are deleted on startup are removed from the system (#​3689)
    • Fixed JetStream remained disabled for reactivated JWT accounts (#​3690, thank you @​JulienVdG)
  • Leafnodes
Complete Changes
nats-io/nats.go

v1.22.0

Compare Source

Changelog

Overview

This release adds a beta implementation of micro package, which provides API for creating and monitoring microservices on top of NATS connection.

Added
  • Service API beta implementation (#​1160)
  • Getters for connection callbacks (#​1162)
Complete Changes

v1.21.0

Compare Source

Changelog

Added
  • ConnectHandler connect option to detect that initial connection was established. This is especially useful when combined with RetryOnFailedConnect (#​1133 )
  • IgnoreAuthErrorAbort connect option to prevent aborting reconnect attempts after receiving the same authentication error twice (#​1141)
  • SkipTLSHandshake option to CustomDialer. SkipTLSHandshake method can be implemented on a custom dialer to prevent TLS handshake if not needed (#​1147)
  • KV:
    • Return ErrKeyExists error when attempting to Create() a KV pair for an existing key (#​1135, #​1136)
  • JetStream:
    • Add ErrLeadershipChanged error, returned when consumer leadership has changed during a pull request on a consumer. Thanks to @​sata-form3 for the contribution (#​1151)
Improved
  • Remove deprecated usages of io/ioutil. Thanks to @​cesarvspr for the contribution (#​1150)
  • Remove experimental notice from KV implementation (#​1154)
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.9.8` -> `v2.9.9` | | [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go) | require | minor | `v1.20.0` -> `v1.22.0` | --- ### Release Notes <details> <summary>nats-io/nats-server</summary> ### [`v2.9.9`](https://github.com/nats-io/nats-server/releases/tag/v2.9.9) [Compare Source](https://github.com/nats-io/nats-server/compare/v2.9.8...v2.9.9) #### Changelog ##### Go Version - 1.19.4: Both the release executables and Docker images are built with this Go release ##### Improved - JetStream - Avoid full state snapshot for streams with many deleted items ([#&#8203;3680](https://github.com/nats-io/nats-server/issues/3680)) - Refactor to make stream removal from server consistent ([#&#8203;3691](https://github.com/nats-io/nats-server/issues/3691)) - Help/Usage - Display two additional `--reload` signal options, `ldm` and `term` ([#&#8203;3683](https://github.com/nats-io/nats-server/issues/3683)) ##### Fixed - Authorization - Prevent returning `no_auth_required` when a client tries to connect in operator mode ([#&#8203;3667](https://github.com/nats-io/nats-server/issues/3667)) - Any client (Java) that suppressed sending credentials before of this flag could be affected. - This only affects the 2.9.8 server version - JetStream - Tag policies not honored during stream replica reassignment after a peer is removed ([#&#8203;3678](https://github.com/nats-io/nats-server/issues/3678)) - Address issues when concurrent "create" requests for the same stream are issued ([#&#8203;3679](https://github.com/nats-io/nats-server/issues/3679)) - Server panic when consumer state was not decoded correctly ([#&#8203;3688](https://github.com/nats-io/nats-server/issues/3688)) - Ensure consumers that are deleted on startup are removed from the system ([#&#8203;3689](https://github.com/nats-io/nats-server/issues/3689)) - Fixed JetStream remained disabled for reactivated JWT accounts ([#&#8203;3690](https://github.com/nats-io/nats-server/issues/3690), thank you [@&#8203;JulienVdG](https://github.com/JulienVdG)) - Leafnodes - Do not delay PINGs for leaf connections ([#&#8203;3692](https://github.com/nats-io/nats-server/issues/3692), thank you [@&#8203;sandykellagher](https://github.com/sandykellagher)) ##### Complete Changes </details> <details> <summary>nats-io/nats.go</summary> ### [`v1.22.0`](https://github.com/nats-io/nats.go/releases/tag/v1.22.0) [Compare Source](https://github.com/nats-io/nats.go/compare/v1.21.0...v1.22.0) #### Changelog ##### Overview This release adds a beta implementation of `micro` package, which provides API for creating and monitoring microservices on top of NATS connection. ##### Added - Service API beta implementation ([#&#8203;1160](https://github.com/nats-io/nats.go/issues/1160)) - Getters for connection callbacks ([#&#8203;1162](https://github.com/nats-io/nats.go/issues/1162)) ##### Complete Changes ### [`v1.21.0`](https://github.com/nats-io/nats.go/releases/tag/v1.21.0) [Compare Source](https://github.com/nats-io/nats.go/compare/v1.20.0...v1.21.0) #### Changelog ##### Added - `ConnectHandler` connect option to detect that initial connection was established. This is especially useful when combined with `RetryOnFailedConnect` ([#&#8203;1133](https://github.com/nats-io/nats.go/issues/1133) ) - `IgnoreAuthErrorAbort` connect option to prevent aborting reconnect attempts after receiving the same authentication error twice ([#&#8203;1141](https://github.com/nats-io/nats.go/issues/1141)) - `SkipTLSHandshake` option to `CustomDialer`. `SkipTLSHandshake` method can be implemented on a custom dialer to prevent TLS handshake if not needed ([#&#8203;1147](https://github.com/nats-io/nats.go/issues/1147)) - KV: - Return `ErrKeyExists` error when attempting to `Create()` a KV pair for an existing key ([#&#8203;1135](https://github.com/nats-io/nats.go/issues/1135), [#&#8203;1136](https://github.com/nats-io/nats.go/issues/1136)) - JetStream: - Add `ErrLeadershipChanged` error, returned when consumer leadership has changed during a pull request on a consumer. Thanks to [@&#8203;sata-form3](https://github.com/sata-form3) for the contribution ([#&#8203;1151](https://github.com/nats-io/nats.go/issues/1151)) ##### Improved - Remove deprecated usages of `io/ioutil`. Thanks to [@&#8203;cesarvspr](https://github.com/cesarvspr) for the contribution ([#&#8203;1150](https://github.com/nats-io/nats.go/issues/1150)) - Remove experimental notice from KV implementation ([#&#8203;1154](https://github.com/nats-io/nats.go/issues/1154)) ##### 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:eyJjcmVhdGVkSW5WZXIiOiIzNC4yMy4xIiwidXBkYXRlZEluVmVyIjoiMzQuNjQuMCJ9-->
kjuulh force-pushed renovate/all from aea9935b9e to 2afca71b30 2022-12-08 23:39:37 +01:00 Compare
kjuulh changed title from Update module github.com/nats-io/nats.go to v1.21.0 to Update all dependencies 2022-12-08 23:39:39 +01:00
kjuulh force-pushed renovate/all from 2afca71b30 to 22e7378f94 2022-12-20 14:41:32 +01:00 Compare
kjuulh merged commit 22e7378f94 into main 2022-12-20 14:59:18 +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#20
No description provided.