Skip to content

Bump the all-deps group across 1 directory with 5 updates - #181

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/all-deps-87cf42360d
Open

Bump the all-deps group across 1 directory with 5 updates#181
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/all-deps-87cf42360d

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Aug 17, 2026

Copy link
Copy Markdown
Contributor

Bumps the all-deps group with 4 updates in the / directory: github.com/Kairum-Labs/should, github.com/caddyserver/certmagic, github.com/nats-io/nats-server/v2 and github.com/nats-io/nats.go.

Updates github.com/Kairum-Labs/should from 0.2.3 to 0.2.4

Release notes

Sourced from github.com/Kairum-Labs/should's releases.

v0.2.4

What's Changed

New Contributors

Full Changelog: Kairum-Labs/should@v0.2.3...v0.2.4

Changelog

Sourced from github.com/Kairum-Labs/should's changelog.

[0.2.4] - 2026-08-12

Bug Fixes

  • Slice multi-byte strings on rune boundaries in error preview
  • Report NotContain duplicates once with all indexes
  • Reject inverted BeInRange bounds

Miscellaneous Tasks

  • Swap retired Go Report Card badge for Lint CI badge
  • Remove unused levenshteinDistance
Commits
  • d299baa feat: prepare for v0.2.4
  • 260ed4d chore: remove unused levenshteinDistance
  • 9fa6a95 chore: swap retired Go Report Card badge for Lint CI badge
  • 559d728 fix(assert): reject inverted BeInRange bounds
  • a97705d fix(assert): report NotContain duplicates once with all indexes
  • 2630e6f fix: slice multi-byte strings on rune boundaries in error preview
  • See full diff in compare view

Updates github.com/caddyserver/certmagic from 0.25.3 to 0.25.4

