@kapeta/local-cluster-service 0.33.8 → 0.33.9

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.33.9](https://github.com/kapetacom/local-cluster-service/compare/v0.33.8...v0.33.9) (2024-01-11)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * add options.fullName to local resource info ([#119](https://github.com/kapetacom/local-cluster-service/issues/119)) ([eaab5f3](https://github.com/kapetacom/local-cluster-service/commit/eaab5f37e96893d094ff7a8db8b979e7f0a903fa))
7
+
1
8
  ## [0.33.8](https://github.com/kapetacom/local-cluster-service/compare/v0.33.7...v0.33.8) (2024-01-09)
2
9
 
3
10
 
@@ -108,6 +108,8 @@ class OperatorManager {
108
108
  type: portType,
109
109
  protocol: portInfo.protocol,
110
110
  options: {
111
+ // expose as fullName since that is not operator specific, but unique
112
+ fullName: dbName,
111
113
  dbName,
112
114
  },
113
115
  credentials,
@@ -108,6 +108,8 @@ class OperatorManager {
108
108
  type: portType,
109
109
  protocol: portInfo.protocol,
110
110
  options: {
111
+ // expose as fullName since that is not operator specific, but unique
112
+ fullName: dbName,
111
113
  dbName,
112
114
  },
113
115
  credentials,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kapeta/local-cluster-service",
3
- "version": "0.33.8",
3
+ "version": "0.33.9",
4
4
  "description": "Manages configuration, ports and service discovery for locally running Kapeta systems",
5
5
  "type": "commonjs",
6
6
  "exports": {
@@ -152,6 +152,8 @@ class OperatorManager {
152
152
  type: portType,
153
153
  protocol: portInfo.protocol,
154
154
  options: {
155
+ // expose as fullName since that is not operator specific, but unique
156
+ fullName: dbName,
155
157
  dbName,
156
158
  },
157
159
  credentials,