@certik/skynet 0.10.1 → 0.10.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.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Changelog
2
2
 
3
+ ## 0.10.2
4
+
5
+ - Added opsgenie api key to check job automatically so it is not required to be defined in jobs
6
+
3
7
  ## 0.10.1
4
8
 
5
9
  - Fixed a bug for the new api app type
package/deploy.js CHANGED
@@ -436,6 +436,7 @@ function createModeDeploy({
436
436
  ...env,
437
437
  SKYNET_NOMAD_PRODUCTION_ADDR: null,
438
438
  SKYNET_SLACK_TOKEN: null,
439
+ OPSGENIE_API_KEY: null,
439
440
  },
440
441
  region,
441
442
  cmd: `${check.bin} ${args} ${production ? "--production" : ""}`,
@@ -594,6 +595,7 @@ function createDeploy({
594
595
  ...env,
595
596
  SKYNET_NOMAD_PRODUCTION_ADDR: null,
596
597
  SKYNET_SLACK_TOKEN: null,
598
+ OPSGENIE_API_KEY: null,
597
599
  },
598
600
  region,
599
601
  cmd: `${check.bin} ${args} ${production ? "--production" : ""}`,
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@certik/skynet",
3
- "version": "0.10.1",
3
+ "version": "0.10.2",
4
4
  "description": "Skynet Shared JS library",
5
5
  "main": "index.js",
6
6
  "author": "CertiK Engineering",