Skip to content

Commit

Permalink
Release/17.0.0 (#1640)
Browse files Browse the repository at this point in the history
* fix(geo): do not upgrade flexsearch since it seem not compatible with TS
nextapps-de/flexsearch#342

* fix(core): translatemodule forRoot is now called once (#1551)

* feat: update Angular v17 (#1543)

* feat(core/language): refact the language initialization (#1563)

BREAKING CHANGE: IgoLanguageModule don't import TranslateModule.forRoot
defaultLanguageLoader is not exported anymore
- provideDefaultLanguageLoader and provideLanguageLoader are replaced by DEFAULT_LANGUAGE_LOADER and set directly inside the TranslationConfig

* feat(demo): Convert all components, directives and pipes to standalone

* refactor(demo): Remove unnecessary NgModule classes, visual adjustment and rework navigation (#1556)

* fix(tsconfig): remove deprecated config and unnecessary (#1610)

* fix(all): resolve template type checking

BREAKING CHANGE ToolboxColor is now a type

* fix(auth): remove unused module (#1619)

BREAKING CHANGES

* feat(ci): update pipeline

* refact(auth): missing deps due to merge conflict

* fix(demo): geo/simple-map missing optionnal chaining
  • Loading branch information
alecarn authored Feb 19, 2024
1 parent f0c5db6 commit 0cd2dcf
Show file tree
Hide file tree
Showing 589 changed files with 19,095 additions and 13,228 deletions.
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

0 comments on commit 0cd2dcf

Please sign in to comment.