-
Notifications
You must be signed in to change notification settings - Fork 993
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 dependency @graphql-yoga/common to v2.12.7 #5962
Merged
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
renovate
bot
added
the
release:chore
This PR is a chore (means nothing for users)
label
Jul 15, 2022
✅ Deploy Preview for redwoodjs-docs canceled.
|
renovate
bot
force-pushed
the
renovate/graphql-yoga-common-2.x
branch
20 times, most recently
from
July 18, 2022 07:00
af478d6
to
083c52b
Compare
renovate
bot
force-pushed
the
renovate/graphql-yoga-common-2.x
branch
7 times, most recently
from
July 19, 2022 03:37
005863d
to
aa78598
Compare
renovate
bot
force-pushed
the
renovate/graphql-yoga-common-2.x
branch
2 times, most recently
from
August 16, 2022 10:47
b4545c2
to
9e6c74d
Compare
renovate
bot
changed the title
fix(deps): update dependency @graphql-yoga/common to v2.12.5
fix(deps): update dependency @graphql-yoga/common to v2.12.6
Aug 16, 2022
renovate
bot
force-pushed
the
renovate/graphql-yoga-common-2.x
branch
7 times, most recently
from
August 19, 2022 12:46
30fc203
to
e15dd7f
Compare
renovate
bot
changed the title
fix(deps): update dependency @graphql-yoga/common to v2.12.6
fix(deps): update dependency @graphql-yoga/common to v2.12.7
Aug 19, 2022
@dthyresson That's what I'm hoping |
1 task
jtoar
force-pushed
the
renovate/graphql-yoga-common-2.x
branch
from
August 22, 2022 07:37
12df22c
to
b8ac62d
Compare
jtoar
pushed a commit
that referenced
this pull request
Aug 22, 2022
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
jtoar
pushed a commit
that referenced
this pull request
Aug 22, 2022
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Hi, may i know what is the plan of v2.2.1 release? |
@pchc2005 Yes, we're aiming for a patch release as soon as possible |
Great thanks @Tobbe ! |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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:
2.7.0
->2.12.7
Release Notes
dotansimha/graphql-yoga
v2.12.7
Compare Source
Patch Changes
5193e43
Thanks @n1ru4l! - Use 'correct' deep import for working around unpkg limitations of not supporting the package.json exports map.v2.12.6
Compare Source
Patch Changes
e4e8ade
Thanks @n1ru4l! - Update@envelop/core
which resolves swallowed context errors with error masking.94b41f3
Thanks @n1ru4l! - Apply the HTTP validation error plugin last in order to not interfere error masking when using thehandleValidationErrors
option.v2.12.5
Compare Source
Patch Changes
eecf24c
: Fix CommonJS TypeScript resolution withmoduleResolution
node16
ornodenext
eecf24c
]v2.12.4
Compare Source
Patch Changes
c00dad3
: Resolve issue where@whatwg-node/fetch
caused otherfetch
to fail processing HTTP requests.v2.12.3
Compare Source
Patch Changes
889d16d
: Now GraphQL Yoga throws a better descriptive error message if the client sends a request with a non-string query parameter instead of expecting graphql.parse to fail and throw a cryptic JS TypeError.v2.12.2
Compare Source
Patch Changes
3363de2
: Useimport type { Foo } from '@​pkg'
instead ofimport { type Foo } from '@​pkg'
as many tools don't yet support this syntax.3363de2
]v2.12.1
Compare Source
Patch Changes
ebddc71
]v2.11.0
Compare Source
Minor Changes
5bcd8ea
: Improve DX for Cloudflare Workers and other environments like Bun that needs a default export with a fetch methodBefore in CF Workers Modules you had to do;
Now you can export Yoga instance as-is like below;
ServerContext
to the execution. So you can access KV Namespaces and otherEnv
variables in the context.v2.10.0
Compare Source
Minor Changes
8947657
: ## Correct status code for multipart request errorsReturn correct 413 (Request Entity Too Large) HTTP status code if the given request body is larger then the specified one in
multipart
options.Previously it was returning 400 or 500 which is an incorrect behavior misleading the client.
v2.9.0
Compare Source
Minor Changes
7de07cd
: Support TypeScript ECMA script resolution. More information on https://devblogs.microsoft.com/typescript/announcing-typescript-4-7/#ecmascript-module-support-in-node-jsPatch Changes
8922c3b
: ## Multiple parameters are not recommended (not used internally) for log methodsPreviously sometimes Yoga used to send data to the provided logger like below;
This behavior is working fine with JavaScript's native
console
implementation but most of the other non native logger implementation like Pino only accept a single parameter for its logging methods. So we decided to avoid sending multiple parameters to the logger.However, in order to prevent a breaking change, we kept the signatures of logger methods and they will still accept multiple parameters in a single call. You should keep on mind that eventually we will stop accepting multiple parameters and have the behavior similar to Pino's.
v2.8.3
Compare Source
Patch Changes
2c0bcda
: Remove 'Server: GraphQL Yoga' header from the responsev2.8.2
Compare Source
Patch Changes
a06091f
: '.inject' should set Content-Type to application/json by default. Previously the user should have set it.v2.8.1
Compare Source
Patch Changes
06652c7
: Fix GraphQLYogaError being thrown from contextFactory to be treated as an unexpected error. The bug would previously prevent the GraphQLYogaErrorextensions
from being exposed in the result and cause a status code of 500.a4960bd
: Ensure the GraphiQL version is compatible with the@graphql-yoga/common
version by hard-coding the version number before publishing/building.v2.8.0
Compare Source
Minor Changes
c96e7c2
: Supportapplication/graphql
,application/x-www-form-urlencoded
andapplication/graphql+json
as defined in GraphQL over HTTP specification and implemented inexpress-graphql
reference implementation so Yoga now accepts the following request bodies with specific "Content-Type" headers;application/graphql
can acceptquery something { somefield }
which takes the GraphQL operation directly asPOST
request bodyapplication/x-www-form-urlencoded
can acceptquery=something&variables={"somefield": "somevalue"}
which takes the GraphQL operation and variables asPOST
request bodyConfiguration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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.