fix(deps): update module github.com/99designs/gqlgen to v0.17.45 #273
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v0.17.24
->v0.17.45
Release Notes
99designs/gqlgen (github.com/99designs/gqlgen)
v0.17.45
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.44...v0.17.45
v0.17.44
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.43...v0.17.44
v0.17.43
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.42...v0.17.43
v0.17.42
Compare Source
7bf0c22
release v0.17.42c811d47e fix: avoid panic from tracing on bad request (#2871)
This fixes a panic which arises from the tracing components when a request has some defect which results in an error when creating the operation context. The transports consistently handle this by calling
DispatchError(graphql.WithOperationContext(ctx, rc), err)
whererc
is the OperationContext which was not correctly constructed. This seems dangerous, because middleware may assume that if there in anOperationContext
in thecontext.Context
than they are being invoked on a normal codepath and can assume their other interceptors have been invoked in the normal order. Also, using a value returned by a function which also returned a non-nil error is very unusual. However, I have no idea what the impact of changing that dangerous behavior in the transports would be, so I opted to make the tracing component more resilient instead.13bb415
fix for entity interfce code gen with related test (#2868)0354649
Remove archived dependency appdash (#2866)0d43599
Update examples go.mod with appdash replacements (#2863)7dd971c
Use defer wg.Done() in FieldSet Dispatch (#2861)24ea195c vikstrous/dataloadgen replaces recommended dataloader package in example docs (#2770)
update example for dataloadgen
improved example with link to example repo
undo unnecessary changes
fix wrong signature
fix creation of loader
Update docs/content/reference/dataloaders.md
42f6e39d Allow fields that return root level definitions (#2858)
generate structs for root level definitions to support fields that return Query, Mutation or Subscription
removed unnecessary comment
re-ran go generate
682a58d
Add go generate for examples so contributors never forget (#2859)e080a96d Modify to prevent unreachable code from occurring (#2846)
fix: 型の数でソートする処理を追加
戻し
fix: case文の最初にスーパークラスが来ないようにする
testdata追加
fix: Added sorting by number of types.
fix: Prevent superclass from appearing at the beginning of case statement
68744ad
Bump changeloge4cf21d
v0.17.41 postrelease bumpv0.17.41
Compare Source
fe60938
release v0.17.415e98a16a fix fieldset.New bug when prefix slice has len < cap (#2851)
fix fieldset.New bug when prefix slice has len < cap
ignore gocritic warning
bd9657f3 Improve ResolverImplementer.Implment (#2850)
improve resolver implement render
add error when multiple implementors
add initial test
cb3c1c89 Updated apollo sandbox (#2849)
Added all supported options to new window.EmbeddedSandbox object
eb5cea72 Small template fix to save space in the generated file (#2841)
Small template fix to save space in the generated file
Re-generate
c0ca509
Omittable can now be serialized as json (#2839)dcb7619
fix: sample program indentation (#2840)132ec1ce Updated GraphiQL 3.0.1 => 3.0.6 (#2837)
Updated GraphiQL 3.0.1 => 3.0.6
Added unit tests to cover integrity of playgrounds
Updated vulnerable dependency
Close response body
9174070
v0.17.40 postrelease bumpv0.17.40
Compare Source
What's Changed
Full Changelog: 99designs/gqlgen@v0.17.39...v0.17.40
v0.17.39
Compare Source
What's Changed
New Contributors
Full Changelog: 99designs/gqlgen@v0.17.38...v0.17.39
v0.17.38
Compare Source
What's Changed
null
instead of zero value uuid by @0x221A in https://github.com/99designs/gqlgen/pull/2794New Contributors
Full Changelog: 99designs/gqlgen@v0.17.37...v0.17.38
v0.17.37
Compare Source
ccae370
release v0.17.376505f8b
Update gqlparser (#2785)153ec470 add uuid type (#2751) (closes #2749)
add uuid type
add uuid example
add uuid scalar doc
strconv.Quote
Apply suggestions from code review
fix
fa471180 ForceGenerate parameter to [@goModel](https://github.com/goModel) added. (#2780)
11bb9b18 codegen: add support for `go_build_tags` option in gqlgen.yaml (#2784)
codegen: support go_build_tags option in gqlgen.yaml
chore: added test
docs/content: update config example
chore: more comment
bee47dcf fix flaky test TestSubscriptions (#2779)
fix flaky test TestSubscriptions
update other copy of the test
a41f4da
docs: short-lived loader (#2778)cc4e0ba
ensure HasOperationContext checks for nil (#2776)a1ca2204 fix typo in TESTING.md server path (#2774)
following TESTING.md instructions, I got an error:
"stat ./server/server.go: no such file or directory"
server.go path is: integration/server/cmd/integration/server.go
1cde8c3f return internal types in schema introspection (#2773)
according to graphql spec:
source: https://github.com/graphql/graphql-spec/blob/main/spec/Section%204%20--%20Introspection.md#the-\__schema-type
some clients libs (like HotChocolate for C#) depends on this behavior.
065aea3
Fix gqlgen truncates tag value with colon (#2759)d6270e4
Update subsciptions documentation to correctly close channel (#2753)2d8673a
Add Model references to Interface (#2738)790d7a7
Allow GraphiQL headers to be set when creating the playground handler (#2740) (closes #2739)0eb95dc
v0.17.36 postrelease bumpv0.17.36
Compare Source
bd6cfd3
release v0.17.3660ec0d86 Fix plugin template resolution (#2733) (closes #2262)
Template
andTemplateFS
fields are empty, itRender
should findthe
.gotpl
files from the calling plugin. However, it looks likehelper function. This results in broken behavior in consumers such as
infiotinc/gqlgenc when they
use the latest version of
gqlgen
as instead of finding the templatefrom the plugin, the test template from this package is used which
outputs only:
this is my test package
.runtime.Caller
was still only skippingone stack level which means that it was finding the
Render
functioninstead of its caller.
76d444c
Make models configurable via template (#2730)abe3ffd
Don't set the package variable for the new Resolver Template (#2725)febf9566 Make the resolver implementation configurable via a new template resolver.gotpl (#2720)
Make an optional resolver.gotpl ResolverTemplate to implement a custom resolver
Add test
Add documetation for the new resolver option
Change the tab to spaces
remove unecessary test assertion :/
bda30260 Fixed Data Loader docs (#2723)
Also updated to v7
16c9eb64 Fix docs (#2722)
docs: fix variable names in dataloader sample
fix: request-scoped middleware
b233a01b docs: update dataloader docs (#2719)
docs: update example
docs: update example
fix: import
cccc738
Added go mod tidy to quick start guide (#2718) (closes #2717, #2651, #2641, #2614, #2576)9adc7b8
Update gqlparser to v2.5.8 (#2716)b442fbf
Post v0.17.35 changelog update57c1219
v0.17.35 postrelease bumpv0.17.35
Compare Source
05006bf
release v0.17.35d95d614
Update gqlparser to v2.5.7 (#2714)8c378e6
Updated GraphiQL playground 2.0.7 -> 3.0.1 and react 17 -> 18 (#2713)7880739d Add op ctx safety for apollo tracing (#2709)
6ed9337
fix function name in comment (#2707)2cfb9f9
Fix apollo integrity hash (#2706)470fca8
Update gqlparser again (#2697)280441b
Update changelog5bc36e1
v0.17.34 postrelease bumpv0.17.34
Compare Source
5a70585
release v0.17.341a9dbadd Use "No longer supported" as the default deprecationReason for deprecations without a reason specified (#2692)
fix: use "No longer supported" as the default deprecationReason for deprecated fields with no reason specified
test: add integration tests to ensure deprecated fields with no reason set get the default reason defined in the spec
No longer supported
640f383
Update gqlparser dependency (#2694)5ac9fe5
Added flag to omit interface checks (#2689)abc3c627 feat: always use latest apollo sandbox (#2686)
feat: removeDuplicateTags() validates tags and panic with meaningful error message
Instead of pinning on _latest without subresource integrity check, update both url and integrity to latest
Update graphql/playground/apollo_sandbox_playground.go
3b295bb4 added GoInitialismsConfig which overrides the initialisms to be regarded (#2683)
added GoInitialismsConfig which overrides the initialisms to be regarded
typo
adjusted examples and documentation
removed test with side-effects, adjustend yaml indentations, changed example entry "ID" to "CC" (again? I though I already did that)
comply with linter
ee6add4
Refactor TypeIdentifier to avoid circular imports (#2682)44376e5
fix subscription example in documentation (#2677)d5080828 Reworked integration testing using vitest (#2675)
Reworked integration using vitest
Added SSE client testing
Fixed SSE Transport parse errors not being sent as event-stream
Added defer testing using urql
Cleanup unnecessary dependencies
d16f498f fix: issue with extraFields being thrown away (#2674)
fix: issue with extraFields being thrown away
Go fumpt on file
71d16aa
v0.17.33 postrelease bumpv0.17.33
Compare Source
a1e34ca
release v0.17.33790a72c1 issue-1372: add custom decode func (#2666)
issue-1372: add custom decode func
issue-1372: add custom decode method
issue-1372: fix lint
issue-1372: add custom decode func
issue-1372: add custom decode method
issue-1372: fix lint
issue-1372: extend functionality by setting up the whole decode config instead of one nested field
issue-1372: rollback generated.go file
issue-1372: fix lint
c63c60eb Update all modules (#2667)
Update all modules
Add gqlparser v2.5.3
4a78eb0c minor cleaning: fix some stricter lint rule warnings (#2665)
Add Changelog notes
Some spring cleaning
Update golangci-lint to latest
1e925f7
v0.17.32 postrelease bumpv0.17.32
Compare Source
3a81a78
release v0.17.32dbb6117
Added unit tests for defer (#2657)5c19c841 Addressing few issues in defer feature (#2656)
And fixed hasNext to only appear in the payload when there is deferred usage
Regenerate
Use go 1.18 compatible atomic operations
Regenerate
8e295024 Update extra fields type definition and plus docs about the feature (#2655)
Update extra fields type definition and plus docs about the feature
Update docs
adf5da27 Make usage of omitempty tag optional (#2649)
Make usage of omitempty tag optional
adding probably good enough test
some kinda docs
lintersssssssssssssssssssssssssssss
removing unnecessary fields from config
7ab3317
Extra fields (#2638)22deb8bd allow binding a GraphQL `Any` field to a struct method returning `*any` (#2644)
allow binding GQL
Any
field to struct method returning*any
add singlefile tests for binding to
*any
caseadd followschema tests for binding to
*any
casemake ptr_to_any binding tests follow binding conventions better
c313bf3d `[@defer](https://github.com/defer)` initial support (#26
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about this update again.
This PR has been generated by Mend Renovate. View repository job log here.