@trackunit/iris-app-build-utilities 2.0.47 → 2.0.50
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 +29 -0
- package/migrations/entry.js +3 -0
- package/migrations.json +3 -0
- package/package.json +4 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,32 @@
|
|
|
1
|
+
## 2.0.50 (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-api to 2.0.46
|
|
10
|
+
- Updated shared-utils to 1.15.55
|
|
11
|
+
|
|
12
|
+
### ❤️ Thank You
|
|
13
|
+
|
|
14
|
+
- Cursor @cursoragent
|
|
15
|
+
- Mikkel Thorbjørn Andersen @mta-trackunit
|
|
16
|
+
|
|
17
|
+
## 2.0.49 (2026-07-02)
|
|
18
|
+
|
|
19
|
+
### 🧱 Updated Dependencies
|
|
20
|
+
|
|
21
|
+
- Updated iris-app-api to 2.0.45
|
|
22
|
+
- Updated shared-utils to 1.15.54
|
|
23
|
+
|
|
24
|
+
## 2.0.48 (2026-07-02)
|
|
25
|
+
|
|
26
|
+
### 🧱 Updated Dependencies
|
|
27
|
+
|
|
28
|
+
- Updated shared-utils to 1.15.53
|
|
29
|
+
|
|
1
30
|
## 2.0.47 (2026-07-01)
|
|
2
31
|
|
|
3
32
|
### 🧱 Updated Dependencies
|
package/migrations.json
ADDED
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app-build-utilities",
|
|
3
|
-
"version": "2.0.
|
|
3
|
+
"version": "2.0.50",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"repository": "https://github.com/Trackunit/manager",
|
|
6
6
|
"engines": {
|
|
@@ -15,14 +15,15 @@
|
|
|
15
15
|
"tslib": "^2.6.2",
|
|
16
16
|
"csp-header": "^6.3.1",
|
|
17
17
|
"@rspack/core": "1.6.7",
|
|
18
|
-
"@trackunit/iris-app-api": "2.0.
|
|
18
|
+
"@trackunit/iris-app-api": "2.0.46",
|
|
19
19
|
"@nx/devkit": "22.7.5",
|
|
20
|
-
"@trackunit/shared-utils": "1.15.
|
|
20
|
+
"@trackunit/shared-utils": "1.15.55",
|
|
21
21
|
"http-proxy-middleware": "3.0.5",
|
|
22
22
|
"marked": "14.1.2",
|
|
23
23
|
"pacote": "^21.0.4",
|
|
24
24
|
"semver": "7.5.4"
|
|
25
25
|
},
|
|
26
|
+
"migrations": "./migrations.json",
|
|
26
27
|
"types": "./src/index.d.ts",
|
|
27
28
|
"main": "./src/index.js",
|
|
28
29
|
"type": "commonjs"
|