Movatterモバイル変換


[0]ホーム

URL:


Skip to content

Navigation Menu

Sign in
Appearance settings

Search code, repositories, users, issues, pull requests...

Provide feedback

We read every piece of feedback, and take your input very seriously.

Saved searches

Use saved searches to filter your results more quickly

Sign up
Appearance settings
This repository was archived by the owner on Dec 19, 2024. It is now read-only.

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

Open
renovate wants to merge1 commit intomain
base:main
Choose a base branch
Loading
fromrenovate/all-minor-patch

Conversation

@renovate
Copy link
Contributor

@renovaterenovatebot commentedJun 13, 2022
edited
Loading

This PR contains the following updates:

PackageChangeAgeAdoptionPassingConfidence
@graphql-yoga/node (source)2.8.0 ->2.13.13ageadoptionpassingconfidence
@typescript/ata (source)0.9.3 ->0.9.7ageadoptionpassingconfidence
@vercel/nft0.18.2 ->0.27.10ageadoptionpassingconfidence
apollo-server-micro (source)3.8.2 ->3.13.0ageadoptionpassingconfidence
emmet-monaco-es5.1.0 ->5.5.0ageadoptionpassingconfidence
graphql16.5.0 ->16.10.0ageadoptionpassingconfidence
micro9.3.4 ->9.4.1ageadoptionpassingconfidence
nuxt (source)3.0.0-rc.4 ->3.14.1592ageadoptionpassingconfidence
xterm4.18.0 ->4.19.0ageadoptionpassingconfidence

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:Usereq.body only if it is filled

    Some frameworks use this unofficialbody field to send the parsed body to the middlewares.
    GraphQL Yoga respects that and uses thisbody 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 surebody is correct.

    This fixes an issue that happens when you usebodyParser withexpress.bodyParser sends an emptybody in case ofmultipart 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 asnode:http instead ofhttp.

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 inmultipart 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;```tsthrow 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 nativeconsole 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;```jscreateServer({  ...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 custominspect

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 GraphQLYogaErrorextensions 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
  • add special case for sharp@0.33.0 optional dependencies (#​372) (9470e71)

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: Supportfs-extra andgraceful-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: removenode-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: handlenode: 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.0734ea41

v5.2.1

Compare Source

  • figured out a general method to support minified monaco-editor source code7e3f116

v5.2.0

Compare Source

  • fixed compatibility with monaco-editor 0.35.006c4e19

v5.1.2

Compare Source

  • fixed compatibility with monaco-editor 0.34.05e444d6

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 🚀
Committers: 1

v16.8.2

Compare Source

v16.8.2 (2024-06-12)

Bug Fix 🐞*#​4022 fix: removeglobalThis 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: Updatewebpackbar with support for rspack (#​29823)
  • nuxt: Assign default name to component without setup (#​29869)
  • kit: Usedst 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. Getconfig help if that's undesired.


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

This PR was generated byMend Renovate. View therepository job log.

@vercel
Copy link

vercelbot commentedJun 13, 2022
edited
Loading

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

NameStatusPreviewCommentsUpdated
productdevbook-com❌ Failed (Inspect)Mar 17, 2023 at 1:53AM (UTC)

@renovaterenovatebot changed the titlechore(deps): update dependency @graphql-yoga/node to v2.9.1chore(deps): update all non-major dependenciesJun 13, 2022
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch fromf2c0140 to0dd6365CompareJune 13, 2022 18:41
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from0dd6365 to3a6940aCompareJune 13, 2022 23:07
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from3a6940a to574c002CompareJune 15, 2022 02:44
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from574c002 toa70de87CompareJune 15, 2022 19:33
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch froma70de87 to9fbc391CompareJune 27, 2022 11:22
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from9fbc391 toca834f2CompareJune 29, 2022 00:06
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch fromca834f2 to2a024b4CompareJune 29, 2022 17:49
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from2a024b4 tod0ea3a7CompareJune 30, 2022 13:14
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch fromd0ea3a7 tod98455dCompareJune 30, 2022 16:58
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch fromd98455d to63f772cCompareJuly 4, 2022 14:58
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from63f772c toe46930dCompareJuly 7, 2022 17:56
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch frome46930d to53e5bcbCompareJuly 11, 2022 20:43
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from53e5bcb to09f0477CompareJuly 12, 2022 18:23
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 2 times, most recently from298d0f8 to99a7164CompareMay 10, 2024 19:11
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from99a7164 to8f30be4CompareMay 16, 2024 20:52
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 2 times, most recently from2da0c31 to29ca8a7CompareJune 6, 2024 00:04
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 5 times, most recently frome0f2420 to64e1fcbCompareJune 16, 2024 09:51
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from64e1fcb to1e5d76dCompareJune 21, 2024 16:16
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from1e5d76d toeb0dd59CompareJuly 2, 2024 17:09
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch fromeb0dd59 to67a33b0CompareJuly 11, 2024 20:40
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from67a33b0 toebf14f6CompareJuly 19, 2024 00:45
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch fromebf14f6 to5d51913CompareAugust 2, 2024 22:02
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from5d51913 to4bad031CompareAugust 22, 2024 20:49
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 2 times, most recently from202b41a to88d5f33CompareSeptember 4, 2024 09:55
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from88d5f33 to894f62cCompareSeptember 16, 2024 00:46
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 2 times, most recently fromc37437d toe42ea3aCompareOctober 26, 2024 07:18
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 3 times, most recently from65ec03f to2873ec7CompareNovember 6, 2024 13:25
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from2873ec7 toc9256d1CompareNovember 19, 2024 22:10
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch fromc9256d1 tof499f60CompareNovember 29, 2024 17:16
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch 2 times, most recently fromf2f04b1 to62c8441CompareDecember 15, 2024 13:13
@renovaterenovatebotforce-pushed therenovate/all-minor-patch branch from62c8441 to2d08f29CompareDecember 19, 2024 01:22
Sign up for freeto subscribe to this conversation on GitHub. Already have an account?Sign in.

Reviewers

No reviews

Assignees

No one assigned

Projects

None yet

Milestone

No milestone

Development

Successfully merging this pull request may close these issues.

1 participant


[8]ページ先頭

©2009-2025 Movatter.jp