Skip to content

chore(deps): bump the backend group across 1 directory with 7 updates - #144

Closed
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/apps/backend/backend-47b14b3efe
Closed

chore(deps): bump the backend group across 1 directory with 7 updates#144
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/apps/backend/backend-47b14b3efe

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 20, 2026

Copy link
Copy Markdown
Contributor

Bumps the backend group with 5 updates in the /apps/backend directory:

Package From To
github.com/99designs/gqlgen 0.17.89 0.17.94
github.com/a2aproject/a2a-go 0.3.13 0.3.15
github.com/chromedp/chromedp 0.15.1 0.16.0
github.com/mark3labs/mcp-go 0.46.0 0.56.0
gorm.io/gorm 1.31.1 1.31.2

Updates github.com/99designs/gqlgen from 0.17.89 to 0.17.94

Release notes

Sourced from github.com/99designs/gqlgen's releases.

v0.17.94

Upcoming Potentially Breaking Changes Warning

This release has changes in the Federation plugin, introducing opt-in changes that will become the default in the next release (v0.17.95).

When configured, the federation plugin creates an entity resolver that accepts a list of representations, improving performance by reducing the number of individual resolver calls.

// IMPORTANT: The output slice order is critical and must match the input slice order exactly!
func (r *entityResolver) FindUserByIDs(ctx context.Context, reps []*entity.UserByIDsInput) ([]*model.User, error) {
	output := make([]*model.User, len(reps))
	for i, user := range reps {
		output[i] = &model.User{
			ID:   user.ID,
			Name: "User " + user.ID,
		}
	}
return output, nil

}

The @entityResolver directive enables optimization for entity resolver generation in GraphQL federation, and can be opted in by specifying multi: true as in:

type MultiHello @key(fields: "name") @entityResolver(multi: true)

Or you can enable this feature by default by setting the federation.options.entity_resolver_multi flag in your configuration:

federation:
  filename: graph/federation.go
  package: graph
  version: 2
  options:
    entity_resolver_multi: true

What's Changed

... (truncated)

Commits

Updates github.com/a2aproject/a2a-go from 0.3.13 to 0.3.15

Release notes

Sourced from github.com/a2aproject/a2a-go's releases.

v0.3.15

0.3.15 (2026-04-15)

