@kapeta/local-cluster-service 0.39.2 → 0.40.1

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.
@@ -8,9 +8,10 @@ jobs:
8
8
  build:
9
9
  runs-on: ubuntu-latest
10
10
  steps:
11
- - uses: actions/checkout@v3
11
+ - uses: actions/checkout@v4
12
12
  with:
13
13
  token: ${{ secrets.BOT_TOKEN }}
14
+ fetch-depth: 0
14
15
  - uses: actions/setup-node@v3
15
16
  - run: npm ci
16
17
  - run: npm run build --if-present
package/CHANGELOG.md CHANGED
@@ -1,3 +1,17 @@
1
+ ## [0.40.1](https://github.com/kapetacom/local-cluster-service/compare/v0.40.0...v0.40.1) (2024-02-28)
2
+
3
+
4
+ ### Bug Fixes
5
+
6
+ * bump release ([1a6fbb2](https://github.com/kapetacom/local-cluster-service/commit/1a6fbb2d8095e1bc7878e35e52fe40a5a498f9e6))
7
+
8
+ # [0.40.0](https://github.com/kapetacom/local-cluster-service/compare/v0.39.2...v0.40.0) (2024-02-28)
9
+
10
+
11
+ ### Features
12
+
13
+ * add KAPETA_ENVIRONMENT_PLATFORM env variable when starting blocks ([500883f](https://github.com/kapetacom/local-cluster-service/commit/500883f05ec1e5c9a6be6e70f3a147c51b4768b0))
14
+
1
15
  ## [0.39.2](https://github.com/kapetacom/local-cluster-service/compare/v0.39.1...v0.39.2) (2024-02-27)
2
16
 
3
17
 
@@ -34,6 +34,7 @@ const DOCKER_ENV_VARS = [
34
34
  `KAPETA_LOCAL_SERVER=0.0.0.0`,
35
35
  `KAPETA_LOCAL_CLUSTER_HOST=${types_1.DOCKER_HOST_INTERNAL}`,
36
36
  `KAPETA_ENVIRONMENT_TYPE=docker`,
37
+ `KAPETA_ENVIRONMENT_PLATFORM=${node_os_1.default.platform()}`
37
38
  ];
38
39
  async function getProvider(uri) {
39
40
  const providers = await definitionsManager_1.definitionsManager.getProviderDefinitions();
@@ -34,6 +34,7 @@ const DOCKER_ENV_VARS = [
34
34
  `KAPETA_LOCAL_SERVER=0.0.0.0`,
35
35
  `KAPETA_LOCAL_CLUSTER_HOST=${types_1.DOCKER_HOST_INTERNAL}`,
36
36
  `KAPETA_ENVIRONMENT_TYPE=docker`,
37
+ `KAPETA_ENVIRONMENT_PLATFORM=${node_os_1.default.platform()}`
37
38
  ];
38
39
  async function getProvider(uri) {
39
40
  const providers = await definitionsManager_1.definitionsManager.getProviderDefinitions();
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@kapeta/local-cluster-service",
3
- "version": "0.39.2",
3
+ "version": "0.40.1",
4
4
  "description": "Manages configuration, ports and service discovery for locally running Kapeta systems",
5
5
  "type": "commonjs",
6
6
  "exports": {
@@ -48,6 +48,7 @@ const DOCKER_ENV_VARS = [
48
48
  `KAPETA_LOCAL_SERVER=0.0.0.0`,
49
49
  `KAPETA_LOCAL_CLUSTER_HOST=${DOCKER_HOST_INTERNAL}`,
50
50
  `KAPETA_ENVIRONMENT_TYPE=docker`,
51
+ `KAPETA_ENVIRONMENT_PLATFORM=${OS.platform()}`
51
52
  ];
52
53
 
53
54
  async function getProvider(uri: KapetaURI) {