Skip to content

Commit

Permalink
Merge branch 'develop' into 'master' for 4.0.0 release
Browse files Browse the repository at this point in the history
  • Loading branch information
suschneider committed Apr 6, 2023
2 parents dbe469c + a0e0ebd commit 5c0f648
Show file tree
Hide file tree
Showing 684 changed files with 19,919 additions and 16,939 deletions.
16 changes: 0 additions & 16 deletions .browserslistrc

This file was deleted.

2 changes: 1 addition & 1 deletion .devcontainer/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# See here for image contents: https://github.com/microsoft/vscode-dev-containers/tree/v0.134.0/containers/javascript-node/.devcontainer/base.Dockerfile
ARG VARIANT="16"
ARG VARIANT="18"
FROM mcr.microsoft.com/vscode/devcontainers/javascript-node:0-${VARIANT}

ENV NODE_OPTIONS=--max_old_space_size=8192 LOGGING=true TRUST_ICM=true
Expand Down
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
"build": {
"dockerfile": "Dockerfile",
"args": {
"VARIANT": "16"
"VARIANT": "18"
}
},
// node_modules as volume
Expand Down
4 changes: 3 additions & 1 deletion .dockerignore
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,6 @@
# from e2e/.gitignore
/e2e/node_modules
/e2e/reports
/e2e/package-lock.json

# from eslint-rules/.gitignore
/eslint-rules/node_modules
Expand Down Expand Up @@ -97,6 +96,9 @@
# from src/app/extensions/order-templates/exports/.gitignore
/src/app/extensions/order-templates/exports/**/lazy*

# from src/app/extensions/product-notifications/exports/.gitignore
/src/app/extensions/product-notifications/exports/**/lazy*

# from src/app/extensions/punchout/exports/.gitignore
/src/app/extensions/punchout/exports/**/lazy*

Expand Down
1 change: 0 additions & 1 deletion .eslintignore
Original file line number Diff line number Diff line change
Expand Up @@ -13,4 +13,3 @@ node_modules
/eslint-rules/dist/**

/schematics/dist/**
/schematics/migration/**
12 changes: 3 additions & 9 deletions .eslintrc.json
Original file line number Diff line number Diff line change
Expand Up @@ -182,14 +182,7 @@
"dot-notation": "off", // disabled in favor of @typescript-eslint/dot-notation
"eqeqeq": ["error", "always"],
"etc/no-commented-out-code": "warn",
"etc/no-deprecated": [
"warn",
{
"ignored": {
"templateOptions|to|FormlyTemplateOptions|expressionProperties": "name" // deprecated formly methods are temporarily ignored
}
}
],
"etc/no-deprecated": ["warn"],
"id-blacklist": [
"error",
"any",
Expand Down Expand Up @@ -277,7 +270,7 @@
{
"importNamePattern": ".*",
"name": ".*environments/environment.*",
"filePattern": "^.*/app/((?!(app(.server)?.module|core/store/core/configuration/configuration\\.reducer|core/utils/state-transfer/state-properties\\.service|injection-keys)\\.ts).)*$",
"filePattern": "^.*/app/((?!(app(.server)?.module|core/store/core/configuration/configuration\\.reducer|core/utils/state-transfer/state-properties\\.service|core/utils/injection)\\.ts).)*$",
"message": "Importing environment is not allowed. Inject needed properties instead."
},
{
Expand Down Expand Up @@ -682,6 +675,7 @@
"ish-custom-rules/use-correct-component-overrides": "warn",
"ish-custom-rules/use-jest-extended-matchers-in-tests": "warn",
"ish-custom-rules/use-ssr-variable-instead-of-platform-id": "warn",
"ish-custom-rules/use-type-safe-injection-token": "warn",
"ish-custom-rules/require-formly-code-documentation": "warn",
"jest/no-commented-out-tests": "warn",
"jest/no-disabled-tests": "warn",
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/dead-code.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ on:
- cron: '0 0 * * 0'

env:
NODE_VERSION: 16.16.0
NODE_VERSION: 18.15.0

jobs:
TestBed:
Expand All @@ -18,7 +18,7 @@ jobs:
with:
fetch-depth: 0

- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/demo-server-up.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
uses: actions/checkout@v3
- name: Publish SSR image to Registry
id: ssr
uses: elgohr/Publish-Docker-Github-Action@v4
uses: elgohr/Publish-Docker-Github-Action@v5
env:
serviceWorker: false
displayVersion: ${{ github.event.after }}
Expand All @@ -45,7 +45,7 @@ jobs:
buildargs: serviceWorker,displayVersion,testing
- name: Publish NGINX image to Registry
id: nginx
uses: elgohr/Publish-Docker-Github-Action@v4
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: intershop-pwa-nginx
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/development.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'docs/**'

env:
NODE_VERSION: 16.16.0
NODE_VERSION: 18.15.0
ICM_BASE_URL: http://pwa-review.northeurope.cloudapp.azure.com:8081

jobs:
Expand All @@ -33,7 +33,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down Expand Up @@ -80,7 +80,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down Expand Up @@ -110,7 +110,7 @@ jobs:
with:
fetch-depth: 0

- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down Expand Up @@ -138,7 +138,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/docs.yml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ on:
types: [opened, synchronize]

env:
NODE_VERSION: 16.16.0
NODE_VERSION: 18.15.0

jobs:
Docs:
Expand All @@ -19,7 +19,7 @@ jobs:
with:
fetch-depth: 0

- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down
6 changes: 3 additions & 3 deletions .github/workflows/integration.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ on:
- 'docs/**'

env:
NODE_VERSION: 16.16.0
NODE_VERSION: 18.15.0
NODE_OPTIONS: --max_old_space_size=8192
ICM_BASE_URL: http://pwa-review.northeurope.cloudapp.azure.com:8081

Expand All @@ -36,7 +36,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down Expand Up @@ -67,7 +67,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/reports.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:

- name: Publish Reports Image to Registry
id: reports
uses: elgohr/Publish-Docker-Github-Action@master
uses: elgohr/Publish-Docker-Github-Action@v5
with:
name: reports
username: ${{ secrets.DOCKER_REGISTRY_USERNAME }}
Expand Down
4 changes: 2 additions & 2 deletions .github/workflows/updates.yml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ on:
- cron: '0 0 * * *'

env:
NODE_VERSION: 16.16.0
NODE_VERSION: 18.15.0

jobs:
Updates:
Expand All @@ -19,7 +19,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down
10 changes: 5 additions & 5 deletions .github/workflows/windows.yml
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ on:
- 'docs/**'

env:
NODE_VERSION: 16.16.0
NODE_VERSION: 18.15.0
NODE_OPTIONS: --max_old_space_size=8192
JEST_MAX_WORKERS: 1
CI: false
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand All @@ -62,7 +62,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down Expand Up @@ -92,7 +92,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand All @@ -108,7 +108,7 @@ jobs:

steps:
- uses: actions/checkout@v3
- name: Use Node.js 16
- name: Use Node.js 18
uses: actions/setup-node@v3
with:
node-version: ${{ env.NODE_VERSION }}
Expand Down
Loading

0 comments on commit 5c0f648

Please sign in to comment.