@trackunit/iris-app-build-utilities 1.13.6 → 1.13.8

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,24 @@
1
+ ## 1.13.8 (2026-03-19)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated iris-app-api to 1.15.7
6
+
7
+ ## 1.13.7 (2026-03-19)
8
+
9
+ ### 🩹 Fixes
10
+
11
+ - upgrade csp-header to v6.3.1 and remove sandbox workaround ([#19](https://github.com/Trackunit/manager/issues/19))
12
+
13
+ ### 🧱 Updated Dependencies
14
+
15
+ - Updated iris-app-api to 1.15.6
16
+ - Updated shared-utils to 1.13.75
17
+
18
+ ### ❤️ Thank You
19
+
20
+ - Mads Mætzke Tandrup
21
+
1
22
  ## 1.13.6 (2026-03-18)
2
23
 
3
24
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app-build-utilities",
3
- "version": "1.13.6",
3
+ "version": "1.13.8",
4
4
  "license": "SEE LICENSE IN LICENSE.txt",
5
5
  "repository": "https://github.com/Trackunit/manager",
6
6
  "engines": {
@@ -13,11 +13,11 @@
13
13
  "@nx/react": "22.4.4",
14
14
  "webpack-dev-server": "5.2.1",
15
15
  "tslib": "^2.6.2",
16
- "csp-header": "^5.2.1",
16
+ "csp-header": "^6.3.1",
17
17
  "@rspack/core": "1.6.7",
18
- "@trackunit/iris-app-api": "1.15.5",
18
+ "@trackunit/iris-app-api": "1.15.7",
19
19
  "@nx/devkit": "22.4.4",
20
- "@trackunit/shared-utils": "1.13.74",
20
+ "@trackunit/shared-utils": "1.13.75",
21
21
  "http-proxy-middleware": "3.0.5",
22
22
  "pacote": "^21.0.4",
23
23
  "semver": "7.5.4"
@@ -16,7 +16,7 @@ const updateIndexHtml = ({ manifest, packageJson, devtools, }) => {
16
16
  const scopeAndModuleNonce = (0, crypto_1.randomBytes)(16).toString("base64");
17
17
  const csp = (0, csp_header_1.getCSP)({
18
18
  // eslint-disable-next-line @trackunit/no-typescript-assertion
19
- directives: (0, iris_app_api_1.irisAppCspInput)(manifest.validDomains, manifest.cspHeader ? { ...manifest.cspHeader, sandbox: undefined } : undefined),
19
+ directives: (0, iris_app_api_1.irisAppCspInput)(manifest.validDomains, manifest.cspHeader),
20
20
  presets: {
21
21
  irisAppDefaultCsp: iris_app_api_1.irisAppDefaultCsp,
22
22
  localDev: { "connect-src": ["ws://localhost:8097/"], "script-src": [`'nonce-${scopeAndModuleNonce}'`] },