@trackunit/iris-app 1.20.8 → 1.21.1

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,54 @@
1
+ ## 1.21.1 (2026-05-12)
2
+
3
+ ### 🧱 Updated Dependencies
4
+
5
+ - Updated iris-app-build-utilities to 1.18.1
6
+ - Updated iris-app-api to 1.20.1
7
+ - Updated react-vite-test-setup to 0.0.2
8
+ - Updated shared-utils to 1.15.1
9
+
10
+ ## 1.21.0 (2026-05-10)
11
+
12
+ ### 🚀 Features
13
+
14
+ - **vitest:** consistently set coverage.provider to "istanbul" across configurations ([2a440674ca3](https://github.com/Trackunit/manager/commit/2a440674ca3))
15
+ - **vitest:** use istanbul as the coverage provider ([80313642422](https://github.com/Trackunit/manager/commit/80313642422))
16
+
17
+ ### 🩹 Fixes
18
+
19
+ - **vitest:** refine coverage configuration by adding missing comma ([e034047cc4c](https://github.com/Trackunit/manager/commit/e034047cc4c))
20
+ - **vitest:** finalize coverage.reportsDirectory configuration ([af8e853f486](https://github.com/Trackunit/manager/commit/af8e853f486))
21
+ - **iris-app:** pin coverage.reportsDirectory so platform-test passes ([6b698e38d19](https://github.com/Trackunit/manager/commit/6b698e38d19))
22
+
23
+ ### 🧱 Updated Dependencies
24
+
25
+ - Updated iris-app-build-utilities to 1.18.0
26
+ - Updated iris-app-api to 1.20.0
27
+ - Updated shared-utils to 1.15.0
28
+
29
+ ### ❤️ Thank You
30
+
31
+ - Cursor @cursoragent
32
+ - Mikkel Thorbjørn Andersen
33
+
34
+ ## 1.20.10 (2026-05-07)
35
+
36
+ ### 🧱 Updated Dependencies
37
+
38
+ - Updated iris-app-build-utilities to 1.17.10
39
+ - Updated iris-app-api to 1.19.9
40
+ - Updated react-test-setup to 1.9.8
41
+ - Updated shared-utils to 1.14.9
42
+
43
+ ## 1.20.9 (2026-05-07)
44
+
45
+ ### 🧱 Updated Dependencies
46
+
47
+ - Updated iris-app-build-utilities to 1.17.9
48
+ - Updated iris-app-api to 1.19.8
49
+ - Updated react-test-setup to 1.9.7
50
+ - Updated shared-utils to 1.14.8
51
+
1
52
  ## 1.20.8 (2026-05-07)
2
53
 
3
54
  ### 🧱 Updated Dependencies
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@trackunit/iris-app",
3
- "version": "1.20.8",
3
+ "version": "1.21.1",
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.14.7",
27
- "@trackunit/iris-app-api": "1.19.7",
26
+ "@trackunit/shared-utils": "1.15.1",
27
+ "@trackunit/iris-app-api": "1.20.1",
28
28
  "tslib": "^2.6.2",
29
29
  "@clack/prompts": "^1.0.0",
30
30
  "@npm/types": "^1.0.2",
@@ -11,4 +11,4 @@ setupTranslations();
11
11
  setupResizeObserver();
12
12
 
13
13
  (global as any).fetch = require("jest-fetch-mock");
14
- (window as any).URL.createObjectURL = jest.fn();
14
+ (window as unknown as { URL: { createObjectURL: () => void } }).URL.createObjectURL = jest.fn();