@trackunit/iris-app 1.18.19 → 1.18.21
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,22 @@
|
|
|
1
|
+
## 1.18.21 (2026-04-28)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.15.19
|
|
6
|
+
- Updated iris-app-api to 1.17.19
|
|
7
|
+
- Updated react-test-setup to 1.8.113
|
|
8
|
+
- Updated shared-utils to 1.13.114
|
|
9
|
+
|
|
10
|
+
## 1.18.20 (2026-04-28)
|
|
11
|
+
|
|
12
|
+
### 🩹 Fixes
|
|
13
|
+
|
|
14
|
+
- use correct GraphQL internal endpoint for iris-app server ([4a52ee793bb](https://github.com/Trackunit/manager/commit/4a52ee793bb))
|
|
15
|
+
|
|
16
|
+
### ❤️ Thank You
|
|
17
|
+
|
|
18
|
+
- Mikkel Thorbjørn Andersen
|
|
19
|
+
|
|
1
20
|
## 1.18.19 (2026-04-27)
|
|
2
21
|
|
|
3
22
|
### 🧱 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.21",
|
|
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.6.5",
|
|
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.114",
|
|
27
|
+
"@trackunit/iris-app-api": "1.17.19",
|
|
28
28
|
"tslib": "^2.6.2",
|
|
29
29
|
"@clack/prompts": "^1.0.0",
|
|
30
30
|
"@npm/types": "^1.0.2",
|
|
@@ -50,11 +50,11 @@ const getGraphqlInternalUrl = (env) => {
|
|
|
50
50
|
}
|
|
51
51
|
switch (env.toUpperCase()) {
|
|
52
52
|
case "PROD":
|
|
53
|
-
return new URL("https://prod.awsapi.trackunit.com/public/api/graphql/internal
|
|
53
|
+
return new URL("https://prod.awsapi.trackunit.com/public/api/graphql/internal/");
|
|
54
54
|
case "STAGE":
|
|
55
|
-
return new URL("https://stage.awsapi.trackunit.com/public/api/graphql/internal
|
|
55
|
+
return new URL("https://stage.awsapi.trackunit.com/public/api/graphql/internal/");
|
|
56
56
|
case "DEV":
|
|
57
|
-
return new URL("https://dev.awsapi.trackunit.com/public/api/graphql/internal
|
|
57
|
+
return new URL("https://dev.awsapi.trackunit.com/public/api/graphql/internal/");
|
|
58
58
|
case "LOCAL":
|
|
59
59
|
return new URL("http://localhost:5011/internal");
|
|
60
60
|
default:
|