dev: bump the safe group across 1 directory with 31 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 0
(11 months ago)
(11 months ago)
dependencies go
Bumps the safe group with 19 updates in the / directory:
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.6
Commits
640b808Release 2025-08-29657a6e8Regenerated Clients34a91bbUpdate partitions file09f5a9cUpdate endpoints modelfff96caUpdate API modeld46f566deprecate service/sms (#3176)de16d4dRelease 2025-08-28d6b83a8Regenerated Clientsb0f9cb7Update API model8225491Release 2025-08-27- Additional commits viewable in compare view
Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.78.2 to 1.87.3
Commits
640b808Release 2025-08-29657a6e8Regenerated Clients34a91bbUpdate partitions file09f5a9cUpdate endpoints modelfff96caUpdate API modeld46f566deprecate service/sms (#3176)de16d4dRelease 2025-08-28d6b83a8Regenerated Clientsb0f9cb7Update API model8225491Release 2025-08-27- 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/grpc-ecosystem/grpc-gateway/v2 from 2.27.1 to 2.27.2
Release notes
Sourced from github.com/grpc-ecosystem/grpc-gateway/v2's releases.
v2.27.2
What's Changed
- Fix nested schema definition for body parameter (#3058) by
@ilyongcho-molocoin grpc-ecosystem/grpc-gateway#5827- Replace gopkg.in/yaml.v3 with go.yaml.in/yaml/v3 by
@MB175in grpc-ecosystem/grpc-gateway#5857New Contributors
@ilyongcho-molocomade their first contribution in grpc-ecosystem/grpc-gateway#5827@MB175made their first contribution in grpc-ecosystem/grpc-gateway#5857Full Changelog: https://github.com/grpc-ecosystem/grpc-gateway/compare/v2.27.1...v2.27.2
Commits
91958dfchore(deps): update dependency rules_shell to v0.6.0 (#5862)74cf2e0Replace gopkg.in/yaml.v3 with go.yaml.in/yaml/v3 (#5857)2fba191chore(deps): update googleapis digest to 3b2a2ae (#5860)ed12336fix(deps): update module google.golang.org/grpc to v1.75.0 (#5859)c2a8616chore(deps): update googleapis digest to 2032c33 (#5858)77e504fFix nested schema definition for body parameter (#3058) (#5827)7df4168fix(deps): update google.golang.org/genproto/googleapis/rpc digest to 3122310...6d1d1fcfix(deps): update google.golang.org/genproto/googleapis/api digest to 3122310...ec3d9b2chore(deps): update googleapis digest to d869249 (#5852)8499438chore(deps): update googleapis digest to 6429996 (#5851)- Additional commits viewable in compare view
Updates github.com/jarcoal/httpmock from 1.4.0 to 1.4.1
Release notes
Sourced from github.com/jarcoal/httpmock's releases.
v1.4.1
What's Changed
- test: also test with go v1.25 and use golangci-lint v2.4.0 by
@maxatomein jarcoal/httpmock#164- Avoid data race when closing body by
@DavyJohnesin jarcoal/httpmock#165New Contributors
@DavyJohnesmade his first contribution in jarcoal/httpmock#165Full Changelog: https://github.com/jarcoal/httpmock/compare/v1.4.0...v1.4.1
Commits
314d58afix: protect all body-related methods with mutexte482896fix: avoid data race when closing bodyc977145test: also test with go v1.25 and use golangci-lint v2.4.0- See full diff 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/cobra from 1.9.1 to 1.10.1
Release notes
Sourced from github.com/spf13/cobra's releases.
v1.10.1
🐛 Fix
- chore: upgrade pflags v1.0.9 by
@jpmcbin spf13/cobra#2305v1.0.9 of pflags brought back
ParseErrorsWhitelistand marked it as deprecatedFull Changelog: https://github.com/spf13/cobra/compare/v1.10.0...v1.10.1
v1.10.0
What's Changed
🚨 Attention!
- Bump pflag to 1.0.8 by
@tomasaschanin spf13/cobra#2303This version of
pflagcarried a breaking change: it renamedParseErrorsWhitelisttoParseErrorsAllowlistwhich can break builds if bothpflagandcobraare dependencies in your project.
- If you use both
pflag andcobra, upgradepflagto 1.0.8 andcobrato1.10.0`- or use the newer, fixed version of
pflagv1.0.9 which keeps the deprecatedParseErrorsWhitelistMore details can be found here: spf13/cobra#2303
✨ Features
- Flow context to command in SetHelpFunc by
@Frasslein spf13/cobra#2241- The default ShellCompDirective can be customized for a command and its subcommands by
@albersin spf13/cobra#2238🐛 Fix
- Upgrade golangci-lint to v2, address findings by
@scopin spf13/cobra#2279🪠 Testing
- Test with Go 1.24 by
@harryzcyin spf13/cobra#2236- chore: Rm GitHub Action PR size labeler by
@jpmcbin spf13/cobra#2256📝 Docs
- Remove traling curlybrace by
@yedayakin spf13/cobra#2237- Update command.go by
@styeein spf13/cobra#2248- feat: Add security policy by
@jpmcbin spf13/cobra#2253- Update Readme (Warp) by
@ericdachenin spf13/cobra#2267- Add Periscope to the list of projects using Cobra by
@anishathalyein spf13/cobra#2299New Contributors
@harryzcymade their first contribution in spf13/cobra#2236@yedayakmade their first contribution in spf13/cobra#2237@Frasslemade their first contribution in spf13/cobra#2241
... (truncated)
Commits
7da941cchore: Bump pflag to v1.0.9 (#2305)51d6751Bump pflag to 1.0.8 (#2303)3f3b818Update README.md with new logodcaf42eAdd Periscope to the list of projects using Cobra (#2299)6dec1aeThe default ShellCompDirective can be customized for a command and its subcom...c8289c1chore(golangci-lint): add some exclusion presets4af7b64refactor: apply golangci-lint autofixes, work around false positives75790e4chore(golangci-lint): upgrade to v2db3ddb5Adding sponsorship to README.md67171d6putting sponsorship below header- Additional commits viewable in compare view
Updates github.com/spf13/pflag from 1.0.6 to 1.0.9
Release notes
Sourced from github.com/spf13/pflag's releases.
v1.0.9
What's Changed
- fix: Restore ParseErrorsWhitelist name for now by
@tomasaschanin spf13/pflag#446Full Changelog: https://github.com/spf13/pflag/compare/v1.0.8...v1.0.9
v1.0.8
:warning: Breaking Change
This version, while only a patch bump, includes a (very minor) breaking change: the
flag.ParseErrorsWhiteliststruct and correspondingFlagSet.parseErrorsWhitelistfield have been renamed toParseErrorsAllowlist.This should result in compilation errors in any code that uses these fields, which can be fixed by adjusting the names at call sites. There is no change in semantics or behavior of the struct or field referred to by these names. If your code compiles without errors after bumping to/past v1.0.8, you are not affected by this change.
The breaking change was reverted in v1.0.9, by means of re-introducing the old names with deprecation warnings. The plan is still to remove them in a future release, so if your code does depend on the old names, please change them to use the new names at your earliest convenience.
What's Changed
- Remove Redundant "Unknown-Flag" Error by
@vaguecoderin spf13/pflag#364- Switching from whitelist to Allowlist terminology by
@dubriein spf13/pflag#261- Omit zero time.Time default from usage line by
@mologiein spf13/pflag#438- implement CopyToGoFlagSet by
@pohlyin spf13/pflag#330- flag: Emulate stdlib behavior and do not print ErrHelp by
@tmcin spf13/pflag#407- Print Default Values of String-to-String in Sorted Order by
@vaguecoderin spf13/pflag#365- fix: Don't print ErrHelp in ParseAll by
@tomasaschanin spf13/pflag#443- Reset args on re-parse even if empty by
@tomasaschanin spf13/pflag#444New Contributors
@vaguecodermade their first contribution in spf13/pflag#364@dubriemade their first contribution in spf13/pflag#261@mologiemade their first contribution in spf13/pflag#438@pohlymade their first contribution in spf13/pflag#330@tmcmade their first contribution in spf13/pflag#407@tomasaschanmade their first contribution in spf13/pflag#443Full Changelog: https://github.com/spf13/pflag/compare/v1.0.7...v1.0.8
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
... (truncated)
Commits
1043857Merge pull request #446 from spf13/fix-backwards-compat7412009fix: Restore ParseErrorsWhitelist name for nowb9c16faMerge pull request #444 from spf13/reset-args-even-if-empty40abc49Merge pull request #443 from spf13/silence-errhelp1bf832cUse errors.Is instead of equality checkd25dd24Reset args on re-parse even if empty094909dMerge pull request #365 from vaguecoder/str2str-sortedccb49e5Print Default Values of String-to-String in Sorted Orderb55ffb6fix: Don't print ErrHelp in ParseAll7c651d1Merge pull request #407 from tmc/fix-errhelp- Additional commits viewable in compare view
Updates github.com/throttled/throttled/v2 from 2.13.0 to 2.15.0
Release notes
Sourced from github.com/throttled/throttled/v2's releases.Description has been truncated
Pull Request Statistics
1
2
+162
-183
Package Dependencies
go
1.78.2 → 1.87.3
Minor
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
go
0.62.0 → 0.63.0
Minor
go
1.37.0 → 1.38.0
Minor
go
0.62.0 → 0.63.0
Minor
github.com/aws/aws-sdk-go-v2/config
go
1.29.12 → 1.31.6
Minor
github.com/getsentry/sentry-go
go
0.34.1 → 0.35.1
Minor
go
2.27.1 → 2.27.2
Patch
github.com/nats-io/nats-server/v2
go
2.11.4 → 2.11.8
Patch
go
0.62.0 → 0.63.0
Minor
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
github.com/throttled/throttled/v2
go
2.13.0 → 2.15.0
Minor
Technical Details
| ID: | 6689261 |
| UUID: | 2794380302 |
| Node ID: | PR_kwDOCdvj-c6mjtwO |
| Host: | GitHub |
| Repository: | TheThingsNetwork/lorawan-stack |
| Merge State: | Unknown |