@trackunit/iris-app 2.5.28 → 2.5.29
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,14 @@
|
|
|
1
|
+
## 2.5.29 (2026-08-31)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 2.4.28
|
|
6
|
+
- Updated iris-app-api to 2.4.22
|
|
7
|
+
- Updated react-vite-test-setup to 0.0.117
|
|
8
|
+
- Updated css-classname-utils to 0.0.25
|
|
9
|
+
- Updated react-graphql-tools to 1.17.8
|
|
10
|
+
- Updated shared-utils to 1.16.25
|
|
11
|
+
|
|
1
12
|
## 2.5.28 (2026-08-31)
|
|
2
13
|
|
|
3
14
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "2.5.
|
|
3
|
+
"version": "2.5.29",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -10,7 +10,7 @@
|
|
|
10
10
|
"node": ">=24.x"
|
|
11
11
|
},
|
|
12
12
|
"dependencies": {
|
|
13
|
-
"@trackunit/css-classname-utils": "0.0.
|
|
13
|
+
"@trackunit/css-classname-utils": "0.0.25",
|
|
14
14
|
"@typescript-eslint/types": "8.58.1",
|
|
15
15
|
"@typescript-eslint/typescript-estree": "8.58.1",
|
|
16
16
|
"pacote": "^21.0.4",
|
|
@@ -26,10 +26,10 @@
|
|
|
26
26
|
"@nx/react": "23.1.0",
|
|
27
27
|
"@npmcli/arborist": "^9.1.9",
|
|
28
28
|
"win-ca": "^3.5.1",
|
|
29
|
-
"@trackunit/iris-app-build-utilities": "2.4.
|
|
30
|
-
"@trackunit/react-graphql-tools": "1.17.
|
|
31
|
-
"@trackunit/shared-utils": "1.16.
|
|
32
|
-
"@trackunit/iris-app-api": "2.4.
|
|
29
|
+
"@trackunit/iris-app-build-utilities": "2.4.28",
|
|
30
|
+
"@trackunit/react-graphql-tools": "1.17.8",
|
|
31
|
+
"@trackunit/shared-utils": "1.16.25",
|
|
32
|
+
"@trackunit/iris-app-api": "2.4.22",
|
|
33
33
|
"tslib": "^2.6.2",
|
|
34
34
|
"@clack/prompts": "^1.0.0",
|
|
35
35
|
"@npm/types": "^1.0.2",
|
|
@@ -21,6 +21,16 @@ const irisAppManifest: IrisAppManifest = {
|
|
|
21
21
|
},
|
|
22
22
|
},
|
|
23
23
|
|
|
24
|
+
// The scopes your app's token needs to call Trackunit's API.
|
|
25
|
+
//
|
|
26
|
+
// An empty list is not neutral: the gateway receives an empty scope set and denies every
|
|
27
|
+
// scope-protected field, so the first @authorization-protected query you write will fail with a
|
|
28
|
+
// missing-scope error until you list the scope it needs here.
|
|
29
|
+
//
|
|
30
|
+
// Inside the Trackunit monorepo a platform test tells you which scopes are missing. Outside it,
|
|
31
|
+
// the first sign is that runtime error, so add scopes as you add the operations that need them.
|
|
32
|
+
scopes: [],
|
|
33
|
+
|
|
24
34
|
marketplace: {
|
|
25
35
|
showInMarketplace: false,
|
|
26
36
|
name: "<%= projectName %>",
|