@kapeta/local-cluster-service 0.58.3 → 0.58.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.58.4](https://github.com/kapetacom/local-cluster-service/compare/v0.58.3...v0.58.4) (2024-07-29)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * fix provider matching when replacing versions in archetypes ([d0554b2](https://github.com/kapetacom/local-cluster-service/commit/d0554b284a57cd4a436a7f00cbbd698a39ffe071))
7
+
1
8
  ## [0.58.3](https://github.com/kapetacom/local-cluster-service/compare/v0.58.2...v0.58.3) (2024-07-26)
2
9
 
3
10
 
@@ -710,7 +710,7 @@ class StormEventParser {
710
710
  for (const prop in options) {
711
711
  if (options.hasOwnProperty(prop)) {
712
712
  const value = options[prop];
713
- if (value.startsWith(kind)) {
713
+ if (value.indexOf(kind) > 0) {
714
714
  return value;
715
715
  }
716
716
  }
@@ -710,7 +710,7 @@ class StormEventParser {
710
710
  for (const prop in options) {
711
711
  if (options.hasOwnProperty(prop)) {
712
712
  const value = options[prop];
713
- if (value.startsWith(kind)) {
713
+ if (value.indexOf(kind) > 0) {
714
714
  return value;
715
715
  }
716
716
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kapeta/local-cluster-service",
3
- "version": "0.58.3",
3
+ "version": "0.58.4",
4
4
  "description": "Manages configuration, ports and service discovery for locally running Kapeta systems",
5
5
  "type": "commonjs",
6
6
  "exports": {
@@ -925,7 +925,7 @@ export class StormEventParser {
925
925
  for (const prop in options) {
926
926
  if (options.hasOwnProperty(prop)) {
927
927
  const value = options[prop];
928
- if (value.startsWith(kind)) {
928
+ if (value.indexOf(kind) > 0) {
929
929
  return value;
930
930
  }
931
931
  }