@kapeta/local-cluster-service 0.60.1 → 0.60.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
CHANGED
@@ -1,3 +1,10 @@
|
|
1
|
+
## [0.60.2](https://github.com/kapetacom/local-cluster-service/compare/v0.60.1...v0.60.2) (2024-08-06)
|
2
|
+
|
3
|
+
|
4
|
+
### Bug Fixes
|
5
|
+
|
6
|
+
* actually use the new toSafeArtifactName() function ([41f5033](https://github.com/kapetacom/local-cluster-service/commit/41f5033d0a2b2cd21ff6954d2ef3468644ee56c7))
|
7
|
+
|
1
8
|
## [0.60.1](https://github.com/kapetacom/local-cluster-service/compare/v0.60.0...v0.60.1) (2024-08-06)
|
2
9
|
|
3
10
|
|
@@ -677,7 +677,7 @@ class StormEventParser {
|
|
677
677
|
let options = {};
|
678
678
|
if (kind.includes('java')) {
|
679
679
|
const groupId = `ai.${StormEventParser.toSafeName(handle)}`;
|
680
|
-
const artifactId = StormEventParser.
|
680
|
+
const artifactId = StormEventParser.toSafeArtifactName(this.planName);
|
681
681
|
options = {
|
682
682
|
groupId,
|
683
683
|
artifactId,
|
@@ -677,7 +677,7 @@ class StormEventParser {
|
|
677
677
|
let options = {};
|
678
678
|
if (kind.includes('java')) {
|
679
679
|
const groupId = `ai.${StormEventParser.toSafeName(handle)}`;
|
680
|
-
const artifactId = StormEventParser.
|
680
|
+
const artifactId = StormEventParser.toSafeArtifactName(this.planName);
|
681
681
|
options = {
|
682
682
|
groupId,
|
683
683
|
artifactId,
|
package/package.json
CHANGED
@@ -882,7 +882,7 @@ export class StormEventParser {
|
|
882
882
|
|
883
883
|
if (kind.includes('java')) {
|
884
884
|
const groupId = `ai.${StormEventParser.toSafeName(handle)}`;
|
885
|
-
const artifactId = StormEventParser.
|
885
|
+
const artifactId = StormEventParser.toSafeArtifactName(this.planName);
|
886
886
|
options = {
|
887
887
|
groupId,
|
888
888
|
artifactId,
|