@trackunit/iris-app-build-utilities 1.13.6 → 1.13.9
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 +27 -0
- package/package.json +4 -4
- package/src/plugin-shared/indexHtmlUtil.js +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,30 @@
|
|
|
1
|
+
## 1.13.9 (2026-03-20)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated shared-utils to 1.13.76
|
|
6
|
+
|
|
7
|
+
## 1.13.8 (2026-03-19)
|
|
8
|
+
|
|
9
|
+
### 🧱 Updated Dependencies
|
|
10
|
+
|
|
11
|
+
- Updated iris-app-api to 1.15.7
|
|
12
|
+
|
|
13
|
+
## 1.13.7 (2026-03-19)
|
|
14
|
+
|
|
15
|
+
### 🩹 Fixes
|
|
16
|
+
|
|
17
|
+
- upgrade csp-header to v6.3.1 and remove sandbox workaround ([#19](https://github.com/Trackunit/manager/issues/19))
|
|
18
|
+
|
|
19
|
+
### 🧱 Updated Dependencies
|
|
20
|
+
|
|
21
|
+
- Updated iris-app-api to 1.15.6
|
|
22
|
+
- Updated shared-utils to 1.13.75
|
|
23
|
+
|
|
24
|
+
### ❤️ Thank You
|
|
25
|
+
|
|
26
|
+
- Mads Mætzke Tandrup
|
|
27
|
+
|
|
1
28
|
## 1.13.6 (2026-03-18)
|
|
2
29
|
|
|
3
30
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-build-utilities",
|
|
3
|
-
"version": "1.13.
|
|
3
|
+
"version": "1.13.9",
|
|
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": "^
|
|
16
|
+
"csp-header": "^6.3.1",
|
|
17
17
|
"@rspack/core": "1.6.7",
|
|
18
|
-
"@trackunit/iris-app-api": "1.15.
|
|
18
|
+
"@trackunit/iris-app-api": "1.15.7",
|
|
19
19
|
"@nx/devkit": "22.4.4",
|
|
20
|
-
"@trackunit/shared-utils": "1.13.
|
|
20
|
+
"@trackunit/shared-utils": "1.13.76",
|
|
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
|
|
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}'`] },
|