@trackunit/iris-app 2.5.16 → 2.5.17-alpha-aedae0c85f6.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 +0 -23
- package/migrations.json +1 -1
- package/package.json +6 -6
- package/src/executors/utils/authentication.js +1 -5
package/CHANGELOG.md
CHANGED
|
@@ -1,26 +1,3 @@
|
|
|
1
|
-
## 2.5.16 (2026-08-21)
|
|
2
|
-
|
|
3
|
-
### 🧱 Updated Dependencies
|
|
4
|
-
|
|
5
|
-
- Updated iris-app-build-utilities to 2.4.15
|
|
6
|
-
- Updated iris-app-api to 2.4.10
|
|
7
|
-
|
|
8
|
-
## 2.5.15 (2026-08-21)
|
|
9
|
-
|
|
10
|
-
### 🩹 Fixes
|
|
11
|
-
|
|
12
|
-
- **iris-app:** SF-791 restore CircleCI approvals ([51cff4a72ad](https://github.com/Trackunit/manager/commit/51cff4a72ad))
|
|
13
|
-
|
|
14
|
-
### ❤️ Thank You
|
|
15
|
-
|
|
16
|
-
- Mads Mætzke Tandrup
|
|
17
|
-
|
|
18
|
-
## 2.5.14 (2026-08-20)
|
|
19
|
-
|
|
20
|
-
### 🧱 Updated Dependencies
|
|
21
|
-
|
|
22
|
-
- Updated iris-app-build-utilities to 2.4.14
|
|
23
|
-
|
|
24
1
|
## 2.5.13 (2026-08-20)
|
|
25
2
|
|
|
26
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.
|
|
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.
|
|
3
|
+
"version": "2.5.17-alpha-aedae0c85f6.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.
|
|
13
|
+
"@trackunit/css-classname-utils": "0.0.21-alpha-aedae0c85f6.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.
|
|
30
|
-
"@trackunit/react-graphql-tools": "1.15.
|
|
31
|
-
"@trackunit/shared-utils": "1.16.
|
|
32
|
-
"@trackunit/iris-app-api": "2.4.
|
|
29
|
+
"@trackunit/iris-app-build-utilities": "2.4.16-alpha-aedae0c85f6.0",
|
|
30
|
+
"@trackunit/react-graphql-tools": "1.15.18-alpha-aedae0c85f6.0",
|
|
31
|
+
"@trackunit/shared-utils": "1.16.21-alpha-aedae0c85f6.0",
|
|
32
|
+
"@trackunit/iris-app-api": "2.4.11-alpha-aedae0c85f6.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
|
-
|
|
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,
|