@microtronics/studio-cli 0.37.0 → 0.38.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 +12 -6
- package/out/dde/yamlDdePreCompiler.js +7 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,14 +1,20 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## 0.
|
|
3
|
+
## 0.38.0 (2025-10-23)
|
|
4
4
|
|
|
5
5
|
### Features
|
|
6
6
|
|
|
7
|
-
* **cli:**
|
|
8
|
-
|
|
9
|
-
|
|
10
|
-
|
|
11
|
-
|
|
7
|
+
* **cli:** dde generation filter out used containers in precompiler ([15a6c3e](https://bitbucket.org/microtronics-core/vscode-studio/commits/15a6c3eebb8245a3673311de64fa493dfc8c2094))
|
|
8
|
+
|
|
9
|
+
## 0.37.0 (2025-10-22)
|
|
10
|
+
|
|
11
|
+
### Features
|
|
12
|
+
|
|
13
|
+
* **cli:** add write permission for timeseries for type addon ([d8b8f05](https://bitbucket.org/microtronics-core/vscode-studio/commits/d8b8f059873f2c4503aef8b1a39d96707f843884))
|
|
14
|
+
* **cli:** enhance regex for relation validation ([7d995c4](https://bitbucket.org/microtronics-core/vscode-studio/commits/7d995c47bc6c24abdb2af6717f4df50f727a1b7a))
|
|
15
|
+
* **cli:** enhance support for cross-library relations ([3d9a6f7](https://bitbucket.org/microtronics-core/vscode-studio/commits/3d9a6f789758bfccf01963e7386573a54fe11f71))
|
|
16
|
+
* **cli:** improve container title extraction logic ([2a0618a](https://bitbucket.org/microtronics-core/vscode-studio/commits/2a0618aae01ed30c3c854430b0bd5ff4454b6288))
|
|
17
|
+
* **cli:** update `isApp` logic to handle undefined type ([fc9c12d](https://bitbucket.org/microtronics-core/vscode-studio/commits/fc9c12ddebdffe4ca9fbed10359ce9b8265f3e57))
|
|
12
18
|
* **core:** extend regex patterns for relation validation ([5ffe3b4](https://bitbucket.org/microtronics-core/vscode-studio/commits/5ffe3b4cad70a842111a937e5c8bd9306571f688))
|
|
13
19
|
|
|
14
20
|
## 0.36.0 (2025-09-25)
|
|
@@ -290,6 +290,13 @@ var YamlPreCompiler;
|
|
|
290
290
|
[DDEContainerName.relations, DDEContainerName.storage].includes(ddeContainerName)) {
|
|
291
291
|
containerList = SERVER_CONTAINER;
|
|
292
292
|
}
|
|
293
|
+
const previousContainerList = this.previousVersion?.containers;
|
|
294
|
+
// filter out all containers that are already used
|
|
295
|
+
if (previousContainerList) {
|
|
296
|
+
containerList = containerList.filter(containerName => {
|
|
297
|
+
return !Object.hasOwn(previousContainerList, containerName);
|
|
298
|
+
});
|
|
299
|
+
}
|
|
293
300
|
return containerList.find(containerName => {
|
|
294
301
|
return !Object.hasOwn(this.usedContainerNames, containerName);
|
|
295
302
|
});
|