hof 20.0.0-redis-beta.32-redis-beta → 20.0.0
Sign up to get free protection for your applications and to get access to all the features.
- package/.github/workflows/automate-publish.yml +1 -1
- package/.github/workflows/automate-tag.yml +4 -4
- package/.nyc_output/7c548a7f-5c40-44b2-b9fb-648341a23d6f.json +1 -0
- package/.nyc_output/processinfo/7c548a7f-5c40-44b2-b9fb-648341a23d6f.json +1 -0
- package/.nyc_output/processinfo/index.json +1 -1
- package/.vscode/settings.json +6 -0
- package/README.md +6 -0
- package/components/notify/notify.js +1 -1
- package/config/hof-defaults.js +1 -2
- package/config/sanitisation-rules.js +20 -17
- package/controller/base-controller.js +5 -3
- package/controller/controller.js +5 -0
- package/frontend/govuk-template/govuk_template_generated.html +104 -0
- package/frontend/template-partials/views/layout.html +2 -2
- package/frontend/template-partials/views/partials/maincontent-left.html +2 -2
- package/frontend/template-partials/views/partials/navigation.html +2 -2
- package/frontend/template-partials/views/partials/summary-table-row.html +2 -2
- package/frontend/template-partials/views/session-timeout.html +2 -1
- package/index.js +1 -1
- package/lib/health.js +1 -1
- package/lib/sessions.js +1 -1
- package/middleware/errors.js +2 -0
- package/middleware/rate-limiter.js +1 -3
- package/package.json +5 -4
- package/sandbox/.env +1 -0
- package/sandbox/apps/sandbox/translations/en/default.json +15 -36
- package/sandbox/public/css/app.css +6605 -12
- package/sandbox/public/js/bundle.js +2792 -22
- package/sandbox/server.js +1 -1
- package/wizard/middleware/check-progress.js +36 -1
- package/.nyc_output/cb764db8-e9f0-43bb-b3b1-7af57bb79bb5.json +0 -1
- package/.nyc_output/processinfo/cb764db8-e9f0-43bb-b3b1-7af57bb79bb5.json +0 -1
@@ -7,7 +7,7 @@ jobs:
|
|
7
7
|
runs-on: ubuntu-latest
|
8
8
|
strategy:
|
9
9
|
matrix:
|
10
|
-
node-version: [14.x]
|
10
|
+
node-version: [10.x, 12.x, 14.x]
|
11
11
|
redis-version: [4, 5, 6]
|
12
12
|
steps:
|
13
13
|
- uses: actions/checkout@v2.2.0
|
@@ -34,7 +34,7 @@ jobs:
|
|
34
34
|
- uses: actions/checkout@v2.2.0
|
35
35
|
- uses: actions/setup-node@v1
|
36
36
|
with:
|
37
|
-
node-version:
|
37
|
+
node-version: 10
|
38
38
|
registry-url: https://registry.npmjs.org/
|
39
39
|
- run: |
|
40
40
|
git config --local user.email "$(git log --format='%ae' HEAD^!)"
|
@@ -52,7 +52,7 @@ jobs:
|
|
52
52
|
- uses: actions/checkout@v2.2.0
|
53
53
|
- uses: actions/setup-node@v1
|
54
54
|
with:
|
55
|
-
node-version:
|
55
|
+
node-version: 10
|
56
56
|
registry-url: https://registry.npmjs.org/
|
57
57
|
- run: |
|
58
58
|
git config --local user.email "$(git log --format='%ae' HEAD^!)"
|
@@ -70,7 +70,7 @@ jobs:
|
|
70
70
|
- uses: actions/checkout@v2.2.0
|
71
71
|
- uses: actions/setup-node@v1
|
72
72
|
with:
|
73
|
-
node-version:
|
73
|
+
node-version: 10
|
74
74
|
registry-url: https://registry.npmjs.org/
|
75
75
|
- run: |
|
76
76
|
git config --local user.email "$(git log --format='%ae' HEAD^!)"
|