Skip to content

chore: bump github.com/99designs/gqlgen from 0.17.90 to 0.17.94 - #804

Merged
jkjell merged 2 commits into
mainfrom
dependabot/go_modules/github.com/99designs/gqlgen-0.17.94
Jul 20, 2026
Merged

chore: bump github.com/99designs/gqlgen from 0.17.90 to 0.17.94#804
jkjell merged 2 commits into
mainfrom
dependabot/go_modules/github.com/99designs/gqlgen-0.17.94

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps github.com/99designs/gqlgen from 0.17.90 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

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels Jul 11, 2026
@netlify

netlify Bot commented Jul 11, 2026

Copy link
Copy Markdown

Deploy Preview for archivista-dev ready!

Name Link
🔨 Latest commit 9f721cb
🔍 Latest deploy log https://app.netlify.com/projects/archivista-dev/deploys/6a5aa26fc124fc00080a246d
😎 Deploy Preview https://deploy-preview-804--archivista-dev.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify project configuration.

@dependabot
dependabot Bot force-pushed the dependabot/go_modules/github.com/99designs/gqlgen-0.17.94 branch 2 times, most recently from 3fb832c to cf1888c Compare July 17, 2026 17:50
@jkjell

jkjell commented Jul 17, 2026

Copy link
Copy Markdown
Member

@dependabot rebase

Bumps [github.com/99designs/gqlgen](https://github.com/99designs/gqlgen) from 0.17.90 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.90...v0.17.94)

---
updated-dependencies:
- dependency-name: github.com/99designs/gqlgen
  dependency-version: 0.17.94
  dependency-type: direct:production
  update-type: version-update:semver-patch
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/go_modules/github.com/99designs/gqlgen-0.17.94 branch from cf1888c to 8d9471a Compare July 17, 2026 18:06
Signed-off-by: John Kjell <john.kjell@control-plane.io>
@jkjell
jkjell merged commit 457c136 into main Jul 20, 2026
17 checks passed
@jkjell
jkjell deleted the dependabot/go_modules/github.com/99designs/gqlgen-0.17.94 branch July 20, 2026 14:09
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.

2 participants