dev: bump the safe group across 1 directory with 21 updates
Type: Pull Request
State: Open
Association: Contributor
Comments: 1
(11 months ago)
(11 months ago)
dependencies go
Bumps the safe group with 16 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.2 |
| github.com/aws/aws-sdk-go-v2/service/s3 | 1.78.2 |
1.87.1 |
| github.com/emersion/go-smtp | 0.22.0 |
0.24.0 |
| github.com/getsentry/sentry-go | 0.34.1 |
0.35.1 |
| github.com/grpc-ecosystem/grpc-gateway/v2 | 2.27.1 |
2.27.2 |
| github.com/jarcoal/httpmock | 1.4.0 |
1.4.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/throttled/throttled/v2 | 2.13.0 |
2.15.0 |
| 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 |
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.2
Commits
ba4ee4dRelease 2025-08-2140e3d87Regenerated Clientsb2be019Update partitions filedece4e7Update endpoints model294af19Update API model0df860achangelogdf2bca2feature(s3/manager): add option to control default checksums (#3151)315de9cRelease 2025-08-201a9d79dRegenerated Clients7959412Update endpoints model- Additional commits viewable in compare view
Updates github.com/aws/aws-sdk-go-v2/service/s3 from 1.78.2 to 1.87.1
Commits
ba4ee4dRelease 2025-08-2140e3d87Regenerated Clientsb2be019Update partitions filedece4e7Update endpoints model294af19Update API model0df860achangelogdf2bca2feature(s3/manager): add option to control default checksums (#3151)315de9cRelease 2025-08-201a9d79dRegenerated Clients7959412Update endpoints model- 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/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/throttled/throttled/v2 from 2.13.0 to 2.15.0
Release notes
Sourced from github.com/throttled/throttled/v2's releases.
v2.15.0
- #108 Return
RetryAfterwhen peekingv2.14.0
- #110 Setup minimum bound to Go 1.18
Changelog
Sourced from github.com/throttled/throttled/v2's changelog.
2.15.0 - 2025-08-23
- #108 Return
RetryAfterwhen peeking2.14.0 - 2025-08-22
- #110 Setup minimum bound to Go 1.18
Commits
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 Lis...Description has been truncated
Pull Request Statistics
0
0
+0
-0
Package Dependencies
go
1.78.2 → 1.87.1
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
github.com/aws/aws-sdk-go-v2/config
go
1.29.12 → 1.31.2
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
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: | 6560883 |
| UUID: | 3356221602 |
| Node ID: | PR_kwDOCdvj-c6lcTP9 |
| Host: | GitHub |
| Repository: | TheThingsNetwork/lorawan-stack |