From 8c17052efe22ec498b5ed48842d3ddb89e487c84 Mon Sep 17 00:00:00 2001 From: Jan Martin Date: Thu, 3 Apr 2025 17:38:43 -0700 Subject: [PATCH 1/2] test: reduce dependence on exact webpack optmizations --- .../build_angular/src/builders/browser/specs/svg_spec.ts | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/packages/angular_devkit/build_angular/src/builders/browser/specs/svg_spec.ts b/packages/angular_devkit/build_angular/src/builders/browser/specs/svg_spec.ts index 92f5fd0cda7b..2be5e2737d43 100644 --- a/packages/angular_devkit/build_angular/src/builders/browser/specs/svg_spec.ts +++ b/packages/angular_devkit/build_angular/src/builders/browser/specs/svg_spec.ts @@ -57,7 +57,11 @@ describe('Browser Builder allow svg', () => { host.scopedSync().read(join(outputPath, 'main.js')), ); - expect(content).toContain('ɵɵnamespaceSVG'); + // Verify that the svg contents are present in the main bundle, + // e.g. as template instructions. + expect(content).toContain('Hello World'); + + // Verify that the svg contents are *not* present as a separate file. expect(host.scopedSync().exists(normalize('dist/app.component.svg'))).toBe( false, 'should not copy app.component.svg to dist', From cbcf9d5b300a233f5b6066337e828e134f69c2e9 Mon Sep 17 00:00:00 2001 From: Angular Robot Date: Thu, 3 Apr 2025 17:04:37 +0000 Subject: [PATCH 2/2] build: update angular --- .../assistant-to-the-branch-manager.yml | 2 +- .github/workflows/ci.yml | 46 +-- .github/workflows/dev-infra.yml | 4 +- .github/workflows/feature-requests.yml | 2 +- .github/workflows/perf.yml | 6 +- .github/workflows/pr.yml | 38 +-- package.json | 28 +- packages/angular/ssr/package.json | 12 +- packages/ngtools/webpack/package.json | 4 +- pnpm-lock.yaml | 303 +++++++++--------- tests/legacy-cli/e2e/ng-snapshot/package.json | 32 +- 11 files changed, 239 insertions(+), 238 deletions(-) diff --git a/.github/workflows/assistant-to-the-branch-manager.yml b/.github/workflows/assistant-to-the-branch-manager.yml index 5744988c6895..4e935e0e8602 100644 --- a/.github/workflows/assistant-to-the-branch-manager.yml +++ b/.github/workflows/assistant-to-the-branch-manager.yml @@ -16,6 +16,6 @@ jobs: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 with: persist-credentials: false - - uses: angular/dev-infra/github-actions/branch-manager@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + - uses: angular/dev-infra/github-actions/branch-manager@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }} diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 03e44c6ebc5f..49ec398cb4ae 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -21,7 +21,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Generate JSON schema types @@ -42,11 +42,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Install node modules @@ -59,11 +59,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Install node modules @@ -85,13 +85,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Run CLI E2E tests @@ -108,9 +108,9 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: allow_windows_rbe: true google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} @@ -134,13 +134,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Run CLI E2E tests @@ -158,13 +158,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Run CLI E2E tests @@ -178,13 +178,13 @@ jobs: SAUCE_TUNNEL_IDENTIFIER: angular-cli-${{ github.workflow }}-${{ github.run_number }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: google_credential: ${{ secrets.RBE_TRUSTED_BUILDS_USER }} - name: Run E2E Browser tests @@ -214,11 +214,11 @@ jobs: CIRCLE_BRANCH: ${{ github.ref_name }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - run: pnpm admin snapshots --verbose env: SNAPSHOT_BUILDS_GITHUB_TOKEN: ${{ secrets.SNAPSHOT_BUILDS_GITHUB_TOKEN }} diff --git a/.github/workflows/dev-infra.yml b/.github/workflows/dev-infra.yml index 32f1e18bb34d..1d5501f5435f 100644 --- a/.github/workflows/dev-infra.yml +++ b/.github/workflows/dev-infra.yml @@ -13,13 +13,13 @@ jobs: runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: angular/dev-infra/github-actions/commit-message-based-labels@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + - uses: angular/dev-infra/github-actions/commit-message-based-labels@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }} post_approval_changes: runs-on: ubuntu-latest steps: - uses: actions/checkout@11bd71901bbe5b1630ceea73d27597364c9af683 # v4.2.2 - - uses: angular/dev-infra/github-actions/post-approval-changes@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + - uses: angular/dev-infra/github-actions/post-approval-changes@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }} diff --git a/.github/workflows/feature-requests.yml b/.github/workflows/feature-requests.yml index 78e76ca85a7d..e97a78e7a293 100644 --- a/.github/workflows/feature-requests.yml +++ b/.github/workflows/feature-requests.yml @@ -16,6 +16,6 @@ jobs: if: github.repository == 'angular/angular-cli' runs-on: ubuntu-latest steps: - - uses: angular/dev-infra/github-actions/feature-request@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + - uses: angular/dev-infra/github-actions/feature-request@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }} diff --git a/.github/workflows/perf.yml b/.github/workflows/perf.yml index b48e1c200fab..e96566e2510e 100644 --- a/.github/workflows/perf.yml +++ b/.github/workflows/perf.yml @@ -23,7 +23,7 @@ jobs: workflows: ${{ steps.workflows.outputs.workflows }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - id: workflows @@ -38,9 +38,9 @@ jobs: workflow: ${{ fromJSON(needs.list.outputs.workflows) }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile # We utilize the google-github-actions/auth action to allow us to get an active credential using workflow diff --git a/.github/workflows/pr.yml b/.github/workflows/pr.yml index cd310acf6da5..e81bffaffb0f 100644 --- a/.github/workflows/pr.yml +++ b/.github/workflows/pr.yml @@ -34,7 +34,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup ESLint Caching uses: actions/cache@5a3ec84eff668545956fd18022155c47e93e2684 # v4.2.3 with: @@ -54,7 +54,7 @@ jobs: - name: Run Validation run: pnpm admin validate - name: Check Package Licenses - uses: angular/dev-infra/github-actions/linting/licenses@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/linting/licenses@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Check tooling setup run: pnpm check-tooling-setup - name: Check commit message @@ -70,11 +70,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Build release targets @@ -91,11 +91,11 @@ jobs: runs-on: ubuntu-latest steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Run module and package tests @@ -115,13 +115,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Run CLI E2E tests run: pnpm bazel test --test_env=E2E_SHARD_TOTAL=6 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }} @@ -130,9 +130,9 @@ jobs: runs-on: windows-2025 steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 with: allow_windows_rbe: true - name: Run CLI E2E tests @@ -153,13 +153,13 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Run CLI E2E tests run: pnpm bazel test --test_env=E2E_SHARD_TOTAL=3 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }} @@ -176,12 +176,12 @@ jobs: runs-on: ${{ matrix.os }} steps: - name: Initialize environment - uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Install node modules run: pnpm install --frozen-lockfile - name: Setup Bazel - uses: angular/dev-infra/github-actions/bazel/setup@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/setup@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Setup Bazel RBE - uses: angular/dev-infra/github-actions/bazel/configure-remote@b3b3466509babc50fd7f00b90e8bc607e7fe41aa + uses: angular/dev-infra/github-actions/bazel/configure-remote@6127cf117a8ed42945a7d8c09bc225851d58ef94 - name: Run CLI E2E tests run: pnpm bazel test --test_env=E2E_SHARD_TOTAL=6 --test_env=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.snapshots.${{ matrix.subset }}_node${{ matrix.node }} diff --git a/package.json b/package.json index 90fb409e6245..9f38f12e63f0 100644 --- a/package.json +++ b/package.json @@ -46,20 +46,20 @@ }, "homepage": "https://github.com/angular/angular-cli", "devDependencies": { - "@angular/animations": "20.0.0-next.4", - "@angular/cdk": "20.0.0-next.4", - "@angular/common": "20.0.0-next.4", - "@angular/compiler": "20.0.0-next.4", - "@angular/compiler-cli": "20.0.0-next.4", - "@angular/core": "20.0.0-next.4", - "@angular/forms": "20.0.0-next.4", - "@angular/localize": "20.0.0-next.4", - "@angular/material": "20.0.0-next.4", - "@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#10732a822895b3d11cf2366f4e8dea25f1303c55", - "@angular/platform-browser": "20.0.0-next.4", - "@angular/platform-server": "20.0.0-next.4", - "@angular/router": "20.0.0-next.4", - "@angular/service-worker": "20.0.0-next.4", + "@angular/animations": "20.0.0-next.5", + "@angular/cdk": "20.0.0-next.5", + "@angular/common": "20.0.0-next.5", + "@angular/compiler": "20.0.0-next.5", + "@angular/compiler-cli": "20.0.0-next.5", + "@angular/core": "20.0.0-next.5", + "@angular/forms": "20.0.0-next.5", + "@angular/localize": "20.0.0-next.5", + "@angular/material": "20.0.0-next.5", + "@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#9128e88714212404ed17bbed46903547815a52ce", + "@angular/platform-browser": "20.0.0-next.5", + "@angular/platform-server": "20.0.0-next.5", + "@angular/router": "20.0.0-next.5", + "@angular/service-worker": "20.0.0-next.5", "@bazel/bazelisk": "1.25.0", "@bazel/buildifier": "8.0.3", "@eslint/compat": "1.2.8", diff --git a/packages/angular/ssr/package.json b/packages/angular/ssr/package.json index 0849b9237014..37cdb43ae389 100644 --- a/packages/angular/ssr/package.json +++ b/packages/angular/ssr/package.json @@ -29,12 +29,12 @@ }, "devDependencies": { "@angular-devkit/schematics": "workspace:*", - "@angular/common": "20.0.0-next.4", - "@angular/compiler": "20.0.0-next.4", - "@angular/core": "20.0.0-next.4", - "@angular/platform-browser": "20.0.0-next.4", - "@angular/platform-server": "20.0.0-next.4", - "@angular/router": "20.0.0-next.4", + "@angular/common": "20.0.0-next.5", + "@angular/compiler": "20.0.0-next.5", + "@angular/core": "20.0.0-next.5", + "@angular/platform-browser": "20.0.0-next.5", + "@angular/platform-server": "20.0.0-next.5", + "@angular/router": "20.0.0-next.5", "@schematics/angular": "workspace:*" }, "sideEffects": false, diff --git a/packages/ngtools/webpack/package.json b/packages/ngtools/webpack/package.json index 81e3d937513d..5616a4a7bb5e 100644 --- a/packages/ngtools/webpack/package.json +++ b/packages/ngtools/webpack/package.json @@ -27,8 +27,8 @@ }, "devDependencies": { "@angular-devkit/core": "workspace:0.0.0-PLACEHOLDER", - "@angular/compiler": "20.0.0-next.4", - "@angular/compiler-cli": "20.0.0-next.4", + "@angular/compiler": "20.0.0-next.5", + "@angular/compiler-cli": "20.0.0-next.5", "typescript": "5.8.2", "webpack": "5.98.0" } diff --git a/pnpm-lock.yaml b/pnpm-lock.yaml index 636d1786d252..73970c8256bf 100644 --- a/pnpm-lock.yaml +++ b/pnpm-lock.yaml @@ -15,47 +15,47 @@ importers: .: devDependencies: '@angular/animations': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)) '@angular/cdk': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) '@angular/common': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) '@angular/compiler': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4 + specifier: 20.0.0-next.5 + version: 20.0.0-next.5 '@angular/compiler-cli': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2) '@angular/core': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) '@angular/forms': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) '@angular/localize': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/compiler-cli@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2))(@angular/compiler@20.0.0-next.4) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/compiler-cli@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2))(@angular/compiler@20.0.0-next.5) '@angular/material': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(oylo4douhe75q4m3y4wi7udlwy) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(zed5mlcqqzocvcjadwm7aowd6q) '@angular/ng-dev': - specifier: https://github.com/angular/dev-infra-private-ng-dev-builds.git#10732a822895b3d11cf2366f4e8dea25f1303c55 - version: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/10732a822895b3d11cf2366f4e8dea25f1303c55(encoding@0.1.13) + specifier: https://github.com/angular/dev-infra-private-ng-dev-builds.git#9128e88714212404ed17bbed46903547815a52ce + version: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/9128e88714212404ed17bbed46903547815a52ce(encoding@0.1.13) '@angular/platform-browser': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)) '@angular/platform-server': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.4)(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.5)(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) '@angular/router': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) '@angular/service-worker': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) '@bazel/bazelisk': specifier: 1.25.0 version: 1.25.0 @@ -431,7 +431,7 @@ importers: version: 4.2.2 ng-packagr: specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/compiler-cli@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2))(tslib@2.8.1)(typescript@5.8.2) + version: 20.0.0-next.4(@angular/compiler-cli@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2))(tslib@2.8.1)(typescript@5.8.2) postcss: specifier: 8.5.3 version: 8.5.3 @@ -512,23 +512,23 @@ importers: specifier: workspace:* version: link:../../angular_devkit/schematics '@angular/common': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) '@angular/compiler': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4 + specifier: 20.0.0-next.5 + version: 20.0.0-next.5 '@angular/core': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) '@angular/platform-browser': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)) '@angular/platform-server': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.4)(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.5)(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) '@angular/router': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) '@schematics/angular': specifier: workspace:* version: link:../../schematics/angular @@ -747,7 +747,7 @@ importers: version: 3.0.4 ng-packagr: specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/compiler-cli@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2))(tslib@2.8.1)(typescript@5.8.2) + version: 20.0.0-next.4(@angular/compiler-cli@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2))(tslib@2.8.1)(typescript@5.8.2) undici: specifier: 7.7.0 version: 7.7.0 @@ -841,11 +841,11 @@ importers: specifier: workspace:0.0.0-PLACEHOLDER version: link:../../angular_devkit/core '@angular/compiler': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4 + specifier: 20.0.0-next.5 + version: 20.0.0-next.5 '@angular/compiler-cli': - specifier: 20.0.0-next.4 - version: 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2) + specifier: 20.0.0-next.5 + version: 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2) typescript: specifier: 5.8.2 version: 5.8.2 @@ -883,117 +883,118 @@ packages: resolution: {integrity: sha512-30iZtAPgz+LTIYoeivqYo853f02jBYSd5uGnGpkFV0M3xOt9aN73erkgYAmZU43x4VfqcnLxW9Kpg3R5LC4YYw==} engines: {node: '>=6.0.0'} - '@angular/animations@20.0.0-next.4': - resolution: {integrity: sha512-LZRI0bUtsFXVGcH/B+nLIpsgPQmqFGzQ9GjDUsW4ZweBIdmbagIygkExhWVAYO+NxOedezpb4xzOL+D66oJdsg==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/animations@20.0.0-next.5': + resolution: {integrity: sha512-Ys3nI47vkOcVCcqAOT8Gozwl/4qpfNXo5EDLw5eKksiKlJTkpJtNu1Ljxk34hJwTTqdYYYOIgHxaJTTf5XdxuQ==} + engines: {node: ^20.11.1 || >=22.11.0} peerDependencies: - '@angular/core': 20.0.0-next.4 + '@angular/common': 20.0.0-next.5 + '@angular/core': 20.0.0-next.5 - '@angular/cdk@20.0.0-next.4': - resolution: {integrity: sha512-gJnvo/EfiM+CNlAaAxUYEOWsdeFeEt+jodKNJVhnC0ARr+AKXPWxagzALSJB0bnEfaP+GwfkDPM1m/ONDXmsAw==} + '@angular/cdk@20.0.0-next.5': + resolution: {integrity: sha512-WVegI+c6+631wKRm7+EJA8jrlMYDETrBe0LyXhWJaQ7SXGGTnvnB3vTjrdDDh0kFl3rd42bAFDXB/Mh3jqB/nw==} peerDependencies: '@angular/common': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0 '@angular/core': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0 rxjs: ^6.5.3 || ^7.4.0 - '@angular/common@20.0.0-next.4': - resolution: {integrity: sha512-Qh7+7lFcTGjYWmlb0HOp/rRxdKWq0BPxFkw6xHHaFszzJKDv24Doj2akVf3SV2gi9f2lzIR5PICJLw00zy4jtA==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/common@20.0.0-next.5': + resolution: {integrity: sha512-SzbmSEP/5kiW30qd8S2x9YlMdjNsVUDpb/sjqwa8eOvLaUQf537tLBHx+l38d6mJcM9O1Blg0SA11vL88A/+qg==} + engines: {node: ^20.11.1 || >=22.11.0} peerDependencies: - '@angular/core': 20.0.0-next.4 + '@angular/core': 20.0.0-next.5 rxjs: ^6.5.3 || ^7.4.0 - '@angular/compiler-cli@20.0.0-next.4': - resolution: {integrity: sha512-BPBVbsWLzZe1sPl7/2rF8OLypLO0RDOSZeXarSb90JwlUX/pp6/85Cl566tPiqX7EWntnVhwlaMFiBmNTV5vrA==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/compiler-cli@20.0.0-next.5': + resolution: {integrity: sha512-U0RIKvGVitFnMIhpl8M76NS5o3Fe57ppQ5BNGK34z8bQpXZ8MTZprcveIwv37B4+5oBu4W/+p3NdsStlbwXzNw==} + engines: {node: ^20.11.1 || >=22.11.0} hasBin: true peerDependencies: - '@angular/compiler': 20.0.0-next.4 + '@angular/compiler': 20.0.0-next.5 typescript: 5.8.2 - '@angular/compiler@20.0.0-next.4': - resolution: {integrity: sha512-1lQxn1L2yVtc631cwCf0ez50hqbmQXq562wJAaQmcJlfH2EoLcjtfP3xBCluEpI+Dpto7yxXA4Ms9FYPAk8HDA==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/compiler@20.0.0-next.5': + resolution: {integrity: sha512-5ZW1A0XJmV8zG+gDxBWEv1b42KY/bb0Bnf5DZ7SsBAJddxoavoC+46A0TzjlxWwI77z46NsnEODf268XJacpjg==} + engines: {node: ^20.11.1 || >=22.11.0} - '@angular/core@20.0.0-next.4': - resolution: {integrity: sha512-LZIiGPsfyWxrlLcU1LQy3A+/OR6iyJ8Y40IsMnTFzZlQq96NomQM0AIksGjB2YyMM8z8VLBw5nvitVCbfVXn3w==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/core@20.0.0-next.5': + resolution: {integrity: sha512-xZ25MXR3ifoxX1RmV2G8DUU9k6V5wWC6WH+WtWR96W6Q1mW1pEt+XAI9NI6+szEFqTErlOTifGkiv1h+Nda8cQ==} + engines: {node: ^20.11.1 || >=22.11.0} peerDependencies: - '@angular/compiler': 20.0.0-next.4 + '@angular/compiler': 20.0.0-next.5 rxjs: ^6.5.3 || ^7.4.0 zone.js: ~0.15.0 peerDependenciesMeta: '@angular/compiler': optional: true - '@angular/forms@20.0.0-next.4': - resolution: {integrity: sha512-FatZvZriwOZ2WocTlhyRqasXdgbFrUa04n6Wvvn9zNDLiF3expW534R6djmcZQ20ynmHQjeJxBPF42Ark/zeaQ==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/forms@20.0.0-next.5': + resolution: {integrity: sha512-zJ8puD5KWakFvk5LQ/FBz5jNvUATDtIuFZo48R80P2hkEbJgAY/rT+BhNFehyuQBEvXBFNsDjq9xWmQQwIj4zA==} + engines: {node: ^20.11.1 || >=22.11.0} peerDependencies: - '@angular/common': 20.0.0-next.4 - '@angular/core': 20.0.0-next.4 - '@angular/platform-browser': 20.0.0-next.4 + '@angular/common': 20.0.0-next.5 + '@angular/core': 20.0.0-next.5 + '@angular/platform-browser': 20.0.0-next.5 rxjs: ^6.5.3 || ^7.4.0 - '@angular/localize@20.0.0-next.4': - resolution: {integrity: sha512-uUXgFyVF4D4wJzZFUn1et3oc4ThlL72Dzc19Br5tNJkFgFDD73f/O+tJ+vrq0VqbDknpM2xxZcRSYoS7RGGKZw==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/localize@20.0.0-next.5': + resolution: {integrity: sha512-p6ccYeM3a/ACR150arcjyX0hcELZ94Ta8gZvXyU/p7f0S6kew8RyhEsAFhF3BwG5XMDD8ITtnbQoI5aGPC+zTg==} + engines: {node: ^20.11.1 || >=22.11.0} hasBin: true peerDependencies: - '@angular/compiler': 20.0.0-next.4 - '@angular/compiler-cli': 20.0.0-next.4 + '@angular/compiler': 20.0.0-next.5 + '@angular/compiler-cli': 20.0.0-next.5 - '@angular/material@20.0.0-next.4': - resolution: {integrity: sha512-ryvtEO22VWaW554Wf1thsqa/m2NzKaSTHBb0klEeGtb5oWgUOXm8Dn86pCDxrXsMnCOvp5GG+viMJVf0D5QDxA==} + '@angular/material@20.0.0-next.5': + resolution: {integrity: sha512-0Ey7PvoPO6KWpEiBuOB4ij3J/X3vjZOAr9g65QppsnRpjcKLR3DyR3JgGOhOEoiIrK7rUENGY1HjhZ5vXSJbbw==} peerDependencies: - '@angular/cdk': 20.0.0-next.4 + '@angular/cdk': 20.0.0-next.5 '@angular/common': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0 '@angular/core': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0 '@angular/forms': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0 '@angular/platform-browser': ^20.0.0-0 || ^20.1.0-0 || ^20.2.0-0 || ^20.3.0-0 || ^21.0.0-0 rxjs: ^6.5.3 || ^7.4.0 - '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/10732a822895b3d11cf2366f4e8dea25f1303c55': - resolution: {tarball: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/10732a822895b3d11cf2366f4e8dea25f1303c55} - version: 0.0.0-b3b3466509babc50fd7f00b90e8bc607e7fe41aa + '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/9128e88714212404ed17bbed46903547815a52ce': + resolution: {tarball: https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/9128e88714212404ed17bbed46903547815a52ce} + version: 0.0.0-6127cf117a8ed42945a7d8c09bc225851d58ef94 hasBin: true - '@angular/platform-browser@20.0.0-next.4': - resolution: {integrity: sha512-9nnloL9JD3UZbgdYpRsFynkX99BBJbFZ1f8XlhWC3b0Vwwmlq6dXH96fuWSlpbHwz7+NVooUZmWOx8GI/qK/Uw==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/platform-browser@20.0.0-next.5': + resolution: {integrity: sha512-SGIWQbOp/BIxJKMlNhA0qKm/uG4vX9CpCW1SgRVN2ly9MFlyVUsVYrJK83E9vfUH8rxO7IRQu5OmPDGGHfcxnA==} + engines: {node: ^20.11.1 || >=22.11.0} peerDependencies: - '@angular/animations': 20.0.0-next.4 - '@angular/common': 20.0.0-next.4 - '@angular/core': 20.0.0-next.4 + '@angular/animations': 20.0.0-next.5 + '@angular/common': 20.0.0-next.5 + '@angular/core': 20.0.0-next.5 peerDependenciesMeta: '@angular/animations': optional: true - '@angular/platform-server@20.0.0-next.4': - resolution: {integrity: sha512-Iaszz4BBK882sNLo03cDV07P/qyDXmqax4N5f2QuoEx/GNDFSbePsRDJLshlB8MxnMClamEhOisZSVfwFZ+aKg==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/platform-server@20.0.0-next.5': + resolution: {integrity: sha512-s0ssRKN8Oe2tY/rwcXZhtOxO4CGoJ7agBLVYiwCWEbf/jQMs2OZ9oZaebySFmSgvn1DnmkGAiNcLtxYNHW1ZDg==} + engines: {node: ^20.11.1 || >=22.11.0} peerDependencies: - '@angular/common': 20.0.0-next.4 - '@angular/compiler': 20.0.0-next.4 - '@angular/core': 20.0.0-next.4 - '@angular/platform-browser': 20.0.0-next.4 + '@angular/common': 20.0.0-next.5 + '@angular/compiler': 20.0.0-next.5 + '@angular/core': 20.0.0-next.5 + '@angular/platform-browser': 20.0.0-next.5 rxjs: ^6.5.3 || ^7.4.0 - '@angular/router@20.0.0-next.4': - resolution: {integrity: sha512-cCAC6nsUTq9gWACqCZiLZUd42Fm4r4+7qQ4u52pFEe1Suhuh/7FqzBXXQAXrgoF1MiM903tmAdN7ZO5Yh5Wiig==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/router@20.0.0-next.5': + resolution: {integrity: sha512-MmdLZNPSY3VFN97K8LlQsHbcYLLPF3YhRnNdzGZcxJ0WkMbAB8V4o/udTctGAtSWjtJZJtNa3pCjLGw28D2W5Q==} + engines: {node: ^20.11.1 || >=22.11.0} peerDependencies: - '@angular/common': 20.0.0-next.4 - '@angular/core': 20.0.0-next.4 - '@angular/platform-browser': 20.0.0-next.4 + '@angular/common': 20.0.0-next.5 + '@angular/core': 20.0.0-next.5 + '@angular/platform-browser': 20.0.0-next.5 rxjs: ^6.5.3 || ^7.4.0 - '@angular/service-worker@20.0.0-next.4': - resolution: {integrity: sha512-IiCqnhlIOmjkD907HOgw7G+0soJpqhqtTja6DB/Mya+tOv7pjNRF/Fb4P5W0Qt2CDWVIEh6kQ9x4d19/U13NPg==} - engines: {node: ^18.19.1 || ^20.11.1 || >=22.0.0} + '@angular/service-worker@20.0.0-next.5': + resolution: {integrity: sha512-wuSEDeCO/keoS0sxcW5HFOcfcZAWk02TJLp8WRGGm5MejKj/cY0gSl4gBTGqEvZ6uEkZkj1M67dNFB0NxWkhXA==} + engines: {node: ^20.11.1 || >=22.11.0} hasBin: true peerDependencies: - '@angular/core': 20.0.0-next.4 + '@angular/core': 20.0.0-next.5 rxjs: ^6.5.3 || ^7.4.0 '@babel/code-frame@7.26.2': @@ -6596,7 +6597,6 @@ packages: engines: {node: '>=0.6.0', teleport: '>=0.2.0'} deprecated: |- You or someone you depend on is using Q, the JavaScript Promise library that gave JavaScript developers strong feelings about promises. They can almost certainly migrate to the native JavaScript promise now. Thank you literally everyone for joining me in this bet against the odds. Be excellent to each other. - (For a CapTP with native promises, see @endo/eventual-send and @endo/captp) qjobs@1.2.0: @@ -8014,28 +8014,29 @@ snapshots: '@jridgewell/gen-mapping': 0.3.8 '@jridgewell/trace-mapping': 0.3.25 - '@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))': + '@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))': dependencies: - '@angular/core': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) + '@angular/common': 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + '@angular/core': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) tslib: 2.8.1 - '@angular/cdk@20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)': + '@angular/cdk@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) - '@angular/core': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) + '@angular/common': 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + '@angular/core': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) parse5: 7.2.1 rxjs: 7.8.2 tslib: 2.8.1 - '@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)': + '@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)': dependencies: - '@angular/core': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) + '@angular/core': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) rxjs: 7.8.2 tslib: 2.8.1 - '@angular/compiler-cli@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2)': + '@angular/compiler-cli@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2)': dependencies: - '@angular/compiler': 20.0.0-next.4 + '@angular/compiler': 20.0.0-next.5 '@babel/core': 7.26.10 '@jridgewell/sourcemap-codec': 1.5.0 chokidar: 4.0.3 @@ -8048,30 +8049,30 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular/compiler@20.0.0-next.4': + '@angular/compiler@20.0.0-next.5': dependencies: tslib: 2.8.1 - '@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)': + '@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)': dependencies: rxjs: 7.8.2 tslib: 2.8.1 zone.js: 0.15.0 optionalDependencies: - '@angular/compiler': 20.0.0-next.4 + '@angular/compiler': 20.0.0-next.5 - '@angular/forms@20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)': + '@angular/forms@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) - '@angular/core': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) - '@angular/platform-browser': 20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)) + '@angular/common': 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + '@angular/core': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) + '@angular/platform-browser': 20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)) rxjs: 7.8.2 tslib: 2.8.1 - '@angular/localize@20.0.0-next.4(@angular/compiler-cli@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2))(@angular/compiler@20.0.0-next.4)': + '@angular/localize@20.0.0-next.5(@angular/compiler-cli@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2))(@angular/compiler@20.0.0-next.5)': dependencies: - '@angular/compiler': 20.0.0-next.4 - '@angular/compiler-cli': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2) + '@angular/compiler': 20.0.0-next.5 + '@angular/compiler-cli': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2) '@babel/core': 7.26.10 '@types/babel__core': 7.20.5 tinyglobby: 0.2.12 @@ -8079,17 +8080,17 @@ snapshots: transitivePeerDependencies: - supports-color - '@angular/material@20.0.0-next.4(oylo4douhe75q4m3y4wi7udlwy)': + '@angular/material@20.0.0-next.5(zed5mlcqqzocvcjadwm7aowd6q)': dependencies: - '@angular/cdk': 20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) - '@angular/common': 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) - '@angular/core': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) - '@angular/forms': 20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) - '@angular/platform-browser': 20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)) + '@angular/cdk': 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + '@angular/common': 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + '@angular/core': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) + '@angular/forms': 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2) + '@angular/platform-browser': 20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)) rxjs: 7.8.2 tslib: 2.8.1 - '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/10732a822895b3d11cf2366f4e8dea25f1303c55(encoding@0.1.13)': + '@angular/ng-dev@https://codeload.github.com/angular/dev-infra-private-ng-dev-builds/tar.gz/9128e88714212404ed17bbed46903547815a52ce(encoding@0.1.13)': dependencies: '@google-cloud/spanner': 7.19.1(encoding@0.1.13)(supports-color@10.0.0) '@octokit/rest': 21.1.1 @@ -8106,35 +8107,35 @@ snapshots: transitivePeerDependencies: - encoding - '@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))': + '@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))': dependencies: - '@angular/common': 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) - '@angular/core': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) + '@angular/common': 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + '@angular/core': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) tslib: 2.8.1 optionalDependencies: - '@angular/animations': 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)) + '@angular/animations': 20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)) - '@angular/platform-server@20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.4)(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)': + '@angular/platform-server@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/compiler@20.0.0-next.5)(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) - '@angular/compiler': 20.0.0-next.4 - '@angular/core': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) - '@angular/platform-browser': 20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)) + '@angular/common': 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + '@angular/compiler': 20.0.0-next.5 + '@angular/core': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) + '@angular/platform-browser': 20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)) rxjs: 7.8.2 tslib: 2.8.1 xhr2: 0.2.1 - '@angular/router@20.0.0-next.4(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)': + '@angular/router@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(@angular/platform-browser@20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(rxjs@7.8.2)': dependencies: - '@angular/common': 20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) - '@angular/core': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) - '@angular/platform-browser': 20.0.0-next.4(@angular/animations@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0)) + '@angular/common': 20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2) + '@angular/core': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) + '@angular/platform-browser': 20.0.0-next.5(@angular/animations@20.0.0-next.5(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)))(@angular/common@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2))(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0)) rxjs: 7.8.2 tslib: 2.8.1 - '@angular/service-worker@20.0.0-next.4(@angular/core@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)': + '@angular/service-worker@20.0.0-next.5(@angular/core@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0))(rxjs@7.8.2)': dependencies: - '@angular/core': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(rxjs@7.8.2)(zone.js@0.15.0) + '@angular/core': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(rxjs@7.8.2)(zone.js@0.15.0) rxjs: 7.8.2 tslib: 2.8.1 @@ -13827,10 +13828,10 @@ snapshots: netmask@2.0.2: {} - ng-packagr@20.0.0-next.4(@angular/compiler-cli@20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2))(tslib@2.8.1)(typescript@5.8.2): + ng-packagr@20.0.0-next.4(@angular/compiler-cli@20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2))(tslib@2.8.1)(typescript@5.8.2): dependencies: '@ampproject/remapping': 2.3.0 - '@angular/compiler-cli': 20.0.0-next.4(@angular/compiler@20.0.0-next.4)(typescript@5.8.2) + '@angular/compiler-cli': 20.0.0-next.5(@angular/compiler@20.0.0-next.5)(typescript@5.8.2) '@rollup/plugin-json': 6.1.0(rollup@4.39.0) '@rollup/wasm-node': 4.38.0 ajv: 8.17.1 diff --git a/tests/legacy-cli/e2e/ng-snapshot/package.json b/tests/legacy-cli/e2e/ng-snapshot/package.json index 1a4bc568dd43..1d84ebb00b05 100644 --- a/tests/legacy-cli/e2e/ng-snapshot/package.json +++ b/tests/legacy-cli/e2e/ng-snapshot/package.json @@ -2,21 +2,21 @@ "description": "snapshot versions of Angular for e2e testing", "private": true, "dependencies": { - "@angular/animations": "github:angular/animations-builds#64fa4922d728aa0a7466314c728f1d8d606c03ca", - "@angular/cdk": "github:angular/cdk-builds#0e88de0761895ac6c08a70543e0f4e0df8630cb1", - "@angular/common": "github:angular/common-builds#908459b711759514140d1028d8bdf9dac2cd6596", - "@angular/compiler": "github:angular/compiler-builds#b1d89ff7a9ba3d17184dff554798852dd7b89ff5", - "@angular/compiler-cli": "github:angular/compiler-cli-builds#02b648dda74626be3f3ffd0a0cf63a3675701e8a", - "@angular/core": "github:angular/core-builds#df98069354af6627eaf0198891b0cefd189b7b70", - "@angular/forms": "github:angular/forms-builds#df47e6569ea8f942ec8ca5be2c9b6130d4b0f846", - "@angular/language-service": "github:angular/language-service-builds#1cd0e44ee3f91595653d66e8d73b13eddccf1845", - "@angular/localize": "github:angular/localize-builds#05c539915ca498b3381f79b1c1471aadce2d9b52", - "@angular/material": "github:angular/material-builds#f78d1e45f5838eb5b7383155837229cf8b4be481", - "@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#8f906c668349ec7745a099eac82bc86995820ec1", - "@angular/platform-browser": "github:angular/platform-browser-builds#70477a4e1d87cdb166561f84e5eeca976a06c1b7", - "@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#0477f8ebe1deebc17227e91076f5e99f55a527d6", - "@angular/platform-server": "github:angular/platform-server-builds#b4fc7dc618d8d7d29a60ed11eb84bf13e083c716", - "@angular/router": "github:angular/router-builds#9a7e3e449288200290b0039f9a2fce079116fe23", - "@angular/service-worker": "github:angular/service-worker-builds#c0eb7172fd2fca36ccc741cb05db860d19dae982" + "@angular/animations": "github:angular/animations-builds#8a700292573bcbe01c59a0c42ac7565654b7ce28", + "@angular/cdk": "github:angular/cdk-builds#4694005096eb41cbebe7efcb2d1fcc3f989d3a96", + "@angular/common": "github:angular/common-builds#ee4e32dca7e5d29b98d977d5d8403d34d5bfa135", + "@angular/compiler": "github:angular/compiler-builds#b3e3d45c07704eb6ae03cd3feaa7cf2acb63255b", + "@angular/compiler-cli": "github:angular/compiler-cli-builds#0b09d6d8fc6b8fbbe3994146cc8cee296b2f0bbb", + "@angular/core": "github:angular/core-builds#23804029706baab2077651ba85b997afa53bb839", + "@angular/forms": "github:angular/forms-builds#83976ba1417aad07fd6b9a912b88658b1aeb45e2", + "@angular/language-service": "github:angular/language-service-builds#1d8ec45e1243a16aa664af5f43a558304d1d2346", + "@angular/localize": "github:angular/localize-builds#175179ca97ce7a8d0cc7bf01114ac7aafde48a19", + "@angular/material": "github:angular/material-builds#b386c6a6323a75491c0b5b463f3e20affef876b4", + "@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#a89d25cbcf66e12765bb7cd559f5b97486f69ae5", + "@angular/platform-browser": "github:angular/platform-browser-builds#607b0608f5200487246530abefcae5602c43a648", + "@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#141db7773fc454bbbc1fd2d7ce9355f69c100c52", + "@angular/platform-server": "github:angular/platform-server-builds#d6e24e8cf99d89132dee24116985ad5fe5459888", + "@angular/router": "github:angular/router-builds#459c1737c0d9286f2f56e5d63394dd047557b3cc", + "@angular/service-worker": "github:angular/service-worker-builds#e8df3237446ded0a43fcea55135cc7ace9001668" } }