This repository was archived by the owner on Dec 19, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
chore(deps): update all non-major dependencies #64
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/all-minor-patch
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Conversation
This file contains hidden or 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
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
|
f2c0140 to
0dd6365
Compare
0dd6365 to
3a6940a
Compare
3a6940a to
574c002
Compare
574c002 to
a70de87
Compare
a70de87 to
9fbc391
Compare
9fbc391 to
ca834f2
Compare
ca834f2 to
2a024b4
Compare
2a024b4 to
d0ea3a7
Compare
d0ea3a7 to
d98455d
Compare
d98455d to
63f772c
Compare
63f772c to
e46930d
Compare
e46930d to
53e5bcb
Compare
53e5bcb to
09f0477
Compare
298d0f8 to
99a7164
Compare
99a7164 to
8f30be4
Compare
2da0c31 to
29ca8a7
Compare
e0f2420 to
64e1fcb
Compare
64e1fcb to
1e5d76d
Compare
1e5d76d to
eb0dd59
Compare
eb0dd59 to
67a33b0
Compare
67a33b0 to
ebf14f6
Compare
ebf14f6 to
5d51913
Compare
5d51913 to
4bad031
Compare
202b41a to
88d5f33
Compare
88d5f33 to
894f62c
Compare
c37437d to
e42ea3a
Compare
65ec03f to
2873ec7
Compare
2873ec7 to
c9256d1
Compare
c9256d1 to
f499f60
Compare
f2f04b1 to
62c8441
Compare
62c8441 to
2d08f29
Compare
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
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.8.0->2.13.130.9.3->0.9.70.18.2->0.27.103.8.2->3.13.05.1.0->5.5.016.5.0->16.10.09.3.4->9.4.13.0.0-rc.4->3.14.15924.18.0->4.19.0Release Notes
dotansimha/graphql-yoga (@graphql-yoga/node)
v2.13.13Compare Source
v2.13.12Compare Source
v2.13.11Compare Source
v2.13.10Compare Source
v2.13.9Compare Source
v2.13.8Compare Source
v2.13.7Compare Source
v2.13.6Compare Source
Patch Changes
eecf24c: Fix CommonJS TypeScript resolution withmoduleResolutionnode16ornodenexteecf24c]v2.13.5Compare Source
Patch Changes
c00dad3: Resolve issue where@whatwg-node/fetchcaused otherfetchto fail processing HTTP requests.c00dad3]v2.13.4Compare Source
Patch Changes
889d16d]v2.13.3Compare Source
Patch Changes
639607d: Previously the async iterable returned by GraphQL executor isn't cleaned up properly on Node environments because ReadableStream implementation of Node doesn't call defined "cancel" method in the right time. Now it has been patched in cross-undici-fetch and we ensure "Response.body" is destroyed after Node.js's ServerResponse is ended by any meansv2.13.2Compare Source
Patch Changes
3363de2]v2.13.1Compare Source
Patch Changes
ebddc71]v2.12.0Compare Source
Patch Changes
5bcd8ea]v2.11.2Compare Source
Patch Changes
ca5f940: Usereq.bodyonly if it is filledSome frameworks use this unofficial
bodyfield to send the parsed body to the middlewares.GraphQL Yoga respects that and uses this
bodyas it is like a JSON request.But sometimes speifically for multipart requests,
bodyis present even if the actual request stream isn't parsed yet.Now GraphQL Yoga checks the body content is filled to see if the request is bothered to make sure
bodyis correct.This fixes an issue that happens when you use
bodyParserwithexpress.bodyParsersends an emptybodyin case ofmultipartrequest.v2.11.1Compare Source
Patch Changes
9248df8: Bring back Node 12 supportEven if Node 12 reached the end of its life, we keep supporting it until the next major release.
So in the previous release, we broke this support because of the new import names of Node's native packages such as
node:httpinstead ofhttp.v2.11.0Compare Source
Patch 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
multipartoptions.Previously it was returning 400 or 500 which is an incorrect behavior misleading the client.
Possible to configure the HTTP status code and headers of the response
8947657]v2.10.0Compare 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
consoleimplementation 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.
Note for custom logger and fastify users
No more custom
inspectUpdated dependencies [
7de07cd]Updated dependencies [
8922c3b]v2.9.2Compare Source
Patch Changes
2c0bcda]v2.9.1Compare Source
Patch Changes
a06091f]v2.9.0Compare Source
Minor Changes
2d3c54c: export node yoga server typesPatch Changes
06652c7: Fix GraphQLYogaError being thrown from contextFactory to be treated as an unexpected error. The bug would previously prevent the GraphQLYogaErrorextensionsfrom being exposed in the result and cause a status code of 500.06652c7]a4960bd]microsoft/TypeScript-Website (@typescript/ata)
v0.9.7Compare Source
Patch Changes
1d0af97Thanks @Renegade334! - Always treatnode:modules as Node, expand list of known Node modulesv0.9.6Compare Source
Patch Changes
#2977
7691811Thanks @curran! - Widen typescript peer dependency range#3000
71776aeThanks @antfu! - Handle.d.ctsand.d.mtsfiles#3002
fd776c0Thanks @antfu! - Fix return type ofsetupTypeAcquisitionv0.9.5Compare Source
Patch Changes
46eba14: Initial bump for changesetsvercel/nft (@vercel/nft)
v0.27.10Compare Source
Bug Fixes
v0.27.9Compare Source
Bug Fixes
v0.27.8Compare Source
Bug Fixes
v0.27.7Compare Source
Bug Fixes
v0.27.6Compare Source
Bug Fixes
@mapbox/[email protected](#451) (12116d2)v0.27.5Compare Source
Bug Fixes
geoip-lite(#446) (b3d2da0)v0.27.4Compare Source
Bug Fixes
module.registerdependencies (#429) (37b3c16), closes #428v0.27.3Compare Source
Bug Fixes
false(#427) (099608f), closes /github.com/inspect-js/object-inspect/blob/main/package.json#L82 /github.com/inspect-js/object-inspect/blob/main/index.js#L68-L70v0.27.2Compare Source
Bug Fixes
v0.27.1Compare Source
Bug Fixes
@datadog/pprof(#419) (db6c65a)v0.27.0Compare Source
Features
v0.26.5Compare Source
Bug Fixes
v0.26.4Compare Source
Bug Fixes
v0.26.3Compare Source
Bug Fixes
v0.26.2Compare Source
Bug Fixes
>=16(#383) (adda8f4)v0.26.1Compare Source
Bug Fixes
v0.26.0Compare Source
Features
v0.25.0Compare Source
Features
v0.24.4Compare Source
Bug Fixes
v0.24.3Compare Source
Bug Fixes
v0.24.2Compare Source
Bug Fixes
v0.24.1Compare Source
Bug Fixes
v0.24.0Compare Source
Features
v0.23.1Compare Source
Bug Fixes
builtinModulesfrommodule(#358) (bcb71fd)v0.23.0Compare Source
Features
resolve()function (#354) (0da80c0)v0.22.6Compare Source
Bug Fixes
v0.22.5Compare Source
Bug Fixes
v0.22.1Compare Source
Patches
v0.22.0Compare Source
Changes
v0.21.0Compare Source
Minor Changes
fs-extraandgraceful-fs: #296Credits
Huge thanks to @kachkaev and @Brooooooklyn for helping!
v0.20.1Compare Source
Changes
node-pre-gypdependency: #299v0.20.0Compare Source
Changes
.jsx): #294v0.19.1Compare Source
Patches
v0.19.0Compare Source
Minor Changes
node:prefix: #285Credits
Huge thanks to @Rich-Harris for helping!
apollographql/apollo-server (apollo-server-micro)
v3.13.0Compare Source
v3.12.1Compare Source
v3.12.0Compare Source
v3.11.1Compare Source
v3.11.0Compare Source
v3.10.4Compare Source
v3.10.3Compare Source
v3.10.2Compare Source
v3.10.1Compare Source
v3.10.0Compare Source
v3.9.0Compare Source
troy351/emmet-monaco-es (emmet-monaco-es)
v5.5.0Compare Source
v5.4.0Compare Source
mdxlanguage #105, thanks to @remcohaszingv5.3.2Compare Source
v5.3.1Compare Source
v5.3.0Compare Source
ec12f37, fixed #110v5.2.2Compare Source
fixed compatibility with monaco-editor 0.37.0
734ea41v5.2.1Compare Source
7e3f116v5.2.0Compare Source
06c4e19v5.1.2Compare Source
5e444d6v5.1.1Compare Source
graphql/graphql-js (graphql)
v16.10.0: 16.10.0Compare Source
v16.10.0 (2024-12-15)
New Feature 🚀
extensionsin GraphQLFormattedError (@tpoisseau)Bug Fix 🐞
Docs 📝
10 PRs were merged
@oneOfin the graphql-js documentation (@JoviDeCroock)Internal 🏠
4 PRs were merged
Committers: 5
v16.9.0Compare Source
v16.9.0 (2024-06-21)
New Feature 🚀
@oneOfdirective (@benjie)Committers: 1
v16.8.2Compare Source
v16.8.2 (2024-06-12)
Bug Fix 🐞* #4022 fix: remove
globalThischeck and align with what bundlers can accept (@JoviDeCroock)Internal 🏠* #4104 Fix publish scripts (@benjie)
Committers: 2
v16.8.1Compare Source
v16.8.1 (2023-09-19)
Bug Fix 🐞
Committers: 1
v16.8.0Compare Source
v16.8.0 (2023-08-14)
New Feature 🚀
Committers: 1
v16.7.1Compare Source
v16.7.1 (2023-06-22)
📢 Big shout out to @phryneas, who managed to reproduce this issue and come up with this fix.
Bug Fix 🐞
process.env(@IvanGoncharov)Committers: 1
v16.7.0Compare Source
v16.7.0 (2023-06-21)
New Feature 🚀
Bug Fix 🐞
Committers: 3
v16.6.0Compare Source
v16.6.0 (2022-08-16)
New Feature 🚀
Bug Fix 🐞
Committers: 2
vercel/micro (micro)
v9.4.1Compare Source
Patches
https://www.npmjs.com/package/micro/v/9.4.1
v9.4.0Compare Source
Patches
62c1e0185d7bd6Other
https://www.npmjs.com/package/micro/v/9.4.0
nuxt/nuxt (nuxt)
v3.14.1592Compare Source
👉 Changelog
compare changes
🩹 Fixes
webpackbarwith support for rspack (#29823)dstto deduplicate templates when adding them ([#29895](https://redirect.githubConfiguration
📅 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.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.