hof 24.3.0 → 24.3.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (3) hide show
  1. package/CHANGELOG.md +15 -0
  2. package/index.js +1 -1
  3. package/package.json +5 -4
package/CHANGELOG.md CHANGED
@@ -1,3 +1,18 @@
1
+ ## 2026-07-01 Verseion 24.4.0 (Stable), @meganjohnHO
2
+
3
+ ### Changed
4
+ - Google Analytics domains now added into CSP on presence of `ga4TagId` or `gaTagId` (previously only on `gaTagId`).
5
+
6
+ ## 2026-06-30, Version 24.3.1 (Stable), @gregwolversonHO
7
+
8
+ ### Security
9
+
10
+ - Updated dependencies to resolve numerous critical, high and moderate vulnerabilities
11
+
12
+ ### Changed
13
+
14
+ - Updated CHANGELOG to add entry for backdated changes
15
+
1
16
  ## 2026-06-17, Version 24.0.0 (Stable), @gregwolversonHO, @nzorba
2
17
 
3
18
  ⚠️ Major release which removes nodemailer dependency and email functionality
package/index.js CHANGED
@@ -100,7 +100,7 @@ const getContentSecurityPolicy = (config, res) => {
100
100
  manifestSrc: ["'self'"]
101
101
  };
102
102
 
103
- if (config.gaTagId) {
103
+ if (config.gaTagId || config.ga4TagId) {
104
104
  directives.styleSrc = directives.styleSrc.concat(gaDirectives.styleSrc);
105
105
  directives.scriptSrc = directives.scriptSrc.concat(gaDirectives.scriptSrc);
106
106
  directives.fontSrc = directives.fontSrc.concat(gaDirectives.fontSrc);
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hof",
3
3
  "description": "A bootstrap for HOF projects",
4
- "version": "24.3.0",
4
+ "version": "24.3.2",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
7
7
  "author": "HomeOffice",
@@ -91,7 +91,7 @@
91
91
  "urijs": "^1.19.11",
92
92
  "uuid": "^11.1.1",
93
93
  "winston": "^3.18.3",
94
- "vite": "^7.3.5"
94
+ "vite": "^7.3.6"
95
95
  },
96
96
  "devDependencies": {
97
97
  "@cucumber/cucumber": "^7.3.2",
@@ -120,7 +120,7 @@
120
120
  "playwright": "^1.56.0",
121
121
  "postcode": "0.2.2",
122
122
  "proxyquire": "^1.8.0",
123
- "release-it": "^20.2.0",
123
+ "release-it": "^20.2.1",
124
124
  "sinon": "^11.1.2",
125
125
  "sinon-chai": "^3.7.0",
126
126
  "supertest": "^3.4.2",
@@ -145,6 +145,7 @@
145
145
  "qs": "^6.14.1",
146
146
  "serialize-javascript": "^7.0.3",
147
147
  "tough-cookie": "^4.1.3",
148
- "vite": "^7.3.5"
148
+ "vite": "^7.3.6",
149
+ "esbuild": "^0.28.1"
149
150
  }
150
151
  }