@trackunit/iris-app 1.12.12 → 1.12.13
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 +9 -0
- package/package.json +3 -3
- package/src/executors/submit/executor.js +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,12 @@
|
|
|
1
|
+
## 1.12.13 (2026-03-09)
|
|
2
|
+
|
|
3
|
+
### 🧱 Updated Dependencies
|
|
4
|
+
|
|
5
|
+
- Updated iris-app-build-utilities to 1.12.66
|
|
6
|
+
- Updated iris-app-api to 1.14.60
|
|
7
|
+
- Updated react-test-setup to 1.8.57
|
|
8
|
+
- Updated shared-utils to 1.13.57
|
|
9
|
+
|
|
1
10
|
## 1.12.12 (2026-03-09)
|
|
2
11
|
|
|
3
12
|
### 🧱 Updated Dependencies
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@trackunit/iris-app",
|
|
3
|
-
"version": "1.12.
|
|
3
|
+
"version": "1.12.13",
|
|
4
4
|
"license": "SEE LICENSE IN LICENSE.txt",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"generators": "./generators.json",
|
|
@@ -25,8 +25,8 @@
|
|
|
25
25
|
"nx": "22.4.4",
|
|
26
26
|
"@npmcli/arborist": "^9.1.9",
|
|
27
27
|
"win-ca": "^3.5.1",
|
|
28
|
-
"@trackunit/shared-utils": "1.13.
|
|
29
|
-
"@trackunit/iris-app-api": "1.14.
|
|
28
|
+
"@trackunit/shared-utils": "1.13.57",
|
|
29
|
+
"@trackunit/iris-app-api": "1.14.60",
|
|
30
30
|
"tslib": "^2.6.2",
|
|
31
31
|
"@clack/prompts": "^1.0.0",
|
|
32
32
|
"@npm/types": "^1.0.2"
|
|
@@ -96,7 +96,7 @@ async function doUploadApp(accessToken, manifest, tarData, settings) {
|
|
|
96
96
|
if (err.statusCode === 409 || err.code === "E409" || err.code === "EPUBLISHCONFLICT") {
|
|
97
97
|
return {
|
|
98
98
|
ok: false,
|
|
99
|
-
|
|
99
|
+
submitConflict: true,
|
|
100
100
|
};
|
|
101
101
|
}
|
|
102
102
|
else {
|
|
@@ -116,7 +116,7 @@ async function doUploadApp(accessToken, manifest, tarData, settings) {
|
|
|
116
116
|
console.log(`🚀 Uploaded the app package version ${manifest.version}`);
|
|
117
117
|
return await doApproveAppWithRetry(accessToken, manifest, settings, 3);
|
|
118
118
|
}
|
|
119
|
-
else if ("
|
|
119
|
+
else if ("submitConflict" in submitResult) {
|
|
120
120
|
if (process.env.SKIP_EXISTING === "true") {
|
|
121
121
|
console.log(`⏩ Skipped submitting ${manifest.version} because the version is already submitted`);
|
|
122
122
|
return await doApproveAppWithRetry(accessToken, manifest, settings, 3);
|