@trackunit/iris-app 2.5.18 → 2.5.19-alpha-62031fc7c43.0

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,53 +1,3 @@
1
- ## 2.5.18 (2026-08-25)
2
-
3
- ### 🩹 Fixes
4
-
5
- - **iris-app-sdk:** retry Sentry HTTP 5xx during iris app builds ([#25075](https://github.com/Trackunit/manager/pull/25075), [#24915](https://github.com/Trackunit/manager/issues/24915), [#25062](https://github.com/Trackunit/manager/issues/25062))
6
-
7
- ### 🧱 Updated Dependencies
8
-
9
- - Updated iris-app-build-utilities to 2.4.17
10
- - Updated iris-app-api to 2.4.11
11
- - Updated react-vite-test-setup to 0.0.113
12
- - Updated css-classname-utils to 0.0.21
13
- - Updated react-graphql-tools to 1.16.1
14
- - Updated shared-utils to 1.16.21
15
-
16
- ### ❤️ Thank You
17
-
18
- - Cursor Agent @cursoragent
19
- - Kristian Bødker
20
-
21
- ## 2.5.17 (2026-08-24)
22
-
23
- ### 🧱 Updated Dependencies
24
-
25
- - Updated iris-app-build-utilities to 2.4.16
26
- - Updated react-graphql-tools to 1.16.0
27
-
28
- ## 2.5.16 (2026-08-21)
29
-
30
- ### 🧱 Updated Dependencies
31
-
32
- - Updated iris-app-build-utilities to 2.4.15
33
- - Updated iris-app-api to 2.4.10
34
-
35
- ## 2.5.15 (2026-08-21)
36
-
37
- ### 🩹 Fixes
38
-
39
- - **iris-app:** SF-791 restore CircleCI approvals ([51cff4a72ad](https://github.com/Trackunit/manager/commit/51cff4a72ad))
40
-
41
- ### ❤️ Thank You
42
-
43
- - Mads Mætzke Tandrup
44
-
45
- ## 2.5.14 (2026-08-20)
46
-
47
- ### 🧱 Updated Dependencies
48
-
49
- - Updated iris-app-build-utilities to 2.4.14
50
-
51
1
  ## 2.5.13 (2026-08-20)
52
2
 
53
3
  ### 🧱 Updated Dependencies
package/migrations.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "generators": {
3
3
  "v2-5-12-p-content-space-codemod": {
4
- "version": "2.5.13",
4
+ "version": "2.5.12",
5
5
  "description": "Rewrite the legacy page-content Tailwind class to overflow-auto p-content-space, invent p-content-space on high-confidence Asset Home/Site Home/Admin content shells, and remove now-redundant bottom-inset classes.",
6
6
  "implementation": "./migrations/p-content-space-codemod/orchestrator"
7
7
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app",
3
- "version": "2.5.18",
3
+ "version": "2.5.19-alpha-62031fc7c43.0",
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.21",
13
+ "@trackunit/css-classname-utils": "0.0.22-alpha-62031fc7c43.0",
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.17",
30
- "@trackunit/react-graphql-tools": "1.16.1",
31
- "@trackunit/shared-utils": "1.16.21",
32
- "@trackunit/iris-app-api": "2.4.11",
29
+ "@trackunit/iris-app-build-utilities": "2.4.18-alpha-62031fc7c43.0",
30
+ "@trackunit/react-graphql-tools": "1.16.2-alpha-62031fc7c43.0",
31
+ "@trackunit/shared-utils": "1.16.22-alpha-62031fc7c43.0",
32
+ "@trackunit/iris-app-api": "2.4.12-alpha-62031fc7c43.0",
33
33
  "tslib": "^2.6.2",
34
34
  "@clack/prompts": "^1.0.0",
35
35
  "@npm/types": "^1.0.2",
@@ -39,11 +39,7 @@ async function getAccessToken(env) {
39
39
  tokenParams.append("client_id", clientId);
40
40
  tokenParams.append("client_secret", clientSecret);
41
41
  tokenParams.append("grant_type", "client_credentials");
42
- const scopes = ["core.iris.app.publish_for_all_accounts"];
43
- if (process.env.TU_APPROVE === "true") {
44
- scopes.push("core.iris.app.approve");
45
- }
46
- tokenParams.append("scope", scopes.join(" "));
42
+ tokenParams.append("scope", "core.iris.app.publish_for_all_accounts");
47
43
  const tokenResponse = await fetch(`${settings.internalAuthorizationServerBaseUrl}/v1/token`, {
48
44
  method: "POST",
49
45
  body: tokenParams,