Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update module github.com/99designs/gqlgen to v0.17.45 #6

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Sep 26, 2022

Mend Renovate

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
github.com/99designs/gqlgen v0.13.0 -> v0.17.45 age adoption passing confidence

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

c811d47e 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) where rc is the OperationContext which was not correctly constructed. This seems dangerous, because middleware may assume that if there in an OperationContext in the context.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.

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

v0.17.41

Compare Source

5e98a16a 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


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 bump

v0.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
New Contributors

Full Changelog: 99designs/gqlgen@v0.17.37...v0.17.38

v0.17.37

Compare Source

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://togithub.com/goModel) added. (#​2780)
  • forceGenerate to docs added

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

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:

types: return the set of all named types contained within this schema.
Any named type which can be found through a field of any introspection type must be included in this set.

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.

v0.17.36

Compare Source

60ec0d86 Fix plugin template resolution (#​2733) (closes #​2262)
  • According to the documentation comment for [templates.Options], if the
    Template and TemplateFS fields are empty, it Render should find
    the .gotpl files from the calling plugin. However, it looks like
    helper 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 template
    from the plugin, the test template from this package is used which
    outputs only: this is my test package.
  • The cause for this is that runtime.Caller was still only skipping
    one stack level which means that it was finding the Render function
    instead of its caller.
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

v0.17.35

Compare Source

7880739d Add op ctx safety for apollo tracing (#​2709)
  • Add automated tests for both tracing and tracer to simulate a client disconnect
  • Check for existence of operation context before proceeding to avoid panic

v0.17.34

Compare Source

1a9dbadd 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

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

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 bump

v0.17.33

Compare Source

790a72c1 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 bump

v0.17.32

Compare Source

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

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 case

  • add followschema tests for binding to *any case

  • make ptr_to_any binding tests follow binding conventions better

c313bf3d `[@defer](https://togithub.com/defer)` initial support (#​2

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.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.20 Update module github.com/99designs/gqlgen to v0.17.20 - autoclosed Nov 26, 2022
@renovate renovate bot closed this Nov 26, 2022
@renovate renovate bot deleted the renovate/github.com-99designs-gqlgen-0.x branch November 26, 2022 00:28
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.20 - autoclosed Update module github.com/99designs/gqlgen to v0.17.20 Nov 26, 2022
@renovate renovate bot restored the renovate/github.com-99designs-gqlgen-0.x branch November 26, 2022 02:53
@renovate renovate bot reopened this Nov 26, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 6987f1d to 3fca9d2 Compare January 27, 2023 04:23
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.20 Update module github.com/99designs/gqlgen to v0.17.24 Jan 27, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 3fca9d2 to f66aba2 Compare February 28, 2023 19:46
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.24 Update module github.com/99designs/gqlgen to v0.17.25 Feb 28, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from f66aba2 to 3941749 Compare March 8, 2023 03:23
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.25 Update module github.com/99designs/gqlgen to v0.17.26 Mar 8, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 3941749 to 8e9ce4f Compare March 20, 2023 19:14
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.26 Update module github.com/99designs/gqlgen to v0.17.27 Mar 20, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch 3 times, most recently from 0e2dc40 to 219964b Compare March 22, 2023 10:04
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 219964b to a217f59 Compare April 3, 2023 19:18
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.27 Update module github.com/99designs/gqlgen to v0.17.28 Apr 3, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from a217f59 to 79adcfc Compare April 11, 2023 21:43
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.28 Update module github.com/99designs/gqlgen to v0.17.29 Apr 11, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 79adcfc to 0d0fec3 Compare April 20, 2023 21:25
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.29 Update module github.com/99designs/gqlgen to v0.17.30 Apr 20, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 0d0fec3 to 82364b2 Compare May 5, 2023 15:13
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.30 Update module github.com/99designs/gqlgen to v0.17.31 May 5, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 82364b2 to 4bde62a Compare June 11, 2023 11:03
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.31 Update module github.com/99designs/gqlgen to v0.17.32 Jun 11, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 4bde62a to 432b066 Compare June 13, 2023 22:48
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.32 Update module github.com/99designs/gqlgen to v0.17.33 Jun 13, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 432b066 to 4891ff0 Compare June 23, 2023 22:19
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.33 Update module github.com/99designs/gqlgen to v0.17.34 Jun 23, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 4891ff0 to 7c9e680 Compare July 16, 2023 01:48
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.34 Update module github.com/99designs/gqlgen to v0.17.35 Jul 16, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 7c9e680 to fb58894 Compare July 27, 2023 20:34
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.35 Update module github.com/99designs/gqlgen to v0.17.36 Jul 27, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from fb58894 to 000f1b7 Compare September 8, 2023 17:40
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.36 Update module github.com/99designs/gqlgen to v0.17.37 Sep 8, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 000f1b7 to b9684d2 Compare September 19, 2023 14:47
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.37 Update module github.com/99designs/gqlgen to v0.17.38 Sep 19, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from b9684d2 to d18681c Compare October 5, 2023 19:36
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.38 Update module github.com/99designs/gqlgen to v0.17.39 Oct 5, 2023
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.39 Update module github.com/99designs/gqlgen to v0.17.39 - autoclosed Oct 23, 2023
@renovate renovate bot closed this Oct 23, 2023
@renovate renovate bot deleted the renovate/github.com-99designs-gqlgen-0.x branch October 23, 2023 10:07
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.39 - autoclosed Update module github.com/99designs/gqlgen to v0.17.39 Oct 23, 2023
@renovate renovate bot reopened this Oct 23, 2023
@renovate renovate bot restored the renovate/github.com-99designs-gqlgen-0.x branch October 23, 2023 14:27
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from d18681c to 908319d Compare October 24, 2023 15:58
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.39 Update module github.com/99designs/gqlgen to v0.17.40 Oct 24, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 908319d to 04e94d3 Compare December 4, 2023 02:35
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.40 Update module github.com/99designs/gqlgen to v0.17.41 Dec 4, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 04e94d3 to 578ff82 Compare December 30, 2023 05:11
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.41 Update module github.com/99designs/gqlgen to v0.17.42 Dec 30, 2023
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 578ff82 to c19cfc0 Compare January 18, 2024 17:09
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.42 Update module github.com/99designs/gqlgen to v0.17.43 Jan 18, 2024
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from c19cfc0 to 3458daf Compare February 15, 2024 19:04
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.43 Update module github.com/99designs/gqlgen to v0.17.44 Feb 15, 2024
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 3458daf to 5cfb9cc Compare March 12, 2024 01:49
@renovate renovate bot changed the title Update module github.com/99designs/gqlgen to v0.17.44 Update module github.com/99designs/gqlgen to v0.17.45 Mar 12, 2024
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants