querysub 0.696.0 → 0.697.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.696.0",
3
+ "version": "0.697.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",
@@ -248,6 +248,18 @@ export class UpdateButtons extends qreact.Component<{
248
248
  <RenderGitRefInfo gitRef={ref} />
249
249
  </div>)}
250
250
  </button>
251
+ <button
252
+ className={buttonStyle.hsl(45, 85, 82)}
253
+ disabled={this.state.isDeploying}
254
+ title="Deploys every outdated service straight away, without asking. Same overlap as the confirmed deploy — the old instances keep running before shutting down"
255
+ onClick={() => {
256
+ this.deployAll(outdatedServices, gitInfo.latestRef);
257
+ }}
258
+ >
259
+ <div>
260
+ {bigEmoji("⚡")} <span>{this.state.isDeploying && "⏳ Deploying..." || `Deploy All Now (${outdatedServices.length})`}</span>
261
+ </div>
262
+ </button>
251
263
  </>}
252
264
  </>;
253
265
  }