Skip to content

Commit 73db6db

Browse files
angular-robotalan-agius4
authored andcommitted
build: update angular
1 parent 26456b9 commit 73db6db

File tree

8 files changed

+147
-144
lines changed

8 files changed

+147
-144
lines changed

.github/workflows/assistant-to-the-branch-manager.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
1717
with:
1818
persist-credentials: false
19-
- uses: angular/dev-infra/github-actions/branch-manager@c71cf5010b633dcf1fc70e4b34dedd161138890b
19+
- uses: angular/dev-infra/github-actions/branch-manager@76c632f6480810d48befe4743702eec9171fc763
2020
with:
2121
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/ci.yml

+13-13
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ jobs:
3838
runs-on: ubuntu-latest
3939
steps:
4040
- name: Initialize environment
41-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@c71cf5010b633dcf1fc70e4b34dedd161138890b
41+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@76c632f6480810d48befe4743702eec9171fc763
4242
- name: Setup ESLint Caching
4343
uses: actions/cache@704facf57e6136b1bc63b828d79edcd491f0ee84 # v3.3.2
4444
with:
@@ -71,11 +71,11 @@ jobs:
7171
runs-on: ubuntu-latest
7272
steps:
7373
- name: Initialize environment
74-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@c71cf5010b633dcf1fc70e4b34dedd161138890b
74+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@76c632f6480810d48befe4743702eec9171fc763
7575
- name: Setup Bazel
76-
uses: angular/dev-infra/github-actions/bazel/setup@c71cf5010b633dcf1fc70e4b34dedd161138890b
76+
uses: angular/dev-infra/github-actions/bazel/setup@76c632f6480810d48befe4743702eec9171fc763
7777
- name: Setup Bazel RBE
78-
uses: angular/dev-infra/github-actions/bazel/configure-remote@c71cf5010b633dcf1fc70e4b34dedd161138890b
78+
uses: angular/dev-infra/github-actions/bazel/configure-remote@76c632f6480810d48befe4743702eec9171fc763
7979
- name: Install node modules
8080
run: yarn install --frozen-lockfile
8181
- name: Build release targets
@@ -92,13 +92,13 @@ jobs:
9292
runs-on: ubuntu-latest
9393
steps:
9494
- name: Initialize environment
95-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@c71cf5010b633dcf1fc70e4b34dedd161138890b
95+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@76c632f6480810d48befe4743702eec9171fc763
9696
with:
9797
fetch-depth: 1
9898
- name: Setup Bazel
99-
uses: angular/dev-infra/github-actions/bazel/setup@c71cf5010b633dcf1fc70e4b34dedd161138890b
99+
uses: angular/dev-infra/github-actions/bazel/setup@76c632f6480810d48befe4743702eec9171fc763
100100
- name: Setup Bazel RBE
101-
uses: angular/dev-infra/github-actions/bazel/configure-remote@c71cf5010b633dcf1fc70e4b34dedd161138890b
101+
uses: angular/dev-infra/github-actions/bazel/configure-remote@76c632f6480810d48befe4743702eec9171fc763
102102
- name: Install node modules
103103
run: yarn install --frozen-lockfile
104104
- name: Run tests
@@ -123,15 +123,15 @@ jobs:
123123
runs-on: ${{ matrix.os }}
124124
steps:
125125
- name: Initialize environment
126-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@c71cf5010b633dcf1fc70e4b34dedd161138890b
126+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@76c632f6480810d48befe4743702eec9171fc763
127127
with:
128128
fetch-depth: 1
129129
- name: Install node modules
130130
run: yarn install --frozen-lockfile
131131
- name: Setup Bazel
132-
uses: angular/dev-infra/github-actions/bazel/setup@c71cf5010b633dcf1fc70e4b34dedd161138890b
132+
uses: angular/dev-infra/github-actions/bazel/setup@76c632f6480810d48befe4743702eec9171fc763
133133
- name: Setup Bazel RBE
134-
uses: angular/dev-infra/github-actions/bazel/configure-remote@c71cf5010b633dcf1fc70e4b34dedd161138890b
134+
uses: angular/dev-infra/github-actions/bazel/configure-remote@76c632f6480810d48befe4743702eec9171fc763
135135
- name: Run CLI E2E tests
136136
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 }}
137137

@@ -148,14 +148,14 @@ jobs:
148148
runs-on: ${{ matrix.os }}
149149
steps:
150150
- name: Initialize environment
151-
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@c71cf5010b633dcf1fc70e4b34dedd161138890b
151+
uses: angular/dev-infra/github-actions/npm/checkout-and-setup-node@76c632f6480810d48befe4743702eec9171fc763
152152
with:
153153
fetch-depth: 1
154154
- name: Install node modules
155155
run: yarn install --frozen-lockfile
156156
- name: Setup Bazel
157-
uses: angular/dev-infra/github-actions/bazel/setup@c71cf5010b633dcf1fc70e4b34dedd161138890b
157+
uses: angular/dev-infra/github-actions/bazel/setup@76c632f6480810d48befe4743702eec9171fc763
158158
- name: Setup Bazel RBE
159-
uses: angular/dev-infra/github-actions/bazel/configure-remote@c71cf5010b633dcf1fc70e4b34dedd161138890b
159+
uses: angular/dev-infra/github-actions/bazel/configure-remote@76c632f6480810d48befe4743702eec9171fc763
160160
- name: Run CLI E2E tests
161161
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 }}

