graphql-to-json-schema
graphql-to-json-schema copied to clipboard
chore(deps): update all non-major dependencies
This PR contains the following updates:
| Package | Change | Age | Adoption | Passing | Confidence | Type | Update |
|---|---|---|---|---|---|---|---|
| @types/jest (source) | 26.0.20 -> 26.0.24 |
devDependencies | patch | ||||
| @types/json-schema (source) | 7.0.6 -> 7.0.11 |
devDependencies | patch | ||||
| @types/lodash (source) | 4.14.168 -> 4.14.185 |
devDependencies | patch | ||||
| @types/node (source) | 14.14.21 -> 14.18.30 |
devDependencies | minor | ||||
| ajv (source) | 7.0.3 -> 7.2.4 |
devDependencies | minor | ||||
| circleci/node | 14.1 -> 14.18 |
docker | minor | ||||
| graphql | 15.4.0 -> 15.8.0 |
devDependencies | minor | ||||
| node | v14.1 -> 14.20 |
minor | |||||
| nodemon (source) | 2.0.12 -> 2.0.20 |
devDependencies | patch | ||||
| prettier (source) | 2.2.1 -> 2.7.1 |
devDependencies | minor | ||||
| standard-version | 9.1.0 -> 9.5.0 |
devDependencies | minor | ||||
| ts-jest (source) | 26.4.4 -> 26.5.6 |
devDependencies | minor |
Release Notes
ajv-validator/ajv
v7.2.4
Fix #1515: correctly initialize evaluated properties.
v7.2.3
Remove docs from npm package
v7.2.2
Docs correction
Simplified JSONSchemaType (@erikbrinkman)
Fix #1493 - incorrect reporting of missing required property with option ownProperties: true
Fix #1501 - JTD not working correctly with many properties in the schema
v7.2.1
Add tests and fix parsers compiled with ajv.compileParser from JTD schemas:
- fail on invalid JSON:
- trailing comma in arrays/objects
- invalid JSON numbers
- control characters in strings
- fix parsing of u-escaped characters
- do not fail on duplicate object keys (consistent with JSON.parse)
Compiled parsers are now:
- consistent with JSON.parse in case of invalid JSON
- only parse data that is valid for JTD schema
It is a breaking change for compiled parsers compared with 7.2.0 that was released earlier on the same day.
v7.2.0
strictRequired option (off by default) - to log or fail if properties used in JSON Schema "required" are not defined in "properties" (@PBug90, #1403)
Compiled parsers (as fast as JSON.parse on valid JSON, but replace validation and fail much faster on invalid JSON) and serializers (10x+ faster than JSON.stringify) from JSON Type Definition schemas (#1454) - see examples in javascript and typescript
Please note: there are fixes to compiled parsers in 7.2.1
The website migrated to VuePress and documentation is restructured to make navigating Ajv documentation and learning easier - this is still work in progress, but already some improvement on the information structure. Any feedback/corrections would be very much appreciated!
Improved TypeScript support for JSONSchemaType:
- JTDSchemaType<T> utility type to convert your data type into the type of JTD schema, to simplify its writing and to make sure it is consistent with your data type, with type inference support for ajv methods (@erikbrinkman, #1446, #1456, #1457, #1475) - see example here
- Alternatively, you can use JTDDataType
utility type to convert your JTD schema type into the type of data (@erikbrinkman, #1458) - see this example
Other improvements by @Fdawgs (#1466), @t7yang (#1472, #1473), @koba04 (#1460)
v7.1.1
Support readonly arrays with JSONSchemaType (@LinusU, #1447)
v7.1.0
Support for JSON Type Definition RFC 8927 - a simple schema language provided as an alternative to JSON Schema.
See these docs:
- an informal document on Ajv site
- RFC8927
- choosing schema language - comparison with JSON Schema
Allow ":" in keyword names (#1421, @teq0)
v7.0.4
Fix: duplicate functions in standalone validation code with mutually recursive schemas (#1361) Fix: reference resolution when base URI change was not applied (#1414)
graphql/graphql-js
v15.8.0
v15.8.0 (2021-12-07)
New Feature 🚀
- #3410 Refine getNamedType() for Input and Output types (@IvanGoncharov)
Internal 🏠
2 PRs were merged
- #3411 publish 15.x.x packages only under '15.x.x' tag (@IvanGoncharov)
- #3412 cspell: do not show progress (@IvanGoncharov)
Committers: 1
- Ivan Goncharov(@IvanGoncharov)
v15.7.2
v15.7.2 (2021-10-28)
Bug Fix 🐞
- #3343 GraphQLError: Fixed
originalError.extensionsoverridingextensionsargument to constructor (@klippx)
Committers: 1
- Mathias Klippinge(@klippx)
v15.7.1
v15.7.1 (2021-10-27)
Bug Fix 🐞
- #3341 GraphQLError: revert
originalErrorto be nullable (@IvanGoncharov)
Committers: 1
- Ivan Goncharov(@IvanGoncharov)
v15.7.0
v15.7.0 (2021-10-26)
New Feature 🚀
- #3327 Change type of error extensions from anonymous Record to named interfaces (@IvanGoncharov)
- #3333 GraphQLError: major refactoring to be more in line with v16 (@IvanGoncharov)
- #3334 GraphQLError: keep extensions always present (@IvanGoncharov)
Bug Fix 🐞
- #3332 GraphQLError: fix empty
locationsif error got nodes without locations (@IvanGoncharov) - #3335 GraphQLError: restore order of enumerable fields (@IvanGoncharov)
Committers: 1
- Ivan Goncharov(@IvanGoncharov)
v15.6.1
v15.6.1 (2021-10-05)
Bug Fix 🐞
- #3275 type/introspection: add missing
__Directive.args(includeDeprecated:)(@IvanGoncharov)
Committers: 1
- Ivan Goncharov(@IvanGoncharov)
v15.6.0
v15.6.0 (2021-09-20)
New Feature 🚀
- #3267 Depreacate 'VisitorKeyMap' and backported 'ASTVisitorKeyMap' type (@IvanGoncharov)
Committers: 1
- Ivan Goncharov(@IvanGoncharov)
v15.5.3
v15.5.3 (2021-09-06)
Bug Fix 🐞
- #3254 Parser: fix function definition of parseArguments and parseArgument (@n1ru4l)
- #3260 backport: Preserve
deprecationReasononGraphQLInputFields (@IvanGoncharov)
Committers: 2
- Ivan Goncharov(@IvanGoncharov)
- Laurin Quast(@n1ru4l)
v15.5.2
v15.5.2 (2021-08-30)
Bug Fix 🐞
Committers: 1
- Laurin Quast(@n1ru4l)
v15.5.1
v15.5.1 (2021-06-20)
Bug Fix 🐞
Internal 🏠
- #3191 Remove deprecated rmdirSync usage from internal scripts (@IvanGoncharov)
Committers: 2
- Ivan Goncharov(@IvanGoncharov)
- Tom Scott(@tubbo)
v15.5.0
v15.5.0 (2021-01-26)
Bug Fix 🐞
- #2852 introspectionFromSchema: enable 'specifiedByUrl' by default (@IvanGoncharov)
- #2855 introspection: Add missing support for deprecated input values (@IvanGoncharov)
- #2859 separateOperations: distinguish query and fragment names (@IvanGoncharov)
- #2876 Replace 'localeCompare' with function independent from locale (@IvanGoncharov)
- #2893 Fix handling of input objects with 'length' property (@IvanGoncharov)
Docs 📝
- #2849 README: add instructions on using experimental features (@robrichard)
Polish 💅
7 PRs were merged
- #2847 Add tests for supporting Iterable collections across the lib (@IvanGoncharov)
- #2851 tests: update 'getIntrospectionQuery' tests to use custom matchers (@IvanGoncharov)
- #2858 separateOperations-test: refactor tests to look like snapshots (@IvanGoncharov)
- #2868 Extract types for normalized configs into named types (@IvanGoncharov)
- #2878 fix: type annotation cannot appear on a constructor declaration (@saihaj)
- #2879 fix: no need to mark param optional if default value is given (@saihaj)
- #2889 Simplify isAsyncIterable (@IvanGoncharov)
Internal 🏠
7 PRs were merged
- #2831 build: add support for experimental releases (@IvanGoncharov)
- #2836 CI: test on node 15 (@IvanGoncharov)
- #2837 Flow: remove support for measuring Flow coverage (@IvanGoncharov)
- #2838 TS: exclude integration tests from root tsconfig.json (@IvanGoncharov)
- #2840 resources: use named groups in RegExp (@IvanGoncharov)
- #2886 Use correct flags for rmdir/mkdir functions (@IvanGoncharov)
- #2891 benchmark: fix temp dir creation (@IvanGoncharov)
Dependency 📦
5 PRs were merged
- #2835 Update deps (@IvanGoncharov)
- #2844 Update deps (@IvanGoncharov)
- #2850 Update deps (@IvanGoncharov)
- #2884 Update deps (@IvanGoncharov)
- #2890 Update deps (@IvanGoncharov)
Committers: 3
- Ivan Goncharov(@IvanGoncharov)
- Rob Richard(@robrichard)
- Saihajpreet Singh(@saihaj)
nodejs/node
v14.20.1
This is a security release.
Notable changes
The following CVEs are fixed in this release:
- CVE-2022-32212: DNS rebinding in --inspect on macOS (High)
- CVE-2022-32213: bypass via obs-fold mechanic (Medium)
- CVE-2022-35256: HTTP Request Smuggling Due to Incorrect Parsing of Header Fields (Medium)
More detailed information on each of the vulnerabilities can be found in September 22nd 2022 Security Releases blog post.
Commits
- [
a9f1146b88] - http: disable chunked encoding when OBS fold is used (Paolo Insogna) nodejs-private/node-private#341 - [
a1121b456c] - src: fix IPv4 non routable validation (RafaelGSS) nodejs-private/node-private#337 - [
de80707870] - src: fix IS_LTS and IS_RELEASE flags (Richard Lau) #43761
v14.20.0
This is a security release.
Notable Changes
- [
8e8aef836c] - (SEMVER-MAJOR) src,deps,build,test: add OpenSSL config appname (Daniel Bevenius) #43124 - [
98965b137d] - deps: upgrade openssl sources to 1.1.1q (RafaelGSS) #43686
Commits
- [
b93e048bf6] - deps: update archs files for OpenSSL-1.1.1q (RafaelGSS) #43686 - [
98965b137d] - deps: upgrade openssl sources to 1.1.1q (RafaelGSS) #43686 - [
837a1d803e] - deps: update archs files for OpenSSL-1.1.1p (RafaelGSS) #43527 - [
c5d9c9a49e] - deps: upgrade openssl sources to 1.1.1p (RafaelGSS) #43527 - [
da0fda0fe8] - http: stricter Transfer-Encoding and header separator parsing (Paolo Insogna) #315 - [
48c5aa5cab] - src: fix IPv4 validation in inspector_socket (Tobias Nießen) nodejs-private/node-private#320 - [
8e8aef836c] - (SEMVER-MAJOR) src,deps,build,test: add OpenSSL config appname (Daniel Bevenius) #43124
v14.19.3
Notable Changes
- This release updates OpenSSL to 1.1.1o. This update is not being treated as a security release as the issues addressed in OpenSSL 1.1.1o were assessed to not affect Node.js 14. See https://nodejs.org/en/blog/vulnerability/openssl-fixes-in-regular-releases-may2022/ for more information on how the May 2022 OpenSSL releases affects other Node.js release lines.
- The list of GPG keys used to sign releases has been synchronized with the main branch.
Commits
- [
68397e49d9] - deps: update archs files for OpenSSL-1.1.1o (RafaelGSS) #42956 - [
7f9a5ed4a8] - deps: upgrade openssl sources to 1.1.1o (RafaelGSS) #42956 - [
61eba58cb6] - doc: add release key for Juan Arboleda (Juan José) #42961
v14.19.2
Notable Changes
doc:
- New release key for Bryan English
Learn more at: #42102 Contributed by Bryan English (@bengl)
npm:
- Upgrade
npmtov6.14.17.
Learn more at: #42900 Contributed by Ruy Adorno (@ruyadorno)
V8:
- V8 had a stack overflow issue affecting the
vmmodule, cherry-pickingcc9a8a37445efrom V8 solves this issue.
Learn more at: #41826 Contributed by Gus Caplan (@devsnek)
- Using
getHeapSnapshot()was causing a Node.js crash due a V8 issue, this is fixed by backporting367b0c1e7a32from V8.
Learn more at: #42637 Contributed by Chengzhong Wu (@legendecas)
Commits
- [
c73ac527d6] - build: set DESTCPU correctly for 'make binary' on Apple Silicon (Chris Heisterkamp) #40147 - [
dcaed6db24] - build: use ccache in make-v8.sh on ppc64le and s390x (Richard Lau) #42204 - [
4203d132b1] - child_process: queue pending messages (Erick Wendel) #41221 - [
a3ebdbfe8f] - deps: upgrade npm to 6.14.17 (Ruy Adorno) #42900 - [
39e44f8382] - deps: V8: cherry-pickcc9a8a3(Gus Caplan) #41826 - [
b52a268b6f] - deps: V8: cherry-pick367b0c1(legendecas) #42637 - [
77ba012065] - doc: fix documentation ofFileHandle.prototype.appendFile(Antoine du Hamel) #42588 - [
3d3d7ed1b7] - doc: specify flag needed for JSON and Wasm modules (Rich Trott) #42736 - [
542d812c93] - doc: use openpgp.org for keyserver examples (Nick Schonning) #39227 - [
7f2825b1a9] - doc: add release key for Bryan English (Bryan English) #42102 - [
75302d3dce] - fs: fix write methods param validation and docs (Livia Medeiros) #41677 - [
d4171e0eac] - stream: resume stream on drain (Robert Nagy) #41848 - [
de474c8b6f] - worker: do not send message if port is closing (Rich Trott) #42357
v14.19.1
This is a security release.
Notable Changes
Update to OpenSSL 1.1.1n, which addresses the following vulnerability:
- Infinite loop in
BN_mod_sqrt()reachable when parsing certificates (High)(CVE-2022-0778) More details are available at https://www.openssl.org/news/secadv/20220315.txt
Commits
- [
b5c52e337e] - build: pin Windows GitHub runner to windows-2019 (Richard Lau) #42350 - [
3b1a0b24f0] - deps: update archs files for OpenSSL-1.1.1n (Richard Lau) #42347 - [
c83dd99e0b] - deps: upgrade openssl sources to 1.1.1n (Richard Lau) #42347
v14.19.0
Notable Changes
Corepack
Node.js now includes Corepack, a script that acts as a bridge between Node.js projects and the package managers they are intended to be used with during development. In practical terms, Corepack will let you use Yarn and pnpm without having to install them - just like what currently happens with npm, which is shipped in Node.js by default. Please head over to the Corepack documentation page for more information on how to use it.
Contributed by Maël Nison - #39608
ICU updated
ICU has been updated to 70.1. This updates timezone database to 2021a3, including bringing forward the start for DST for Jordan from March to February.
Contributed by Michaël Zasso - #40658
New option to disable loading of native addons
A new command line option --no-addons has been added to disallow loading of native addons.
Contributed by Dominic Elm - #39977
Updated Root Certificates
Root certificates have been updated to those from Mozilla's Network Security Services 3.71.
Contributed by Richard Lau - #40280
Other Notable Changes
- [
0d448eaab5] - (SEMVER-MINOR) crypto: make FIPS related options always available (Vít Ondruch) #36341 - [
004eafbebf] - (SEMVER-MINOR) lib: add unsubscribe method to non-active DC channels (simon-id) #40433 - [
625be7585d] - (SEMVER-MINOR) lib: add return value for DC channel.unsubscribe (simon-id) #40433 - [
607bc74eae] - (SEMVER-MINOR) module: support pattern trailers (Guy Bedford) #39635 - [
f74fe2a59c] - (SEMVER-MINOR) src: make napi_create_reference accept symbol (JckXia) #39926
Commits
- [
0231ffa501] - build: add--without-corepack(Jonah Snider) #41060 - [
5389b8ab05] - crypto: update root certificates (Richard Lau) #40280 - [
0d448eaab5] - (SEMVER-MINOR) crypto: make FIPS related options always available (Vít Ondruch) #36341 - [
cd20ecc7cb] - deps: upgrade Corepack to 0.10 (Maël Nison) #40374 - [
737df75e17] - (SEMVER-MINOR) deps: add corepack (Maël Nison) #39608 - [
b85aa5a143] - deps: upgrade npm to 6.14.16 (Ruy Adorno) #41603 - [
2755d391a5] - deps: update ICU to 70.1 (Michaël Zasso) #40658 - [
3089326d89] - deps: update archs files for OpenSSL-1.1.1m (Richard Lau) #41173 - [
59da7c12aa] - deps: upgrade openssl sources to 1.1.1m (Richard Lau) #41173 - [
cede1f26f6] - deps: add -fno-strict-aliasing flag to libuv (Daniel Bevenius) #40631 - [
4477da858f] - doc: fix corepack grammar for--forceflag (Steven) #40762 - [
5971d58600] - doc: add missing YAML tag inesm.md(Antoine du Hamel) #41516 - [
e903798ae1] - doc: add note regarding unfinished TLA (Antoine du Hamel) #41434 - [
a90defebcf] - esm: makeprocess.exit()default to exit code 0 (Gang Chen) #41388 - [
fc328f1ab0] - fs: nullish coalescing to respect zero positional reads (Omar El-Mihilmy) #40716 - [
004eafbebf] - (SEMVER-MINOR) lib: add unsubscribe method to non-active DC channels (simon-id) #40433 - [
625be7585d] - (SEMVER-MINOR) lib: add return value for DC channel.unsubscribe (simon-id) #40433 - [
2c365961d0] - module: support pattern trailers for imports field (Guy Bedford) #40041 - [
607bc74eae] - (SEMVER-MINOR) module: support pattern trailers (Guy Bedford) #39635 - [
f74fe2a59c] - (SEMVER-MINOR) src: make napi_create_reference accept symbol (JckXia) #39926 - [
b050c65885] - src: add option to disable loading native addons (Dominic Elm) #39977 - [
c1695ac68a] - tools: update certdata.txt (Richard Lau) #40280
v14.18.3
This is a security release.
Notable changes
Improper handling of URI Subject Alternative Names (Medium)(CVE-2021-44531)
Accepting arbitrary Subject Alternative Name (SAN) types, unless a PKI is specifically defined to use a particular SAN type, can result in bypassing name-constrained intermediates. Node.js was accepting URI SAN types, which PKIs are often not defined to use. Additionally, when a protocol allows URI SANs, Node.js did not match the URI correctly.
Versions of Node.js with the fix for this disable the URI SAN type when checking a certificate against a hostname. This behavior can be reverted through the --security-revert command-line option.
More details will be available at CVE-2021-44531 after publication.
Certificate Verification Bypass via String Injection (Medium)(CVE-2021-44532)
Node.js converts SANs (Subject Alternative Names) to a string format. It uses this string to check peer certificates against hostnames when validating connections. The string format was subject to an injection vulnerability when name constraints were used within a certificate chain, allowing the bypass of these name constraints.
Versions of Node.js with the fix for this escape SANs containing the problematic characters in order to prevent the injection. This behavior can be reverted through the --security-revert command-line option.
More details will be available at CVE-2021-44532 after publication.
Incorrect handling of certificate subject and issuer fields (Medium)(CVE-2021-44533)
Node.js did not handle multi-value Relative Distinguished Names correctly. Attackers could craft certificate subjects containing a single-value Relative Distinguished Name that would be interpreted as a multi-value Relative Distinguished Name, for example, in order to inject a Common Name that would allow bypassing the certificate subject verification.
Affected versions of Node.js do not accept multi-value Relative Distinguished Names and are thus not vulnerable to such attacks themselves. However, third-party code that uses node's ambiguous presentation of certificate subjects may be vulnerable.
More details will be available at CVE-2021-44533 after publication.
Prototype pollution via console.table properties (Low)(CVE-2022-21824)
Due to the formatting logic of the console.table() function it was not safe to allow user controlled input to be passed to the properties parameter while simultaneously passing a plain object with at least one property as the first parameter, which could be __proto__. The prototype pollution has very limited control, in that it only allows an empty string to be assigned numerical keys of the object prototype.
Versions of Node.js with the fix for this use a null protoype for the object these properties are being assigned to.
More details will be available at CVE-2022-21824 after publication.
Thanks to Patrik Oldsberg (rugvip) for reporting this vulnerability.
Commits
- [
e2a74f3c99] - console: fix prototype pollution via console.table (Tobias Nießen) nodejs-private/node-private#307 - [
df1b2c33f6] - crypto,tls: implement safe x509 GeneralName format (Tobias Nießen and Akshay Kumar) nodejs-private/node-private#300 - [
9f2c52617f] - src: add cve reverts and associated tests (Michael Dawson and Akshay Kumar) nodejs-private/node-private#300 - [
b14be42518] - src: remove unused x509 functions (Tobias Nießen and Akshay Kumar) nodejs-private/node-private#300 - [
83d8f880bb] - tls: fix handling of x509 subject and issuer (Tobias Nießen and Akshay Kumar) nodejs-private/node-private#300 - [
461a0c674b] - tls: drop support for URI alternative names (Tobias Nießen and Akshay Kumar) nodejs-private/node-private#300
v14.18.2
Notable changes
This release contains a c-ares update to fix a regression introduced in Node.js 14.17.5 resolving CNAME records containing underscores #39780.
Also included are commits to allow Node.js 14 to continue to build and pass tests on our Jenkins CI, including adding Python 3.10 to the list of allowable Python versions for building.
Commits
- [
7923c61a62] - build: pin build-docs workflow to Node.js 14 (Richard Lau) #40939 - [
da356128fb] - build: support Python 3.10.0 (FrankQiu) #40296 - [
9c3a85d279] - deps: update c-ares to 1.18.1 (Richard Lau) #40660 - [
cd7c340545] - deps: V8: patch jinja2 for Python 3.10 compat (Michaël Zasso) #40296 - [
6330d435f5] - doc: mark Node.js 10 as End-of-Life (Richard Lau) #38482 - [
8ca082ec71] - doc: fix CJS-ESM selector in Safari (Bradley Farias) #40135 - [
92490d1c89] - doc: add macOS arm64 experimental status (Michael Rienstra) #40127 - [
8894bdd4d8] - lib: fix regular expression to detect `/` and `\` (Francesco Trotta) #40325 - [
704989b698] - test: deflake child-process-pipe-dataflow (Luigi Pinca) #40838 - [
df401cd346] - test: update upload.zip to be uncorrupted (Greg Ziskind) #37294 - [
aa947f7dbf] - tools: add script to update c-ares (Richard Lau) #40660 - [
6b7b2bba41] - tools: patch jinja2 for Python 3.10 compat (Michaël Zasso) #40296 - [
39583f77d8] - worker: avoid potential deadlock on NearHeapLimit (Santiago Gimeno) #38403
v14.18.1
This is a security release.
Notable changes
- CVE-2021-22959: HTTP Request Smuggling due to spaced in headers (Medium)
- The http parser accepts requests with a space (SP) right after the header name before the colon. This can lead to HTTP Request Smuggling (HRS). More details will be available at CVE-2021-22959 after publication.
- CVE-2021-22960: HTTP Request Smuggling when parsing the body (Medium)
- The parse ignores chunk extensions when parsing the body of chunked requests. This leads to HTTP Request Smuggling (HRS) under certain conditions. More details will be available at CVE-2021-22960 after publication.
Commits
- [
8c254ca7e4] - deps: update llhttp to 2.1.4 (Fedor Indutny) nodejs-private/node-private#285 - [
9b92ae2499] - http: add regression test for smuggling content length (Matteo Collina) nodejs-private/node-private#285 - [
f467539719] - http: add regression test for chunked smuggling (Matteo Collina) nodejs-private/node-private#285
v14.18.0
Notable Changes
- [
3a60de0135] - assert: change status of legacy asserts (James M Snell) #38113 - [
df37c106a7] - (SEMVER-MINOR) buffer: introduce Blob (James M Snell) #36811 - [
223494c548] - (SEMVER-MINOR) buffer: add base64url encoding option (Filip Skokan) #36952 - [
14fc4ddabc] - (SEMVER-MINOR) child_process: allowoptions.cwdreceive a URL (Khaidi Chu) #38862 - [
b68b13acb3] - (SEMVER-MINOR) child_process: add timeout to spawn and fork (Nitzan Uziely) #37256 - [
da98c9f99b] - (SEMVER-MINOR) child_process: allow promisified exec to be cancel (Carlos Fuentes) #34249 - [
779310ac87] - (SEMVER-MINOR) child_process: add 'overlapped' stdio flag (Thiago Padilha) #29412 - [
40eb3b79f1] - (SEMVER-MINOR) cli: add -C alias for --conditions flag (Guy Bedford) #38755 - [
39eba0a2e1] - (SEMVER-MINOR) cli: add --node-memory-debug option (Anna Henningsen) #35537 - [
d8d9a9628a] - (SEMVER-MINOR) dns: add "tries" option to Resolve options (Luan Devecchi) #39610 - [
15ba19b020] - (SEMVER-MINOR) dns: allow--dns-result-orderto change default dns verbatim (Ouyang Yadong) #38099 - [
307c1d817f] - doc: refactor fs docs structure (James M Snell) #37170 - [
9ee3f77e32] - (SEMVER-MINOR) errors: remove experimental from --enable-source-maps (Benjamin Coe) #37362 - [
e73bfed2f4] - esm: deprecate legacy main lookup for modules (Guy Bedford) #36918 - [
989c204a58] - (SEMVER-MINOR) fs: allow empty string for temp directory prefix (Voltrex) #39028 - [
ef72490cde] - (SEMVER-MINOR) fs: allow no-params fsPromises fileHandle read (Nitzan Uziely) #38287 - [
cad9d20f64] - (SEMVER-MINOR) fs: add support for async iterators tofsPromises.writeFile(HiroyukiYagihashi) #37490 - [
2b0e2706c0] - fs: improve fsPromises readFile performance (Nitzan Uziely) #37608 - [
fe12cc07b3] - (SEMVER-MINOR) fs: add fsPromises.watch() (James M Snell) #37179 - [
2459c115a8] - (SEMVER-MINOR) fs: allowpositionparameter to be aBigIntin read and readSync (Darshan Sen) #36190 - [
6544cfb4b9] - (SEMVER-MINOR) http2: add support for sensitive headers (Anna Henningsen) #34145 - [
a6c6cbb4e6] - (SEMVER-MINOR) http2: allow setting the local window size of a session (Yongsheng Zhang) #35978 - [
1e5aca550c] - inspector: mark as stable (Gireesh Punathil) #37748 - [
93af04afbb] - **(SEMVER-MIN
Configuration
📅 Schedule: Branch creation - "after 10pm,before 6:00am" in timezone Europe/Warsaw, Automerge - At any time (no schedule defined).
🚦 Automerge: Enabled.
♻ 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, click this checkbox.
This PR has been generated by Mend Renovate. View repository job log here.