Skip to content

build(deps): bump the patch-and-minor group across 1 directory with 4 updates#4

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/backend/patch-and-minor-ef02d76761
Open

build(deps): bump the patch-and-minor group across 1 directory with 4 updates#4
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/go_modules/backend/patch-and-minor-ef02d76761

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 6, 2026

Copy link
Copy Markdown

Bumps the patch-and-minor group with 3 updates in the /backend directory: github.com/gogf/gf/contrib/drivers/pgsql/v2, github.com/larksuite/oapi-sdk-go/v3 and github.com/redis/go-redis/v9.

Updates github.com/gogf/gf/contrib/drivers/pgsql/v2 from 2.10.0 to 2.10.2

Release notes

Sourced from github.com/gogf/gf/contrib/drivers/pgsql/v2's releases.

GoFrame Release v2.10.2

What's Changed

Full Changelog: gogf/gf@v2.10.1...v2.10.2

GoFrame Release v2.10.1

What's Changed

... (truncated)

Commits
  • 9a91bd2 fix: v2.10.2 (#4772)
  • 72733e0 refactor(cmd/gf): improve code structure for readability and maintainability ...
  • d44e082 fix: update gf cli to v2.10.1 (#4770)
  • 078c1bc feat: new version v2.10.1 (#4769)
  • 94623a1 feat(cmd/gf): add gendao fileNameCase and ai coding stuffs (#4764)
  • cb7cfa5 fix: guard os.Args access for wasm which panics when building (#4762)
  • 1878202 test(contrib/drivers/mariadb): add layer 3 features and issue regression test...
  • bb71ccf fix(database/gdb): strip quote chars from schema in Model.TableFields (#4730)
  • f67b2dc fix(contrib/drivers/mysql): use unreachable port for nodeInvalid test config ...
  • 68b0221 test(contrib/drivers/mariadb): add infrastructure, core and model tests (#4719)
  • Additional commits viewable in compare view

Updates github.com/gogf/gf/v2 from 2.10.0 to 2.10.2

Release notes

Sourced from github.com/gogf/gf/v2's releases.

GoFrame Release v2.10.2

What's Changed

Full Changelog: gogf/gf@v2.10.1...v2.10.2

GoFrame Release v2.10.1

What's Changed

... (truncated)

Commits
  • 9a91bd2 fix: v2.10.2 (#4772)
  • 72733e0 refactor(cmd/gf): improve code structure for readability and maintainability ...
  • d44e082 fix: update gf cli to v2.10.1 (#4770)
  • 078c1bc feat: new version v2.10.1 (#4769)
  • 94623a1 feat(cmd/gf): add gendao fileNameCase and ai coding stuffs (#4764)
  • cb7cfa5 fix: guard os.Args access for wasm which panics when building (#4762)
  • 1878202 test(contrib/drivers/mariadb): add layer 3 features and issue regression test...
  • bb71ccf fix(database/gdb): strip quote chars from schema in Model.TableFields (#4730)
  • f67b2dc fix(contrib/drivers/mysql): use unreachable port for nodeInvalid test config ...
  • 68b0221 test(contrib/drivers/mariadb): add infrastructure, core and model tests (#4719)
  • Additional commits viewable in compare view

Updates github.com/larksuite/oapi-sdk-go/v3 from 3.7.5 to 3.9.5

Commits
  • 5f68db9 feat: opt cache
  • 86efb5c feat: GO Sample 修复
  • 9f28cca feat: SDK 更新
  • 0201f7b Merge pull request #212 from larksuite/codex/add-one-click-create-app-params
  • 71e5ddb feat: 一键创建应用增加参数
  • 1bd6dff feat: ws add custom header
  • c223754 Merge pull request #210 from larksuite/feat/sup_client_assertion_uat
  • 7a3818d Merge branch 'refs/heads/v3_main' into feat/sup_client_assertion_uat
  • b3ad815 feat: modify name
  • 964ee2f feat: add utils
  • Additional commits viewable in compare view

Updates github.com/redis/go-redis/v9 from 9.12.1 to 9.20.1

Release notes

Sourced from github.com/redis/go-redis/v9's releases.

9.20.1

This is a patch release containing bug fixes only. There are no new features or breaking changes; upgrading from 9.20.0 is a drop-in replacement.

🚀 Highlights

RESP3 pub/sub message loss fixed

PeekPushNotificationName previously inspected only the bytes already buffered by bufio, so when a push frame header straddled a buffer fill boundary it could return a truncated notification name (e.g. "messa" instead of "message"). The push processor then mis-routed the frame and ReadReply silently dropped it, causing intermittent RESP3 pub/sub message loss. The peek now grows its window (36 bytes → up to 4 KiB) and reads more from the connection until the header is complete, cleanly separating incomplete prefixes from corrupt frames (including overflow-safe bulk-length handling). Fixes #3839.

(#3842) by @​ndyakov

🐛 Bug Fixes

  • RESP3 push peeking: PeekPushNotificationName no longer returns a truncated notification name when a push frame header spans a buffer boundary, preventing silent RESP3 pub/sub message loss (fixes #3839) (#3842) by @​ndyakov
  • FT.HYBRID vector params: Vector data is now always sent via PARAMS with auto-generated param names (__vector_param_N, with collision avoidance) when VectorParamName is omitted, since Redis no longer accepts inline vector blobs; the FTHybridOptions.Params map is no longer mutated, so the same options struct can be reused across calls (#3844) by @​ndyakov
  • CLUSTER SHARDS forward compatibility: Unknown shard- and node-level attributes in the CLUSTER SHARDS reply are now skipped via DiscardNext() instead of erroring, so clients keep working when the server introduces new fields (#3843) by @​madolson
  • PubSub double reconnect: PubSub.releaseConn no longer reconnects twice when a connection is both unusable (or pending handoff) and reports a bad-connection error, avoiding a wasted connection establish-then-close cycle (#3833) by @​cxljs

👥 Contributors

We'd like to thank all the contributors who worked on this release!

@​cxljs, @​madolson, @​ndyakov


Full Changelog: redis/go-redis@v9.20.0...v9.20.1

9.20.0

🚀 Highlights

Redis 8.8 Support

This release adds support for Redis 8.8. The README's supported-versions list now includes Redis 8.8 alongside 8.0/8.2/8.4, and CI exercises the 8.8 client-libs-test image across the full suite (Makefile, build workflow, doctests, run-tests action, and docker-compose).

Coverage for the new commands that ship in the 8.x line, rounded out in this release:

  • AR* array data type (#3813) — new array data structure, exposed via the ArrayCmdable interface (see the experimental-features highlight below).
  • INCREX (#3816) — atomic increment with expiration in a single round-trip.
  • XNACK (#3790) — explicit negative-acknowledge of pending stream entries.
  • XAUTOCLAIM PEL deletes (#3798) — XAUTOCLAIM/XAUTOCLAIMJUSTID now return the list of deleted message IDs from the pending entries list.
  • TS.RANGE multiple aggregators (#3791) — TS.RANGE/TS.REVRANGE/TS.MRANGE/TS.MREVRANGE accept multiple aggregators in a single call.
  • Z(UNION|INTER|DIFF) COUNT aggregator (#3802) — COUNT reducer for sorted-set set operations.
  • JSON.SET FPHA (#3797) — new FPHA argument that specifies the floating-point type for homogeneous FP arrays.

CI image bump (#3814) by @​ofekshenawa. Command coverage contributions by @​cxljs, @​elena-kolevska, @​Khukharr, @​ndyakov, and @​ofekshenawa.

Stable RESP3 for RediSearch (UnstableResp3 deprecated)

... (truncated)

Changelog

Sourced from github.com/redis/go-redis/v9's changelog.

9.20.1 (2026-06-11)

This is a patch release containing bug fixes only. There are no new features or breaking changes; upgrading from 9.20.0 is a drop-in replacement.

🚀 Highlights

RESP3 pub/sub message loss fixed

PeekPushNotificationName previously inspected only the bytes already buffered by bufio, so when a push frame header straddled a buffer fill boundary it could return a truncated notification name (e.g. "messa" instead of "message"). The push processor then mis-routed the frame and ReadReply silently dropped it, causing intermittent RESP3 pub/sub message loss. The peek now grows its window (36 bytes → up to 4 KiB) and reads more from the connection until the header is complete, cleanly separating incomplete prefixes from corrupt frames (including overflow-safe bulk-length handling). Fixes #3839.

(#3842) by @​ndyakov

🐛 Bug Fixes

  • RESP3 push peeking: PeekPushNotificationName no longer returns a truncated notification name when a push frame header spans a buffer boundary, preventing silent RESP3 pub/sub message loss (fixes #3839) (#3842) by @​ndyakov
  • FT.HYBRID vector params: Vector data is now always sent via PARAMS with auto-generated param names (__vector_param_N, with collision avoidance) when VectorParamName is omitted, since Redis no longer accepts inline vector blobs; the FTHybridOptions.Params map is no longer mutated, so the same options struct can be reused across calls (#3844) by @​ndyakov
  • CLUSTER SHARDS forward compatibility: Unknown shard- and node-level attributes in the CLUSTER SHARDS reply are now skipped via DiscardNext() instead of erroring, so clients keep working when the server introduces new fields (#3843) by @​madolson
  • PubSub double reconnect: PubSub.releaseConn no longer reconnects twice when a connection is both unusable (or pending handoff) and reports a bad-connection error, avoiding a wasted connection establish-then-close cycle (#3833) by @​cxljs

👥 Contributors

We'd like to thank all the contributors who worked on this release!

@​cxljs, @​madolson, @​ndyakov


Full Changelog: redis/go-redis@v9.20.0...v9.20.1

9.20.0 (2026-05-28)

🚀 Highlights

Redis 8.8 Support

This release adds support for Redis 8.8. The README's supported-versions list now includes Redis 8.8 alongside 8.0/8.2/8.4, and CI exercises the 8.8-rc1 client-libs-test image across the full suite (Makefile, build workflow, doctests, run-tests action, and docker-compose).

Coverage for the new commands that ship in the 8.x line, rounded out in this release:

  • AR* array data type (#3813) — new array data structure, exposed via the ArrayCmdable interface (see the experimental-features highlight below).
  • INCREX (#3816) — atomic increment with expiration in a single round-trip.
  • XNACK (#3790) — explicit negative-acknowledge of pending stream entries.
  • XAUTOCLAIM PEL deletes (#3798) — XAUTOCLAIM/XAUTOCLAIMJUSTID now return the list of deleted message IDs from the pending entries list.
  • TS.RANGE multiple aggregators (#3791) — TS.RANGE/TS.REVRANGE/TS.MRANGE/TS.MREVRANGE accept multiple aggregators in a single call.
  • Z(UNION|INTER|DIFF) COUNT aggregator (#3802) — COUNT reducer for sorted-set set operations.
  • JSON.SET FPHA (#3797) — new FPHA argument that specifies the floating-point type for homogeneous FP arrays.

CI image bump (#3814) by @​ofekshenawa. Command coverage contributions by @​cxljs, @​elena-kolevska, @​Khukharr, @​ndyakov, and @​ofekshenawa.

Stable RESP3 for RediSearch (UnstableResp3 deprecated)

... (truncated)

Commits
  • a13416b chore(release): 9.20.1 (#3847)
  • 10dc44f fix(push): fix peeking when push name is truncated (#3842)
  • e1a2d68 fix(ft.hybrid): Always generate vector param names if they are not provided b...
  • a4b234f chore(deps): bump codecov/codecov-action from 6 to 7 (#3845)
  • 974e717 fix(command): ignore unknown fields in CLUSTER SHARDS response (#3843)
  • 65d6abd fix(pubsub): prevent double reconnect in releaseConn (#3833)
  • 7d05dd3 chore(release): v9.20.0 (#3832)
  • 9756882 fix(test): make waitForSentinelClusterStable robust to disconnected r… (#3830)
  • 875ce21 fix(sentinel): do not close sentinel when replica list is empty (#3795)
  • 8a027f2 chore(ci): add govulncheck workflow (#3779)
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Jun 6, 2026
@dependabot dependabot Bot changed the title build(deps): bump the patch-and-minor group in /backend with 4 updates build(deps): bump the patch-and-minor group across 1 directory with 4 updates Jun 8, 2026
@dependabot dependabot Bot force-pushed the dependabot/go_modules/backend/patch-and-minor-ef02d76761 branch from c6e8dda to 282afd1 Compare June 8, 2026 20:26
… updates

Bumps the patch-and-minor group with 3 updates in the /backend directory: [github.com/gogf/gf/contrib/drivers/pgsql/v2](https://github.com/gogf/gf), [github.com/larksuite/oapi-sdk-go/v3](https://github.com/larksuite/oapi-sdk-go) and [github.com/redis/go-redis/v9](https://github.com/redis/go-redis).


Updates `github.com/gogf/gf/contrib/drivers/pgsql/v2` from 2.10.0 to 2.10.2
- [Release notes](https://github.com/gogf/gf/releases)
- [Commits](gogf/gf@v2.10.0...v2.10.2)

Updates `github.com/gogf/gf/v2` from 2.10.0 to 2.10.2
- [Release notes](https://github.com/gogf/gf/releases)
- [Commits](gogf/gf@v2.10.0...v2.10.2)

Updates `github.com/larksuite/oapi-sdk-go/v3` from 3.7.5 to 3.9.5
- [Release notes](https://github.com/larksuite/oapi-sdk-go/releases)
- [Changelog](https://github.com/larksuite/oapi-sdk-go/blob/v3_main/changelog.md)
- [Commits](larksuite/oapi-sdk-go@v3.7.5...v3.9.5)

Updates `github.com/redis/go-redis/v9` from 9.12.1 to 9.20.1
- [Release notes](https://github.com/redis/go-redis/releases)
- [Changelog](https://github.com/redis/go-redis/blob/master/RELEASE-NOTES.md)
- [Commits](redis/go-redis@v9.12.1...v9.20.1)

---
updated-dependencies:
- dependency-name: github.com/gogf/gf/contrib/drivers/pgsql/v2
  dependency-version: 2.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: github.com/gogf/gf/v2
  dependency-version: 2.10.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: patch-and-minor
- dependency-name: github.com/larksuite/oapi-sdk-go/v3
  dependency-version: 3.9.4
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
- dependency-name: github.com/redis/go-redis/v9
  dependency-version: 9.20.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: patch-and-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot force-pushed the dependabot/go_modules/backend/patch-and-minor-ef02d76761 branch from 282afd1 to 7c3aa59 Compare June 15, 2026 20:27
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