chore(deps): update patch dependencies (main) - #4357
Conversation
|
View your CI Pipeline Execution ↗ for commit 8f0e08e
💡 Dealing with memory or CPU issues? See memory and CPU details with the resource usage add-on ↗. ☁️ Nx Cloud last updated this comment at |
Codecov Report✅ All modified and coverable lines are covered by tests. ☔ View full report in Codecov by Harness. 🚀 New features to boost your workflow:
|
b0bbad9 to
4d244f7
Compare
4d244f7 to
0b993f0
Compare
0b993f0 to
16363c0
Compare
16363c0 to
d194cb9
Compare
d194cb9 to
0c73b52
Compare
0c73b52 to
af00e4f
Compare
af00e4f to
5e0a3e8
Compare
5e0a3e8 to
6bc2c7b
Compare
e058b91 to
ff37b3e
Compare
ff37b3e to
a297e5a
Compare
a297e5a to
ae16396
Compare
ae16396 to
d1b26e1
Compare
f77d91d to
fb6142e
Compare
fb6142e to
c08a554
Compare
c08a554 to
aeb5a4b
Compare
aeb5a4b to
7669da0
Compare
List of reported errors
|
7669da0 to
caf52e5
Compare
caf52e5 to
fb66568
Compare
There was a problem hiding this comment.
Nx Cloud is proposing a fix for your failed CI:
We updated the moduleResolution in packages/@o3r/extractors/tsconfig.build.json from node10 to bundler to fix the TS2307 errors caused by typedoc 0.28.20 introducing an exports field in its package.json that the legacy node10 resolution strategy cannot handle. This change also resolves the secondary TS7006 implicit-any errors, which appeared because TypeScript could not infer types from typedoc's arrays when the module was unresolvable.
Warning
❌ We could not verify this fix.
diff --git a/packages/@o3r/extractors/tsconfig.build.json b/packages/@o3r/extractors/tsconfig.build.json
index 368357d3b..249c2ba34 100644
--- a/packages/@o3r/extractors/tsconfig.build.json
+++ b/packages/@o3r/extractors/tsconfig.build.json
@@ -5,7 +5,7 @@
"incremental": true,
"composite": true,
"module": "CommonJS",
- "moduleResolution": "node10",
+ "moduleResolution": "bundler",
"outDir": "./dist",
"rootDir": ".",
"tsBuildInfoFile": "build/.tsbuildinfo"
Or Apply changes locally with:
npx nx-cloud apply-locally q6ot-vDqS
Apply fix locally with your editor ↗ View interactive diff ↗
🎓 Learn more about Self-Healing CI on nx.dev
fb66568 to
8f32f56
Compare
There was a problem hiding this comment.
Nx Cloud is proposing a fix for your failed CI:
We updated packages/@o3r/extractors/tsconfig.build.json to change moduleResolution from node10 to node16, which fixes the extractors:compile failure introduced by the typedoc 0.28.19→0.28.20 patch update. The new typedoc version exports its types via the exports field in its package.json, which is only honoured by node16, nodenext, or bundler module resolution — the old node10 setting could not resolve it, causing the TS2307 and cascading TS7006 errors.
Note
⏳ We are verifying this fix by re-running extractors:compile.
diff --git a/packages/@o3r/extractors/tsconfig.build.json b/packages/@o3r/extractors/tsconfig.build.json
index 368357d3b..6d5642c5e 100644
--- a/packages/@o3r/extractors/tsconfig.build.json
+++ b/packages/@o3r/extractors/tsconfig.build.json
@@ -5,7 +5,7 @@
"incremental": true,
"composite": true,
"module": "CommonJS",
- "moduleResolution": "node10",
+ "moduleResolution": "node16",
"outDir": "./dist",
"rootDir": ".",
"tsBuildInfoFile": "build/.tsbuildinfo"
Or Apply changes locally with:
npx nx-cloud apply-locally WC8K-OmcE
Apply fix locally with your editor ↗ View interactive diff ↗
🎓 Learn more about Self-Healing CI on nx.dev
8f32f56 to
a000f15
Compare
There was a problem hiding this comment.
Nx Cloud is proposing a fix for your failed CI:
We updated moduleResolution from node10 to node16 in packages/@o3r/extractors/tsconfig.build.json to fix the compilation failure caused by the typedoc 0.28.19 → 0.28.20 upgrade. The new typedoc version uses a package.json exports field that the legacy node10 resolution algorithm ignores, preventing TypeScript from locating its type declarations. Switching to node16 resolution enables TypeScript to honour the exports field, resolving both the TS2307 module-not-found errors and the downstream TS7006 implicit-any errors on the .some() callbacks.
Warning
❌ We could not verify this fix.
diff --git a/packages/@o3r/extractors/tsconfig.build.json b/packages/@o3r/extractors/tsconfig.build.json
index 368357d3b..6d5642c5e 100644
--- a/packages/@o3r/extractors/tsconfig.build.json
+++ b/packages/@o3r/extractors/tsconfig.build.json
@@ -5,7 +5,7 @@
"incremental": true,
"composite": true,
"module": "CommonJS",
- "moduleResolution": "node10",
+ "moduleResolution": "node16",
"outDir": "./dist",
"rootDir": ".",
"tsBuildInfoFile": "build/.tsbuildinfo"
Or Apply changes locally with:
npx nx-cloud apply-locally DSkf-lnGw
Apply fix locally with your editor ↗ View interactive diff ↗
🎓 Learn more about Self-Healing CI on nx.dev
a000f15 to
8f0e08e
Compare
There was a problem hiding this comment.
Nx Cloud is proposing a fix for your failed CI:
We updated packages/@o3r/extractors/tsconfig.build.json to use module: "Node16" and moduleResolution: "Node16" to fix the extractors:compile failure caused by the typedoc 0.28.19 → 0.28.20 upgrade. The new typedoc version removed its top-level "types" field and now exposes type declarations exclusively via the package.json "exports" field, which requires a module resolution mode that supports exports (Node16, NodeNext, or bundler). Since the package has no "type": "module", TypeScript still emits CommonJS output, preserving the existing behavior.
Note
⏳ We are verifying this fix by re-running extractors:compile.
diff --git a/packages/@o3r/extractors/tsconfig.build.json b/packages/@o3r/extractors/tsconfig.build.json
index 368357d3b..fcd582705 100644
--- a/packages/@o3r/extractors/tsconfig.build.json
+++ b/packages/@o3r/extractors/tsconfig.build.json
@@ -4,8 +4,8 @@
"skipLibCheck": true, // because of @gerrit0/mini-shiki from typedoc
"incremental": true,
"composite": true,
- "module": "CommonJS",
- "moduleResolution": "node10",
+ "module": "Node16",
+ "moduleResolution": "Node16",
"outDir": "./dist",
"rootDir": ".",
"tsBuildInfoFile": "build/.tsbuildinfo"
Or Apply changes locally with:
npx nx-cloud apply-locally 1ooc-rlKU
Apply fix locally with your editor ↗ View interactive diff ↗
🎓 Learn more about Self-Healing CI on nx.dev
This PR contains the following updates:
0.2102.18→0.2102.190.2102.200.2102.18→0.2102.190.2102.2021.2.18→21.2.1921.2.2021.2.18→21.2.1921.2.2021.2.18→21.2.1921.2.2021.2.18→21.2.1921.2.2021.2.18→21.2.1921.2.2021.2.18→21.2.1921.2.2021.2.18→21.2.1921.2.2021.2.18→21.2.1921.2.2021.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.1921.2.18→21.2.194.16.1→4.16.28.0.3→8.0.48.4.1→8.4.28.5.08.0.2→8.0.321.1.0→21.1.121.1.0→21.1.13.3.5→3.3.69.39.4→9.39.522.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.822.7.6→22.7.821.2.18→21.2.1921.2.2021.2.18→21.2.1921.2.201.15.43→1.15.471.15.43→1.15.475.1.1→5.1.25.1.324.13.2→24.13.324.13.2→24.13.324.13.2→24.13.34.1.9→4.1.104.1.9→4.1.104.9.0→4.9.13.7.0→3.7.14.0.4→4.0.53.3.0→3.3.1v0.0.37→v0.0.38v7.0.0→v7.0.14.28.4→4.28.79.39.4→9.39.59.39.4→9.39.516.2.0→16.2.25.6.7→5.6.811.2.9→11.2.1311.2.9→11.2.134.1.4→4.1.510.2.5→10.2.610.2.5→10.2.614.0.16→14.0.1722.7.6→22.7.822.7.6→22.7.8v2.4.3→v2.4.44.0.4→4.0.58.5.23→8.5.258.5.23→8.5.258.5.23→8.5.2529.4.11→29.4.1229.4.11→29.4.120.28.19→0.28.200.28.19→0.28.204.1.9→4.1.104.1.9→4.1.102.4.0→2.4.10Release Notes
angular/angular-cli (@angular-devkit/architect)
v0.2102.19Compare Source
angular/angular (@angular/animations)
v21.2.19Compare Source
compiler
http
platform-server
Azure/azure-functions-nodejs-library (@azure/functions)
v4.16.2Compare Source
Hotfix release to reclaim the latest npm tag from erroneously tagged 3.6.0.
This release is identical to v4.16.1 in functionality - only the version number is bumped.
npm
ionic-team/capacitor-plugins (@capacitor/browser)
v8.0.4Compare Source
Note: Version bump only for package @capacitor/browser
ionic-team/capacitor (@capacitor/core)
v8.4.2Compare Source
Bug Fixes
eslint/eslintrc (@eslint/eslintrc)
v3.3.6Compare Source
Bug Fixes
js-yamlto 4.3.0 to address security vulnerability (#235) (0c5de74)eslint/eslint (@eslint/js)
v9.39.5Compare Source
Bug Fixes
253be16fix: handle unavailable require cache (backport of #20812 to v9.x) (#21065) (Eric)Documentation
74930eddocs: switch build to Node.js 24 (#20894) (Milos Djermanovic)eaec8bbdocs: Add ESLint v9.x EOL notice (#20828) (Milos Djermanovic)Chores
458205fchore: update@eslint/eslintrcand@eslint/jsfor v9.39.5 (#21077) (Francesco Trotta)202117bchore: package.json update for @eslint/js release (Jenkins)d9eb6edtest: disable warning forvm.constants.USE_MAIN_CONTEXT_DEFAULT_LOADER(#21074) (Francesco Trotta)7b431a7chore: overridere2dependency for@metascraper/helpers(#21068) (Milos Djermanovic)daf7791chore: pin fflate@0.8.2 (#20895) (Milos Djermanovic)daee8baci: use pnpm ineslint-flat-config-utilstype integration test (#20829) (Milos Djermanovic)116d4beci: unpin Node.js 25.x in CI (#20619) (Copilot)nrwl/nx (@nx/angular)
v22.7.8Compare Source
22.7.8 (2026-07-30)
🩹 Fixes
❤️ Thank You
v22.7.7Compare Source
22.7.7 (2026-07-10)
🩹 Fixes
❤️ Thank You
swc-project/swc (@swc/core)
v1.15.47Compare Source
Bug Fixes
(es) Preserve numeric property key identity (#12050) (46900a3)
(es/ast) Support hashing non-finite numbers (#12043) (f4b85a6)
(es/codegen) Emit non-finite numeric literals (#12047) (883abc4)
(es/decorators) Avoid class state leakage for nested undecorated classes (#12076) (4c9d277)
(es/minifier) Apply ToInt32 when folding bitwise NOT (#12058) (550e2f7)
(es/minifier) Avoid inexact number radix folding (#12057) (506a0ea)
(es/minifier) Preserve invalid Array lengths (#12056) (3ce9e16)
(es/minifier) Preserve non-canonical arguments access (#12052) (850230b)
(es/minifier) Apply ToUint16 in fromCharCode (#12055) (9ae7b92)
(es/minifier) Index strings by UTF-16 code unit (#12054) (bc263d2)
(es/minifier) Use numeric literals for non-finite values (#12048) (b830786)
(es/minifier) Preserve top-level declarations referenced only by direct eval (#12029) (ad0e3b4)
(es/optimization) Preserve JSON numeric values (#12051) (667af8c)
(es/transforms) Use numeric literals for non-finite enum values (#12049) (1e3ed5c)
(es/typescript) Evaluate cooked enum templates (#12059) (49d0b0f)
(html/minifier) Preserve JSON script boundaries (#12080) (e1877b4)
(testing) Check ignored fixtures relative to crate root (#12073) (da858b4)
(ts/fast-strip) Preserve ASI before interpolated templates (#12040) (54467fe)
(ts/fast-strip) Preserve UTF-16 source positions (#12067) (ac4bfc9)
Features
(es/minifier) Expand support for trivial spreads (#12068) (aa49e36)
(es/react-compiler) Expose
reactCompiler.environment.enableFunctionOutlining(#12030) (52b78aa)Performance
v1.15.46Compare Source
Bug Fixes
(deps) Update crossbeam-epoch to 0.9.20 (#12004) (fababa1)
(es/fixer) Normalize for-head ident patterns (#11968) (af681bc)
(es/fixer) Preserve parens around PURE-annotated receivers (#12022) ([73d8941](https://redirect.github.com/swc-project/swc/commit/73d894103
Configuration
📅 Schedule: (in timezone Europe/Paris)
🚦 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.
This PR was generated by Mend Renovate. View the repository job log.