This is an automated email from the ASF dual-hosted git repository.

github-merge-queue[bot] pushed a commit to branch 
gh-readonly-queue/main/pr-7378-99b07dba17239d3bf059730b070f8fe21ae39d15
in repository https://gitbox.apache.org/repos/asf/texera.git

commit 42e09f57b9d2433fbfe5475149a75caed463a899
Author: Mend Renovate <[email protected]>
AuthorDate: Fri Aug 7 04:39:51 2026 +0100

    fix(deps, frontend): update dependency nx to v23.0.2 (#7378)
    
    This PR contains the following updates:
    
    | Package | Change |
    [Age](https://docs.renovatebot.com/merge-confidence/) |
    [Confidence](https://docs.renovatebot.com/merge-confidence/) |
    |---|---|---|---|
    | [nx](https://nx.dev)
    ([source](https://redirect.github.com/nrwl/nx/tree/HEAD/packages/nx)) |
    [`23.0.1` →
    `23.0.2`](https://renovatebot.com/diffs/npm/nx/23.0.1/23.0.2) |
    ![age](https://developer.mend.io/api/mc/badges/age/npm/nx/23.0.2?slim=true)
    |
    
![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/nx/23.0.1/23.0.2?slim=true)
    |
    
    ---
    
    > [!WARNING]
    > Some dependencies could not be looked up. Check the [Dependency
    Dashboard](../issues/6912) for more information.
    
    ---
    
    ### Nx: Zip-Slip in the self-hosted remote cache
    [CVE-2026-71476](https://nvd.nist.gov/vuln/detail/CVE-2026-71476) /
    
[GHSA-vp3h-ghgh-jr7g](https://redirect.github.com/advisories/GHSA-vp3h-ghgh-jr7g)
    
    <details>
    <summary>More information</summary>
    
    #### Details
    ##### Summary
    
    The Nx **self-hosted HTTP remote cache** extracts downloaded cache
    artifacts without constraining where files are written. A malicious — or
    on-path (MITM) — remote cache server can return a crafted tar archive
    whose entries escape the cache directory and write to arbitrary
    locations on the machine running Nx. This arbitrary file write can be
    escalated to remote code execution. The directly exploitable issue is
    the self-hosted HTTP remote cache.
    
    ##### Affected Packages
    
    > [!IMPORTANT]
    > **Nx's default local cache and Nx Cloud are NOT affected.** The
    default local cache and Nx Cloud use separate cache retrieval and
    extraction mechanisms that does not have this vulnerability. Only
    workspaces that use a self-hosted remote cache
    (`NX_SELF_HOSTED_REMOTE_CACHE_SERVER`, `@nx/s3-cache`, etc.) are
    affected.
    
    Two self-hosted cache surfaces are affected:
    
    1. **The built-in HTTP remote cache**
    (`NX_SELF_HOSTED_REMOTE_CACHE_SERVER`, in `nx`) — **fixed** in the
    patched release.
    2. **The self-hosted cache packages** — `@nx/s3-cache`, `@nx/gcs-cache`,
    `@nx/azure-cache`, `@nx/shared-fs-cache` (and their `@nx/powerpack-*`
    predecessors) — the same flaw in their own extractor. **Deprecated**
    (CVE-2025-36852) and not patched; migrate off (see Remediation).
    
    The shared step that copies cached outputs into the workspace was also
    part of the exposure and is hardened in the patched `nx` release.
    
    ##### Remediation
    
    **Upgrade to Nx `22.7.7` or `23.0.2` (or later).** The patched extractor
    is a drop-in — no configuration change is required.
    
    ##### If you use the S3, GCS, Azure, or shared-filesystem cache packages
    
    `@nx/s3-cache`, `@nx/gcs-cache`, `@nx/azure-cache`, and
    `@nx/shared-fs-cache` (and their `@nx/powerpack-*` predecessors) are
    separately versioned packages and are **already deprecated** (see
    CVE-2025-36852). Upgrading `nx` hardens the shared restore step, but it
    does not fully secure these packages. The remediation for them is to
    **migrate off** — to Nx Cloud or the self-hosted OpenAPI/HTTP remote
    cache — per the deprecation guidance:
    https://nx.dev/docs/reference/deprecated/self-hosted-cache-packages
    
    ##### Details
    
    When Nx retrieves an artifact from the self-hosted HTTP remote cache, it
    downloads a gzipped tar archive and extracts it. The extractor joined
    each untrusted tar entry name directly onto the output directory and
    unpacked it with `tar`'s **unguarded** `Entry::unpack()`, which performs
    no containment check:
    
    ```rust
    // vulnerable
    let path_on_disk = output_dir.join(entry_path); // entry_path is 
attacker-controlled
    fs::create_dir_all(path_on_disk.parent()…)?;
    entry.unpack(&path_on_disk)?;
    ```
    
    In addition, restore now copies **only** the declared task outputs
    (never the whole cache directory), confined to the workspace root;
    parent directories are realized as real directories so a write can never
    traverse a symlink; declared outputs that resolve outside the workspace
    are rejected; and the malformed-input cases return errors instead of
    panicking.
    
    ##### References
    
    - Fix:
    
[https://github.com/nrwl/nx/pull/36116](https://redirect.github.com/nrwl/nx/pull/36116)
    (merged)
    - TLS-verification warning follow-up:
    
[https://github.com/nrwl/nx/pull/36132](https://redirect.github.com/nrwl/nx/pull/36132)
    (merged)
    - Vulnerable extractor introduced in Nx 20.8.0:
    
[https://github.com/nrwl/nx/pull/30593](https://redirect.github.com/nrwl/nx/pull/30593)
    
    ##### Credits
    
    - **Lidor B.**, Novee Security — Reporter
    - **Assaf Levkovich**, Novee Security — Reporter
    
    #### Severity
    - CVSS Score: 8.7 / 10 (High)
    - Vector String:
    `CVSS:4.0/AV:N/AC:L/AT:N/PR:N/UI:P/VC:H/VI:H/VA:H/SC:N/SI:N/SA:N`
    
    #### References
    -
    
[https://github.com/nrwl/nx/security/advisories/GHSA-vp3h-ghgh-jr7g](https://redirect.github.com/nrwl/nx/security/advisories/GHSA-vp3h-ghgh-jr7g)
    -
    
[https://github.com/nrwl/nx/pull/36116](https://redirect.github.com/nrwl/nx/pull/36116)
    -
    
[https://github.com/nrwl/nx/commit/2b20c2da39d263c32ae05767577589481a309fee](https://redirect.github.com/nrwl/nx/commit/2b20c2da39d263c32ae05767577589481a309fee)
    -
    
[https://github.com/nrwl/nx/commit/a82807621e4176e37909d2c1afede661b45cc30](https://redirect.github.com/nrwl/nx/commit/a82807621e4176e37909d2c1afede661b45cc30)
    -
    
[https://github.com/nrwl/nx/commit/ad296578fe980a4aad66f8af0add21f6ddf907d9](https://redirect.github.com/nrwl/nx/commit/ad296578fe980a4aad66f8af0add21f6ddf907d9)
    - [https://github.com/nrwl/nx](https://redirect.github.com/nrwl/nx)
    
    This data is provided by
    [OSV](https://osv.dev/vulnerability/GHSA-vp3h-ghgh-jr7g) and the [GitHub
    Advisory Database](https://redirect.github.com/github/advisory-database)
    ([CC-BY
    
4.0](https://redirect.github.com/github/advisory-database/blob/main/LICENSE.md)).
    </details>
    
    ---
    
    ### Release Notes
    
    <details>
    <summary>nrwl/nx (nx)</summary>
    
    ### [`v23.0.2`](https://redirect.github.com/nrwl/nx/releases/tag/23.0.2)
    
    [Compare
    Source](https://redirect.github.com/nrwl/nx/compare/23.0.1...23.0.2)
    
    ##### 23.0.2 (2026-07-10)
    
    ##### 🚀 Features
    
    - **core:** re-add isCacheableTask helper
    ([#&#8203;36177](https://redirect.github.com/nrwl/nx/pull/36177))
    
    ##### 🩹 Fixes
    
    - **bundling:** prevent TS6059 when an app imports a workspace lib from
    source ([#&#8203;36217](https://redirect.github.com/nrwl/nx/pull/36217),
    [#&#8203;35017](https://redirect.github.com/nrwl/nx/issues/35017))
    - **core:** prefer module.registerHooks to avoid DEP0205 deprecation
    warning
    ([#&#8203;36081](https://redirect.github.com/nrwl/nx/pull/36081))
    - **core:** prevent nx migrate crash when include=optional filters out
    the target package
    ([#&#8203;36087](https://redirect.github.com/nrwl/nx/pull/36087))
    - **core:** make nx migrate honor preapproved packages and emit a valid
    temp workspace
    ([#&#8203;36086](https://redirect.github.com/nrwl/nx/pull/36086))
    - **core:** skip daemon project-graph recompute on no-op file rewrites
    ([#&#8203;36082](https://redirect.github.com/nrwl/nx/pull/36082))
    - **core:** prevent the TUI from auto-selecting a completed task when a
    batch finishes
    ([#&#8203;35833](https://redirect.github.com/nrwl/nx/pull/35833))
    - **core:** deregister pseudo-terminal exit handlers when tasks finish
    ([#&#8203;36115](https://redirect.github.com/nrwl/nx/pull/36115))
    - **core:** prevent path traversal / zip-slip in self-hosted remote
    cache ([#&#8203;36116](https://redirect.github.com/nrwl/nx/pull/36116))
    - **core:** respect explicit --nxCloud=skip for AI agents in
    create-nx-workspace
    ([#&#8203;36131](https://redirect.github.com/nrwl/nx/pull/36131))
    - **core:** warn when the self-hosted remote cache disables TLS
    verification (NXC-4593)
    ([#&#8203;36132](https://redirect.github.com/nrwl/nx/pull/36132),
    [#&#8203;36116](https://redirect.github.com/nrwl/nx/issues/36116))
    - **core:** throw actionable error when pnpm .modules.yaml is missing
    ([#&#8203;35666](https://redirect.github.com/nrwl/nx/pull/35666),
    [#&#8203;35635](https://redirect.github.com/nrwl/nx/issues/35635))
    - **core:** support `${configDir}` in tsconfig path alias resolution
    ([#&#8203;36037](https://redirect.github.com/nrwl/nx/pull/36037),
    [#&#8203;35804](https://redirect.github.com/nrwl/nx/issues/35804))
    - **core:** prevent non-npm devEngines pin from breaking npm registry
    lookups
    ([#&#8203;36020](https://redirect.github.com/nrwl/nx/pull/36020),
    [#&#8203;35815](https://redirect.github.com/nrwl/nx/issues/35815))
    - **core:** clarify nx sync remediation messaging and surface spinner
    output in non-tty
    ([#&#8203;35747](https://redirect.github.com/nrwl/nx/pull/35747))
    - **core:** exclude direct-dependency overrides from generated
    package.json
    ([#&#8203;36040](https://redirect.github.com/nrwl/nx/pull/36040),
    [#&#8203;35675](https://redirect.github.com/nrwl/nx/issues/35675))
    - **core:** apply target defaults when project.json overrides an
    inferred run-commands target with different commands
    ([#&#8203;36142](https://redirect.github.com/nrwl/nx/pull/36142),
    [#&#8203;36067](https://redirect.github.com/nrwl/nx/issues/36067))
    - **core:** run the nx.bat wrapper for dot-nx setup on windows
    ([#&#8203;36048](https://redirect.github.com/nrwl/nx/pull/36048))
    - **core:** speed up bun lockfile parsing
    ([#&#8203;36198](https://redirect.github.com/nrwl/nx/pull/36198))
    - **core:** set NX\_CLI\_SET in batch worker processes
    ([#&#8203;36214](https://redirect.github.com/nrwl/nx/pull/36214),
    [#&#8203;36210](https://redirect.github.com/nrwl/nx/issues/36210))
    - **core:** preserve comments in catalog YAML updates
    ([#&#8203;35733](https://redirect.github.com/nrwl/nx/pull/35733))
    - **core:** box JsonFileSet payload to keep HashInstruction small
    ([#&#8203;36247](https://redirect.github.com/nrwl/nx/pull/36247),
    [#&#8203;35248](https://redirect.github.com/nrwl/nx/issues/35248),
    [#&#8203;36244](https://redirect.github.com/nrwl/nx/issues/36244),
    [#&#8203;36152](https://redirect.github.com/nrwl/nx/issues/36152))
    - **core:** share workspace fileset hash results instead of deep-cloning
    per task
    ([#&#8203;36244](https://redirect.github.com/nrwl/nx/pull/36244),
    [#&#8203;34971](https://redirect.github.com/nrwl/nx/issues/34971),
    [#&#8203;34942](https://redirect.github.com/nrwl/nx/issues/34942))
    - **core:** replace per-input visited clones with undo-log scoping in
    hash planner
    ([#&#8203;36248](https://redirect.github.com/nrwl/nx/pull/36248),
    [#&#8203;35071](https://redirect.github.com/nrwl/nx/issues/35071),
    [#&#8203;36152](https://redirect.github.com/nrwl/nx/issues/36152),
    [#&#8203;34971](https://redirect.github.com/nrwl/nx/issues/34971),
    [#&#8203;36244](https://redirect.github.com/nrwl/nx/issues/36244),
    [#&#8203;35248](https://redirect.github.com/nrwl/nx/issues/35248),
    [#&#8203;36247](https://redirect.github.com/nrwl/nx/issues/36247))
    - **core:** intern hash instructions in a pool and plan with id lists
    ([#&#8203;36249](https://redirect.github.com/nrwl/nx/pull/36249),
    [#&#8203;35071](https://redirect.github.com/nrwl/nx/issues/35071),
    [#&#8203;36152](https://redirect.github.com/nrwl/nx/issues/36152),
    [#&#8203;36248](https://redirect.github.com/nrwl/nx/issues/36248))
    - **core:** detect Codex sandbox on Linux to disable daemon and plugin
    isolation
    ([#&#8203;36273](https://redirect.github.com/nrwl/nx/pull/36273))
    - **devkit:** restore prettier v2 support in formatFiles
    ([#&#8203;36193](https://redirect.github.com/nrwl/nx/pull/36193))
    - **graph:** prevent project details web view top from being clipped
    ([#&#8203;36154](https://redirect.github.com/nrwl/nx/pull/36154))
    - **js:** prevent doubled output paths in buildable library path
    mappings
    ([#&#8203;36138](https://redirect.github.com/nrwl/nx/pull/36138),
    [#&#8203;36079](https://redirect.github.com/nrwl/nx/issues/36079))
    - **js:** scope incremental type-check .tsbuildinfo per project
    ([#&#8203;36137](https://redirect.github.com/nrwl/nx/pull/36137),
    [#&#8203;36113](https://redirect.github.com/nrwl/nx/issues/36113))
    - **js:** preserve npm allowScripts allowlist in pruned package.json
    ([#&#8203;36016](https://redirect.github.com/nrwl/nx/pull/36016),
    [#&#8203;35931](https://redirect.github.com/nrwl/nx/issues/35931))
    - **js:** resolve catalog references in pruned package.json output
    ([#&#8203;35805](https://redirect.github.com/nrwl/nx/pull/35805),
    [#&#8203;35419](https://redirect.github.com/nrwl/nx/issues/35419))
    - **js:** avoid import locator unicode position panic
    ([#&#8203;36133](https://redirect.github.com/nrwl/nx/pull/36133),
    [#&#8203;36128](https://redirect.github.com/nrwl/nx/issues/36128))
    - **js:** prevent Windows TS6059 rootDir errors in tsc builds
    ([#&#8203;36184](https://redirect.github.com/nrwl/nx/pull/36184),
    [#&#8203;35696](https://redirect.github.com/nrwl/nx/issues/35696))
    - **js:** wait for process tree exit when stopping node executor tasks
    ([#&#8203;36230](https://redirect.github.com/nrwl/nx/pull/36230))
    - **linter:** update terminal cli regex for local-dist build
    ([#&#8203;36201](https://redirect.github.com/nrwl/nx/pull/36201),
    [#&#8203;36199](https://redirect.github.com/nrwl/nx/issues/36199))
    - **maven:** de-flake maven e2e by dropping -X debug forks and widening
    timeout
    ([#&#8203;36091](https://redirect.github.com/nrwl/nx/pull/36091))
    - **misc:** bump axios to 1.16.1
    ([#&#8203;36120](https://redirect.github.com/nrwl/nx/pull/36120))
    - **misc:** use default import for chalk in
    [@&#8203;nx/workspace](https://redirect.github.com/nx/workspace)
    output.ts
    ([#&#8203;35523](https://redirect.github.com/nrwl/nx/pull/35523),
    [#&#8203;35521](https://redirect.github.com/nrwl/nx/issues/35521),
    [#&#8203;34111](https://redirect.github.com/nrwl/nx/issues/34111),
    [#&#8203;21201](https://redirect.github.com/nrwl/nx/issues/21201),
    [#&#8203;26667](https://redirect.github.com/nrwl/nx/issues/26667))
    - **misc:** remove duplicate nx init cloud-prompt telemetry event
    ([#&#8203;36145](https://redirect.github.com/nrwl/nx/pull/36145))
    - **nx-cloud:** use standard utm params on cloud prompt links
    ([#&#8203;36227](https://redirect.github.com/nrwl/nx/pull/36227),
    [#&#8203;36226](https://redirect.github.com/nrwl/nx/issues/36226))
    - **nx-dev:** remove empty SaaS and Mobile template filters
    ([#&#8203;36085](https://redirect.github.com/nrwl/nx/pull/36085))
    - **react:** reserve ports in rspack e2e test to avoid default port
    collisions
    ([#&#8203;36090](https://redirect.github.com/nrwl/nx/pull/36090))
    - **react:** stop pinning eslint-plugin-react in generated projects
    ([#&#8203;36168](https://redirect.github.com/nrwl/nx/pull/36168),
    [#&#8203;36161](https://redirect.github.com/nrwl/nx/issues/36161))
    - **release:** widen release e2e timeouts to absorb pre-version dlx
    install
    ([#&#8203;36092](https://redirect.github.com/nrwl/nx/pull/36092))
    - **repo:** trust wix/brew tap so macOS detox CI can install
    applesimutils
    ([#&#8203;36146](https://redirect.github.com/nrwl/nx/pull/36146))
    - **rspack:** use contenthash for chunkFilename to prevent stale chunks
    ([#&#8203;36136](https://redirect.github.com/nrwl/nx/pull/36136),
    [#&#8203;2292](https://redirect.github.com/nrwl/nx/issues/2292),
    [#&#8203;36014](https://redirect.github.com/nrwl/nx/issues/36014))
    - **rspack:** stop mocking non-existent is-serve-mode util in
    apply-base-config test
    ([fea2cabbcc](https://redirect.github.com/nrwl/nx/commit/fea2cabbcc))
    - **vite:** widen vite ts-solution e2e build timeouts for cold multi-lib
    build ([#&#8203;36093](https://redirect.github.com/nrwl/nx/pull/36093))
    - **vite:** detect
    [@&#8203;vitejs/plugin-vue2](https://redirect.github.com/vitejs/plugin-vue2)
    (vite:vue2) for vue-tsc typecheck
    ([#&#8203;36125](https://redirect.github.com/nrwl/nx/pull/36125),
    [#&#8203;36094](https://redirect.github.com/nrwl/nx/issues/36094))
    - **vite:** update deprecation docs link
    ([#&#8203;36070](https://redirect.github.com/nrwl/nx/pull/36070),
    [#&#8203;36053](https://redirect.github.com/nrwl/nx/issues/36053))
    - **vitest:** support passing mode through to vitest
    ([#&#8203;35069](https://redirect.github.com/nrwl/nx/pull/35069))
    - **web:** run executor/plugin/generator commands with the workspace
    package manager
    ([#&#8203;36021](https://redirect.github.com/nrwl/nx/pull/36021),
    [#&#8203;35950](https://redirect.github.com/nrwl/nx/issues/35950))
    - **webpack:** prevent TS6059 when a tsc build bundles a workspace lib
    ([#&#8203;36188](https://redirect.github.com/nrwl/nx/pull/36188),
    [#&#8203;35017](https://redirect.github.com/nrwl/nx/issues/35017))
    
    ##### ❤️ Thank You
    
    - AgentEnder
    [@&#8203;AgentEnder](https://redirect.github.com/AgentEnder)
    - Aidan Temple [@&#8203;aidant](https://redirect.github.com/aidant)
    - Craigory Coppola
    [@&#8203;AgentEnder](https://redirect.github.com/AgentEnder)
    - cyphercodes
    [@&#8203;cyphercodes](https://redirect.github.com/cyphercodes)
    - FrozenPandaz
    [@&#8203;FrozenPandaz](https://redirect.github.com/FrozenPandaz)
    - Jack Hsu [@&#8203;jaysoo](https://redirect.github.com/jaysoo)
    - Jason Jean
    [@&#8203;FrozenPandaz](https://redirect.github.com/FrozenPandaz)
    - Jonathan Garvey
    [@&#8203;jdgarvey](https://redirect.github.com/jdgarvey)
    - Leosvel Pérez Espinosa
    [@&#8203;leosvelperez](https://redirect.github.com/leosvelperez)
    - Miroslav Jonaš
    [@&#8203;meeroslav](https://redirect.github.com/meeroslav)
    - Rayan Salhab
    - Richard Roozenboom
    [@&#8203;Roozenboom](https://redirect.github.com/Roozenboom)
    - Sai Asish Y [@&#8203;SAY-5](https://redirect.github.com/SAY-5)
    - Steven Nance
    - titanniya542-spec
    [@&#8203;titanniya542-spec](https://redirect.github.com/titanniya542-spec)
    - Wilson Pinto
    
    </details>
    
    ---
    
    ### Configuration
    
    📅 **Schedule**: (in timezone Etc/UTC)
    
    - 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 this update
    again.
    
    ---
    
    - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
    this box
    
    ---
    
    This PR was generated by [Mend Renovate](https://mend.io/renovate/).
    View the [repository job
    log](https://developer.mend.io/github/apache/texera).
    
    
<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiI0NC4xMi4wIiwidXBkYXRlZEluVmVyIjoiNDQuMTIuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIiwicmVsZWFzZS92MS4yIiwic2VjdXJpdHkiXX0=-->
    
    ---------
    
    Co-authored-by: Xinyuan Lin <[email protected]>
---
 frontend/package.json |   4 +-
 frontend/yarn.lock    | 300 ++++++++++++++++++++++++++++----------------------
 2 files changed, 169 insertions(+), 135 deletions(-)

diff --git a/frontend/package.json b/frontend/package.json
index 0d64d87427..20c8228024 100644
--- a/frontend/package.json
+++ b/frontend/package.json
@@ -93,7 +93,7 @@
     "@angular-eslint/template-parser": "21.4.0",
     "@angular/cli": "21.2.19",
     "@angular/compiler-cli": "21.2.18",
-    "@nx/angular": "23.0.1",
+    "@nx/angular": "23.0.2",
     "@schematics/angular": "21.2.19",
     "@types/backbone": "1.4.23",
     "@types/concaveman": "1.1.6",
@@ -123,7 +123,7 @@
     "eslint-plugin-rxjs-angular": "2.0.1",
     "jsdom": "25.0.1",
     "nodecat": "2.0.0",
-    "nx": "23.0.1",
+    "nx": "23.0.2",
     "playwright": "1.59.1",
     "prettier": "3.2.5",
     "prettier-eslint-cli": "8.0.1",
diff --git a/frontend/yarn.lock b/frontend/yarn.lock
index 36692aa0f9..0de41095d5 100644
--- a/frontend/yarn.lock
+++ b/frontend/yarn.lock
@@ -4709,17 +4709,17 @@ __metadata:
   languageName: node
   linkType: hard
 
-"@nx/angular@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/angular@npm:23.0.1"
-  dependencies:
-    "@nx/devkit": "npm:23.0.1"
-    "@nx/eslint": "npm:23.0.1"
-    "@nx/js": "npm:23.0.1"
-    "@nx/module-federation": "npm:23.0.1"
-    "@nx/rspack": "npm:23.0.1"
-    "@nx/web": "npm:23.0.1"
-    "@nx/webpack": "npm:23.0.1"
+"@nx/angular@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/angular@npm:23.0.2"
+  dependencies:
+    "@nx/devkit": "npm:23.0.2"
+    "@nx/eslint": "npm:23.0.2"
+    "@nx/js": "npm:23.0.2"
+    "@nx/module-federation": "npm:23.0.2"
+    "@nx/rspack": "npm:23.0.2"
+    "@nx/web": "npm:23.0.2"
+    "@nx/webpack": "npm:23.0.2"
     "@phenomnomnominal/tsquery": "npm:~6.2.0"
     "@typescript-eslint/type-utils": "npm:^8.0.0"
     enquirer: "npm:~2.3.6"
@@ -4744,13 +4744,13 @@ __metadata:
       optional: true
     ng-packagr:
       optional: true
-  checksum: 
10c0/9a5a65ff0ec627d644ed093f3070bcc4e367eea1528d8c4598415104f702d8eca9739a0c71e3fca60928771e57aa29ce78fadf75c6a1528cd97109c8e119cc0d
+  checksum: 
10c0/2126ddcab7f026cb93b5ca4322dceff6e2ff7fcd3c17697be196c99f6b2f9885c23d2bc14242fc9c5d6f2671b38d9ff4249a9de0e2636a42ca2a4c14f63a24e2
   languageName: node
   linkType: hard
 
-"@nx/devkit@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/devkit@npm:23.0.1"
+"@nx/devkit@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/devkit@npm:23.0.2"
   dependencies:
     "@zkochan/js-yaml": "npm:0.0.7"
     ejs: "npm:5.0.1"
@@ -4758,24 +4758,25 @@ __metadata:
     minimatch: "npm:10.2.5"
     semver: "npm:^7.6.3"
     tslib: "npm:^2.3.0"
+    yaml: "npm:^2.8.3"
     yargs-parser: "npm:21.1.1"
   peerDependencies:
     nx: ">= 22 <= 24 || ^23.0.0-0"
-  checksum: 
10c0/46b60e0ee014f285791da9c7e2ae612d9288043d524725b0252f37b0e49c0adc54eea50239ab6ec658276c229f13b2a7855961e710081bcc42a4ff1f2278a79e
+  checksum: 
10c0/5defefc74e1bc280895ea45144e721d8f53fc8e3175ee7a8fe35bb369b0ca6a908f01c5b87cbb72bc718c1a59654f882976994414eb215c5221795ec3320943a
   languageName: node
   linkType: hard
 
-"@nx/eslint@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/eslint@npm:23.0.1"
+"@nx/eslint@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/eslint@npm:23.0.2"
   dependencies:
-    "@nx/devkit": "npm:23.0.1"
-    "@nx/js": "npm:23.0.1"
+    "@nx/devkit": "npm:23.0.2"
+    "@nx/js": "npm:23.0.2"
     semver: "npm:^7.6.3"
     tslib: "npm:^2.3.0"
     typescript: "npm:~5.9.2"
   peerDependencies:
-    "@nx/jest": 23.0.1
+    "@nx/jest": 23.0.2
     "@zkochan/js-yaml": 0.0.7
     eslint: ^8.0.0 || ^9.0.0 || ^10.0.0
   peerDependenciesMeta:
@@ -4783,13 +4784,13 @@ __metadata:
       optional: true
     "@zkochan/js-yaml":
       optional: true
-  checksum: 
10c0/ca700b0d5a40dfc715f77941dc589c6e089ae23c8c777693400405a9ef4d51681b6ae05e436c709054c1659790ac9c433739356e45f28262f19b950168eccd5c
+  checksum: 
10c0/97a5151b581169ac328748d442c9d580b6ebfe5d5445a862f1b0bc4294251a835302f6b8aaae01730f2d0a3b251e9b3083863faf885b427c5e894e2bb49e3d5e
   languageName: node
   linkType: hard
 
-"@nx/js@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/js@npm:23.0.1"
+"@nx/js@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/js@npm:23.0.2"
   dependencies:
     "@babel/core": "npm:^7.23.2"
     "@babel/plugin-proposal-decorators": "npm:^7.22.7"
@@ -4798,8 +4799,8 @@ __metadata:
     "@babel/preset-env": "npm:^7.23.2"
     "@babel/preset-typescript": "npm:^7.22.5"
     "@babel/runtime": "npm:^7.22.6"
-    "@nx/devkit": "npm:23.0.1"
-    "@nx/workspace": "npm:23.0.1"
+    "@nx/devkit": "npm:23.0.2"
+    "@nx/workspace": "npm:23.0.2"
     "@zkochan/js-yaml": "npm:0.0.7"
     babel-plugin-const-enum: "npm:^1.0.1"
     babel-plugin-macros: "npm:^3.1.0"
@@ -4825,17 +4826,17 @@ __metadata:
       optional: true
     verdaccio:
       optional: true
-  checksum: 
10c0/bdd23af22cc1053648e0f4768c3cfa70993ff3bad416fcea6329e0a7dcdcc9f9e6ae3f59bed172106e519f709135d1ae63506862292202a883a809b8d8ef8cd0
+  checksum: 
10c0/9b3ee6b4478c262ecc77106df6467547b0fb2d60cab6f209c72e41b5870d544604206d22547184a4642decdff510d3e55ea924883a5f622dae5987cb79b189ee
   languageName: node
   linkType: hard
 
-"@nx/module-federation@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/module-federation@npm:23.0.1"
+"@nx/module-federation@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/module-federation@npm:23.0.2"
   dependencies:
-    "@nx/devkit": "npm:23.0.1"
-    "@nx/js": "npm:23.0.1"
-    "@nx/web": "npm:23.0.1"
+    "@nx/devkit": "npm:23.0.2"
+    "@nx/js": "npm:23.0.2"
+    "@nx/web": "npm:23.0.2"
     "@rspack/core": "npm:1.6.8"
     express: "npm:^4.21.2"
     http-proxy-middleware: "npm:^3.0.5"
@@ -4850,88 +4851,88 @@ __metadata:
       optional: true
     "@module-federation/node":
       optional: true
-  checksum: 
10c0/688b171fff0459c3eaf89c8725e6cd7d363ca75e4d19ed0c0b8195047e274bcf99832ebd7a29e79dc25d7d367215c393f92971b745696e98d299f7ffb346e8cc
+  checksum: 
10c0/a56c9cf79f9b7636c285864c1437180dad680ed68160ac0edd756632a2bc27f2331e6cf3df4c97ea22cf4f0a14395b93cc2fb62f8fb6fc3648398c3e852e295d
   languageName: node
   linkType: hard
 
-"@nx/nx-darwin-arm64@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-darwin-arm64@npm:23.0.1"
+"@nx/nx-darwin-arm64@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-darwin-arm64@npm:23.0.2"
   conditions: os=darwin & cpu=arm64
   languageName: node
   linkType: hard
 
-"@nx/nx-darwin-x64@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-darwin-x64@npm:23.0.1"
+"@nx/nx-darwin-x64@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-darwin-x64@npm:23.0.2"
   conditions: os=darwin & cpu=x64
   languageName: node
   linkType: hard
 
-"@nx/nx-freebsd-x64@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-freebsd-x64@npm:23.0.1"
+"@nx/nx-freebsd-x64@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-freebsd-x64@npm:23.0.2"
   conditions: os=freebsd & cpu=x64
   languageName: node
   linkType: hard
 
-"@nx/nx-linux-arm-gnueabihf@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-linux-arm-gnueabihf@npm:23.0.1"
+"@nx/nx-linux-arm-gnueabihf@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-linux-arm-gnueabihf@npm:23.0.2"
   conditions: os=linux & cpu=arm
   languageName: node
   linkType: hard
 
-"@nx/nx-linux-arm64-gnu@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-linux-arm64-gnu@npm:23.0.1"
+"@nx/nx-linux-arm64-gnu@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-linux-arm64-gnu@npm:23.0.2"
   conditions: os=linux & cpu=arm64 & libc=glibc
   languageName: node
   linkType: hard
 
-"@nx/nx-linux-arm64-musl@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-linux-arm64-musl@npm:23.0.1"
+"@nx/nx-linux-arm64-musl@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-linux-arm64-musl@npm:23.0.2"
   conditions: os=linux & cpu=arm64 & libc=musl
   languageName: node
   linkType: hard
 
-"@nx/nx-linux-x64-gnu@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-linux-x64-gnu@npm:23.0.1"
+"@nx/nx-linux-x64-gnu@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-linux-x64-gnu@npm:23.0.2"
   conditions: os=linux & cpu=x64 & libc=glibc
   languageName: node
   linkType: hard
 
-"@nx/nx-linux-x64-musl@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-linux-x64-musl@npm:23.0.1"
+"@nx/nx-linux-x64-musl@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-linux-x64-musl@npm:23.0.2"
   conditions: os=linux & cpu=x64 & libc=musl
   languageName: node
   linkType: hard
 
-"@nx/nx-win32-arm64-msvc@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-win32-arm64-msvc@npm:23.0.1"
+"@nx/nx-win32-arm64-msvc@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-win32-arm64-msvc@npm:23.0.2"
   conditions: os=win32 & cpu=arm64
   languageName: node
   linkType: hard
 
-"@nx/nx-win32-x64-msvc@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/nx-win32-x64-msvc@npm:23.0.1"
+"@nx/nx-win32-x64-msvc@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/nx-win32-x64-msvc@npm:23.0.2"
   conditions: os=win32 & cpu=x64
   languageName: node
   linkType: hard
 
-"@nx/rspack@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/rspack@npm:23.0.1"
+"@nx/rspack@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/rspack@npm:23.0.2"
   dependencies:
-    "@nx/devkit": "npm:23.0.1"
-    "@nx/js": "npm:23.0.1"
-    "@nx/module-federation": "npm:23.0.1"
-    "@nx/web": "npm:23.0.1"
+    "@nx/devkit": "npm:23.0.2"
+    "@nx/js": "npm:23.0.2"
+    "@nx/module-federation": "npm:23.0.2"
+    "@nx/web": "npm:23.0.2"
     "@phenomnomnominal/tsquery": "npm:~6.2.0"
     autoprefixer: "npm:^10.4.9"
     browserslist: "npm:^4.26.0"
@@ -4971,27 +4972,27 @@ __metadata:
       optional: true
     "@rspack/plugin-react-refresh":
       optional: true
-  checksum: 
10c0/162198b337e5dd96263966340edc1283e695b9cecd85473c1372c74946a703c8f7e5989baf1190c05b57dd317a1df67f89740be917e8b0ca5d4ab5583ad9a280
+  checksum: 
10c0/5fd4e7561ebdb8265201fa7ca4f1d92d2f9197bb0bc7b4b7f09bb367778021af6ed744b9a71970aaddea5daac3cefc4bafcaf1c6c1ffea27e1782e3d38c27922
   languageName: node
   linkType: hard
 
-"@nx/web@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/web@npm:23.0.1"
+"@nx/web@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/web@npm:23.0.2"
   dependencies:
-    "@nx/devkit": "npm:23.0.1"
-    "@nx/js": "npm:23.0.1"
+    "@nx/devkit": "npm:23.0.2"
+    "@nx/js": "npm:23.0.2"
     detect-port: "npm:^2.1.0"
     http-server: "npm:^14.1.0"
     picocolors: "npm:^1.1.0"
     tslib: "npm:^2.3.0"
   peerDependencies:
-    "@nx/cypress": 23.0.1
-    "@nx/eslint": 23.0.1
-    "@nx/jest": 23.0.1
-    "@nx/playwright": 23.0.1
-    "@nx/vite": 23.0.1
-    "@nx/webpack": 23.0.1
+    "@nx/cypress": 23.0.2
+    "@nx/eslint": 23.0.2
+    "@nx/jest": 23.0.2
+    "@nx/playwright": 23.0.2
+    "@nx/vite": 23.0.2
+    "@nx/webpack": 23.0.2
   peerDependenciesMeta:
     "@nx/cypress":
       optional: true
@@ -5005,17 +5006,17 @@ __metadata:
       optional: true
     "@nx/webpack":
       optional: true
-  checksum: 
10c0/76cf6cd3ef5501bea233502f9d0a5806664c2d40f63325769f8b31b636961cc9ebadec9d40baed3d68924ca4e68a70684c8401ecd10a00e2575d8ac882613e10
+  checksum: 
10c0/8b1509515c9304587fa00be42d7b58e6cabe1e4ddbd80856d163bcbab07dc1f871ae03ed5456dff4757cff2ec38302b3c8c9307a45656a50cf99baf8cb9b2f32
   languageName: node
   linkType: hard
 
-"@nx/webpack@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/webpack@npm:23.0.1"
+"@nx/webpack@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/webpack@npm:23.0.2"
   dependencies:
     "@babel/core": "npm:^7.23.2"
-    "@nx/devkit": "npm:23.0.1"
-    "@nx/js": "npm:23.0.1"
+    "@nx/devkit": "npm:23.0.2"
+    "@nx/js": "npm:23.0.2"
     "@phenomnomnominal/tsquery": "npm:~6.2.0"
     ajv: "npm:^8.0.0"
     autoprefixer: "npm:^10.4.9"
@@ -5042,7 +5043,7 @@ __metadata:
     source-map-loader: "npm:^5.0.0"
     style-loader: "npm:^3.3.0"
     terser-webpack-plugin: "npm:^5.3.3"
-    ts-loader: "npm:^9.3.1"
+    ts-loader: "npm:^9.5.7"
     tsconfig-paths-webpack-plugin: "npm:4.2.0"
     tslib: "npm:^2.3.0"
     webpack-node-externals: "npm:^3.0.0"
@@ -5058,24 +5059,24 @@ __metadata:
       optional: true
     webpack-dev-server:
       optional: true
-  checksum: 
10c0/0be2f525d4d1721c1258af18e49cadce47405f1044f3cca4cc8e99c18e870a70d0aad08e48439a7f17d31fba3f14cc1aaa544d22dd3f076ebd4994917dab9809
+  checksum: 
10c0/5eb21d3e8a99e10e09a36e1f8a907cde17b208bd45ce6d1a3e5c979f019690ada09815cab0ea3e712d56479e1c1435088a65ee44e4597a7a4434def4f625bb18
   languageName: node
   linkType: hard
 
-"@nx/workspace@npm:23.0.1":
-  version: 23.0.1
-  resolution: "@nx/workspace@npm:23.0.1"
+"@nx/workspace@npm:23.0.2":
+  version: 23.0.2
+  resolution: "@nx/workspace@npm:23.0.2"
   dependencies:
-    "@nx/devkit": "npm:23.0.1"
+    "@nx/devkit": "npm:23.0.2"
     "@zkochan/js-yaml": "npm:0.0.7"
     chalk: "npm:^4.1.0"
     enquirer: "npm:~2.3.6"
-    nx: "npm:23.0.1"
+    nx: "npm:23.0.2"
     picomatch: "npm:4.0.4"
     semver: "npm:^7.6.3"
     tslib: "npm:^2.3.0"
     yargs-parser: "npm:21.1.1"
-  checksum: 
10c0/3e8e4a378793659383d44f7d8939517861625cb5acb9ee9ac07bb9756ff41177d91cec499780ef95144617ab4e66a31b70a9d60983e860db38a2ec40c3fead68
+  checksum: 
10c0/711478a7dcd3817b5d5a130c95b3df21636c0dd9615b0a2c6b269673b51ab90856c5dae6c8b6d6654a0570be3f738b3f142714d88b3c5bd2000d89cb45a7ce94
   languageName: node
   linkType: hard
 
@@ -7538,6 +7539,15 @@ __metadata:
   languageName: node
   linkType: hard
 
+"agent-base@npm:6, agent-base@npm:6.0.2":
+  version: 6.0.2
+  resolution: "agent-base@npm:6.0.2"
+  dependencies:
+    debug: "npm:4"
+  checksum: 
10c0/dc4f757e40b5f3e3d674bc9beb4f1048f4ee83af189bae39be99f57bf1f48dde166a8b0a5342a84b5944ee8e6ed1e5a9d801858f4ad44764e84957122fe46261
+  languageName: node
+  linkType: hard
+
 "agent-base@npm:^7.1.0, agent-base@npm:^7.1.2":
   version: 7.1.4
   resolution: "agent-base@npm:7.1.4"
@@ -7891,14 +7901,15 @@ __metadata:
   languageName: node
   linkType: hard
 
-"axios@npm:1.16.0":
-  version: 1.16.0
-  resolution: "axios@npm:1.16.0"
+"axios@npm:1.16.1":
+  version: 1.16.1
+  resolution: "axios@npm:1.16.1"
   dependencies:
     follow-redirects: "npm:^1.16.0"
     form-data: "npm:^4.0.5"
+    https-proxy-agent: "npm:^5.0.1"
     proxy-from-env: "npm:^2.1.0"
-  checksum: 
10c0/1c91a5221b77b76072026b4cc95ecdf38f7c3e33e63423abec09a85e6e9a12279637dcc9ac2ba1fc333e0c447fb3b0f46d7965acb5d7cea02d188e9c6d425c0b
+  checksum: 
10c0/2f77e37e6552bbff8a772d058fb09500198e9188c6b20dc799d82dbe12a8cb506f6eed4e4e62a9ba612a35cbab496faa26d68f9bff14a53af6d15c3e136391a7
   languageName: node
   linkType: hard
 
@@ -9286,7 +9297,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"debug@npm:4, debug@npm:^4.1.0, debug@npm:^4.3.1, debug@npm:^4.3.2, 
debug@npm:^4.3.4, debug@npm:^4.3.6, debug@npm:^4.4.0, debug@npm:^4.4.3":
+"debug@npm:4, debug@npm:4.4.3, debug@npm:^4.1.0, debug@npm:^4.3.1, 
debug@npm:^4.3.2, debug@npm:^4.3.4, debug@npm:^4.3.6, debug@npm:^4.4.0, 
debug@npm:^4.4.3":
   version: 4.4.3
   resolution: "debug@npm:4.4.3"
   dependencies:
@@ -9668,7 +9679,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"enhanced-resolve@npm:^5.0.0, enhanced-resolve@npm:^5.17.4, 
enhanced-resolve@npm:^5.7.0":
+"enhanced-resolve@npm:^5.17.4, enhanced-resolve@npm:^5.7.0":
   version: 5.21.0
   resolution: "enhanced-resolve@npm:5.21.0"
   dependencies:
@@ -10971,7 +10982,7 @@ __metadata:
     "@ngneat/until-destroy": "npm:10.0.0"
     "@ngx-formly/core": "npm:7.1.0"
     "@ngx-formly/ng-zorro-antd": "npm:7.1.0"
-    "@nx/angular": "npm:23.0.1"
+    "@nx/angular": "npm:23.0.2"
     "@schematics/angular": "npm:21.2.19"
     "@types/backbone": "npm:1.4.23"
     "@types/concaveman": "npm:1.1.6"
@@ -11021,7 +11032,7 @@ __metadata:
     ngx-json-viewer: "npm:3.2.1"
     ngx-markdown: "npm:21.2.0"
     nodecat: "npm:2.0.0"
-    nx: "npm:23.0.1"
+    nx: "npm:23.0.2"
     papaparse: "npm:5.4.1"
     path-browserify: "npm:1.0.1"
     playwright: "npm:1.59.1"
@@ -11329,6 +11340,16 @@ __metadata:
   languageName: node
   linkType: hard
 
+"https-proxy-agent@npm:5.0.1, https-proxy-agent@npm:^5.0.1":
+  version: 5.0.1
+  resolution: "https-proxy-agent@npm:5.0.1"
+  dependencies:
+    agent-base: "npm:6"
+    debug: "npm:4"
+  checksum: 
10c0/6dd639f03434003577c62b27cafdb864784ef19b2de430d8ae2a1d45e31c4fd60719e5637b44db1a88a046934307da7089e03d6089ec3ddacc1189d8de8897d1
+  languageName: node
+  linkType: hard
+
 "https-proxy-agent@npm:7.0.6, https-proxy-agent@npm:^7.0.1, 
https-proxy-agent@npm:^7.0.5":
   version: 7.0.6
   resolution: "https-proxy-agent@npm:7.0.6"
@@ -12965,7 +12986,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"micromatch@npm:^4.0.0, micromatch@npm:^4.0.2, micromatch@npm:^4.0.8":
+"micromatch@npm:^4.0.2, micromatch@npm:^4.0.8":
   version: 4.0.8
   resolution: "micromatch@npm:4.0.8"
   dependencies:
@@ -13698,34 +13719,35 @@ __metadata:
   languageName: node
   linkType: hard
 
-"nx@npm:23.0.1":
-  version: 23.0.1
-  resolution: "nx@npm:23.0.1"
+"nx@npm:23.0.2":
+  version: 23.0.2
+  resolution: "nx@npm:23.0.2"
   dependencies:
     "@emnapi/core": "npm:1.4.5"
     "@emnapi/runtime": "npm:1.4.5"
     "@emnapi/wasi-threads": "npm:1.0.4"
     "@jest/diff-sequences": "npm:30.0.1"
     "@napi-rs/wasm-runtime": "npm:0.2.4"
-    "@nx/nx-darwin-arm64": "npm:23.0.1"
-    "@nx/nx-darwin-x64": "npm:23.0.1"
-    "@nx/nx-freebsd-x64": "npm:23.0.1"
-    "@nx/nx-linux-arm-gnueabihf": "npm:23.0.1"
-    "@nx/nx-linux-arm64-gnu": "npm:23.0.1"
-    "@nx/nx-linux-arm64-musl": "npm:23.0.1"
-    "@nx/nx-linux-x64-gnu": "npm:23.0.1"
-    "@nx/nx-linux-x64-musl": "npm:23.0.1"
-    "@nx/nx-win32-arm64-msvc": "npm:23.0.1"
-    "@nx/nx-win32-x64-msvc": "npm:23.0.1"
+    "@nx/nx-darwin-arm64": "npm:23.0.2"
+    "@nx/nx-darwin-x64": "npm:23.0.2"
+    "@nx/nx-freebsd-x64": "npm:23.0.2"
+    "@nx/nx-linux-arm-gnueabihf": "npm:23.0.2"
+    "@nx/nx-linux-arm64-gnu": "npm:23.0.2"
+    "@nx/nx-linux-arm64-musl": "npm:23.0.2"
+    "@nx/nx-linux-x64-gnu": "npm:23.0.2"
+    "@nx/nx-linux-x64-musl": "npm:23.0.2"
+    "@nx/nx-win32-arm64-msvc": "npm:23.0.2"
+    "@nx/nx-win32-x64-msvc": "npm:23.0.2"
     "@tybys/wasm-util": "npm:0.9.0"
     "@yarnpkg/lockfile": "npm:1.1.0"
     "@zkochan/js-yaml": "npm:0.0.7"
+    agent-base: "npm:6.0.2"
     ansi-colors: "npm:4.1.3"
     ansi-regex: "npm:5.0.1"
     ansi-styles: "npm:4.3.0"
     argparse: "npm:2.0.1"
     asynckit: "npm:0.4.0"
-    axios: "npm:1.16.0"
+    axios: "npm:1.16.1"
     balanced-match: "npm:4.0.3"
     base64-js: "npm:1.5.1"
     bl: "npm:4.1.0"
@@ -13740,6 +13762,7 @@ __metadata:
     color-convert: "npm:2.0.1"
     color-name: "npm:1.1.4"
     combined-stream: "npm:1.0.8"
+    debug: "npm:4.4.3"
     defaults: "npm:1.0.4"
     define-lazy-prop: "npm:2.0.0"
     delayed-stream: "npm:1.0.0"
@@ -13770,6 +13793,7 @@ __metadata:
     has-symbols: "npm:1.1.0"
     has-tostringtag: "npm:1.0.2"
     hasown: "npm:2.0.4"
+    https-proxy-agent: "npm:5.0.1"
     ieee754: "npm:1.2.1"
     ignore: "npm:7.0.5"
     inherits: "npm:2.0.4"
@@ -13789,6 +13813,7 @@ __metadata:
     mimic-fn: "npm:2.1.0"
     minimatch: "npm:10.2.5"
     minimist: "npm:1.2.8"
+    ms: "npm:2.1.3"
     npm-run-path: "npm:4.0.1"
     once: "npm:1.4.0"
     onetime: "npm:5.1.2"
@@ -13855,7 +13880,7 @@ __metadata:
   bin:
     nx: ./dist/bin/nx.js
     nx-cloud: ./dist/bin/nx-cloud.js
-  checksum: 
10c0/2b66d820d060c4247cf787b609c97ae8407934972dff22fe001628da5fc7bb459bf0eab7a4f57135ef9ed6580151c3bfc893dc59f004cca546a3fd2bd1acf151
+  checksum: 
10c0/214201e6f2c07a5c315f7a8630519b879023157a1443cb3fd0bb2d0a9a5132671bfc7e92809f818bad506d4e2894b9d64ec4d5ae30632d11c359e350df4cb0e5
   languageName: node
   linkType: hard
 
@@ -14337,6 +14362,13 @@ __metadata:
   languageName: node
   linkType: hard
 
+"picomatch@npm:^4.0.0":
+  version: 4.0.5
+  resolution: "picomatch@npm:4.0.5"
+  checksum: 
10c0/947bc6b6e1ff1e6c5aaf95b107a0839d12802f4f7b867663f67d47accba939ca1cb582cf99dfc30438efa1c4648ac5990967e783e8929c36b03e8440704ef1bd
+  languageName: node
+  linkType: hard
+
 "pify@npm:^2.3.0":
   version: 2.3.0
   resolution: "pify@npm:2.3.0"
@@ -16160,7 +16192,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"semver@npm:7.7.4, semver@npm:^7.0.0, semver@npm:^7.1.1, semver@npm:^7.3.4, 
semver@npm:^7.3.5, semver@npm:^7.3.6, semver@npm:^7.3.7, semver@npm:^7.5.3, 
semver@npm:^7.5.4, semver@npm:^7.6.2, semver@npm:^7.6.3, semver@npm:^7.7.3":
+"semver@npm:7.7.4, semver@npm:^7.0.0, semver@npm:^7.1.1, semver@npm:^7.3.5, 
semver@npm:^7.3.6, semver@npm:^7.3.7, semver@npm:^7.5.3, semver@npm:^7.5.4, 
semver@npm:^7.6.2, semver@npm:^7.6.3, semver@npm:^7.7.3":
   version: 7.7.4
   resolution: "semver@npm:7.7.4"
   bin:
@@ -17139,19 +17171,21 @@ __metadata:
   languageName: node
   linkType: hard
 
-"ts-loader@npm:^9.3.1":
-  version: 9.5.7
-  resolution: "ts-loader@npm:9.5.7"
+"ts-loader@npm:^9.5.7":
+  version: 9.6.2
+  resolution: "ts-loader@npm:9.6.2"
   dependencies:
     chalk: "npm:^4.1.0"
-    enhanced-resolve: "npm:^5.0.0"
-    micromatch: "npm:^4.0.0"
-    semver: "npm:^7.3.4"
+    picomatch: "npm:^4.0.0"
     source-map: "npm:^0.7.4"
   peerDependencies:
+    loader-utils: "*"
     typescript: "*"
-    webpack: ^5.0.0
-  checksum: 
10c0/e68d997962046afc40fbb6131a5f329128691917bf288d18df4f95719ca1557e72f614bf078e06544ab0c970f734495a356f3eeb5f11ca18459944237b3635a1
+    webpack: ^4.0.0 || ^5.0.0
+  peerDependenciesMeta:
+    loader-utils:
+      optional: true
+  checksum: 
10c0/6102336ee598124249e07cce6bb3d4ee0586f962697b7388d1957296a2c7d5164b95757797db237bdb7b8f0c5a52d2f22ca5013d3337823d8e9e0e731ce03c67
   languageName: node
   linkType: hard
 
@@ -18379,7 +18413,7 @@ __metadata:
   languageName: node
   linkType: hard
 
-"yaml@npm:2.9.0":
+"yaml@npm:2.9.0, yaml@npm:^2.8.3":
   version: 2.9.0
   resolution: "yaml@npm:2.9.0"
   bin:

Reply via email to