@trackunit/iris-app 1.18.7 → 1.18.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
CHANGED
|
@@ -1,3 +1,16 @@
|
|
|
1
|
+
## 1.18.9 (2026-04-22)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.15.8
|
|
6
|
+
- Updated iris-app-api to 1.17.8
|
|
7
|
+
- Updated react-test-setup to 1.8.102
|
|
8
|
+
- Updated shared-utils to 1.13.103
|
|
9
|
+
|
|
10
|
+
## 1.18.8 (2026-04-22)
|
|
11
|
+
|
|
12
|
+
This was a version bump only for iris-app to align it with other projects, there were no code changes.
|
|
13
|
+
|
|
1
14
|
## 1.18.7 (2026-04-22)
|
|
2
15
|
|
|
3
16
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "1.18.
|
|
3
|
+
"version": "1.18.9",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -23,8 +23,8 @@
|
|
|
23
23
|
"@nx/react": "22.4.4",
|
|
24
24
|
"@npmcli/arborist": "^9.1.9",
|
|
25
25
|
"win-ca": "^3.5.1",
|
|
26
|
-
"@trackunit/shared-utils": "1.13.
|
|
27
|
-
"@trackunit/iris-app-api": "1.17.
|
|
26
|
+
"@trackunit/shared-utils": "1.13.103",
|
|
27
|
+
"@trackunit/iris-app-api": "1.17.8",
|
|
28
28
|
"tslib": "^2.6.2",
|
|
29
29
|
"@clack/prompts": "^1.0.0",
|
|
30
30
|
"@npm/types": "^1.0.2",
|
|
@@ -1,19 +1,23 @@
|
|
|
1
|
-
import { IrisAppManifest, loadNxRootPackageJson } from
|
|
1
|
+
import { IrisAppManifest, loadNxRootPackageJson } from "@trackunit/iris-app-api";
|
|
2
2
|
import packageJson from "./package.json";
|
|
3
3
|
import { join } from "path";
|
|
4
4
|
|
|
5
5
|
const nxPackageJson = loadNxRootPackageJson(join(__dirname, "<%= toNxRoot %>"));
|
|
6
6
|
|
|
7
|
-
const irisAppManifest
|
|
7
|
+
const irisAppManifest: IrisAppManifest = {
|
|
8
8
|
specVersion: "1.1",
|
|
9
9
|
moduleFederationName: packageJson.name,
|
|
10
10
|
dependencies: nxPackageJson.dependencies,
|
|
11
11
|
devDependencies: nxPackageJson.devDependencies,
|
|
12
12
|
|
|
13
|
+
// List any external domains your app needs to reach here.
|
|
14
|
+
// See standard csp header https://developer.mozilla.org/en-US/docs/Web/HTTP/Reference/Headers/Content-Security-Policy.
|
|
15
|
+
cspHeader: {},
|
|
16
|
+
|
|
13
17
|
installation: {
|
|
14
|
-
accountIds:
|
|
18
|
+
accountIds: "ALL_ACCOUNTS",
|
|
15
19
|
pricingPlanPolicy: {
|
|
16
|
-
|
|
20
|
+
ALL_PLANS: "ON_DEMAND",
|
|
17
21
|
},
|
|
18
22
|
},
|
|
19
23
|
|