Bug Fixes

  • fix message rejected during input_required resumption due to execution cleanup race (#303)

v0.3.14

0.3.14 (2026-04-15)

Bug Fixes

  • fix unnecessary task store get in local execution mode
Changelog

Sourced from github.com/a2aproject/a2a-go's changelog.

0.3.15 (2026-04-15)

Bug Fixes

  • fix message rejected during input_required resumption due to execution cleanup race (#303)

0.3.14 (2026-04-15)

Bug Fixes

  • fix unnecessary task store get in local execution mode
Commits
  • 081cf21 fix rejected during input_required resumption due to execution cleanup race #303
  • 730788c fix unnecessary task store get in local execution mode
  • 0a222de fix: drop original error after override (#304)
  • See full diff in compare view

Updates github.com/chromedp/chromedp from 0.15.1 to 0.16.0

Commits

Updates github.com/mark3labs/mcp-go from 0.46.0 to 0.56.0

Release notes

Sourced from github.com/mark3labs/mcp-go's releases.

Release v0.56.0

No release notes provided.

Release v0.55.1

No release notes provided.

Release v0.55.0

No release notes provided.

Release v0.54.1

No release notes provided.

Release v0.54.0

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.53.0...v0.54.0

Release v0.53.0

What's Changed

New Contributors

Full Changelog: mark3labs/mcp-go@v0.52.0...v0.53.0

... (truncated)

Commits
  • f6f3485 fix(server): render readable ErrorKind labels in validation messages (#915)
  • 9e8fddc fix(tools): preserve raw JSON for tool arguments and structuredContent (#916)
  • 8602980 feat(server): add automatic DNS rebinding protection for localhost (#921)
  • b6e6224 fix(client): avoid forwarding inbound request headers (#909)
  • 6d28e6d fix: avoid full filter scans on call hot paths (#908)
  • 43c2ca0 oauth: return error instead of (nil, nil) from getServerMetadata (#903) (#904)
  • 3b66aa7 mcptest: add SetSamplingHandler and SetElicitationHandler (#902)
  • 42bc0b2 feat(otel): WithServerLogging — OTEL slog bridge for server structured logs (...
  • d972f3f docs(prompts): add review-pr kit prompt for Go PRs
  • d5c0727 feat(server): WithLogger consolidates structured logging onto *slog.Logger (#...
  • Additional commits viewable in compare view

Updates github.com/vektah/gqlparser/v2 from 2.5.32 to 2.5.36

Release notes

Sourced from github.com/vektah/gqlparser/v2's releases.

v2.5.36

What's Changed

New Contributors

Full Changelog: vektah/gqlparser@v2.5.35...v2.5.36

v2.5.35

What's Changed

Full Changelog: vektah/gqlparser@v2.5.34...v2.5.35

v2.5.34

What's Changed

New Contributors

Full Changelog: vektah/gqlparser@v2.5.33...v2.5.34

v2.5.33

What's Changed

... (truncated)

Commits
  • 57521ea build(deps): bump the actions-deps group (#444)
  • 8bcdbe9 build(deps): bump golangci/golangci-lint-action (#445)
  • 8ad616f lexer: format control-character codepoint in error messages as hex (#431)
  • fa29902 Improve duplicate union error message (#443)
  • b1e2c81 validator: reject duplicate union member types (#442)
  • d93d3d1 build(deps): bump the actions-deps group (#441)
  • 08c2280 build(deps): bump actions/checkout from 6 to 7 in the actions-deps group (#440)
  • e3a8d38 Fix nullable nested list variable coercion (#439)
  • 7edd6f7 build(deps-dev): bump prettier (#438)
  • 5112c6b build(deps): migrate yaml import to go.yaml.in/yaml/v3 (#437)
  • Additional commits viewable in compare view

Updates golang.org/x/text from 0.35.0 to 0.40.0

Commits
  • 724af9c go.mod: update golang.org/x dependencies
  • bf5b9d6 internal/export/idna: always treat Punycode encoding pure ASCII as an error
  • b326f3d go.mod: update golang.org/x dependencies
  • 5ae8e57 unicode/norm: avoid infinite loop on invalid input
  • 0dc94a2 all: fix some comments
  • f4bb632 go.mod: update golang.org/x dependencies
  • 3ef517e go.mod: update golang.org/x dependencies
  • 8577a70 go.mod: update golang.org/x dependencies
  • See full diff in compare view

Updates gorm.io/gorm from 1.31.1 to 1.31.2

Release notes

Sourced from gorm.io/gorm's releases.

Release v1.31.2

Changes

Commits
  • 1d6ce99 Fix potential rows leak on panic by deferring rows.Close() (#7798)
  • f648834 perf: replace fmt.Sprintf with strconv in ExplainSQL numeric formatting (#7796)
  • 49cd6b8 Document NowFunc timezone behavior (#7799)
  • d0ee5e2 correct typo and rename fileType to fieldType in AlterColumn (#7748)
  • 2a22022 fix: panic when using clause.Returning with CreateInBatches (#7768)
  • 3322929 fix(migrator): add nil guards to ColumnType methods to prevent panic (#7767)
  • 40cd2af ci: switch tests Go matrix to stable/oldstable and update setup-go (#7726)
  • ba38501 chore(ci): bump actions/stale to v9 (#7696)
  • c1f742d fix: don't override alterColumn when defaults match (#7728)
  • c14d3ac update github ci golang version
  • Additional commits viewable in compare view

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 rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> major version will 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 version will 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

Bumps the backend group with 5 updates in the /apps/backend directory:

| Package | From | To |
| --- | --- | --- |
| [github.com/99designs/gqlgen](https://github.com/99designs/gqlgen) | `0.17.89` | `0.17.94` |
| [github.com/a2aproject/a2a-go](https://github.com/a2aproject/a2a-go) | `0.3.13` | `0.3.15` |
| [github.com/chromedp/chromedp](https://github.com/chromedp/chromedp) | `0.15.1` | `0.16.0` |
| [github.com/mark3labs/mcp-go](https://github.com/mark3labs/mcp-go) | `0.46.0` | `0.56.0` |
| [gorm.io/gorm](https://github.com/go-gorm/gorm) | `1.31.1` | `1.31.2` |



Updates `github.com/99designs/gqlgen` from 0.17.89 to 0.17.94
- [Release notes](https://github.com/99designs/gqlgen/releases)
- [Changelog](https://github.com/99designs/gqlgen/blob/master/CHANGELOG.md)
- [Commits](99designs/gqlgen@v0.17.89...v0.17.94)

Updates `github.com/a2aproject/a2a-go` from 0.3.13 to 0.3.15
- [Release notes](https://github.com/a2aproject/a2a-go/releases)
- [Changelog](https://github.com/a2aproject/a2a-go/blob/v0.3.15/CHANGELOG.md)
- [Commits](a2aproject/a2a-go@v0.3.13...v0.3.15)

Updates `github.com/chromedp/chromedp` from 0.15.1 to 0.16.0
- [Release notes](https://github.com/chromedp/chromedp/releases)
- [Commits](chromedp/chromedp@v0.15.1...v0.16.0)

Updates `github.com/mark3labs/mcp-go` from 0.46.0 to 0.56.0
- [Release notes](https://github.com/mark3labs/mcp-go/releases)
- [Commits](mark3labs/mcp-go@v0.46.0...v0.56.0)

Updates `github.com/vektah/gqlparser/v2` from 2.5.32 to 2.5.36
- [Release notes](https://github.com/vektah/gqlparser/releases)
- [Commits](vektah/gqlparser@v2.5.32...v2.5.36)

Updates `golang.org/x/text` from 0.35.0 to 0.40.0
- [Release notes](https://github.com/golang/text/releases)
- [Commits](golang/text@v0.35.0...v0.40.0)

Updates `gorm.io/gorm` from 1.31.1 to 1.31.2
- [Release notes](https://github.com/go-gorm/gorm/releases)
- [Commits](go-gorm/gorm@v1.31.1...v1.31.2)

---
updated-dependencies:
- dependency-name: github.com/99designs/gqlgen
  dependency-version: 0.17.94
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend
- dependency-name: github.com/a2aproject/a2a-go
  dependency-version: 0.3.15
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend
- dependency-name: github.com/chromedp/chromedp
  dependency-version: 0.16.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: github.com/mark3labs/mcp-go
  dependency-version: 0.56.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: github.com/vektah/gqlparser/v2
  dependency-version: 2.5.36
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend
- dependency-name: golang.org/x/text
  dependency-version: 0.40.0
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: backend
- dependency-name: gorm.io/gorm
  dependency-version: 1.31.2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: backend
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added backend Backend side deps labels Jul 20, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 27, 2026

Copy link
Copy Markdown
Contributor Author

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot Bot closed this Jul 27, 2026
@dependabot
dependabot Bot deleted the dependabot/go_modules/apps/backend/backend-47b14b3efe branch July 27, 2026 06:08
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

backend Backend side deps

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants