@trackunit/iris-app-sdk-vite 1.4.58 → 1.4.60
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,19 @@
|
|
|
1
|
+
## 1.4.60 (2026-09-21)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 2.4.58
|
|
6
|
+
- Updated iris-app-api to 2.6.6
|
|
7
|
+
- Updated iris-app to 2.7.2
|
|
8
|
+
|
|
9
|
+
## 1.4.59 (2026-09-17)
|
|
10
|
+
|
|
11
|
+
### 🧱 Updated Dependencies
|
|
12
|
+
|
|
13
|
+
- Updated iris-app-build-utilities to 2.4.57
|
|
14
|
+
- Updated iris-app-api to 2.6.5
|
|
15
|
+
- Updated iris-app to 2.7.1
|
|
16
|
+
|
|
1
17
|
## 1.4.58 (2026-09-17)
|
|
2
18
|
|
|
3
19
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-sdk-vite",
|
|
3
|
-
"version": "1.4.
|
|
3
|
+
"version": "1.4.60",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"executors": "./executors.json",
|
|
@@ -10,8 +10,8 @@
|
|
|
10
10
|
"dependencies": {
|
|
11
11
|
"rxjs": "7.8.1",
|
|
12
12
|
"win-ca": "^3.5.1",
|
|
13
|
-
"@trackunit/iris-app-build-utilities": "2.4.
|
|
14
|
-
"@trackunit/iris-app-api": "2.6.
|
|
13
|
+
"@trackunit/iris-app-build-utilities": "2.4.58",
|
|
14
|
+
"@trackunit/iris-app-api": "2.6.6",
|
|
15
15
|
"tslib": "^2.6.2",
|
|
16
16
|
"vite": "8.2.2",
|
|
17
17
|
"vite-tsconfig-paths": "^6.1.1",
|
|
@@ -22,7 +22,7 @@
|
|
|
22
22
|
"@tailwindcss/postcss": "^4.1.18",
|
|
23
23
|
"@vitejs/plugin-react-swc": "^4.3.2",
|
|
24
24
|
"@nx/devkit": "23.1.0",
|
|
25
|
-
"@trackunit/iris-app": "2.7.
|
|
25
|
+
"@trackunit/iris-app": "2.7.2",
|
|
26
26
|
"cross-keychain": "^1.1.0",
|
|
27
27
|
"jwt-decode": "^3.1.2"
|
|
28
28
|
},
|
|
@@ -50,7 +50,8 @@ async function* buildExecutor(options, context) {
|
|
|
50
50
|
IrisAppManifest.sdkVersion = sdkVersion;
|
|
51
51
|
}
|
|
52
52
|
// Advisory: warn when past the content-inset cutoff without `p-content-space`.
|
|
53
|
-
|
|
53
|
+
// Scoped to extension types the host inset actually covered (GLU-2353).
|
|
54
|
+
(0, iris_app_build_utilities_1.checkContentInsetAdoption)(sdkVersion, projectRootDir, IrisAppManifest.extensions, context.root);
|
|
54
55
|
const defaultConfig = await (0, defaultViteConfig_1.getDefaultViteConfig)("production", context.root, projectRootDir, IrisAppManifest, context, {
|
|
55
56
|
skipTypeChecking,
|
|
56
57
|
});
|
|
@@ -45,7 +45,8 @@ async function* serveExecutor(options, context) {
|
|
|
45
45
|
irisAppManifest.sdkVersion = sdkVersion;
|
|
46
46
|
}
|
|
47
47
|
// Advisory: warn when past the content-inset cutoff without `p-content-space`.
|
|
48
|
-
|
|
48
|
+
// Scoped to extension types the host inset actually covered (GLU-2353).
|
|
49
|
+
(0, iris_app_build_utilities_1.checkContentInsetAdoption)(sdkVersion, projectRootDir, irisAppManifest.extensions, context.root);
|
|
49
50
|
const checkCustomFieldsResult = await (0, checkCustomFields_1.checkCustomFields)(irisAppManifest, settings);
|
|
50
51
|
if (checkCustomFieldsResult === "out-of-sync") {
|
|
51
52
|
throw new Error("Custom fields are out of sync with the latest approved manifest, which can cause the app to behave in unexpected ways. Please submit and get this version approved before you continue developing the app.");
|