@microtronics/studio-cli 0.27.1 → 0.27.2

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,5 +1,12 @@
1
1
 
2
2
 
3
+ ## 0.27.2 (2025-03-25)
4
+
5
+
6
+ ### Bug Fixes
7
+
8
+ * **studio-cli:** updating the application version does not use semver ([114d305](https://bitbucket.org/microtronics-core/vscode-studio/commits/114d3059c0408ca75237dfa21f8de181d8b0477e))
9
+
3
10
  ## 0.27.1 (2025-03-25)
4
11
 
5
12
  ## 0.27.0 (2025-03-20)
@@ -177,7 +177,7 @@ var Registry;
177
177
  }
178
178
  Registry.updateExistingApplication = updateExistingApplication;
179
179
  async function updateExistingApplicationVersion(token, publisherId, applicationId, applicationVersion, updatedApplicationVersion, env) {
180
- const isSemver = !preload_1.default.valid(applicationVersion);
180
+ const isSemver = !!preload_1.default.valid(applicationVersion);
181
181
  try {
182
182
  const { error } = await PUT(`/packages/{publisherId}/applications/{applicationId}/versions/{applicationVersion}`, {
183
183
  ...Registry.getAPIUrl(env),
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@microtronics/studio-cli",
3
- "version": "0.27.1",
3
+ "version": "0.27.2",
4
4
  "description": "Microtronics Studio CLI Tool",
5
5
  "main": "./out/api.js",
6
6
  "typings": "./dist/studio-cli.d.ts",