@trackunit/iris-app 1.20.7 → 1.21.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 CHANGED
@@ -1,3 +1,54 @@
1
+ ## 1.21.0 (2026-05-10)
2
+
3
+ ### 🚀 Features
4
+
5
+ - **vitest:** consistently set coverage.provider to "istanbul" across configurations ([2a440674ca3](https://github.com/Trackunit/manager/commit/2a440674ca3))
6
+ - **vitest:** use istanbul as the coverage provider ([80313642422](https://github.com/Trackunit/manager/commit/80313642422))
7
+
8
+ ### 🩹 Fixes
9
+
10
+ - **vitest:** refine coverage configuration by adding missing comma ([e034047cc4c](https://github.com/Trackunit/manager/commit/e034047cc4c))
11
+ - **vitest:** finalize coverage.reportsDirectory configuration ([af8e853f486](https://github.com/Trackunit/manager/commit/af8e853f486))
12
+ - **iris-app:** pin coverage.reportsDirectory so platform-test passes ([6b698e38d19](https://github.com/Trackunit/manager/commit/6b698e38d19))
13
+
14
+ ### 🧱 Updated Dependencies
15
+
16
+ - Updated iris-app-build-utilities to 1.18.0
17
+ - Updated iris-app-api to 1.20.0
18
+ - Updated shared-utils to 1.15.0
19
+
20
+ ### ❤️ Thank You
21
+
22
+ - Cursor @cursoragent
23
+ - Mikkel Thorbjørn Andersen
24
+
25
+ ## 1.20.10 (2026-05-07)
26
+
27
+ ### 🧱 Updated Dependencies
28
+
29
+ - Updated iris-app-build-utilities to 1.17.10
30
+ - Updated iris-app-api to 1.19.9
31
+ - Updated react-test-setup to 1.9.8
32
+ - Updated shared-utils to 1.14.9
33
+
34
+ ## 1.20.9 (2026-05-07)
35
+
36
+ ### 🧱 Updated Dependencies
37
+
38
+ - Updated iris-app-build-utilities to 1.17.9
39
+ - Updated iris-app-api to 1.19.8
40
+ - Updated react-test-setup to 1.9.7
41
+ - Updated shared-utils to 1.14.8
42
+
43
+ ## 1.20.8 (2026-05-07)
44
+
45
+ ### 🧱 Updated Dependencies
46
+
47
+ - Updated iris-app-build-utilities to 1.17.8
48
+ - Updated iris-app-api to 1.19.7
49
+ - Updated react-test-setup to 1.9.6
50
+ - Updated shared-utils to 1.14.7
51
+
1
52
  ## 1.20.7 (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.7",
3
+ "version": "1.21.0",
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.6",
27
- "@trackunit/iris-app-api": "1.19.6",
26
+ "@trackunit/shared-utils": "1.15.0",
27
+ "@trackunit/iris-app-api": "1.20.0",
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();