@trackunit/iris-app-sdk-vite 1.0.53 → 1.0.56
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 +32 -0
- package/migrations/entry.js +3 -0
- package/migrations.json +3 -0
- package/package.json +5 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,35 @@
|
|
|
1
|
+
## 1.0.56 (2026-07-02)
|
|
2
|
+
|
|
3
|
+
### 🚀 Features
|
|
4
|
+
|
|
5
|
+
- **migrations:** standard migration scaffold for all publish:npm packages [GLU-1354] ([#24119](https://github.com/Trackunit/manager/pull/24119))
|
|
6
|
+
|
|
7
|
+
### 🧱 Updated Dependencies
|
|
8
|
+
|
|
9
|
+
- Updated iris-app-build-utilities to 2.0.50
|
|
10
|
+
- Updated iris-app-api to 2.0.46
|
|
11
|
+
- Updated iris-app to 2.1.14
|
|
12
|
+
|
|
13
|
+
### ❤️ Thank You
|
|
14
|
+
|
|
15
|
+
- Cursor @cursoragent
|
|
16
|
+
- Mikkel Thorbjørn Andersen @mta-trackunit
|
|
17
|
+
|
|
18
|
+
## 1.0.55 (2026-07-02)
|
|
19
|
+
|
|
20
|
+
### 🧱 Updated Dependencies
|
|
21
|
+
|
|
22
|
+
- Updated iris-app-build-utilities to 2.0.49
|
|
23
|
+
- Updated iris-app-api to 2.0.45
|
|
24
|
+
- Updated iris-app to 2.1.13
|
|
25
|
+
|
|
26
|
+
## 1.0.54 (2026-07-02)
|
|
27
|
+
|
|
28
|
+
### 🧱 Updated Dependencies
|
|
29
|
+
|
|
30
|
+
- Updated iris-app-build-utilities to 2.0.48
|
|
31
|
+
- Updated iris-app to 2.1.12
|
|
32
|
+
|
|
1
33
|
## 1.0.53 (2026-07-01)
|
|
2
34
|
|
|
3
35
|
### 🧱 Updated Dependencies
|
package/migrations.json
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-sdk-vite",
|
|
3
|
-
"version": "1.0.
|
|
3
|
+
"version": "1.0.56",
|
|
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.0.
|
|
14
|
-
"@trackunit/iris-app-api": "2.0.
|
|
13
|
+
"@trackunit/iris-app-build-utilities": "2.0.50",
|
|
14
|
+
"@trackunit/iris-app-api": "2.0.46",
|
|
15
15
|
"tslib": "^2.6.2",
|
|
16
16
|
"vite": "7.3.1",
|
|
17
17
|
"@module-federation/vite": "1.11.0",
|
|
@@ -22,10 +22,11 @@
|
|
|
22
22
|
"@tailwindcss/postcss": "^4.1.18",
|
|
23
23
|
"@vitejs/plugin-react-swc": "^4.2.3",
|
|
24
24
|
"@nx/devkit": "22.7.5",
|
|
25
|
-
"@trackunit/iris-app": "2.1.
|
|
25
|
+
"@trackunit/iris-app": "2.1.14",
|
|
26
26
|
"cross-keychain": "^1.1.0",
|
|
27
27
|
"jwt-decode": "^3.1.2"
|
|
28
28
|
},
|
|
29
|
+
"migrations": "./migrations.json",
|
|
29
30
|
"types": "./src/index.d.ts",
|
|
30
31
|
"main": "./src/index.js",
|
|
31
32
|
"type": "commonjs"
|