@kapeta/local-cluster-service 0.21.3 → 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,10 @@
|
|
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
|
+
|
1
8
|
## [0.21.3](https://github.com/kapetacom/local-cluster-service/compare/v0.21.2...v0.21.3) (2023-09-20)
|
2
9
|
|
3
10
|
|
@@ -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
@@ -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
|
|