Commits
  • cf6f57d handshake: propagate leader load/obtain outcome to all waiters (#387)
  • 7475593 Fix jm.names and jm.activeWorkees leak (#385)
  • 9f98c96 Preserve DNS provider record data for cleanup (#382)
  • 49b3509 ocsp: add responder authorization regression test (#383)
  • 9b6be22 Support listening on file descriptors (#380)
  • See full diff in compare view

Updates github.com/nats-io/nats-server/v2 from 2.14.2 to 2.14.5

Release notes

Sourced from github.com/nats-io/nats-server/v2's releases.

Release v2.14.5

Changelog

Refer to the 2.14 Upgrade Guide for backwards compatibility notes with 2.12.x. Please note that the 2.13.x version was skipped.

Go Version

  • 1.26.5

Dependencies

  • github.com/klauspost/compress v1.19.2 (#8459)
  • golang.org/x/crypto v0.55.0 (#8459)

Added

Leafnodes

  • New dial_timeout option can be specified in the leafnode config block or for specific remotes in the configuration, allowing it to be increased above the default 1 second for high-latency links (#8427)

Fixed

General

  • Fixed a deadlock that could occur in the logger when a close error occurs (#8430)

JetStream

  • Fix a bug that could result in potential data loss when handling idempotent stream creates when an offline node catches up from a metalayer snapshot, caused by an incorrect update to the create time in the stream assignment (#8449)

Complete Changes

nats-io/nats-server@v2.14.4...v2.14.5

Release v2.14.4

Changelog

Refer to the 2.14 Upgrade Guide for backwards compatibility notes with 2.12.x. Please note that the 2.13.x version was skipped.

Go Version

Dependencies

  • github.com/klauspost/compress v1.19.0 (#8385)
  • golang.org/x/crypto v0.54.0 (#8385)
  • golang.org/x/sys v0.47.0 (#8385)
  • github.com/antithesishq/antithesis-sdk-go v0.7.2-default-no-op (#8385)

... (truncated)

Commits
  • d3bc045 Release v2.14.5
  • 16bcbd9 Update dependencies
  • ed1644a Cherry-picks for 2.14.5 (#8458)
  • 618e6c9 [FIXED] Route missing after reconnect due to gossip URL mismatch
  • 28c83a9 Cherry-picks for 2.14.5-RC.1 (#8450)
  • 47fb6c3 [FIXED] Idempotent stream create uses same created timestamp
  • 165bce1 Make leafnode tcp dialtimeout configurable
  • 62b409b [FIXED] SetLoggerV2 deadlock when prev logger errors on close
  • bbd6dc5 Release v2.14.4
  • 7d26d07 Update to Go 1.26.5/1.25.12
  • Additional commits viewable in compare view

Updates github.com/nats-io/nats.go from 1.52.0 to 1.53.1

Release notes

Sourced from github.com/nats-io/nats.go's releases.

Release v1.53.1

Changelog

This is a patch release containing no functional changes.

FIXED

  • Version const and the README install line, which were not updated for v1.53.0 (#2118)

Complete Changes

nats-io/nats.go@v1.53.0...v1.53.1

Release v1.53.0

Changelog

ADDED

  • JetStream:
    • WithPublishAsyncAckHandler option for JetStream async publish. Thanks @​occamist for the contribution (#2109)
    • AckFlowControlPolicy to legacy API (#2091)
  • Micro:

FIXED

  • Core NATS:
  • JetStream:
    • Data race in resetOrderedConsumer when resets overlap (#2111)
    • Avoid panic in PullSubscribe consumer create path. Thanks @​wyf027 for the contribution (#2088)
    • Honor per-request JSOpt API prefix across JetStream APIs. Thanks @​wyf027 for the contribution (#2087)
    • Add nil checks for empty JetStream API responses. Thanks @​colecschmidt for the contribution (#2073)
  • KeyValue:
    • Recognize error code 10164 for replicated KV CAS conflicts (#2098)
    • Reject keys with consecutive dots in keyValid and searchKeyValid. Thanks @​c-tonneslan for the contribution (#2076)
  • Micro:

IMPROVED

  • Performance enhancement when publishing core NATS messages with headers. Thanks @​jonchammer for the contribution (#2083)
  • Migrate tests to ntf (#2082)
  • Add docs.nats.io examples to main (#2106)
  • Improve readme wording for JetStream consumers. Thanks @​trevorah for the contribution (#2104)

Complete Changes

nats-io/nats.go@v1.52.0...v1.53.0

Commits
  • db1375f Release v1.53.1 (#2118)
  • ae0af2c [IMPROVED] Migrate tests to ntf (#2082)
  • 0c5d8d7 [ADDED] WithPublishAsyncAckHandler option for JetStream async publish (#2109)
  • 15d96ca [FIXED] Data race in resetOrderedConsumer when resets overlap (#2111)
  • f66c8e7 [FIXED] Recognize error code 10164 for replicated KV CAS conflicts (#2097) (#...
  • 9d92e85 iter: don't yield a phantom (nil, nil) after MsgsTimeout's ErrTimeout (#2093)
  • c68c4de [FIXED] micro: endpoint subject prefix over-match (#2105)
  • e663e67 Improve example wording (#2104)
  • c1a0716 Add docs.nats.io examples to main (#2106)
  • 77e280d [FIXED] MsgsTimeout iterator yields spurious (nil, nil) after a timeout (#2099)
  • Additional commits viewable in compare view

Updates golang.org/x/crypto from 0.52.0 to 0.55.0

Commits
  • f44d03d go.mod: update golang.org/x dependencies
  • 5ed4944 crypto/internal/poly1305: provide optimised assembly for riscv64
  • b07833c ssh: return window credit for discarded extended data
  • d701c51 acme: fix nil pointer dereference in pebble test error reporting
  • 999d053 ssh: fix parsing of GSSAPI payloads offering multiple mechanisms
  • 90f76b8 ssh: reject certificate signature keys before recursing
  • b53964a ssh: permit empty but non-nil HostKeyAlgorithms, KeyExchanges, Ciphers, MACs
  • 626e40f ssh: drain stderr on forwarded TCP and Unix channels
  • 31914c6 x509roots/fallback: update bundle
  • f2135b8 all: clean up minor issues found by staticcheck
  • Additional commits viewable in compare view

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the all-deps group with 4 updates in the / directory: [github.com/Kairum-Labs/should](https://github.com/Kairum-Labs/should), [github.com/caddyserver/certmagic](https://github.com/caddyserver/certmagic), [github.com/nats-io/nats-server/v2](https://github.com/nats-io/nats-server) and [github.com/nats-io/nats.go](https://github.com/nats-io/nats.go).


Updates `github.com/Kairum-Labs/should` from 0.2.3 to 0.2.4
- [Release notes](https://github.com/Kairum-Labs/should/releases)
- [Changelog](https://github.com/Kairum-Labs/should/blob/main/CHANGELOG.md)
- [Commits](Kairum-Labs/should@v0.2.3...v0.2.4)

Updates `github.com/caddyserver/certmagic` from 0.25.3 to 0.25.4
- [Release notes](https://github.com/caddyserver/certmagic/releases)
- [Commits](caddyserver/certmagic@v0.25.3...v0.25.4)

Updates `github.com/nats-io/nats-server/v2` from 2.14.2 to 2.14.5
- [Release notes](https://github.com/nats-io/nats-server/releases)
- [Changelog](https://github.com/nats-io/nats-server/blob/main/RELEASES.md)
- [Commits](nats-io/nats-server@v2.14.2...v2.14.5)

Updates `github.com/nats-io/nats.go` from 1.52.0 to 1.53.1
- [Release notes](https://github.com/nats-io/nats.go/releases)
- [Commits](nats-io/nats.go@v1.52.0...v1.53.1)

Updates `golang.org/x/crypto` from 0.52.0 to 0.55.0
- [Commits](golang/crypto@v0.52.0...v0.55.0)

---
updated-dependencies:
- dependency-name: github.com/Kairum-Labs/should
  dependency-version: 0.2.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: github.com/caddyserver/certmagic
  dependency-version: 0.25.4
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: github.com/nats-io/nats-server/v2
  dependency-version: 2.14.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all-deps
- dependency-name: github.com/nats-io/nats.go
  dependency-version: 1.53.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-deps
- dependency-name: golang.org/x/crypto
  dependency-version: 0.55.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Aug 17, 2026
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants