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

Release/17.0.0 #1640

Merged
merged 20 commits into from
Feb 19, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
7ef6fc0
1522 update angular v17 (#1543)
alecarn Dec 19, 2023
5a414b8
fic(core): translatemodule forRoot is now called once (#1551)
alecarn Dec 27, 2023
c85981d
Merge branch 'next' into release/17.0.0
alecarn Jan 17, 2024
b5596d2
feat(demo): Convert all components, directives and pipes to standalone
alecarn Jan 18, 2024
727a580
update dependencies
alecarn Jan 18, 2024
5165a4f
Merge remote-tracking branch 'origin/next' into release/17.0.0
alecarn Jan 18, 2024
faf8c42
fix(spinner): adjust test
alecarn Jan 18, 2024
b7e31e4
feat: migrate to angular standalone components (#1556)
alecarn Jan 18, 2024
3b079c0
feat(core/language): refact the language initialization (#1563)
alecarn Jan 18, 2024
3797cdd
Merge remote-tracking branch 'origin/next' into release/17.0.0
alecarn Jan 22, 2024
8dd825c
Merge remote-tracking branch 'origin/next' into release/17.0.0
alecarn Jan 30, 2024
9f89d89
* fix(tsconfig): remove deprecated config and unnecessary (#1610)
alecarn Jan 30, 2024
38b5870
fix(auth): remove unused module (#1619)
alecarn Jan 30, 2024
76ec77b
Merge remote-tracking branch 'origin/next' into release/17.0.0
alecarn Jan 30, 2024
ab2030e
Merge remote-tracking branch 'origin/next' into release/17.0.0
alecarn Feb 7, 2024
216cede
Merge branch 'next' into release/17.0.0
alecarn Feb 19, 2024
2deb9bf
feat(ci): update pipeline
alecarn Feb 19, 2024
285ce1d
refact(auth): missing deps due to merge conflict
alecarn Feb 19, 2024
a4a1de3
update deps
alecarn Feb 19, 2024
e7608d3
fix(demo): geo/simple-map missing optionnal chaining
alecarn Feb 19, 2024
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
6 changes: 3 additions & 3 deletions .github/workflows/codeql-analysis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ jobs:

# Initializes the CodeQL tools for scanning.
- name: Initialize CodeQL
uses: github/codeql-action/init@v2
uses: github/codeql-action/init@v3
with:
languages: ${{ matrix.language }}
# If you wish to specify custom queries, you can do so here or in a config file.
Expand All @@ -50,7 +50,7 @@ jobs:
# Autobuild attempts to build any compiled languages (C/C++, C#, or Java).
# If this step fails, then you should remove it and run the build manually (see below)
- name: Autobuild
uses: github/codeql-action/autobuild@v2
uses: github/codeql-action/autobuild@v3

# ℹ️ Command-line programs to run using the OS shell.
# 📚 https://git.io/JvXDl
Expand All @@ -64,4 +64,4 @@ jobs:
# make release

- name: Perform CodeQL Analysis
uses: github/codeql-action/analyze@v2
uses: github/codeql-action/analyze@v3
31 changes: 16 additions & 15 deletions .github/workflows/complete.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -16,24 +16,25 @@ on:

jobs:
build:

runs-on: ubuntu-latest

strategy:
matrix:
node-version: [18.x]

steps:
- name: The branch or tag ref that triggered the workflow run.
run: echo ${GITHUB_REF#refs/*/}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}

- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run circular-deps.check
- run: npm run lint
- run: npm run build.libs
- run: npm run e2e
- run: npm run test
node-version: '20.x'

- name: Install dependencies
run: npm ci

- name: Check Quality
run: npm run circular-deps.check & npm run lint

- name: Test
run: npm run e2e & npm run test

- name: Build
run: npm run build.libs
29 changes: 16 additions & 13 deletions .github/workflows/onPush-ci.js.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,21 +13,24 @@ on:
jobs:
build:
runs-on: ubuntu-latest
strategy:
matrix:
node-version: [18.x]

steps:
- name: The branch or tag ref that triggered the workflow run.
run: echo ${GITHUB_REF#refs/*/}
- uses: actions/checkout@v3
- name: Use Node.js ${{ matrix.node-version }}

- uses: actions/checkout@v4
- name: Use Node.js
uses: actions/setup-node@v3
with:
node-version: ${{ matrix.node-version }}
- run: npm ci
- run: npm run circular-deps.check
- run: npm run lint
- run: npm run build.libs
- run: npm run e2e
- run: npm run test
node-version: '20.x'

- name: Install dependencies
run: npm ci

- name: Check Quality
run: npm run circular-deps.check & npm run lint

- name: Test
run: npm run e2e & npm run test

- name: Build
run: npm run build.libs
8 changes: 4 additions & 4 deletions angular.json
Original file line number Diff line number Diff line change
Expand Up @@ -164,21 +164,21 @@
"serve": {
"builder": "@angular-devkit/build-angular:dev-server",
"options": {
"browserTarget": "demo:build",
"host": "127.0.0.1",
"proxyConfig": "projects/demo/proxy.conf.json",
"hmr": true
"hmr": true,
"buildTarget": "demo:build"
},
"configurations": {
"production": {
"browserTarget": "demo:build:production"
"buildTarget": "demo:build:production"
}
}
},
"extract-i18n": {
"builder": "@angular-devkit/build-angular:extract-i18n",
"options": {
"browserTarget": "demo:build"
"buildTarget": "demo:build"
}
},
"lint": {
Expand Down
Loading
Loading