@microtronics/studio-cli 0.29.1 → 0.29.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 +7 -5
- package/dist/studio-cli.d.ts +2 -2
- package/out/api.js +1 -1
- package/out/package/package.js +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,10 +1,12 @@
|
|
|
1
1
|
|
|
2
2
|
|
|
3
|
-
## 0.29.
|
|
4
|
-
|
|
5
|
-
|
|
6
|
-
|
|
7
|
-
|
|
3
|
+
## 0.29.2 (2025-04-04)
|
|
4
|
+
|
|
5
|
+
## 0.29.1 (2025-04-03)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Bug Fixes
|
|
9
|
+
|
|
8
10
|
* **studio-core:** improve container name matching and update warning format ([049c236](https://bitbucket.org/microtronics-core/vscode-studio/commits/049c236ad3c8697d3ca319f960a9ef58a752c9aa))
|
|
9
11
|
|
|
10
12
|
## 0.29.0 (2025-04-03)
|
package/dist/studio-cli.d.ts
CHANGED
|
@@ -2349,7 +2349,7 @@ export declare namespace Package {
|
|
|
2349
2349
|
* @param allowedBackends
|
|
2350
2350
|
* @param env
|
|
2351
2351
|
*/
|
|
2352
|
-
export function release(cwd: URI, fs: LocalFS, logger: Log.Logger, token: Registry.AuthToken, releasePhase
|
|
2352
|
+
export function release(cwd: URI, fs: LocalFS, logger: Log.Logger, env: Globals.ENV, token: Registry.AuthToken, releasePhase?: APM.TagPhase, allowedBackends?: Registry.ApiNewApplication['allowedBackends']): Promise<void>;
|
|
2353
2353
|
/**
|
|
2354
2354
|
* Publish an application model tag
|
|
2355
2355
|
* @param cwd
|
|
@@ -4616,7 +4616,7 @@ declare interface paths {
|
|
|
4616
4616
|
* @param {APM.TagPhase} optsPhase - The release phase tag associated with the package publishing.
|
|
4617
4617
|
* @return {Promise<void>} A promise that resolves when the package has been successfully published or rejects with an error if the process fails.
|
|
4618
4618
|
*/
|
|
4619
|
-
export declare function publish(cwd: URI, fs: LocalFS, logger: Log.Logger, env: Globals.ENV, apiToken: string | null, optsAllowedBackends: string | undefined, optsPhase
|
|
4619
|
+
export declare function publish(cwd: URI, fs: LocalFS, logger: Log.Logger, env: Globals.ENV, apiToken: string | null, optsAllowedBackends: string | undefined, optsPhase?: APM.TagPhase): Promise<void>;
|
|
4620
4620
|
|
|
4621
4621
|
export declare namespace Registry {
|
|
4622
4622
|
export type AuthToken = string | null;
|
package/out/api.js
CHANGED
|
@@ -101,6 +101,6 @@ async function publish(cwd, fs, logger, env, apiToken, optsAllowedBackends, opts
|
|
|
101
101
|
throw new Error(errorMessage);
|
|
102
102
|
}
|
|
103
103
|
}
|
|
104
|
-
return package_1.Package.release(cwd, fs, logger, apiToken, optsPhase, allowedBackends
|
|
104
|
+
return package_1.Package.release(cwd, fs, logger, env, apiToken, optsPhase, allowedBackends);
|
|
105
105
|
}
|
|
106
106
|
//# sourceMappingURL=api.js.map
|
package/out/package/package.js
CHANGED
|
@@ -102,7 +102,7 @@ var Package;
|
|
|
102
102
|
* @param allowedBackends
|
|
103
103
|
* @param env
|
|
104
104
|
*/
|
|
105
|
-
async function release(cwd, fs, logger, token, releasePhase, allowedBackends
|
|
105
|
+
async function release(cwd, fs, logger, env, token, releasePhase, allowedBackends) {
|
|
106
106
|
const manifest = await manifest_1.Manifest.read(cwd, fs);
|
|
107
107
|
if (manifest_1.Manifest.isLibrary(manifest)) {
|
|
108
108
|
logger.info('Library project detected. Publishing library...');
|