Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Dec 1, 2024

This PR contains the following updates:

Package Change Age Confidence Type Update
@apollo/server (source) 4.11.2 -> 4.12.2 age confidence devDependencies minor
@apollo/server-integration-testsuite (source) 4.11.2 -> 4.12.2 age confidence devDependencies minor
@google-cloud/functions-framework 3.4.2 -> 3.5.1 age confidence devDependencies minor
@types/node (source) 16.18.119 -> 16.18.126 age confidence devDependencies patch
node (source) 20.18.1 -> 20.19.4 age confidence volta minor
npm (source) 10.9.1 -> 10.9.3 age confidence volta patch
prettier (source) 3.3.3 -> 3.6.2 age confidence devDependencies minor
ts-jest (source) 29.2.5 -> 29.4.1 age confidence devDependencies minor
typescript (source) 5.7.2 -> 5.9.2 age confidence devDependencies minor

Release Notes

apollographql/apollo-server (@​apollo/server)

v4.12.2

Compare Source

(No change; there is a change to the @apollo/server-integration-testsuite used to test integrations, and the two packages always have matching versions.)

v4.12.1

Compare Source

Patch Changes

v4.12.0

Compare Source

Minor Changes
  • #​8054 89e3f84 Thanks @​clenfest! - Adds a new graphql-js validation rule to reject operations that recursively request selections above a specified maximum, which is disabled by default. Use configuration option maxRecursiveSelections=true to enable with a maximum of 10,000,000, or maxRecursiveSelections=<number> for a custom maximum. Enabling this validation can help avoid performance issues with configured validation rules or plugins.
Patch Changes

v4.11.3

Compare Source

Patch Changes
apollographql/apollo-server (@​apollo/server-integration-testsuite)

v4.12.2

Compare Source

Patch Changes
  • #​8070 0dee3c9 Thanks @​glasser! - Provide dual-build CJS and ESM for @apollo/server-integration-testsuite.

    We previously provided only a CJS build of this package, unlike @apollo/server
    itself and the other helper packages that come with it. We may make all of
    Apollo Server ESM-only in AS5; this is a step in that direction. Specifically,
    only providing this package for CJS makes it challenging to run the tests in
    ts-jest in some ESM-only setups, because the copy of @apollo/server fetched
    directly in your ESM-based test may differ from the copy fetched indirectly via
    @apollo/server-integration-testsuite, causing the "lockstep versioning" test
    to fail.

  • Updated dependencies:

v4.12.1

Compare Source

Patch Changes

v4.12.0

Compare Source

Patch Changes

v4.11.3

Compare Source

Patch Changes
GoogleCloudPlatform/functions-framework-nodejs (@​google-cloud/functions-framework)

v3.5.1

Compare Source

Bug Fixes
  • correct handling of IGNORED_ROUTES set to empty (4799207)

v3.5.0

Compare Source

Features
  • adds a new ignored-routes config option (70f68e9)
Bug Fixes

v3.4.6

Compare Source

Bug Fixes

v3.4.5

Compare Source

