Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 29, 2025

Bumps the go-minor-patch group with 4 updates in the /coraza-spoa directory: github.com/dropmorepackets/haproxy-go, github.com/jcchavezs/mergefs, github.com/oschwald/geoip2-golang and go.mongodb.org/mongo-driver/v2.
Bumps the go-minor-patch group with 1 update in the /pkg directory: go.mongodb.org/mongo-driver/v2.
Bumps the go-minor-patch group with 7 updates in the /server directory:

Package From To
go.mongodb.org/mongo-driver/v2 2.2.1 2.3.0
github.com/gin-gonic/gin 1.10.1 1.11.0
github.com/go-co-op/gocron/v2 2.16.2 2.16.6
github.com/golang-jwt/jwt/v5 5.2.2 5.3.0
github.com/haproxytech/client-native/v6 6.2.0 6.2.5
github.com/swaggo/gin-swagger 1.6.0 1.6.1
github.com/swaggo/swag 1.16.4 1.16.6

Updates github.com/dropmorepackets/haproxy-go from 0.0.6 to 0.0.7

Release notes

Sourced from github.com/dropmorepackets/haproxy-go's releases.

v0.0.7

0.0.7 (2025-06-05)

Bug Fixes

  • spop: Disable pipeline and async support (c12e722)
Changelog

Sourced from github.com/dropmorepackets/haproxy-go's changelog.

0.0.7 (2025-06-05)

Bug Fixes

  • spop: Disable pipeline and async support (c12e722)
Commits

Updates github.com/jcchavezs/mergefs from 0.1.0 to 0.1.1

Release notes

Sourced from github.com/jcchavezs/mergefs's releases.

Version 0.1.1

What's Changed

New Contributors

Full Changelog: jcchavezs/mergefs@v0.1.0...v0.1.1

Commits

Updates github.com/oschwald/geoip2-golang from 1.11.0 to 1.13.0

Release notes

Sourced from github.com/oschwald/geoip2-golang's releases.

1.13.0

  • Add support for GeoIP-City-Redacted-US and GeoIP-Enterprise-Redacted-US. Requested by Tom Anderson. GitHub #134.
Changelog

Sourced from github.com/oschwald/geoip2-golang's changelog.

2.0.0-beta.4

  • Updated maxminddb dependency to v2.0.0-beta.9.
  • Added OpenBytes method to match the API changes in maxminddb v2.0.0-beta.9.
  • Deprecated FromBytes method. Use OpenBytes instead. FromBytes will be removed in a future version.

2.0.0-beta.3 - 2025-07-07

  • Add support for GeoIP-City-Redacted-US and GeoIP-Enterprise-Redacted-US. Requested by Tom Anderson. GitHub #134.
  • Upgrade github.com/oschwald/maxminddb-golang/v2 to v2.0.0-beta.7.

2.0.0-beta.2 - 2025-06-28

  • BREAKING CHANGE: Replaced IsZero() methods with HasData() methods on all result structs (including Names). The new methods provide clearer semantics: HasData() returns true when GeoIP data is found and false when no data is available. Unlike IsZero(), HasData() excludes Network and IPAddress fields from validation, allowing users to access network topology information even when no GeoIP data is found. The Network and IPAddress fields are now always populated for all lookups, regardless of whether GeoIP data is available.
  • BREAKING CHANGE: Replaced all anonymous nested structs with named types to improve struct initialization ergonomics. All result structs (Enterprise, City, Country) now use named types like EnterpriseCityRecord, CityTraits, CountryRecord, etc. This makes it much easier to initialize structs in user code while maintaining the same JSON serialization behavior.
  • BREAKING CHANGE: Changed Location.Latitude and Location.Longitude from float64 to *float64 to properly distinguish between missing coordinates and the valid location (0, 0). Missing coordinates are now represented as nil and are omitted from JSON output, while valid zero coordinates are preserved. This fixes the ambiguity where (0, 0) was incorrectly treated as "no data". Added Location.HasCoordinates() method for safe coordinate access. Reported by Nick Bruun. GitHub #5.

2.0.0-beta.1 - 2025-06-22

  • BREAKING CHANGE: Updated to use maxminddb-golang/v2 which provides significant performance improvements and a more modern API.
  • BREAKING CHANGE: All lookup methods now accept netip.Addr instead of net.IP. This provides better performance and aligns with modern Go networking practices.
  • BREAKING CHANGE: Renamed IsoCode fields to ISOCode in all structs to follow proper capitalization for the ISO acronym. Closes GitHub issue #4.
  • BREAKING CHANGE: Replaced map[string]string Names fields with structured Names type for significant performance improvements. This eliminates map allocation overhead, reducing memory usage by 34% and allocations by 56%.
  • BREAKING CHANGE: Added JSON tags to all struct fields. JSON tags match the corresponding maxminddb tags where they exist. Custom fields (IPAddress and Network) use snake_case (ip_address and network).

