Skip to content
This repository has been archived by the owner on Dec 19, 2024. It is now read-only.

chore(deps): update all non-major dependencies #64

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jun 13, 2022

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@graphql-yoga/node (source) 2.8.0 -> 2.13.13 age adoption passing confidence
@typescript/ata (source) 0.9.3 -> 0.9.7 age adoption passing confidence
@vercel/nft 0.18.2 -> 0.27.10 age adoption passing confidence
apollo-server-micro (source) 3.8.2 -> 3.13.0 age adoption passing confidence
emmet-monaco-es 5.1.0 -> 5.5.0 age adoption passing confidence
graphql 16.5.0 -> 16.10.0 age adoption passing confidence
micro 9.3.4 -> 9.4.1 age adoption passing confidence
nuxt (source) 3.0.0-rc.4 -> 3.14.1592 age adoption passing confidence
xterm 4.18.0 -> 4.19.0 age adoption passing confidence

Release Notes

dotansimha/graphql-yoga (@​graphql-yoga/node)

v2.13.13

Compare Source

v2.13.12

Compare Source

v2.13.11

Compare Source

v2.13.10

Compare Source

v2.13.9

Compare Source

v2.13.8

Compare Source

v2.13.7

Compare Source

v2.13.6

Compare Source

Patch Changes

v2.13.5

Compare Source

Patch Changes

v2.13.4

Compare Source

Patch Changes

v2.13.3

Compare 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 means

v2.13.2

Compare Source

Patch Changes

v2.13.1

Compare Source

Patch Changes

v2.12.0

Compare Source

Patch Changes

v2.11.2

Compare Source

Patch Changes
  • ca5f940: Use req.body only if it is filled

    Some frameworks use this unofficial body field to send the parsed body to the middlewares.
    GraphQL Yoga respects that and uses this body as it is like a JSON request.
    But sometimes speifically for multipart requests, body is 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 body is correct.

    This fixes an issue that happens when you use bodyParser with express. bodyParser sends an empty body in case of multipart request.

v2.11.1

Compare Source

Patch Changes
  • 9248df8: Bring back Node 12 support

    Even 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:http instead of http.

v2.11.0

Compare Source

Patch Changes
  • 8947657: ## Correct status code for multipart request errors

    Return 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.

Possible to configure the HTTP status code and headers of the response

Now we add a new `http` field to `GraphQLErrorExtensions` that you can set the status code and headers of the response;

```ts
throw new GraphQLError('You are not authorized to access this field', {
  extensions: {
    http: {
      status: 401,
      headers: {
        'WWW-Authenticate': 'Bearer',
      },
    },
  },
})
```

v2.10.0

Compare Source

Minor Changes
Patch Changes
  • 8922c3b: ## Multiple parameters are not recommended (not used internally) for log methods

    Previously sometimes Yoga used to send data to the provided logger like below;

    yogaLogger.debug(arg1, arg2, arg3)

    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.

Note for custom logger and fastify users

We still recommend to update your `logging` parameter in `createServer` call to make sure the other parameters after the first one aren't ignored if exists;

```js
createServer({
  ...someOtherOptions,
  logging: {
    // app.log is Fastify's logger
    // You should replace it with your own if you have some other logger implementation
    debug: (...args) => args.forEach((arg) => app.log.debug(arg)),
    info: (...args) => args.forEach((arg) => app.log.info(arg)),
    warn: (...args) => args.forEach((arg) => app.log.warn(arg)),
    error: (...args) => args.forEach((arg) => app.log.error(arg)),
  },
})
```

No more custom inspect

Previously Yoga's default logger implementation was using a platform independent port of Node's `util.inspect`. It was helping us to mimic `console.log`'s behavior to serialize object in a pretty way. But we no longer use it and pass multiple parameters to `console.log/debug/info/error` instead and leave the serialization to the environment. Don't get confused with the one above :) This is an optimization with default `console` which already supports multiple values. But the improvement above is for non native logger implementations.

v2.9.2

Compare Source

Patch Changes

v2.9.1

Compare Source

Patch Changes

v2.9.0

Compare Source

Minor Changes
  • 2d3c54c: export node yoga server types
Patch Changes
  • 06652c7: Fix GraphQLYogaError being thrown from contextFactory to be treated as an unexpected error. The bug would previously prevent the GraphQLYogaError extensions from being exposed in the result and cause a status code of 500.
  • Updated dependencies [06652c7]
  • Updated dependencies [a4960bd]
microsoft/TypeScript-Website (@​typescript/ata)

v0.9.7

Compare Source

Patch Changes

v0.9.6

Compare Source

Patch Changes

v0.9.5

Compare Source

Patch Changes
  • 46eba14: Initial bump for changesets
vercel/nft (@​vercel/nft)

v0.27.10

Compare Source

Bug Fixes