Bug Fixes
  • fix trace context pattern, remove trace id and respect logging span id field. (#​667) (0fb00a5)

v3.4.4

Compare Source

Bug Fixes

v3.4.3

Compare Source

Bug Fixes
  • Fix typings for functions.cloudEvent to include callback. (#​631) (47cd4c6)
nodejs/node (node)

v20.19.4

Compare Source

v20.19.3

Compare Source

v20.19.2

Compare Source

v20.19.1

Compare Source

v20.19.0: 2025-03-13, Version 20.19.0 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
require(esm) is now enabled by default

Support for loading native ES modules using require() had been available on v20.x under the command line flag --experimental-require-module, and available by default on v22.x and v23.x. In this release, it is now no longer behind a flag on v20.x.

This feature has been tested on v23.x and v22.x, and we are looking for user feedback from v20.x to make more final tweaks before fully stabilizing it. When the Node.js instance encounters a native ES module in require() somewhere outside node_modules for the first time, it will emit an experimental warning unless require() comes from a path that contains node_modules. If there happens to be any regressions caused by this feature, users can report it to the Node.js issue tracker. Meanwhile this feature can also be disabled using --no-experimental-require-module as a workaround.

With this feature enabled, Node.js will no longer throw ERR_REQUIRE_ESM if require() is used to load a ES module. It can, however, throw ERR_REQUIRE_ASYNC_MODULE if the ES module being loaded or its dependencies contain top-level await. When the ES module is loaded successfully by require(), the returned object will either be a ES module namespace object similar to what's returned by import(), or what gets exported as "module.exports" in the ES module.

Users can check process.features.require_module to see whether require(esm) is enabled in the current Node.js instance. For packages, the "module-sync" exports condition can be used as a way to detect require(esm) support in the current Node.js instance and allow both require() and import to load the same native ES module. See the documentation for more details about this feature.

Contributed by Joyee Cheung in #​55085

Module syntax detection is now enabled by default

Module syntax detection (the --experimental-detect-module flag) is now
enabled by default. Use --no-experimental-detect-module to disable it if
needed.

Syntax detection attempts to run ambiguous files as CommonJS, and if the module
fails to parse as CommonJS due to ES module syntax, Node.js tries again and runs
the file as an ES module.
Ambiguous files are those with a .js or no extension, where the nearest parent
package.json has no "type" field (either "type": "module" or
"type": "commonjs").
Syntax detection should have no performance impact on CommonJS modules, but it
incurs a slight performance penalty for ES modules; add "type": "module" to
the nearest parent package.json file to eliminate the performance cost.
A use case unlocked by this feature is the ability to use ES module syntax in
extensionless scripts with no nearby package.json.

Thanks to Geoffrey Booth for making this work on #​53619.

Other Notable Changes
  • [285bb4ee14] - crypto: update root certificates to NSS 3.107 (Node.js GitHub Bot) #​56566
  • [73b5c16684] - (SEMVER-MINOR) worker: add postMessageToThread (Paolo Insogna) #​53682
  • [de313b2336] - (SEMVER-MINOR) module: only emit require(esm) warning under --trace-require-module (Joyee Cheung) #​56194
  • [4fba01911d] - (SEMVER-MINOR) process: add process.features.require_module (Joyee Cheung) #​55241
  • [df8a045afe] - (SEMVER-MINOR) module: implement the "module-sync" exports condition (Joyee Cheung) #​54648
  • [f9dc1eaef5] - (SEMVER-MINOR) module: add __esModule to require()'d ESM (Joyee Cheung) #​52166
Commits

v20.18.3: 2025-02-10, Version 20.18.3 'Iron' (LTS), @​marco-ippolito

Compare Source

Notable Changes
Commits

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

Rebasing: Whenever PR is behind base branch, 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.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 05c8cc0 to 42146e9 Compare December 14, 2024 09:02
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 42146e9 to 4b88877 Compare December 21, 2024 11:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 2dbf793 to b81c205 Compare January 8, 2025 23:12
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from a40fbd9 to f648aaf Compare January 21, 2025 18:42
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from f648aaf to a44f069 Compare January 23, 2025 05:48
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 4 times, most recently from 777c480 to 75e5800 Compare February 10, 2025 17:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 75e5800 to e14f2be Compare February 13, 2025 17:03
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from ee7e15f to 21bb329 Compare February 28, 2025 17:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from ee3bf4e to d2129b4 Compare March 4, 2025 23:14
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from d2129b4 to ea820d4 Compare March 13, 2025 14:59
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from dc1f6da to dcd405e Compare March 27, 2025 23:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 3 times, most recently from d5d9abd to 22d7d98 Compare April 7, 2025 17:05
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 22d7d98 to 1bd4f02 Compare April 13, 2025 10:24
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 1bd4f02 to 8dad0d5 Compare April 22, 2025 15:32
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 9c3560e to ae879c2 Compare May 14, 2025 23:28
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from ae879c2 to c2f1e88 Compare May 16, 2025 18:54
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from d3ae544 to c452cbf Compare June 12, 2025 06:39
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 68e13f1 to b8389ae Compare June 27, 2025 03:23
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from b8389ae to dc54a5f Compare July 16, 2025 03:58
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 2 times, most recently from 6f88f10 to bec1638 Compare August 4, 2025 23:25
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from bec1638 to 2b2885a Compare August 31, 2025 12:33
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants