dev: bump the safe group across 1 directory with 16 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 1
(10 months ago)
(10 months ago)
dependencies go
Bumps the safe group with 14 updates in the / directory:
| Package | From | To |
|---|---|---|
| github.com/aws/aws-sdk-go | 1.55.7 |
1.55.8 |
| github.com/aws/aws-sdk-go-v2/config | 1.29.12 |
1.31.0 |
| github.com/aws/aws-sdk-go-v2/service/s3 | 1.78.2 |
1.87.0 |
| github.com/emersion/go-smtp | 0.22.0 |
0.24.0 |
| github.com/getsentry/sentry-go | 0.34.1 |
0.35.1 |
| github.com/nats-io/nats-server/v2 | 2.11.4 |
2.11.8 |
| github.com/prometheus/client_golang | 1.22.0 |
1.23.0 |
| github.com/redis/go-redis/v9 | 9.11.0 |
9.12.1 |
| github.com/spf13/pflag | 1.0.6 |
1.0.7 |
| github.com/uptrace/bun | 1.2.14 |
1.2.15 |
| github.com/uptrace/bun/dialect/pgdialect | 1.2.14 |
1.2.15 |
| github.com/uptrace/bun/driver/pgdriver | 1.2.14 |
1.2.15 |
| golang.org/x/net | 0.42.0 |
0.43.0 |
| google.golang.org/protobuf | 1.36.6 |
1.36.7 |
Updates github.com/aws/aws-sdk-go from 1.55.7 to 1.55.8
Release notes
Sourced from github.com/aws/aws-sdk-go's releases.
Release v1.55.8 (2025-07-31)
SDK Features
- Mark the module and all packages as deprecated.
- This SDK has entered end-of-support.
Commits
Updates github.com/aws/aws-sdk-go-v2/config from 1.29.12 to 1.31.0
Commits
2f44586Release 2024-09-2022d0876Regenerated Clients5454ab9Update API model06150d9add tracing and metrics support (#2798)18f7b40Release 2024-09-19e91c9c4Regenerated Clients6df0a09Update API model98ae688Release 2024-09-18222928cRegenerated Clients887c4deUpdate API model- Additional commits viewable in compare view
Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.78.2 to 1.87.0
Commits
0ab2d66Release 2025-08-11ae81008Regenerated Clients6cf56c1Update endpoints model5e25292Update API model14e9fb7upgrade to smithy v1.61.0fcdf6abregen2230299fix changelog76aa8d7feat: add support for per service options to Config (#3145)8afe327Release 2025-08-084d6e55dRegenerated Clients- Additional commits viewable in compare view
Updates github.com/emersion/go-smtp from 0.22.0 to 0.24.0
Commits
ab24fe7Remove superfluous validateLine() calls in sendMail()6944e33Implement MT-PRIORITY (RFC 6710)54dd31dImplement DELIVERBY (RFC 2852)- See full diff in compare view
Updates github.com/getsentry/sentry-go from 0.34.1 to 0.35.1
Release notes
Sourced from github.com/getsentry/sentry-go's releases.
0.35.1
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.35.1.
Bug Fixes
- Fix race conditions when accessing the scope during logging operations (#1050)
- Fix nil pointer dereference with malformed URLs when tracing is enabled in
fasthttpandfiberintegrations (#1055)Misc
- Bump
github.com/gofiber/fiber/v2from 2.52.5 to 2.52.9 in/fiber(#1067)0.35.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.35.0.
Breaking Changes
- Changes to the logging API (#1046)
The logging API now supports a fluent interface for structured logging with attributes:
// usage before logger := sentry.NewLogger(ctx) // attributes weren't being set permanently logger.SetAttributes( attribute.String("version", "1.0.0"), ) logger.Infof(ctx, "Message with parameters %d and %d", 1, 2)// new behavior
ctx := context.Background()
logger := sentry.NewLogger(ctx)// Set permanent attributes on the logger
logger.SetAttributes(
attribute.String("version", "1.0.0"),
)// Chain attributes on individual log entries
logger.Info().
String("key.string", "value").
Int("key.int", 42).
Bool("key.bool", true).
Emitf("Message with parameters %d and %d", 1, 2)
Bug Fixes
- Correctly serialize
FailureIssueThresholdandRecoveryThresholdonto check-in payloads (#1060)
Changelog
Sourced from github.com/getsentry/sentry-go's changelog.
0.35.1
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.35.1.
Bug Fixes
- Fix race conditions when accessing the scope during logging operations (#1050)
- Fix nil pointer dereference with malformed URLs when tracing is enabled in
fasthttpandfiberintegrations (#1055)Misc
- Bump
github.com/gofiber/fiber/v2from 2.52.5 to 2.52.9 in/fiber(#1067)0.35.0
The Sentry SDK team is happy to announce the immediate availability of Sentry Go SDK v0.35.0.
Breaking Changes
- Changes to the logging API (#1046)
The logging API now supports a fluent interface for structured logging with attributes:
// usage before logger := sentry.NewLogger(ctx) // attributes weren't being set permanently logger.SetAttributes( attribute.String("version", "1.0.0"), ) logger.Infof(ctx, "Message with parameters %d and %d", 1, 2)// new behavior
ctx := context.Background()
logger := sentry.NewLogger(ctx)// Set permanent attributes on the logger
logger.SetAttributes(
attribute.String("version", "1.0.0"),
)// Chain attributes on individual log entries
logger.Info().
String("key.string", "value").
Int("key.int", 42).
Bool("key.bool", true).
Emitf("Message with parameters %d and %d", 1, 2)
Bug Fixes
... (truncated)
Commits
efaa5dbrelease: 0.35.1b3adb47Prepare 0.35.1 (#1069)a100bf5Fix race conditions on log when accessing scope (#1050)17421c4Fix nil pointer dereference with malformed URLs when tracing is enabled (#1055)55af278build(deps): bump github.com/gofiber/fiber/v2 in /fiber (#1067)c846e7cMerge branch 'release/0.35.0'a3e3405release: 0.35.031fcbbdPrepare 0.35.0 (#1065)2a2b640Add .cursor rules (#1053)274de7bImprove logging API (#1046)- Additional commits viewable in compare view
Updates github.com/nats-io/nats-server/v2 from 2.11.4 to 2.11.8
Release notes
Sourced from github.com/nats-io/nats-server/v2's releases.
Release v2.11.8
Changelog
Refer to the 2.11 Upgrade Guide for backwards compatibility notes with 2.10.x.
Go Version
- 1.24.6 (#7156)
Dependencies
Added
General
Fixed
General
- String-to-integer parsing has been improved in various places to prevent overflows/underflows (#7145)
JetStream
- Fixed an incorrectly formatted log line when failing to load a block when recovering TTLs (#7150)
- Raft will now step down if a higher term is detected during a catchup (#7151)
- Raft will now more reliably ignore entries from previous/cancelled catchups that arrive late (#7151)
- Fix a potential panic that could happen by a division by zero when applying Raft entries (#7151)
- The healthcheck endpoint should no longer report transient errors for newly created or recently deleted consumers (#7154)
- Fix a potential panic when trying to truncate a filestore block that doesn't exist (#7162)
- Clean up stale
index.dbfile when truncating so that it is not inconsistent if the truncate operation is interrupted (#7162)- Fix an off-by-one problem when Raft truncates to the correct index at startup (#7162)
- Ephemeral consumers will always select an online server when created on a replicated stream (#7165)
Tests
- Tests have been improved (#7140)
Complete Changes
https://github.com/nats-io/nats-server/compare/v2.11.7...v2.11.8
Release v2.11.8-RC.1
Changelog
Refer to the 2.11 Upgrade Guide for backwards compatibility notes with 2.10.x.
... (truncated)
Commits
ec0d7e3Release v2.11.8819047dRelease v2.11.8-RC.1031e636Cherry-picks for 2.11.8-RC.1 (#7168)bfb410e[FIXED] Ephemeral consumers always selects an online server50876ed[FIXED] Truncate removes index.db firstf706551[FIXED] NRG: Truncate to previous correct entrydf30f46[FIXED] Truncate to removed block39a511aUpdate dependenciesdff3a6dUpdate golangci-lint5f61aa4illumos build fix- Additional commits viewable in compare view
Updates github.com/nats-io/nats.go from 1.43.0 to 1.44.0
Release notes
Sourced from github.com/nats-io/nats.go's releases.
Release v1.44.0
Changelog
Overview
This PR adds a
PushConsumerimplementation tojetstream, allowing easier migration to new API while maintaining usage of push consumers. For now it only supports the callback-basedConsume(), more consuming options will be added in future releases.ADDED
- Core NATS:
UserCredentialBytes()Connoption (#1877)- JetStream:
PushConsumerimplementation injetstreampackage- Expose
ClientTraceinJetStreamOptions(#1886)- Service API:
- Expose
WithEndpointPendingLimitsoption (#1899)- Legacy KeyValue:
Error()method toKeyListerandKeyWatcherinterfaces (#1889)FIXED
- Core NATS:
- Fix timeoutWriter not recovering after first error (#1896)
- JetStream:
Consumer.Next()hangs after connection is closed (#1883)- Fixed stream info request for strict mode (#1887)
- Ordered consumer not closing on connection close (#1885)
- Return a more appropriate error when Subject Transform is not supported (#1416)
- Fix subject transform comparison. Thanks
@erikmanssonfor the contribution (#1907)- Legacy JetStream:
- Use timeout from
JetStreamContextif no deadline is set on ctx (#1909)- KeyValue:
Keys()andListKeys()returning duplicates (#1884)- Fix subject prefix for the Create/Update operation in KV store. Thanks
@SalvaChiLlofor the contribution (#1903)CHANGED
- Change
DefaultSubPendingMsgsLimit(#998)Complete Changes
https://github.com/nats-io/nats.go/compare/v1.43.0...v1.44.0
Commits
7a260b8Release v1.44.0 (#1910)dfcb02d[FIXED] Use mirror-aware prefix when updating KV key (#1903)0bba2a9[ADDED] PushConsumer implementation in jetstream package (#1785)627a9f6[FIXED] KeyValue Keys() and ListKeys() returning duplicates (#1884)9743171Merge pull request #1909 from nats-io/fix-watcher-timeout3bd15a8[FIXED] Use timeout from JetStreamContext if no deadline is set on ctx0fc96b1[FIXED] Fix subject transform comparison (#1907)ea3ef92[IMPROVED] Change DefaultSubPendingMsgsLimit comment to reflect actual value ...f038fb4[FIXED] Return a more appropriate error when subject transforms are not suppo...ad6e34e[FIXED] Ordered consumer not closing on connection close (#1885)- Additional commits viewable in compare view
Updates github.com/prometheus/client_golang from 1.22.0 to 1.23.0
Release notes
Sourced from github.com/prometheus/client_golang's releases.
v1.23.0 - 2025-07-30
- [CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. #1812
- [FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix #1766
- [FEATURE] Add exemplars for native histograms #1686
- [ENHANCEMENT] exp/api: Bubble up status code from writeResponse #1823
- [ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 #1833
- [BUGFIX] exp/api: client prompt return on context cancellation #1729
... (truncated)
Changelog
Sourced from github.com/prometheus/client_golang's changelog.
1.23.0 / 2025-07-30
- [CHANGE] Minimum required Go version is now 1.23, only the two latest Go versions are supported from now on. #1812
- [FEATURE] Add WrapCollectorWith and WrapCollectorWithPrefix #1766
- [FEATURE] Add exemplars for native histograms #1686
- [ENHANCEMENT] exp/api: Bubble up status code from writeResponse #1823
- [ENHANCEMENT] collector/go: Update runtime metrics for Go v1.23 and v1.24 #1833
- [BUGFIX] exp/api: client prompt return on context cancellation #1729
Commits
e4b2208Cut v1.23.0 (#1848)d9492afcut v1.23.0-rc.1 (#1842)aeae8a0Cut v1.23.0-rc.0 (#1837)b157309Update common Prometheus files (#1832)a704e28build(deps): bump the github-actions group with 3 updates (#1826)c774311Fix errNotImplemented reference (#1835)db4db7bUpdate runtime metrics for Go v1.23 and v1.24 (#1833)99d380eUpdate common Prometheus files (#1831)f3ef320Merge pull request #1828 from prometheus/dependabot/go_modules/exp/github.com...520c91abuild(deps): bump github.com/prometheus/common in /exp- Additional commits viewable in compare view
Updates github.com/redis/go-redis/v9 from 9.11.0 to 9.12.1
Release notes
Sourced from github.com/redis/go-redis/v9's releases.
9.12.1
🚀 Highlights
In the last version (9.12.0) the client introduced bigger write and read buffer sizes. The default value was 512KiB. However, users reported that this is too big for most use cases and can lead to high memory usage. In this version the default value is changed to 256KiB. The
README.mdwas updated to reflect the correct default value and include a note that the default value can be changed.🐛 Bug Fixes
- fix(options): Add buffer sizes to failover. Update README (#3468)
🧰 Maintenance
- fix(options): Add buffer sizes to failover. Update README (#3468)
- chore: update & fix otel example (#3466)
Contributors
We'd like to thank all the contributors who worked on this release!
9.12.0
🚀 Highlights
- This release includes support for Redis 8.2.
- Introduces an experimental Query Builders for
FTSearch,FTAggregateand other search commands.- Adds support for
EPSILONoption inFT.VSIM.- Includes bug fixes and improvements contributed by the community related to ring and redisotel.
Changes
- Improve stale issue workflow (#3458)
- chore(ci): Add 8.2 rc2 pre build for CI (#3459)
- Added new stream commands (#3450)
- feat: Add "skip_verify" to Sentinel (#3428)
- fix:
errors.Joinrequires Go 1.20 or later (#3442)- DOC-4344 document quickstart examples (#3426)
- feat(bitop): add support for the new bitop operations (#3409)
🚀 New Features
- feat: recover addIdleConn may occur panic (#2445)
- feat(ring): specify custom health check func via HeartbeatFn option (#2940)
- Add Query Builder for RediSearch commands (#3436)
- add configurable buffer sizes for Redis connections (#3453)
- Add VAMANA vector type to RediSearch (#3449)
- VSIM add
EPSILONoption (#3454)- Add closing support to otel metrics instrumentation (#3444)
🐛 Bug Fixes
... (truncated)
Changelog
Sourced from github.com/redis/go-redis/v9's changelog.
9.12.1 (2025-08-11)
🚀 Highlights
In the last version (9.12.0) the client introduced bigger write and read buffer sized. The default value we set was 512KiB. However, users reported that this is too big for most use cases and can lead to high memory usage. In this version the default value is changed to 256KiB. The
README.mdwas updated to reflect the correct default value and include a note that the default value can be changed.🐛 Bug Fixes
- fix(options): Add buffer sizes to failover. Update README (#3468)
🧰 Maintenance
- fix(options): Add buffer sizes to failover. Update README (#3468)
- chore: update & fix otel example (#3466)
Contributors
We'd like to thank all the contributors who worked on this release!
9.12.0 (2025-08-05)
🚀 Highlights
- This release includes support for Redis 8.2.
- Introduces an experimental Query Builders for
FTSearch,FTAggregateand other search commands.- Adds support for
EPSILONoption inFT.VSIM.- Includes bug fixes and improvements contributed by the community related to ring and redisotel.
Changes
- Improve stale issue workflow (#3458)
- chore(ci): Add 8.2 rc2 pre build for CI (#3459)
- Added new stream commands (#3450)
- feat: Add "skip_verify" to Sentinel (#3428)
- fix:
errors.Joinrequires Go 1.20 or later (#3442)- DOC-4344 document quickstart examples (#3426)
- feat(bitop): add support for the new bitop operations (#3409)
🚀 New Features
- feat: recover addIdleConn may occur panic (#2445)
- feat(ring): specify custom health check func via HeartbeatFn option (#2940)
- Add Query Builder for RediSearch commands (#3436)
- add configurable buffer sizes for Redis connections (#3453)
- Add VAMANA vector type to RediSearch (#3449)
- VSIM add
EPSILONoption (#3454)- Add closing support to otel metrics instrumentation (#3444)
🐛 Bug Fixes
... (truncated)
Commits
7b4a537chore(release): 9.12.1, failover client buffer size fixes (#3469)94cfffafix(options): Add buffer sizes to failover. Update README (#3468)2c29dedchore(otel): upgrade otel example to Uptrace v2 (#3466)b7838dcchore(release): 9.12.0 / redis 8.2 (#3464)6a48d3ffeat: recover addIdleConn may occur panic (#2445)4767d9dfix(redisotel): fix buggy append in reportPoolStats (#3122)7158a8dfeat(ring): specify custom health check func via HeartbeatFn option (#2940)8d15d03chore(github): merges into one job with two steps (#3463)375fa5dchore(doc): improve code readability (#3446)f006e94chore(release): 9.12.0-beta.1 (#3460)- Additional commits viewable in compare view
Updates github.com/spf13/pflag from 1.0.6 to 1.0.7
Release notes
Sourced from github.com/spf13/pflag's releases.
v1.0.7
What's Changed
- Fix defaultIsZeroValue check for generic Value types by
@MidnightRocketin spf13/pflag#422- feat: Use structs for errors returned by pflag. by
@eth-pin spf13/pflag#425- Fix typos by
@co63ocin spf13/pflag#428- fix #423 : Add helper function and some documentation to parse shorthand go test flags. by
@valdarin spf13/pflag#424- add support equivalent to golang flag.TextVar(), also fixes the test failure as described in #368 by
@hujun-openin spf13/pflag#418- add support for Func() and BoolFunc() #426 by
@LeGECin spf13/pflag#429- fix: correct argument length check in FlagSet.Parse by
@ShawnJeffersonWangin spf13/pflag#409- fix usage message for func flags, fix arguments order by
@LeGECin spf13/pflag#431- Add support for time.Time flags by
@max-frankin spf13/pflag#348New Contributors
@MidnightRocketmade their first contribution in spf13/pflag#422@eth-pmade their first contribution in spf13/pflag#425@co63ocmade their first contribution in spf13/pflag#428@valdarmade their first contribution in spf13/pflag#424@hujun-openmade their first contribution in spf13/pflag#418@LeGECmade their first contribution in spf13/pflag#429@ShawnJeffersonWangmade their first contribution in spf13/pflag#409@max-frankmade their first contribution in spf13/pflag#348Full Changelog: https://github.com/spf13/pflag/compare/v1.0.6...v1.0.7
Commits
f9cbdd9Merge pull request #348 from max-frank/add-time-flag-supporte3be2ebReduce duplication by forwarding to sibling functions7cc25e3Don't exportTimeValue(yet)d15848dRemove unnecessary time test stderr dev null redirectc5ce22eUse time.Time for expectations in time flag tests1992c5aAdd support for time.Time flags1c62fb2Merge pull request #431 from LeGEC/430-fix-usage-message-for-func-flags1a4b5b2fix discrepancy in order of arguments for Func() and BoolFunc() #4334730aa0fix help message for Func and BoolFunc flags #430f4c97c2minor: fix typos in comments- Additional commits viewable in compare view
Updates github.com/uptrace/bun from 1.2.14 to 1.2.15
Release notes
Sourced from github.com/uptrace/bun's releases.
v1.2.15
Please refer to CHANGELOG.md for details
Changelog
Sourced from github.com/uptrace/bun's changelog.
1.2.15 (2025-07-17)
Bug Fixes
- pgdriver: add mandatory space before negative numbers to resolve CVE-2024-34359 (8067a8f)
Features
Commits
29e836eMerge pull request #1240 from uptrace/release/v1.2.155c5af41chore: release v1.2.15 (release.sh)9464a84Merge pull request #1230 from kissejau/master16b9ca4Merge pull request #1225 from thunderkatz/mastercb17679feat(db): rename CleanQueryHook to ResetQueryHooks8067a8ffix(pgdriver): add mandatory space before negative numbers to resolve CVE-202...225bab0Merge pull request #1236 from uptrace/feat-hook-support-cleana5f19a7feat(db): support clean query hooks7a28883Merge pull request #1217 from uptrace/feat-dialect-support-on-update-delete32d85aechore: rename Listener.Channel to Listener.CreateChannel- Additional commits viewable in compare view
Updates github.com/uptrace/bun/dialect/pgdialect from 1.2.14 to 1.2.15
Release notes
Sourced from github.com/uptrace/bun/dialect/pgdialect's releases.
v1.2.15
Please refer to CHANGELOG.md for details
Changelog
Sourced from github.com/uptrace/bun/dialect/pgdialect's changelog.
1.2.15 (2025-07-17)
Bug Fixes
- pgdriver: add mandatory space before negative numbers to resolve CVE-2024-34359 (8067a8f)
Features
Commits
29e836eMerge pull request #1240 from uptrace/release/v1.2.155c5af41chore: release v1.2.15 (release.sh)9464a84Merge pull request #1230 from kissejau/master16b9ca4Merge pull request #1225 from thunderkatz/mastercb17679feat(db): rename CleanQueryHook to ResetQueryHooks8067a8ffix(pgdriver): add mandatory space before negative numbers to resolve CVE-202...225bab0Merge pull request #1236 from uptrace/feat-hook-support-cleana5f19a7feat(db): support clean query hooks7a28883Merge pull request #1217 from uptrace/feat-dialect-support-on-update-delete32d85aechore: rename Listener.Channel to Listener.CreateChannel- Additional commits viewable in compare view
Updates github.com/uptrace/bun/driver/pgdriver from 1.2.14 to 1.2.15
Release notes
Sourced from github.com/uptrace/bun/driver/pgdriver's releases.
v1.2.15
Please refer to CHANGELOG.md for details
Changelog
Sourced from github.com/uptrace/bun/driver/pgdriver's changelog.
1.2.15 (2025-07-17)
Bug Fixes
- pgdriver: add mandatory space before negative numbers to resolve CVE-2024-34359 (8067a8f)
Features
Commits
29e836eMerge pull request #1240 from uptrace/release/v1.2.155c5af41chore: release v1.2.15 (release.sh)9464a84Merge pull request #1230 from kissejau/master16b9ca4Merge pull request #1225 from thunderkatz/mastercb17679feat(db): rename CleanQueryHook to ResetQueryHooks8067a8ffix(pgdriver): add mandatory space before negative numbers to resolve CVE-202...225bab0Merge pull request #1236 from uptrace/feat-hook-support-cleana5f19a7feat(db): support clean query hooks7a28883Merge pull request #1217 from uptrace/feat-dialect-support-on-update-delete32d85aechore: rename Listener.Channel to Listener.CreateChannel- Additional commits viewable in compare view
Updates golang.org/x/crypto from 0.40.0 to 0.41.0
Commits
ef5341bgo.mod: update golang.org/x dependenciesb999374acme: fix pebble subprocess output data racec247deax509roots/fallback: store bundle certs directly in DER1fda731acme: increase pebble test waitForServer attempts1b4c3d2x509roots/fallback: update bundleb903b53acme: capture pebble test subprocess stdout/stderr- See full diff in compare view
Updates golang.org/x/net from 0.42.0 to 0.43.0
Commits
e74bc31go.mod: update golang.org/x dependenciesaf6926ehttp2: remove references to defunct http2.golang.org test server- See full diff in compare view
Updates google.golang.org/protobuf from 1.36.6 to 1.36.7
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 rebasewill rebase this PR@dependabot recreatewill recreate this PR, overwriting any edits that have been made to it@dependabot mergewill merge this PR after your CI passes on it@dependabot squash and mergewill squash and merge this PR after your CI passes on it@dependabot cancel mergewill cancel a previously requested merge and block automerging@dependabot reopenwill reopen this PR if it is closed@dependabot closewill close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually@dependabot show <dependency name> ignore conditionswill show all of the ignore conditions of the specified dependency@dependabot ignore <dependency name> major versionwill 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 versionwill 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
Pull Request Statistics
0
0
+0
-0
Package Dependencies
go
1.78.2 → 1.87.0
Minor
google.golang.org/protobuf
go
1.36.6 → 1.36.7
Patch
github.com/prometheus/client_golang
go
1.22.0 → 1.23.0
Minor
github.com/redis/go-redis/v9
go
9.11.0 → 9.12.1
Minor
github.com/aws/aws-sdk-go-v2/config
go
1.29.12 → 1.31.0
Minor
github.com/getsentry/sentry-go
go
0.34.1 → 0.35.1
Minor
github.com/nats-io/nats-server/v2
go
2.11.4 → 2.11.8
Patch
github.com/emersion/go-smtp
go
0.22.0 → 0.24.0
Minor
go
1.2.14 → 1.2.15
Patch
go
1.2.14 → 1.2.15
Patch
Technical Details
| ID: | 5774361 |
| UUID: | 3333415320 |
| Node ID: | PR_kwDOCdvj-c6kP47N |
| Host: | GitHub |
| Repository: | TheThingsNetwork/lorawan-stack |