v0.27.9

Compare Source

Bug Fixes

v0.27.8

Compare Source

Bug Fixes

v0.27.7

Compare Source

Bug Fixes

v0.27.6

Compare Source

Bug Fixes

v0.27.5

Compare Source

Bug Fixes

v0.27.4

Compare Source

Bug Fixes

v0.27.3

Compare Source

Bug Fixes

v0.27.2

Compare Source

Bug Fixes

v0.27.1

Compare Source

Bug Fixes

v0.27.0

Compare Source

Features

v0.26.5

Compare Source

Bug Fixes
  • Add special case for Serial Port binary (.node) modules (#​415) (e001d05)

v0.26.4

Compare Source

Bug Fixes

v0.26.3

Compare Source

Bug Fixes

v0.26.2

Compare Source

Bug Fixes

v0.26.1

Compare Source

Bug Fixes

v0.26.0

Compare Source

Features

v0.25.0

Compare Source

Features

v0.24.4

Compare Source

Bug Fixes

v0.24.3

Compare Source

Bug Fixes

v0.24.2

Compare Source

Bug Fixes

v0.24.1

Compare Source

Bug Fixes

v0.24.0

Compare Source

Features

v0.23.1

Compare Source

Bug Fixes

v0.23.0

Compare Source

Features

v0.22.6

Compare Source

Bug Fixes

v0.22.5

Compare Source

Bug Fixes

v0.22.1

Compare Source

Patches
  • Chore: Bump moment-timezone from 0.5.33 to 0.5.37: #​308
  • Revert "major: assets should not be parsed": #​309

v0.22.0

Compare Source

Changes
  • Major: assets should not be parsed: #​304

v0.21.0

Compare Source

Minor Changes
  • Feat: Support fs-extra and graceful-fs: #​296
  • Fix: add concurrency limit to fs calls: #​301
Credits

Huge thanks to @​kachkaev and @​Brooooooklyn for helping!

v0.20.1

Compare Source

Changes
  • Fix: remove node-pre-gyp dependency: #​299
  • Chore: Bump shell-quote from 1.7.2 to 1.7.3: #​298

v0.20.0

Compare Source

Changes
  • Feat: Allow all file extension inputs (including .jsx): #​294
  • Chore: Bump sharp from 0.30.0 to 0.30.5: #​291
  • Chore: Bump protobufjs from 6.10.2 to 6.11.3: #​292
  • Chore: Windows tests should preserve yarn.lock: #​295

v0.19.1

Compare Source

Patches
  • Fix: handle static eval for sequence expression (fix TS 4.4+): #​289

v0.19.0

Compare Source

Minor Changes
  • Fix: handle node: prefix: #​285
  • Fix: node-gyp-build binary locating in different versions: #​286
  • Chore: Update node prefix tests: #​287
Credits

Huge thanks to @​Rich-Harris for helping!

apollographql/apollo-server (apollo-server-micro)

v3.13.0

Compare Source

v3.12.1

Compare Source

v3.12.0

Compare Source

v3.11.1

Compare Source

v3.11.0

Compare Source

v3.10.4

Compare Source

v3.10.3

Compare Source

v3.10.2

Compare Source

v3.10.1

Compare Source

v3.10.0

Compare Source

v3.9.0

Compare Source

troy351/emmet-monaco-es (emmet-monaco-es)

v5.5.0

Compare Source

v5.4.0

Compare Source

v5.3.2

Compare Source

v5.3.1

Compare Source

v5.3.0

Compare Source

v5.2.2

Compare Source

fixed compatibility with monaco-editor 0.37.0 734ea41

v5.2.1

Compare Source

  • figured out a general method to support minified monaco-editor source code 7e3f116

v5.2.0

Compare Source

  • fixed compatibility with monaco-editor 0.35.0 06c4e19

v5.1.2

Compare Source

  • fixed compatibility with monaco-editor 0.34.0 5e444d6

v5.1.1

Compare Source

graphql/graphql-js (graphql)

v16.10.0: 16.10.0

Compare Source

v16.10.0 (2024-12-15)

New Feature 🚀
Bug Fix 🐞
Docs 📝
10 PRs were merged
Internal 🏠
4 PRs were merged
Committers: 5

v16.9.0

Compare Source

v16.9.0 (2024-06-21)

New Feature 🚀
  • #​4119 backport[v16]: Introduce "recommended" validation rules (@​benjie)
  • #​4122 backport[v16]: Enable passing values configuration to GraphQLEnumType as a thunk (@​benjie)
  • #​4124 backport[v16]: Implement OneOf Input Objects via @oneOf directive (@​benjie)
Committers: 1

v16.8.2

Compare Source

v16.8.2 (2024-06-12)

Bug Fix 🐞* #​4022 fix: remove globalThis check and align with what bundlers can accept (@​JoviDeCroock)
Internal 🏠* #​4104 Fix publish scripts (@​benjie)
Committers: 2

v16.8.1

Compare Source

v16.8.1 (2023-09-19)
Bug Fix 🐞
Committers: 1

v16.8.0

Compare Source

v16.8.0 (2023-08-14)

New Feature 🚀
Committers: 1

v16.7.1

Compare 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 🐞
Committers: 1

v16.7.0

Compare Source

v16.7.0 (2023-06-21)
New Feature 🚀
Bug Fix 🐞
Committers: 3

v16.6.0

Compare Source

v16.6.0 (2022-08-16)

New Feature 🚀
Bug Fix 🐞
Committers: 2
vercel/micro (micro)

v9.4.1

Compare Source

Patches
  • Bring back default http server wrapper: #​460

https://www.npmjs.com/package/micro/v/9.4.1

v9.4.0

Compare Source

Patches
  • Chore(examples/with-https): using destructuring: 62c1e01
  • Convert getURL fn to more ergonomic one liner: 85d7bd6
  • Decrease install size: #​396
  • Bring in is-stream: #​397
  • Add new programmatic usage: #​399
  • Automatic publishing: #​400
  • Add .d.ts for TypeScript compatibility: #​401
  • Boot up http server in cli: #​406
  • Bump raw-body version: #​411
  • Remove request-promise (deprecation): #​435
  • Gracefully shutdown: exit after server is closed: #​418
Other
  • Remove duplicated code "getUrl" (tests): #​436
  • chore(examples/socket.io-chat-app): use vanilla JS instead of jquery for DOM manipulation: #​428
  • Move to GitHub Actions, general cleanup: (#​456)

https://www.npmjs.com/package/micro/v/9.4.0

nuxt/nuxt (nuxt)

v3.14.1592

Compare Source

3.14.1592 is the next patch release.

👉 Changelog

compare changes

🩹 Fixes
  • rspack: Update webpackbar with support for rspack (#​29823)
  • nuxt: Assign default name to component without setup (#​29869)
  • kit: Use dst to deduplicate templates when adding them ([#​29895](https://redirect.github

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


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

This PR was generated by Mend Renovate. View the repository job log.

@vercel
Copy link

vercel bot commented Jun 13, 2022

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated
productdevbook-com ❌ Failed (Inspect) Mar 17, 2023 at 1:53AM (UTC)

@renovate renovate bot changed the title chore(deps): update dependency @graphql-yoga/node to v2.9.1 chore(deps): update all non-major dependencies Jun 13, 2022
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f2c0140 to 0dd6365 Compare June 13, 2022 18:41
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 0dd6365 to 3a6940a Compare June 13, 2022 23:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 3a6940a to 574c002 Compare June 15, 2022 02:44
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 574c002 to a70de87 Compare June 15, 2022 19:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from a70de87 to 9fbc391 Compare June 27, 2022 11:22
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9fbc391 to ca834f2 Compare June 29, 2022 00:06
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ca834f2 to 2a024b4 Compare June 29, 2022 17:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2a024b4 to d0ea3a7 Compare June 30, 2022 13:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d0ea3a7 to d98455d Compare June 30, 2022 16:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d98455d to 63f772c Compare July 4, 2022 14:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 63f772c to e46930d Compare July 7, 2022 17:56
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from e46930d to 53e5bcb Compare July 11, 2022 20:43
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 53e5bcb to 09f0477 Compare July 12, 2022 18:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 298d0f8 to 99a7164 Compare May 10, 2024 19:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 99a7164 to 8f30be4 Compare May 16, 2024 20:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2da0c31 to 29ca8a7 Compare June 6, 2024 00:04
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from e0f2420 to 64e1fcb Compare June 16, 2024 09:51
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 64e1fcb to 1e5d76d Compare June 21, 2024 16:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1e5d76d to eb0dd59 Compare July 2, 2024 17:09
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from eb0dd59 to 67a33b0 Compare July 11, 2024 20:40
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 67a33b0 to ebf14f6 Compare July 19, 2024 00:45
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ebf14f6 to 5d51913 Compare August 2, 2024 22:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 5d51913 to 4bad031 Compare August 22, 2024 20:49
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 202b41a to 88d5f33 Compare September 4, 2024 09:55
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 88d5f33 to 894f62c Compare September 16, 2024 00:46
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from c37437d to e42ea3a Compare October 26, 2024 07:18
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from 65ec03f to 2873ec7 Compare November 6, 2024 13:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 2873ec7 to c9256d1 Compare November 19, 2024 22:10
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from c9256d1 to f499f60 Compare November 29, 2024 17:16
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from f2f04b1 to 62c8441 Compare December 15, 2024 13:13
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 62c8441 to 2d08f29 Compare December 19, 2024 01:22
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants