@kapeta/local-cluster-service 0.21.2 → 0.21.4

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,3 +1,17 @@
1
+ ## [0.21.4](https://github.com/kapetacom/local-cluster-service/compare/v0.21.3...v0.21.4) (2023-09-21)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * Make local sample copy private ([#83](https://github.com/kapetacom/local-cluster-service/issues/83)) ([e9591b7](https://github.com/kapetacom/local-cluster-service/commit/e9591b76f18f62e258a71a9ea10ccd28c9d51786))
7
+
8
+ ## [0.21.3](https://github.com/kapetacom/local-cluster-service/compare/v0.21.2...v0.21.3) (2023-09-20)
9
+
10
+
11
+ ### Bug Fixes
12
+
13
+ * Clean up empty folders after codegen ([#82](https://github.com/kapetacom/local-cluster-service/issues/82)) ([f9185aa](https://github.com/kapetacom/local-cluster-service/commit/f9185aad168d769617bc790c825c5b901ce5f41d))
14
+
1
15
  ## [0.21.2](https://github.com/kapetacom/local-cluster-service/compare/v0.21.1...v0.21.2) (2023-09-19)
2
16
 
3
17
 
@@ -20,6 +20,8 @@ function getRenamed(definition, targetHandle) {
20
20
  }
21
21
  function applyHandleChange(definition, targetHandle) {
22
22
  definition.definition.metadata.name = getRenamed(definition, targetHandle);
23
+ // We also change the visibility to private
24
+ definition.definition.metadata.visibility = 'private';
23
25
  return definition;
24
26
  }
25
27
  function normalizeFilters(kindFilter) {
@@ -20,6 +20,8 @@ function getRenamed(definition, targetHandle) {
20
20
  }
21
21
  function applyHandleChange(definition, targetHandle) {
22
22
  definition.definition.metadata.name = getRenamed(definition, targetHandle);
23
+ // We also change the visibility to private
24
+ definition.definition.metadata.visibility = 'private';
23
25
  return definition;
24
26
  }
25
27
  function normalizeFilters(kindFilter) {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kapeta/local-cluster-service",
3
- "version": "0.21.2",
3
+ "version": "0.21.4",
4
4
  "description": "Manages configuration, ports and service discovery for locally running Kapeta systems",
5
5
  "type": "commonjs",
6
6
  "exports": {
@@ -17,6 +17,8 @@ function getRenamed(definition: DefinitionInfo, targetHandle: string) {
17
17
  }
18
18
  function applyHandleChange(definition: DefinitionInfo, targetHandle: string) {
19
19
  definition.definition.metadata.name = getRenamed(definition, targetHandle);
20
+ // We also change the visibility to private
21
+ definition.definition.metadata.visibility = 'private';
20
22
  return definition;
21
23
  }
22
24