... (truncated)

Commits

Updates go.mongodb.org/mongo-driver/v2 from 2.2.1 to 2.3.0

Release notes

Sourced from go.mongodb.org/mongo-driver/v2's releases.

MongoDB Go Driver 2.3.0

The MongoDB Go Driver Team is pleased to release version 2.3.0 of the official MongoDB Go Driver.

Release Highlights

[!IMPORTANT]
Go Driver v2.3 will be the last release to support MongoDB 4.0. Go Driver v2.4 will require MongoDB 4.2 or newer.

[!IMPORTANT]
The minimum Go version for Go Driver v2.3 is Go 1.19.

This release improves BSON unmarshal performance to fix the regression in v2.0 and fixes bugs in logging truncation and cursor timeouts.

What's Changed

🐛 Fixed

📦 Dependency Updates

📝 Other Changes

New Contributors

... (truncated)

Commits
  • 54bab6d BUMP v2.3.0
  • eef1b04 GODRIVER-3548 Test MONGODB-X509 on cloud-dev (#2166)
  • 99707bc Use require instead of assert for error checking in GriDFS tests. (#2167)
  • 5b79d94 GODRIVER-3633 Set correct MONGODB_VERSION on FaaS and search index tasks. (#2...
  • 21ab64f Replace all uses of 'interface{}' with 'any' in the mongo/ packages. (#2139)
  • 845fc8a GODRIVER-3631 Assume correct EC2 role in search index test task. (#2160)
  • 34bf3d8 GODRIVER-3522 Add support for the rawData option for time-series bucket acces...
  • f0469d0 Merge pull request #2162 from mongodb/merge-release/2.2-into-master-175461988...
  • b41edf6 Update default review priority tag (#2157)
  • e132166 Merge pull request #2161 from mongodb/merge-release/2.2-into-master-175457498...
  • Additional commits viewable in compare view

Updates go.mongodb.org/mongo-driver/v2 from 2.2.1 to 2.3.0

Release notes

Sourced from go.mongodb.org/mongo-driver/v2's releases.

MongoDB Go Driver 2.3.0

The MongoDB Go Driver Team is pleased to release version 2.3.0 of the official MongoDB Go Driver.

Release Highlights

[!IMPORTANT]
Go Driver v2.3 will be the last release to support MongoDB 4.0. Go Driver v2.4 will require MongoDB 4.2 or newer.

[!IMPORTANT]
The minimum Go version for Go Driver v2.3 is Go 1.19.

This release improves BSON unmarshal performance to fix the regression in v2.0 and fixes bugs in logging truncation and cursor timeouts.

What's Changed

🐛 Fixed

📦 Dependency Updates

📝 Other Changes

New Contributors

... (truncated)

Commits
  • 54bab6d BUMP v2.3.0
  • eef1b04 GODRIVER-3548 Test MONGODB-X509 on cloud-dev (#2166)
  • 99707bc Use require instead of assert for error checking in GriDFS tests. (#2167)
  • 5b79d94 GODRIVER-3633 Set correct MONGODB_VERSION on FaaS and search index tasks. (#2...
  • 21ab64f Replace all uses of 'interface{}' with 'any' in the mongo/ packages. (#2139)
  • 845fc8a GODRIVER-3631 Assume correct EC2 role in search index test task. (#2160)
  • 34bf3d8 GODRIVER-3522 Add support for the rawData option for time-series bucket acces...
  • f0469d0 Merge pull request #2162 from mongodb/merge-release/2.2-into-master-175461988...
  • b41edf6 Update default review priority tag (#2157)
  • e132166 Merge pull request #2161 from mongodb/merge-release/2.2-into-master-175457498...
  • Additional commits viewable in compare view

Updates go.mongodb.org/mongo-driver/v2 from 2.2.1 to 2.3.0

Release notes

Sourced from go.mongodb.org/mongo-driver/v2's releases.

MongoDB Go Driver 2.3.0

The MongoDB Go Driver Team is pleased to release version 2.3.0 of the official MongoDB Go Driver.

Release Highlights

[!IMPORTANT]
Go Driver v2.3 will be the last release to support MongoDB 4.0. Go Driver v2.4 will require MongoDB 4.2 or newer.

[!IMPORTANT]
The minimum Go version for Go Driver v2.3 is Go 1.19.

This release improves BSON unmarshal performance to fix the regression in v2.0 and fixes bugs in logging truncation and cursor timeouts.

What's Changed

🐛 Fixed

📦 Dependency Updates

📝 Other Changes

New Contributors

... (truncated)

Commits
  • 54bab6d BUMP v2.3.0
  • eef1b04 GODRIVER-3548 Test MONGODB-X509 on cloud-dev (#2166)
  • 99707bc Use require instead of assert for error checking in GriDFS tests. (#2167)
  • 5b79d94 GODRIVER-3633 Set correct MONGODB_VERSION on FaaS and search index tasks. (#2...
  • 21ab64f Replace all uses of 'interface{}' with 'any' in the mongo/ packages. (#2139)
  • 845fc8a GODRIVER-3631 Assume correct EC2 role in search index test task. (#2160)
  • 34bf3d8 GODRIVER-3522 Add support for the rawData option for time-series bucket acces...
  • f0469d0 Merge pull request #2162 from mongodb/merge-release/2.2-into-master-175461988...
  • b41edf6 Update default review priority tag (#2157)
  • e132166 Merge pull request #2161 from mongodb/merge-release/2.2-into-master-175457498...
  • Additional commits viewable in compare view

Updates go.mongodb.org/mongo-driver/v2 from 2.2.1 to 2.3.0

Release notes

Sourced from go.mongodb.org/mongo-driver/v2's releases.

MongoDB Go Driver 2.3.0

The MongoDB Go Driver Team is pleased to release version 2.3.0 of the official MongoDB Go Driver.

Release Highlights

[!IMPORTANT]
Go Driver v2.3 will be the last release to support MongoDB 4.0. Go Driver v2.4 will require MongoDB 4.2 or newer.

[!IMPORTANT]
The minimum Go version for Go Driver v2.3 is Go 1.19.

This release improves BSON unmarshal performance to fix the regression in v2.0 and fixes bugs in logging truncation and cursor timeouts.

What's Changed

🐛 Fixed

📦 Dependency Updates

📝 Other Changes

New Contributors

... (truncated)

Commits
  • 54bab6d BUMP v2.3.0
  • eef1b04 GODRIVER-3548 Test MONGODB-X509 on cloud-dev (#2166)
  • 99707bc Use require instead of assert for error checking in GriDFS tests. (#2167)
  • 5b79d94 GODRIVER-3633 Set correct MONGODB_VERSION on FaaS and search index tasks. (#2...
  • 21ab64f Replace all uses of 'interface{}' with 'any' in the mongo/ packages. (#2139)
  • 845fc8a GODRIVER-3631 Assume correct EC2 role in search index test task. (#2160)
  • 34bf3d8 GODRIVER-3522 Add support for the rawData option for time-series bucket acces...
  • f0469d0 Merge pull request #2162 from mongodb/merge-release/2.2-into-master-175461988...
  • b41edf6 Update default review priority tag (#2157)
  • e132166 Merge pull request #2161 from mongodb/merge-release/2.2-into-master-175457498...
  • Additional commits viewable in compare view

Updates go.mongodb.org/mongo-driver/v2 from 2.2.1 to 2.3.0

Release notes

Sourced from go.mongodb.org/mongo-driver/v2's releases.

MongoDB Go Driver 2.3.0

The MongoDB Go Driver Team is pleased to release version 2.3.0 of the official MongoDB Go Driver.

Release Highlights

[!IMPORTANT]
Go Driver v2.3 will be the last release to support MongoDB 4.0. Go Driver v2.4 will require MongoDB 4.2 or newer.

[!IMPORTANT]
The minimum Go version for Go Driver v2.3 is Go 1.19.

This release improves BSON unmarshal performance to fix the regression in v2.0 and fixes bugs in logging truncation and cursor timeouts.

What's Changed

🐛 Fixed

📦 Dependency Updates

📝 Other Changes

New Contributors

... (truncated)

Commits
  • 54bab6d BUMP v2.3.0
  • eef1b04 GODRIVER-3548 Test MONGODB-X509 on cloud-dev (#2166)
  • 99707bc Use require instead of assert for error checking in GriDFS tests. (#2167)
  • 5b79d94 GODRIVER-3633 Set correct MONGODB_VERSION on FaaS and search index tasks. (#2...
  • 21ab64f Replace all uses of 'interface{}' with 'any' in the mongo/ packages. (#2139)
  • 845fc8a GODRIVER-3631 Assume correct EC2 role in search index test task. (#2160)
  • 34bf3d8 GODRIVER-3522 Add support for the rawData option for time-series bucket acces...
  • f0469d0 Merge pull request #2162 from mongodb/merge-release/2.2-into-master-175461988...
  • b41edf6 Update default review priority tag (#2157)
  • e132166 Merge pull request #2161 from mongodb/merge-release/2.2-into-master-175457498...
  • Additional commits viewable in compare view

Updates go.mongodb.org/mongo-driver/v2 from 2.2.1 to 2.3.0

Release notes

Sourced from go.mongodb.org/mongo-driver/v2's releases.

MongoDB Go Driver 2.3.0

The MongoDB Go Driver Team is pleased to release version 2.3.0 of the official MongoDB Go Driver.

Release Highlights

[!IMPORTANT]
Go Driver v2.3 will be the last release to support MongoDB 4.0. Go Driver v2.4 will require MongoDB 4.2 or newer.

[!IMPORTANT]
The minimum Go version for Go Driver v2.3 is Go 1.19.

This release improves BSON unmarshal performance to fix the regression in v2.0 and fixes bugs in logging truncation and cursor timeouts.

What's Changed

🐛 Fixed

📦 Dependency Updates

📝 Other Changes

…12 updates

Bumps the go-minor-patch group with 4 updates in the /coraza-spoa directory: [github.com/dropmorepackets/haproxy-go](https://github.com/dropmorepackets/haproxy-go), [github.com/jcchavezs/mergefs](https://github.com/jcchavezs/mergefs), [github.com/oschwald/geoip2-golang](https://github.com/oschwald/geoip2-golang) and [go.mongodb.org/mongo-driver/v2](https://github.com/mongodb/mongo-go-driver).
Bumps the go-minor-patch group with 1 update in the /pkg directory: [go.mongodb.org/mongo-driver/v2](https://github.com/mongodb/mongo-go-driver).
Bumps the go-minor-patch group with 7 updates in the /server directory:

| Package | From | To |
| --- | --- | --- |
| [go.mongodb.org/mongo-driver/v2](https://github.com/mongodb/mongo-go-driver) | `2.2.1` | `2.3.0` |
| [github.com/gin-gonic/gin](https://github.com/gin-gonic/gin) | `1.10.1` | `1.11.0` |
| [github.com/go-co-op/gocron/v2](https://github.com/go-co-op/gocron) | `2.16.2` | `2.16.6` |
| [github.com/golang-jwt/jwt/v5](https://github.com/golang-jwt/jwt) | `5.2.2` | `5.3.0` |
| [github.com/haproxytech/client-native/v6](https://github.com/haproxytech/client-native) | `6.2.0` | `6.2.5` |
| [github.com/swaggo/gin-swagger](https://github.com/swaggo/gin-swagger) | `1.6.0` | `1.6.1` |
| [github.com/swaggo/swag](https://github.com/swaggo/swag) | `1.16.4` | `1.16.6` |



Updates `github.com/dropmorepackets/haproxy-go` from 0.0.6 to 0.0.7
- [Release notes](https://github.com/dropmorepackets/haproxy-go/releases)
- [Changelog](https://github.com/DropMorePackets/haproxy-go/blob/master/CHANGELOG.md)
- [Commits](DropMorePackets/haproxy-go@v0.0.6...v0.0.7)

Updates `github.com/jcchavezs/mergefs` from 0.1.0 to 0.1.1
- [Release notes](https://github.com/jcchavezs/mergefs/releases)
- [Commits](jcchavezs/mergefs@v0.1.0...v0.1.1)

Updates `github.com/oschwald/geoip2-golang` from 1.11.0 to 1.13.0
- [Release notes](https://github.com/oschwald/geoip2-golang/releases)
- [Changelog](https://github.com/oschwald/geoip2-golang/blob/main/CHANGELOG.md)
- [Commits](oschwald/geoip2-golang@v1.11.0...v1.13.0)

Updates `go.mongodb.org/mongo-driver/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.2.1...v2.3.0)

Updates `go.mongodb.org/mongo-driver/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.2.1...v2.3.0)

Updates `go.mongodb.org/mongo-driver/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.2.1...v2.3.0)

Updates `go.mongodb.org/mongo-driver/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.2.1...v2.3.0)

Updates `go.mongodb.org/mongo-driver/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.2.1...v2.3.0)

Updates `go.mongodb.org/mongo-driver/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.2.1...v2.3.0)

Updates `go.mongodb.org/mongo-driver/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.2.1...v2.3.0)

Updates `go.mongodb.org/mongo-driver/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.2.1...v2.3.0)

Updates `github.com/gin-gonic/gin` from 1.10.1 to 1.11.0
- [Release notes](https://github.com/gin-gonic/gin/releases)
- [Changelog](https://github.com/gin-gonic/gin/blob/master/CHANGELOG.md)
- [Commits](gin-gonic/gin@v1.10.1...v1.11.0)

Updates `github.com/go-co-op/gocron/v2` from 2.16.2 to 2.16.6
- [Release notes](https://github.com/go-co-op/gocron/releases)
- [Commits](go-co-op/gocron@v2.16.2...v2.16.6)

Updates `github.com/go-playground/validator/v10` from 10.26.0 to 10.27.0
- [Release notes](https://github.com/go-playground/validator/releases)
- [Commits](go-playground/validator@v10.26.0...v10.27.0)

Updates `github.com/golang-jwt/jwt/v5` from 5.2.2 to 5.3.0
- [Release notes](https://github.com/golang-jwt/jwt/releases)
- [Changelog](https://github.com/golang-jwt/jwt/blob/main/VERSION_HISTORY.md)
- [Commits](golang-jwt/jwt@v5.2.2...v5.3.0)

Updates `github.com/haproxytech/client-native/v6` from 6.2.0 to 6.2.5
- [Commits](haproxytech/client-native@v6.2.0...v6.2.5)

Updates `github.com/swaggo/gin-swagger` from 1.6.0 to 1.6.1
- [Release notes](https://github.com/swaggo/gin-swagger/releases)
- [Changelog](https://github.com/swaggo/gin-swagger/blob/master/.goreleaser.yml)
- [Commits](swaggo/gin-swagger@v1.6.0...v1.6.1)

Updates `github.com/swaggo/swag` from 1.16.4 to 1.16.6
- [Release notes](https://github.com/swaggo/swag/releases)
- [Changelog](https://github.com/swaggo/swag/blob/master/.goreleaser.yml)
- [Commits](swaggo/swag@v1.16.4...v1.16.6)

Updates `go.mongodb.org/mongo-driver/v2` from 2.2.1 to 2.3.0
- [Release notes](https://github.com/mongodb/mongo-go-driver/releases)
- [Commits](mongodb/mongo-go-driver@v2.2.1...v2.3.0)

Updates `golang.org/x/crypto` from 0.38.0 to 0.42.0
- [Commits](golang/crypto@v0.38.0...v0.42.0)

---
updated-dependencies:
- dependency-name: github.com/dropmorepackets/haproxy-go
  dependency-version: 0.0.7
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/jcchavezs/mergefs
  dependency-version: 0.1.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/oschwald/geoip2-golang
  dependency-version: 1.13.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: github.com/gin-gonic/gin
  dependency-version: 1.11.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: github.com/go-co-op/gocron/v2
  dependency-version: 2.16.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/go-playground/validator/v10
  dependency-version: 10.27.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: github.com/golang-jwt/jwt/v5
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: github.com/haproxytech/client-native/v6
  dependency-version: 6.2.5
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/swaggo/gin-swagger
  dependency-version: 1.6.1
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: github.com/swaggo/swag
  dependency-version: 1.16.6
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: go-minor-patch
- dependency-name: go.mongodb.org/mongo-driver/v2
  dependency-version: 2.3.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
- dependency-name: golang.org/x/crypto
  dependency-version: 0.42.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: go-minor-patch
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Sep 29, 2025
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 29, 2025

Labels

The following labels could not be found: backend. Please create it before Dependabot can add it to a pull request.

Please fix the above issues or remove invalid values from dependabot.yml.

@dependabot dependabot bot added dependencies Pull requests that update a dependency file go Pull requests that update go code labels Sep 29, 2025
Copy link

🚀 Docker Quick Build Unknown ⚠️

PR #61 AMD64 platform verification completed (optimized for faster verification)

中文报告

ℹ️ 状态: 构建状态异常,请检查工作流配置。


English Report

ℹ️ Status: Build status is abnormal, please check workflow configuration.

🔗 查看详细信息 / View Details: 点击查看完整构建结果 / Click here to see full build results

Copy link

⚡ Go Code Quality Check Unknown ⚠️

PR #61 Go code quality check completed.

中文报告

ℹ️ 状态: 检查状态异常,请检查工作流配置。


English Report

ℹ️ Status: Check status is abnormal, please check workflow configuration.

🔗 View Details: Click here to see the full check results

Copy link

🎨 Frontend Code Quality Check Unknown ⚠️

PR #61 frontend code check completed.

中文报告

ℹ️ 状态: 检查状态异常,请检查工作流配置。


English Report

ℹ️ Status: Check status is abnormal, please check workflow configuration.

🔗 View Details: Click here to see the full check results

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 size/L
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants