-
Notifications
You must be signed in to change notification settings - Fork 10
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 extract-files to v13 #124
Conversation
🚀 Snapshot Release (
|
Package | Version | Info |
---|---|---|
@graphql-tools/batch-delegate |
9.0.15-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/delegate |
10.1.3-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/executor-http |
1.1.10-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/federation |
2.2.28-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/fusion-runtime |
0.10.3-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/gateway |
1.5.0-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/hmac-upstream-signature |
1.2.7-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/plugin-prometheus |
1.2.8-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-hive/gateway-runtime |
1.1.7-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/stitch |
9.3.5-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/stitching-directives |
3.1.14-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/transport-common |
0.7.14-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/transport-http |
0.6.16-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/transport-http-callback |
0.5.5-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-mesh/transport-ws |
0.4.3-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
@graphql-tools/wrap |
10.0.17-alpha-f6e086f56c835f084b67e73148dbd7a9dcdd1ec9 |
npm ↗︎ unpkg ↗︎ |
🚀 Snapshot Release (Docker Image)The latest changes of this PR are available as image on GitHub Container Registry (based on the declared
|
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
Renovate Ignore NotificationBecause you closed this PR without merging, Renovate will ignore this update. You will not get PRs for any future If you accidentally closed this PR, or if you changed your mind: rename this PR to get a fresh replacement PR. |
This PR contains the following updates:
^11.0.0
->^13.0.0
8.1.3
->13.0.1
Release Notes
jaydenseric/extract-files (extract-files)
v13.0.0
Compare Source
Major
^14.17.0 || ^16.0.0 || >= 18.0.0
.node:
URL scheme for Node.js builtin module imports in tests.Patch
actions/checkout
to v3.actions/setup-node
to v3.jsconfig.json
:compilerOptions.maxNodeModuleJsDepth
to10
.compilerOptions.module
tonodenext
.not IE > 0
from the Browserslist query.Record
types with index signatures.v12.0.0
Compare Source
Major
Updated Node.js support to
^12.22.0 || ^14.17.0 || >= 16.0.0
.Added a new
is-plain-obj
dependency that is ESM.Updated dev dependencies, some of which require newer Node.js versions than previously supported.
Public modules are now individually listed in the package
files
andexports
fields.Removed
./package
from the packageexports
field; the fullpackage.json
filename must be used in arequire
path.Removed the package main index module; deep imports must be used.
Shortened public module deep import paths, removing the
/public/
.The API is now ESM in
.mjs
files instead of CJS in.js
files, accessible viaimport
but notrequire
.Implemented TypeScript types via JSDoc and
@deno-types
comments, fixing #7.Changed the function
extractFiles
parameters. The previously thirdisExtractableFile
parameter has been renamedisExtractable
, is now the second parameter, and no longer defaults to the functionisExtractableFile
to avoid a redundant import when a custom function is specified.The function
extractFiles
now does basic runtime argument type validation.The function
extractFiles
now also deep clones “plain” objects that aren’tObject
instances (e.g.Object.create(null)
).Removed out of the box React Native support. The class
ReactNativeFile
is no longer exported, or matched by the functionisExtractableFile
.This class was bloating non React Native environments with an extra module, increasing bundle sizes when building and adding an extra step to ESM loading waterfalls in browsers.
It’s the responsibility of Facebook to adhere to web standards and implement spec-complaint
File
,Glob
, andFormData
globals in the React Native environment.In the meantime, React Native projects can manually implement a class
ReactNativeFile
and match it with a custom functionisReactNativeFile
for use with the functionextractFiles
.Patch
types
script.jsdoc-md
dev dependency and the related package scripts, replacing the readme “API” section with a manually written “Exports” section.assertBundleSize
function to assert module bundle size in tests:extractFiles
function test bug.extractFiles
function test clarifying that object properties withSymbol
keys don’t get cloned.singleQuote
to the default,false
.license.md
MIT License file, fixing #19 via #20.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 these updates again.
This PR was generated by Mend Renovate. View the repository job log.