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

fix(deps): update module github.com/99designs/gqlgen to v0.17.13 - autoclosed #11

Closed
wants to merge 1 commit into from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 3, 2022

Mend Renovate

This PR contains the following updates:

Package Type Update Change
github.com/99designs/gqlgen require patch v0.17.2 -> v0.17.13

Release Notes

99designs/gqlgen

v0.17.13

Compare Source

What's Changed

New Contributors

Full Changelog: 99designs/gqlgen@v0.17.12...v0.17.13

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


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 5533fa3 to 2d2e58f Compare May 23, 2022 19:22
@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 2d2e58f to 6c715d5 Compare May 24, 2022 16:14
@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 6c715d5 to bc88053 Compare May 25, 2022 12:34
@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 bc88053 to d14d24a Compare May 26, 2022 19:52
@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 3 times, most recently from dc8f3f2 to 33158c7 Compare June 5, 2022 18:18
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch 2 times, most recently from 32e8fab to e693065 Compare June 13, 2022 21:41
@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 e693065 to 899b2c4 Compare July 3, 2022 23:59
@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 3, 2022
@renovate renovate bot force-pushed the renovate/github.com-99designs-gqlgen-0.x branch from 899b2c4 to 7f6c13b Compare July 5, 2022 03:58
@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 7f6c13b to e399c30 Compare July 15, 2022 22:37
@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 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.13 - autoclosed Jul 19, 2022
@renovate renovate bot closed this Jul 19, 2022
@renovate renovate bot deleted the renovate/github.com-99designs-gqlgen-0.x branch July 19, 2022 15:07
@renovate renovate bot changed the title fix(deps): update module github.com/99designs/gqlgen to v0.17.13 - autoclosed fix(deps): update module github.com/99designs/gqlgen to v0.17.13 Jul 19, 2022
@renovate renovate bot restored the renovate/github.com-99designs-gqlgen-0.x branch July 19, 2022 17:13
@renovate renovate bot reopened this Jul 19, 2022
@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.13 - autoclosed Aug 5, 2022
@renovate renovate bot closed this Aug 5, 2022
@renovate renovate bot deleted the renovate/github.com-99designs-gqlgen-0.x branch August 5, 2022 21:38
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.

0 participants