@holochain/hc-spin 0.400.1 → 0.400.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.
@@ -0,0 +1,25 @@
1
+ name: 'test'
2
+ on:
3
+ pull_request: {}
4
+
5
+ jobs:
6
+ test:
7
+ runs-on: ubuntu-latest
8
+ steps:
9
+ # Checks-out your repository under $GITHUB_WORKSPACE, so your job can access it
10
+ # Checks out a copy of your repository on the ubuntu-latest machine
11
+ - uses: actions/checkout@v3
12
+
13
+ - name: Install dependencies and build
14
+ run: yarn && yarn build
15
+
16
+ ci_pass:
17
+ if: ${{ always() }}
18
+ runs-on: 'ubuntu-latest'
19
+ needs:
20
+ - test
21
+ steps:
22
+ - name: check status
23
+ uses: re-actors/alls-green@release/v1
24
+ with:
25
+ jobs: ${{ toJSON(needs) }}
package/CHANGELOG.md CHANGED
@@ -5,9 +5,10 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
5
5
  ## \[Unreleased\]
6
6
 
7
7
  ### Added
8
-
9
8
  ### Fixed
10
-
11
9
  ### Changed
12
-
13
10
  ### Removed
11
+
12
+ ## 2025-07-31: v0.400.2
13
+ ### Fixed
14
+ - The `--network-seed` argument to hc sandbox was not actually passed on to hc sandbox. Fixed with [#33](https://github.com/holochain/hc-spin/pull/33)
@@ -13319,7 +13319,8 @@ electron.app.whenReady().then(async () => {
13319
13319
  happTargetDir ? happTargetDir : CLI_OPTS.happOrWebhappPath.path,
13320
13320
  CLI_OPTS.bootstrapUrl ? CLI_OPTS.bootstrapUrl : bootstrapUrl,
13321
13321
  CLI_OPTS.singalingUrl ? CLI_OPTS.singalingUrl : signalingUrl,
13322
- CLI_OPTS.appId
13322
+ CLI_OPTS.appId,
13323
+ CLI_OPTS.networkSeed
13323
13324
  );
13324
13325
  const lairUrls = [];
13325
13326
  sandboxPaths.forEach((sandbox) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@holochain/hc-spin",
3
- "version": "0.400.1",
4
- "holochainVersion": "0.4.0",
3
+ "version": "0.400.2",
4
+ "holochainVersion": "0.4.4",
5
5
  "description": "CLI to run Holochain aps during development.",
6
6
  "author": "matthme",
7
7
  "homepage": "https://developer.holochain.org",
@@ -35,7 +35,7 @@
35
35
  "dependencies": {
36
36
  "@electron-toolkit/preload": "^3.0.0",
37
37
  "@electron-toolkit/utils": "^3.0.0",
38
- "@holochain/client": "0.18.0",
38
+ "@holochain/client": "^0.18.1",
39
39
  "@holochain/hc-spin-rust-utils": "0.400.0",
40
40
  "@msgpack/msgpack": "^2.8.0",
41
41
  "bufferutil": "4.0.8",
package/src/main/index.ts CHANGED
@@ -311,6 +311,7 @@ app.whenReady().then(async () => {
311
311
  CLI_OPTS.bootstrapUrl ? CLI_OPTS.bootstrapUrl : bootstrapUrl,
312
312
  CLI_OPTS.singalingUrl ? CLI_OPTS.singalingUrl : signalingUrl,
313
313
  CLI_OPTS.appId,
314
+ CLI_OPTS.networkSeed,
314
315
  );
315
316
 
316
317
  const lairUrls: string[] = [];