querysub 0.259.0 → 0.260.0

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/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "querysub",
3
- "version": "0.259.0",
3
+ "version": "0.260.0",
4
4
  "main": "index.js",
5
5
  "license": "MIT",
6
6
  "note1": "note on node-forge fork, see https://github.com/digitalbazaar/forge/issues/744 for details",
@@ -522,6 +522,7 @@ type ServiceConfig = ${serviceConfigType}
522
522
  this.updateUnsavedChanges(configT);
523
523
  }}
524
524
  >
525
+ <b>Update to New</b>
525
526
  <div className={css.hbox(5)}>
526
527
  <b>New</b>
527
528
  <RenderGitRefInfo gitRef={gitInfo.latestRef} />
@@ -106,6 +106,7 @@ class MachineControllerBase {
106
106
  gitFolder,
107
107
  gitRef: config.gitRef,
108
108
  });
109
+ await runPromise("yarn install", { cwd: gitFolder });
109
110
  await runPromise("bash machine-startup.sh", { cwd: os.homedir() });
110
111
  }
111
112
 
@@ -1,3 +1,5 @@
1
+ Our test node isn't appearing. What? Ugh...
2
+ - AND I think nodes are never being removed long term? Ugh...
1
3
 
2
4
  7.1) Verify quick node removal work by having a repeatedly crashing service, verifying the node exists, and then goes away on crash.
3
5