@microtronics/studio-cli 0.45.0 → 0.47.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,10 +1,23 @@
1
1
  # Changelog
2
2
 
3
- ## 0.45.0 (2026-02-04)
3
+ ## 0.47.0 (2026-02-06)
4
4
 
5
- ### Features
5
+ ### Bug Fixes
6
6
 
7
- * add development deployment workflow with USB and myDatanet integration ([0503666](https://bitbucket.org/microtronics-core/vscode-studio/commits/05036666d0a80f419b76ed4140037e11281d0621))
7
+ * **cli:** add missing 'tar' dev package ([707f755](https://bitbucket.org/microtronics-core/vscode-studio/commits/707f75561af14ff302b8c780e55cd5a156a9187a))
8
+ * **cli:** add missing 'uuid' package ([48c2fec](https://bitbucket.org/microtronics-core/vscode-studio/commits/48c2fec8fa052326706df2b2e2c7a0a9b71ece24))
9
+
10
+ ## 0.46.0 (2026-02-04)
11
+
12
+ ### Bug Fixes
13
+
14
+ * limit development site name to 50 characters maximum ([6dd6772](https://bitbucket.org/microtronics-core/vscode-studio/commits/6dd6772eb0d0c84ccf3f68b4a3fcbb751a46f7f8)), closes [#bugfix-ready](https://bitbucket.org/microtronics-core/vscode-studio/issues/bugfix-ready)
15
+
16
+ ## 0.45.0 (2026-02-04)
17
+
18
+ ### Features
19
+
20
+ * add development deployment workflow with USB and myDatanet integration ([0503666](https://bitbucket.org/microtronics-core/vscode-studio/commits/05036666d0a80f419b76ed4140037e11281d0621))
8
21
  * add VSCode extension support to MyDatanetClient ([67866fc](https://bitbucket.org/microtronics-core/vscode-studio/commits/67866fc2ab069a108df4594124fcb38b13ca1b68))
9
22
 
10
23
  ## 0.44.0 (2026-01-19)
@@ -276,7 +276,7 @@ async function buildDevelopmentInstallInfo(cwd, fs, serialNumber, userName, cust
276
276
  return {
277
277
  apmId: generateDevApmId(developmentReference),
278
278
  applicationId: null,
279
- name: `Development_${siteName}`,
279
+ name: `${siteName}`.substring(0, 50), // site name can have a max number of 50 chars
280
280
  version: 1,
281
281
  serialNumber: hasDlo ? serialNumber : undefined,
282
282
  siteUid: null,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "0.45.0",
3
+ "version": "0.47.0",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./dist/studio-cli.d.ts",
@@ -25,6 +25,7 @@
25
25
  "author": "Microtronics",
26
26
  "license": "ISC",
27
27
  "dependencies": {
28
+ "uuid": "^9.0.1",
28
29
  "@gera2ld/tarjs": "^0.3.1",
29
30
  "ajv": "^8.17.1",
30
31
  "ajv-formats": "^3.0.1",
@@ -70,9 +71,9 @@
70
71
  "mocha": "^10.8.2",
71
72
  "mocha-junit-reporter": "^2.2.1",
72
73
  "openapi-typescript": "^7.6.0",
73
- "tar": "^7.4.3",
74
74
  "ts-node": "^10.9.2",
75
- "typescript": "^5.6.3"
75
+ "typescript": "^5.6.3",
76
+ "tar": "^7.5.7"
76
77
  },
77
78
  "mocha": {
78
79
  "require": [