Skip to content
This repository has been archived by the owner on Sep 25, 2022. It is now read-only.

fix(deps): update module github.com/99designs/gqlgen to v0.17.20 #67

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

Conversation

renovate[bot]
Copy link

@renovate renovate bot commented Jan 15, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/99designs/gqlgen require minor v0.14.0 -> v0.17.20

Release Notes

99designs/gqlgen

v0.17.20

Compare Source

12ae8ffa Update go-colorable and x/tools. (#​2382)

This picks up a new 2022 version of golang.org/x/sys which is caused by
https://github.com/golang/go/issues/49219 and is needed to fix building
using Go 1.18 on aarch64-darwin.

68136ffb Update diagram in documentation (#​2381)

The diagram wasn't rendering properly in Go docs, which was a shame because it's a great diagram. This PR fixes that by indenting it another space.

  • d29d098 fix field merging behavior for fragments on interfaces (#​2380)

  • 6bb3186 Update changelog for v0.17.19

  • bb7fbc0 v0.17.19 postrelease bump

v0.17.19

Compare Source

v0.17.18

Compare Source

b7cc094a testfix: make apollo federated tracer test more consistent (#​2374)
  • Update tracing_test.go

  • add missing imports

v0.17.17

Compare Source

462025b4 nil check error before type assertion follow-up from #​2341 (#​2368)
  • Improve errcode.Set safety
59493aff fix: apollo federation tracer was race prone (#​2366)

The tracer was using a global state across different goroutines
Added req headers to operation context to allow it to be fetched in InterceptOperation

182b039d Add `subscriptions.md` recipe to docs (#​2346)
  • Add subscriptions.md recipe to docs

  • Fix wrong request type

v0.17.16

Compare Source

32e2ccd3 Update yaml to v3 (#​2339)
  • update yaml to v3

  • add missing go entry for yaml on _example

  • add missing sum file

  • 7949117 v0.17.15 postrelease bump

v0.17.15

Compare Source

2b584011 Fix Interface Slice Getter Generation (#​2332)
  • Make modelgen test fail if generated doesn't build
    Added returning list of interface to modelgen test schema

  • Implement slice copying when returning interface slices

  • Re-generate to satisfy the linter

aee57b4c Correct boolean logic (#​2330)

Correcting boolean logic issue

  • da0610e Update changelog for v0.17.14

  • ddcb524 v0.17.14 postrelease bump

v0.17.14

Compare Source

9f919d2c Avoid GraphQL to Go Naming Collision with "ToGoModelName" func (#​2322) (closes #​2321)
  • using ReplaceAllStringLiteral

  • fixing wordInfo template test

  • bumping linter timeout to 5m

  • comment cleanup

  • some cleanup, adding "ToGoPrivateModelName" func

  • adding "ToGoPrivateModelName" func

  • refactoring word walker impl and tests

  • hopefully making linter happy

  • 2304c10 Include docstrings on interface getters (#​2317)

  • f5d6032 Leverage (*Imports).LookupType when generating interface field getters (#​2315)

242c3ba2 Generate getters for interface fields (#​2314)
  • Generate getters for interface fields

  • Changes to make models_test.go pass

  • Use text/template, not html/template

  • Re-run go generate ./...

  • gofmt a few files that were failing lint checks

  • Another gofmt straggler

  • Try making the "generated" match the exact whitespace github is disliking

779d7cdd Add support for KeepAlive message in websocket client (#​2293)
  • Add support for KeepAlive message in websocket client

  • rewrite if-else to switch statement

  • 5a37d1d v0.17.13 postrelease bump

v0.17.13

Compare Source

f0e9047d Hide dependencies in `tools.go` from importers (#​2287)

Projects that use go mod vendor will vendor github.com/matryer/moq
despite it not being required at runtime.

Moving tools.go to internal hides this import from downstream
users and avoids github.com/matryer/moq being vendored.

go generate of the mocks still works as expected.

The assumption behind the import test broke, so I've pointed it at a
different path that has no Go code. This seems to match the intent
behind the original test for the internal/code/.. path.

30493696 fix: return the original error (#​2288)
  • fix: return the original error

close https://github.com/99designs/gqlgen/issues/2286

  • Update error.go

v0.17.12

Compare Source

0b0e5ce4 Replace use of strings.Title with cases.Title (#​2268)
  • github: Test more go versions

  • github: Fix ci tests

  • github: Increase verbosity, sleep

  • github: Drop bash

  • github: Test go 1.18 and newer node verisons

  • github: Pull out node 16 for now

  • github: Only lint 1.16 for now

  • cases: Use cases.Title over strings.Title which is deprecated

  • gqlgen: Remove use of deprecated strings.Title

v0.17.11

Compare Source

b8497f52 github: Fix CI pipelines (#​2266)
  • github: Test more go versions

  • github: Fix ci tests

  • github: Increase verbosity, sleep

  • github: Drop bash

  • github: Test go 1.18 and newer node verisons

  • github: Pull out node 16 for now

  • github: Only lint 1.16 for now

c287a7b0 codegen: fix resolvers execution order (#​2267)
  • codegen: fix run order of resolver

  • fix: update code generate

  • fix: update stub, root to generate resolver for input

  • fix: added unit-test for input field order

  • fix: added test for singlefile

8481457f gqlgen: Add resolver comment generation and preservation (#​2263)
  • gqlgen: Add resolver comment generation and preservation

  • gqlgen: Regenerate

34bbc450 Use the go:embed API to lookup templates (#​2262)
  • Switch the templates package internally to read from TemplateFS

Users are expected to pass in the FS by using the embed API.

  • Update all usages of templates.Render to use the TemplateFS option

  • Fix unit tests

  • Fix linter error

  • Commit generated changes

Doesn't look like anything has changed though. Maybe just a different
whitespace character.

  • Fix test
53ca207a Fix PR links in CHANGELOG.md (#​2257)
  • fix "PR" regex in CHANGELOG-full-history.tpl.md

  • regenerate CHANGELOG.md

53ada82e Replace deprecated ioutil pkg with os & io (#​2254)

As of Go 1.16, the same functionality is now provided by package io or
package os, and those implementations should be preferred in new code.

So replacing all usage of ioutil pkg with io & os.

v0.17.10

Compare Source

c355df9e fix #​1876: Optional Any type should allow nil values (#​2231)
  • Anonymous func that checks value of arg type interface for nil

  • Added unit test for CallArgs()

  • Fixed type of argument in unit test

v0.17.9

Compare Source

6855b729 fix: prevent goroutine leak and CPU spinning at websocket transport (#​2209) (closes #​2168)
  • Added goroutine leak test for chat example

  • Improved chat example with proper concurrency

This reverts commit eef7bfa.

  • Improved subscription channel usage

  • Regenerated examples and codegen

  • Add support for subscription keepalives in websocket client

  • Update chat example test

  • if else chain to switch

  • Revert "Add support for subscription keepalives in websocket client"

This reverts commits 64b882c and 670cf22.

  • Fixed chat example race condition

  • Fixed chatroom#Messages type

5f5bfcb9 fix #​2204 - don't try to embed builtin sources (#​2214)
  • dont't try to embed builtins

  • add test

  • generated code

  • fix error message string

v0.17.8

Compare Source

v0.17.7

Compare Source

8825ac46 Fix misprint (#​2187)
  • Fix misprint

  • Fix misprint

  • Re-generate

v0.17.6

Compare Source

f7bf453c Bump dset from 3.1.1 to 3.1.2 in /integration (#​2176)

Bumps dset from 3.1.1 to 3.1.2.


updated-dependencies:

  • dependency-name: dset
    dependency-type: indirect
    ...
4cdf7026 Update getting-started.md (#​2157)

Fix getting-started missing fields resolver config

f6b35231 Add argument to WebsocketErrorFunc (#​2124)
  • Add argument to WebsocketErrorFunc

to determine whether the error ocured on read or write to the websocket.

  • Wrap websocket error
  • 0f016df Fix invalid query parameter for playground subscription endpoint (#​2148)
fb5751ab use "embed" in generated code (#​2119)
  • use "embed" in generated code

  • don't use embed for builtins

  • working poc

  • handle no embeddable sources

  • fix dir

  • comment

  • add test for embedding

  • improve error handling

d38911f1 Allow absolute https://github.com/99designs/gqlgens to the GraphQL playground (#​2142)
  • Allow absolute URLs to the GraphQL playground

  • Add test for playground URLs

  • Close res.Body in playground test

3228f36f Update getting-started.md (#​2140)
  • Update getting-started.md

function rand.Int requires two parameters and returns two value in golang version 1.18.1.

  • Highlight the package used so people don't pick crypto/rand

  • Revert to original

  • Remove extra space

33fe0b9b Update package.json (#​2138)

I added graphql-ws because there is no graphql-ws in package.json

f8e837b8 Use MultipartReader to parse file uploads (#​2135)

Use a streaming MultipartReader to parse requests with file
uploads. The GraphQL multipart request specification guarantees
that the operations and map form fields will come first.

There are two reasons motivating this change:

  • This allows for file uploads without specifying a specific
    filename.
  • This avoids unnecessary copies for requests with more than one
    file. Go's ParseForm already copies the request's body into
    memory or on disk. We were also doing this manually as a second
    step.

v0.17.5

Compare Source

9250f9ac Feature: Add FTV1 Support via Handler (#​2132)
  • initial support for ftv1 traces via handler

  • remove testing json extension

  • remove binary from commit and add to .gitignore

  • updating go.mod

  • updating examples go.sum

  • rerunning generate within the examples folder

fce3a11a feat: added graphql.UnmarshalInputFromContext (#​2131)
  • feat: added graphql.UnmarshalInputFromContext

  • chore: run go generate for _examples

  • fix: apply suggestions from code review

  • fix: update error cases

  • fix: fixed unit-test by update root_.gotpl

  • fix: apply suggestions from code review

  • fix: update graphql/input.go

6a24e881 update instructions to specify package of Role (#​2130)

Can't compile with the example unless I also include model. for Role.

v0.17.4

Compare Source

2a2a3dcb Feature: Adds Federation 2 Support (#​2115)
  • fed2 rough support

  • autodetection of fed2

  • adding basic tests for changes

  • fixing docs

  • Update plugin/federation/federation.go

  • removing custom scalar since it was causing issues

  • fixing lint test

  • should fix for real this time

  • fixing test failures

77260e88 shorten some generated code (#​2120)
  • shorten some generated code

  • generate examples

4da17e1c update modules except mapstructure (#​2118)
  • Update modules

  • Update modules except for mapstructure

  • Try to update to v1.3.1

v0.17.3

Compare Source

8d0bd22a Update gqlparser (#​2109)
  • Update gqlparser

  • Update tests to be NoError

ec0dea88 Fix the ability of websockets to get errors (#​2097)

Because DispatchOperation creates tempResponseContext,
which is passed into Exec, which is then used in _Subscription to
generate the next function. Inside the various subscription functions
when generating next the context was captured there.

Which means later when the returned function from DispatchOperation is
called. The responseContext which accumulates the errors is the
tempResponseContext which we no longer have access to to read the errors
out of it.

Instead add a context to next() so that it can be passed through and
accumulated the errors as expected.

Added a unit test for this as well.

e3f04b42 Change the error message to be consumer targeted (#​2096)
  • Change the error message to be slightly more clear

  • Rebase on updated origin/master.

Fix the test to not be sensitive to array ordering.
Re-generate on master as there was a schema change.

5a497649 Fix websocket subscriptions to not double close. (#​2095)

We were closing at the end of the loop and also in the defer.

  • a15a9bf Update test.yml to be valid
a1538928 Use Github API to update the docs (#​2101)
  • Use Github API to update the docs

Instead of a hard-coded version of the docs we want to realease, this
uses the Github API to get the last 20 versions and publish those. This
will allow any script invoking this to make sure to always have the
latest version of the docs

  • Reinstate set -e
12c6d0bf Fix misprint (#​2102)
  • Fix misprint

  • Update websocket_graphql_transport_ws.go

9f5fad13 Bump minimist from 1.2.5 to 1.2.6 in /integration (#​2085)

Bumps minimist from 1.2.5 to 1.2.6.


updated-dependencies:

  • dependency-name: minimist
    dependency-type: indirect
    ...
035e1d6e Add AllowedMethods field to transport.Options (#​2080)
  • Add AllowedMethods field to transport.Options

to enable users to specify allowed HTTP methods.

  • Update graphql/handler/transport/options.go
12b0b385 Bump Playground version (#​2078)
  • update playground

  • enables tabs

  • update shas

1324c3ff Merge pull request #​2062 from a8m/childfield

graphql: add FieldContext.Child field function and enable it in codegen

  • bf9caea graphql: add FieldContext.ChildArgs field and enable it in codegen

  • 36fb3dc codegen: allow binding methods with optional variadic arguments (#​2066)

  • fba5edd Update Changelog

  • 48b2b7e v0.17.2 postrelease bump

v0.17.2

Compare Source

12ae8ffa Update go-colorable and x/tools. (#​2382)

This picks up a new 2022 version of golang.org/x/sys which is caused by
https://github.com/golang/go/issues/49219 and is needed to fix building
using Go 1.18 on aarch64-darwin.

<d


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, click this checkbox.

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

@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from df3b792 to 6320018 Compare January 16, 2022 19:42
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.15.0 fix(deps): update module github.com/99designs/gqlgen to v0.15.1 Jan 16, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 6320018 to 12bbde1 Compare January 24, 2022 20:27
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.15.1 fix(deps): update module github.com/99designs/gqlgen to v0.16.0 Jan 24, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 12bbde1 to a1ff2bd Compare March 2, 2022 04:00
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.16.0 fix(deps): update module github.com/99designs/gqlgen to v0.17.0 Mar 2, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from a1ff2bd to 61acc30 Compare March 2, 2022 15:00
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.0 fix(deps): update module github.com/99designs/gqlgen to v0.17.1 Mar 2, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch 2 times, most recently from 475f78e to c38dd4f Compare March 12, 2022 15:24
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch 2 times, most recently from ca8822d to a0299fc Compare March 21, 2022 14:45
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.1 fix(deps): update module github.com/99designs/gqlgen to v0.17.2 Mar 21, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from a0299fc to df0ce50 Compare March 21, 2022 16:50
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from df0ce50 to 3d82387 Compare April 1, 2022 04:58
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 3d82387 to 6e4b207 Compare April 9, 2022 05:49
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 6e4b207 to 0784a83 Compare April 20, 2022 21:26
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.2 fix(deps): update module github.com/99designs/gqlgen to v0.17.3 Apr 20, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 0784a83 to 90d04a2 Compare April 26, 2022 00:58
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.3 fix(deps): update module github.com/99designs/gqlgen to v0.17.4 Apr 26, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 90d04a2 to ca1d300 Compare April 29, 2022 15:24
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.4 fix(deps): update module github.com/99designs/gqlgen to v0.17.5 Apr 29, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch 3 times, most recently from 621b3be to 936c492 Compare May 14, 2022 04:12
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch 2 times, most recently from 71bb601 to a62d6c9 Compare May 23, 2022 21:48
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.5 fix(deps): update module github.com/99designs/gqlgen to v0.17.6 May 23, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from a62d6c9 to 65a79ce Compare May 24, 2022 15:00
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.6 fix(deps): update module github.com/99designs/gqlgen to v0.17.7 May 24, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 65a79ce to a8f908e Compare May 25, 2022 14:21
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.7 fix(deps): update module github.com/99designs/gqlgen to v0.17.8 May 25, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from a8f908e to 67d229d Compare May 26, 2022 21:13
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.8 fix(deps): update module github.com/99designs/gqlgen to v0.17.9 May 26, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 67d229d to 7e74b48 Compare May 27, 2022 06:30
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 7e74b48 to 55f0a1a Compare June 13, 2022 18:24
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.9 fix(deps): update module github.com/99designs/gqlgen to v0.17.10 Jun 13, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 55f0a1a to 8cd5f2e Compare July 4, 2022 00:15
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.10 fix(deps): update module github.com/99designs/gqlgen to v0.17.11 Jul 4, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 8cd5f2e to e604fd3 Compare July 5, 2022 03:39
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.11 fix(deps): update module github.com/99designs/gqlgen to v0.17.12 Jul 5, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from e604fd3 to 9fd35d2 Compare July 15, 2022 23:39
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.12 fix(deps): update module github.com/99designs/gqlgen to v0.17.13 Jul 15, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 9fd35d2 to c5ca7d5 Compare September 25, 2022 13:24
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.13 fix(deps): update module github.com/99designs/gqlgen to v0.17.20 Sep 25, 2022
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants