Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build: update angular #26062

Merged
merged 1 commit into from
Oct 19, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/assistant-to-the-branch-manager.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
with:
persist-credentials: false
- uses: angular/dev-infra/github-actions/branch-manager@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
- uses: angular/dev-infra/github-actions/branch-manager@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
26 changes: 13 additions & 13 deletions .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Setup ESLint Caching
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
with:
Expand Down Expand Up @@ -71,11 +71,11 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/bazel/setup@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/bazel/configure-remote@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Install node modules
run: yarn install --frozen-lockfile
- name: Build release targets
Expand All @@ -92,13 +92,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
with:
fetch-depth: 1
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/bazel/setup@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/bazel/configure-remote@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Install node modules
run: yarn install --frozen-lockfile
- name: Run tests
Expand All @@ -123,15 +123,15 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
with:
fetch-depth: 1
- name: Install node modules
run: yarn install --frozen-lockfile
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/bazel/setup@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/bazel/configure-remote@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Run CLI E2E tests
run: yarn bazel test --define=E2E_SHARD_TOTAL=6 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.${{ matrix.subset }}_node${{ matrix.node }}

Expand All @@ -148,14 +148,14 @@ jobs:
runs-on: ${{ matrix.os }}
steps:
- name: Initialize environment
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
with:
fetch-depth: 1
- name: Install node modules
run: yarn install --frozen-lockfile
- name: Setup Bazel
uses: angular/dev-infra/github-actions/bazel/setup@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/bazel/setup@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Setup Bazel RBE
uses: angular/dev-infra/github-actions/bazel/configure-remote@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
uses: angular/dev-infra/github-actions/bazel/configure-remote@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
- name: Run CLI E2E tests
run: yarn bazel test --define=E2E_SHARD_TOTAL=6 --define=E2E_SHARD_INDEX=${{ matrix.shard }} --config=e2e //tests/legacy-cli:e2e.snapshots.${{ matrix.subset }}_node${{ matrix.node }}
4 changes: 2 additions & 2 deletions .github/workflows/dev-infra.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,13 +13,13 @@ jobs:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: angular/dev-infra/github-actions/commit-message-based-labels@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
- uses: angular/dev-infra/github-actions/commit-message-based-labels@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
post_approval_changes:
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@b4ffde65f46336ab88eb53be808477a3936bae11 # v4.1.1
- uses: angular/dev-infra/github-actions/post-approval-changes@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
- uses: angular/dev-infra/github-actions/post-approval-changes@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
2 changes: 1 addition & 1 deletion .github/workflows/feature-requests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,6 @@ jobs:
if: github.repository == 'angular/angular-cli'
runs-on: ubuntu-latest
steps:
- uses: angular/dev-infra/github-actions/feature-request@a4568d9db7f33f1d78af02556ce8cb9eeb71fd7f
- uses: angular/dev-infra/github-actions/feature-request@d1d6f4e1718cbf9937ac48247e5b89d88dfa3c71
with:
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
34 changes: 17 additions & 17 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -59,23 +59,23 @@
},
"devDependencies": {
"@ampproject/remapping": "2.2.1",
"@angular/animations": "17.0.0-next.8",
"@angular/bazel": "https://github.com/angular/bazel-builds.git#34aaf3bb67f8510e3dfc36b9d03cde3b7682b4a8",
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#93f8ece8b671036d69c7409a1d702a9b2edf81eb",
"@angular/cdk": "17.0.0-next.7",
"@angular/common": "17.0.0-next.8",
"@angular/compiler": "17.0.0-next.8",
"@angular/compiler-cli": "17.0.0-next.8",
"@angular/core": "17.0.0-next.8",
"@angular/forms": "17.0.0-next.8",
"@angular/localize": "17.0.0-next.8",
"@angular/material": "17.0.0-next.7",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#ad7f268bb6688ea67d00ece6077c6b6e696c288b",
"@angular/platform-browser": "17.0.0-next.8",
"@angular/platform-browser-dynamic": "17.0.0-next.8",
"@angular/platform-server": "17.0.0-next.8",
"@angular/router": "17.0.0-next.8",
"@angular/service-worker": "17.0.0-next.8",
"@angular/animations": "17.0.0-rc.0",
"@angular/bazel": "https://github.com/angular/bazel-builds.git#d0ba749872059a3f8f8150ee65b10159a2ed43ee",
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#4466ed3b65809001fdd3ca98535f30d5a2cd40c2",
"@angular/cdk": "17.0.0-rc.0",
"@angular/common": "17.0.0-rc.0",
"@angular/compiler": "17.0.0-rc.0",
"@angular/compiler-cli": "17.0.0-rc.0",
"@angular/core": "17.0.0-rc.0",
"@angular/forms": "17.0.0-rc.0",
"@angular/localize": "17.0.0-rc.0",
"@angular/material": "17.0.0-rc.0",
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#1f35c99c7d4599c1711590689ce98d1d6b543b4c",
"@angular/platform-browser": "17.0.0-rc.0",
"@angular/platform-browser-dynamic": "17.0.0-rc.0",
"@angular/platform-server": "17.0.0-rc.0",
"@angular/router": "17.0.0-rc.0",
"@angular/service-worker": "17.0.0-rc.0",
"@babel/core": "7.23.2",
"@babel/generator": "7.23.0",
"@babel/helper-annotate-as-pure": "7.22.5",
Expand Down
4 changes: 2 additions & 2 deletions packages/ngtools/webpack/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -28,8 +28,8 @@
},
"devDependencies": {
"@angular-devkit/core": "0.0.0-PLACEHOLDER",
"@angular/compiler": "17.0.0-next.8",
"@angular/compiler-cli": "17.0.0-next.8",
"@angular/compiler": "17.0.0-rc.0",
"@angular/compiler-cli": "17.0.0-rc.0",
"typescript": "5.2.2",
"webpack": "5.89.0"
}
Expand Down
32 changes: 16 additions & 16 deletions tests/legacy-cli/e2e/ng-snapshot/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,21 +2,21 @@
"description": "snapshot versions of Angular for e2e testing",
"private": true,
"dependencies": {
"@angular/animations": "github:angular/animations-builds#02d1a2f64a0286981d192f44d9e2d45383318813",
"@angular/cdk": "github:angular/cdk-builds#11bf87387d8332a5d08f572ad2d88141e641054e",
"@angular/common": "github:angular/common-builds#9516156b811ea3c582d9c1eb88253844a68be651",
"@angular/compiler": "github:angular/compiler-builds#b2117e4a266f76f8fd30420f8f76daf9aae672e0",
"@angular/compiler-cli": "github:angular/compiler-cli-builds#c66c33827e25e5109e2839bd1ed117cf55c478a8",
"@angular/core": "github:angular/core-builds#73c1e4ad09e1ebc9693a7bf0820102dce11a030a",
"@angular/forms": "github:angular/forms-builds#7cc5f9813adf5d2dad80e614d1859f7fd2903d91",
"@angular/language-service": "github:angular/language-service-builds#cc5ac5ab5aa5fc0948d60214be1c5ef2c1af1a9a",
"@angular/localize": "github:angular/localize-builds#5db0127238251f80b2a14966de13d0821ae1d38f",
"@angular/material": "github:angular/material-builds#613a594328ccd99373c1fb78da9dc49f02ad6cf8",
"@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#9e4cf7a205f6512dc3206422296a094ce3b3f869",
"@angular/platform-browser": "github:angular/platform-browser-builds#8af3244c4660161fcdac033526e5c37fa066ab71",
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#8dbd0782ccc1a63d6815eb3f502c730bc4ce472c",
"@angular/platform-server": "github:angular/platform-server-builds#74ddbb552104c63b233bc8e943e698e26b81713a",
"@angular/router": "github:angular/router-builds#cbe9406597529fd92cbbda7615af04899ef479a4",
"@angular/service-worker": "github:angular/service-worker-builds#e2989d0454fc653165d8931f10d1f99eb73fb863"
"@angular/animations": "github:angular/animations-builds#97b1caa160772aa394c5457056365b0aedbd833d",
"@angular/cdk": "github:angular/cdk-builds#888a829dd7a3457906fa834f730eb8d586807dee",
"@angular/common": "github:angular/common-builds#f27a773f249335fef5522f34935d136650a24bb4",
"@angular/compiler": "github:angular/compiler-builds#2a84f131d05393ad540bf64ef24c1fce455abc13",
"@angular/compiler-cli": "github:angular/compiler-cli-builds#b7a728ee209983375d1cc4ad08ca3d6290934357",
"@angular/core": "github:angular/core-builds#bf80088078b7bda6a0873bb527bf4d248d973d62",
"@angular/forms": "github:angular/forms-builds#bab54c108a69efc0ac33459ed0f94c0a9abae414",
"@angular/language-service": "github:angular/language-service-builds#ac15447cb35b46ca6ed035c8dc7d28d853bf2339",
"@angular/localize": "github:angular/localize-builds#309e830055d27db2239fe24681035d39ac479acf",
"@angular/material": "github:angular/material-builds#14989856fc6afe0d2ceb65dc870fdc9cd1540fe2",
"@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#9f9ce7fcd7a013fcb1933d21f06b5daaa193e044",
"@angular/platform-browser": "github:angular/platform-browser-builds#f1cfaabf570b3cc2c66bd5e79c09e379f7d9b0e1",
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#556d4998edddc7947504adf2c1eba43ebd4885b9",
"@angular/platform-server": "github:angular/platform-server-builds#7a281a629d28e3a536ea1c83b3d3eb27147064df",
"@angular/router": "github:angular/router-builds#85765d45801759a53da6e11b238c35dfca01a901",
"@angular/service-worker": "github:angular/service-worker-builds#910c4c98a7fad4c64de896fc6c422d29cdb4011c"
}
}