.github/workflows/dev-infra.yml

+2-2
Original file line numberDiff line numberDiff line change
@@ -13,13 +13,13 @@ jobs:
1313
runs-on: ubuntu-latest
1414
steps:
1515
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
16-
- uses: angular/dev-infra/github-actions/commit-message-based-labels@c71cf5010b633dcf1fc70e4b34dedd161138890b
16+
- uses: angular/dev-infra/github-actions/commit-message-based-labels@76c632f6480810d48befe4743702eec9171fc763
1717
with:
1818
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}
1919
post_approval_changes:
2020
runs-on: ubuntu-latest
2121
steps:
2222
- uses: actions/checkout@8ade135a41bc03ea155e62e844d188df1ea18608 # v4.1.0
23-
- uses: angular/dev-infra/github-actions/post-approval-changes@c71cf5010b633dcf1fc70e4b34dedd161138890b
23+
- uses: angular/dev-infra/github-actions/post-approval-changes@76c632f6480810d48befe4743702eec9171fc763
2424
with:
2525
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

.github/workflows/feature-requests.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -16,6 +16,6 @@ jobs:
1616
if: github.repository == 'angular/angular-cli'
1717
runs-on: ubuntu-latest
1818
steps:
19-
- uses: angular/dev-infra/github-actions/feature-request@c71cf5010b633dcf1fc70e4b34dedd161138890b
19+
- uses: angular/dev-infra/github-actions/feature-request@76c632f6480810d48befe4743702eec9171fc763
2020
with:
2121
angular-robot-key: ${{ secrets.ANGULAR_ROBOT_PRIVATE_KEY }}

package.json

+17-17
Original file line numberDiff line numberDiff line change
@@ -59,23 +59,23 @@
5959
},
6060
"devDependencies": {
6161
"@ampproject/remapping": "2.2.1",
62-
"@angular/animations": "17.0.0-next.5",
63-
"@angular/bazel": "https://github.com/angular/bazel-builds.git#029a92c7fa71db56267645775011b7d0cf93fe6e",
64-
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#4ed56938673ea61e6c1349aaee7b48b41a763e1b",
65-
"@angular/cdk": "17.0.0-next.4",
66-
"@angular/common": "17.0.0-next.5",
67-
"@angular/compiler": "17.0.0-next.5",
68-
"@angular/compiler-cli": "17.0.0-next.5",
69-
"@angular/core": "17.0.0-next.5",
70-
"@angular/forms": "17.0.0-next.5",
71-
"@angular/localize": "17.0.0-next.5",
72-
"@angular/material": "17.0.0-next.4",
73-
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#5eb122dd8b63b15ddf588978db6b6695f4b71eda",
74-
"@angular/platform-browser": "17.0.0-next.5",
75-
"@angular/platform-browser-dynamic": "17.0.0-next.5",
76-
"@angular/platform-server": "17.0.0-next.5",
77-
"@angular/router": "17.0.0-next.5",
78-
"@angular/service-worker": "17.0.0-next.5",
62+
"@angular/animations": "17.0.0-next.6",
63+
"@angular/bazel": "https://github.com/angular/bazel-builds.git#f731eda6d131eea62b12e4f6d235eb0e618bce4d",
64+
"@angular/build-tooling": "https://github.com/angular/dev-infra-private-build-tooling-builds.git#2cfafd6c105b9b657261db43b910c6ff8017779a",
65+
"@angular/cdk": "17.0.0-next.5",
66+
"@angular/common": "17.0.0-next.6",
67+
"@angular/compiler": "17.0.0-next.6",
68+
"@angular/compiler-cli": "17.0.0-next.6",
69+
"@angular/core": "17.0.0-next.6",
70+
"@angular/forms": "17.0.0-next.6",
71+
"@angular/localize": "17.0.0-next.6",
72+
"@angular/material": "17.0.0-next.5",
73+
"@angular/ng-dev": "https://github.com/angular/dev-infra-private-ng-dev-builds.git#cabb66d8f767fd2b4962ae32b16ccb67334124a5",
74+
"@angular/platform-browser": "17.0.0-next.6",
75+
"@angular/platform-browser-dynamic": "17.0.0-next.6",
76+
"@angular/platform-server": "17.0.0-next.6",
77+
"@angular/router": "17.0.0-next.6",
78+
"@angular/service-worker": "17.0.0-next.6",
7979
"@babel/core": "7.23.0",
8080
"@babel/generator": "7.23.0",
8181
"@babel/helper-annotate-as-pure": "7.22.5",

packages/ngtools/webpack/package.json

+2-2
Original file line numberDiff line numberDiff line change
@@ -28,8 +28,8 @@
2828
},
2929
"devDependencies": {
3030
"@angular-devkit/core": "0.0.0-PLACEHOLDER",
31-
"@angular/compiler": "17.0.0-next.5",
32-
"@angular/compiler-cli": "17.0.0-next.5",
31+
"@angular/compiler": "17.0.0-next.6",
32+
"@angular/compiler-cli": "17.0.0-next.6",
3333
"typescript": "5.2.2",
3434
"webpack": "5.88.2"
3535
}

tests/legacy-cli/e2e/ng-snapshot/package.json

+16-16
Original file line numberDiff line numberDiff line change
@@ -2,21 +2,21 @@
22
"description": "snapshot versions of Angular for e2e testing",
33
"private": true,
44
"dependencies": {
5-
"@angular/animations": "github:angular/animations-builds#914324ec40b8a766ede6779c0fb8fa030f8f492c",
6-
"@angular/cdk": "github:angular/cdk-builds#3dbb2623ea82f1d502fcf13ac1004bcea22cb85d",
7-
"@angular/common": "github:angular/common-builds#6f48ac108d3c04f1117a158215bcd8dfd817dfc2",
8-
"@angular/compiler": "github:angular/compiler-builds#cded43138da0e2bbe25ee1adb41450178f8b2827",
9-
"@angular/compiler-cli": "github:angular/compiler-cli-builds#0c285d62a6432fdea0a4911613aa37891f2bad76",
10-
"@angular/core": "github:angular/core-builds#ba20742117b8f8516c74b743ed0249a65840c0ec",
11-
"@angular/forms": "github:angular/forms-builds#3cf1bf03d1082175b9af158bfc8a75de315a04a1",
12-
"@angular/language-service": "github:angular/language-service-builds#9f73400e6b443d94eab9fcb0b44c1a8d63a8e48d",
13-
"@angular/localize": "github:angular/localize-builds#b3d875dbbb490b171d719c9611d2e88e8e0bb1d5",
14-
"@angular/material": "github:angular/material-builds#b96b50d56d0477457f94fa1aaeac792e9066c67e",
15-
"@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#fa84136f932c04733d1ee7668c85a3370030161d",
16-
"@angular/platform-browser": "github:angular/platform-browser-builds#66d8c799e7419f190b387efd173d880d90877922",
17-
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#b4eed0067ce770fbb2b20c7ce6200cb706ff04d6",
18-
"@angular/platform-server": "github:angular/platform-server-builds#e1f56c286152e7b44c1c888b2ff5b40e477b1588",
19-
"@angular/router": "github:angular/router-builds#f0e11a9eeef2e4ffaade5e2a0de2fa794e749d56",
20-
"@angular/service-worker": "github:angular/service-worker-builds#1b2f44f75ceaacb48cab0ac07a84d0e501edda1c"
5+
"@angular/animations": "github:angular/animations-builds#ab6afbcd8db2571bb3ecbe1084790e521329f652",
6+
"@angular/cdk": "github:angular/cdk-builds#2012c2743f39d1b987823cfebb0e59d16f13535d",
7+
"@angular/common": "github:angular/common-builds#b305660d921f4e2edd1b9484a129a05d57bca18f",
8+
"@angular/compiler": "github:angular/compiler-builds#3cf7cedecf6c4dbb94a235077abd36862342e6bc",
9+
"@angular/compiler-cli": "github:angular/compiler-cli-builds#b62c956c5fb4a9c8f2bd1e71d2ba4fa8d37c250b",
10+
"@angular/core": "github:angular/core-builds#a77b580440ee2791694eab49c04b8c8cc8c05e98",
11+
"@angular/forms": "github:angular/forms-builds#16ca005dedd61dd1e1cdf93607b9d2f6296da098",
12+
"@angular/language-service": "github:angular/language-service-builds#1e66e7ec20d0455e27ed9247dd476dca489fc4e9",
13+
"@angular/localize": "github:angular/localize-builds#d24d3f7591f757bedb0fd1a23c0f85811dbf0b15",
14+
"@angular/material": "github:angular/material-builds#759f9cfe5d5970eff233755eb6627e569f054db9",
15+
"@angular/material-moment-adapter": "github:angular/material-moment-adapter-builds#bfdad92c0e3da75dfa754cbf85fb2c5046103fde",
16+
"@angular/platform-browser": "github:angular/platform-browser-builds#99ff1903c0f3fce363c1e16f93c9d08c12cc8214",
17+
"@angular/platform-browser-dynamic": "github:angular/platform-browser-dynamic-builds#f38629b40eaa54492574541c7284fd201a769630",
18+
"@angular/platform-server": "github:angular/platform-server-builds#ba46754decf4de8309faac846969eae803de8e35",
19+
"@angular/router": "github:angular/router-builds#9ce8432476a2730af6971bbfca5bfea5ba2c250e",
20+
"@angular/service-worker": "github:angular/service-worker-builds#d75d65162e2f208933343bedcffc7cdaf7ae7047"
2121
}
2222
}

0 commit comments

Comments
 (0)