hof 22.1.2-add-jquery-beta → 22.2.0-cookie-config-change-beta

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.
package/CHANGELOG.md CHANGED
@@ -1,3 +1,9 @@
1
+ ## 2025-03-07, Version 22.2.0 (Stable), @Rhodine-orleans-lindsay
2
+ ### Changed
3
+ - Amends cookie config to allow limited changes to sameSite property during safe cross-origin navigations.
4
+ ### Security
5
+ - Updates patch and minor dependencies
6
+
1
7
  ## 2025-01-24, Version 22.1.0 (Stable), @sulthan-ahmed
2
8
  * ⛓️‍💥 **BREAKING CHANGE** : removed `nodemailer-smtp-transport` replaced with `nodemailer`.
3
9
  - The nodemailer-smtp-transport package has been removed due to a critical vulnerability, and its functionality has been consolidated under nodemailer.
package/lib/sessions.js CHANGED
@@ -68,7 +68,7 @@ module.exports = (app, config) => {
68
68
  name: config.session.name,
69
69
  cookie: {
70
70
  secure: secureHttps(config),
71
- sameSite: 'strict',
71
+ sameSite: config.cookie?.sameSite === 'lax' ? config.cookie?.sameSite : 'strict',
72
72
  httpOnly: true
73
73
  },
74
74
  secret: config.session.secret,
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "hof",
3
3
  "description": "A bootstrap for HOF projects",
4
- "version": "22.1.2-add-jquery-beta",
4
+ "version": "22.2.0-cookie-config-change-beta",
5
5
  "license": "MIT",
6
6
  "main": "index.js",
7
7
  "author": "HomeOffice",