sfdx-plugin-update-notifier 1.2.13 → 1.2.15
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 +15 -0
- package/README.md +1 -1
- package/lib/hooks/init.js +0 -1
- package/lib/hooks/init.js.map +1 -1
- package/lib/hooks/prerun.js +2 -7
- package/lib/hooks/prerun.js.map +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +15 -15
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,18 @@
|
|
|
1
|
+
## [1.2.15](https://github.com/jayree/sfdx-plugin-update-notifier/compare/v1.2.14...v1.2.15) (2023-02-17)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* **deps:** bump oclif-plugin-update-notifier from 1.5.12 to 1.5.13 ([#135](https://github.com/jayree/sfdx-plugin-update-notifier/issues/135)) ([a7fba94](https://github.com/jayree/sfdx-plugin-update-notifier/commit/a7fba943461111118263ad842d183759afa0e1d4))
|
|
7
|
+
|
|
8
|
+
## [1.2.14](https://github.com/jayree/sfdx-plugin-update-notifier/compare/v1.2.13...v1.2.14) (2023-02-10)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** bump @salesforce/kit from 1.8.4 to 1.8.5 ([#120](https://github.com/jayree/sfdx-plugin-update-notifier/issues/120)) ([4a9df1f](https://github.com/jayree/sfdx-plugin-update-notifier/commit/4a9df1fdd5b4afb0e69773a52279422cf62fe632))
|
|
14
|
+
* **deps:** bump oclif-plugin-update-notifier from 1.5.11 to 1.5.12 ([#122](https://github.com/jayree/sfdx-plugin-update-notifier/issues/122)) ([6794cd9](https://github.com/jayree/sfdx-plugin-update-notifier/commit/6794cd989e5343e5f935d9105a15930c8770ae65))
|
|
15
|
+
|
|
1
16
|
## [1.2.13](https://github.com/jayree/sfdx-plugin-update-notifier/compare/v1.2.12...v1.2.13) (2023-02-02)
|
|
2
17
|
|
|
3
18
|
|
package/README.md
CHANGED
|
@@ -21,7 +21,7 @@ $ oclif-example plugins:install sfdx-plugin-update-notifier
|
|
|
21
21
|
$ oclif-example plugins:[COMMAND]
|
|
22
22
|
running command...
|
|
23
23
|
$ sfdx plugins
|
|
24
|
-
sfdx-plugin-update-notifier 1.2.
|
|
24
|
+
sfdx-plugin-update-notifier 1.2.15
|
|
25
25
|
$ sfdx help plugins:[COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ sfdx plugins:COMMAND
|
package/lib/hooks/init.js
CHANGED
|
@@ -3,7 +3,6 @@ import Debug from 'debug';
|
|
|
3
3
|
// eslint-disable-next-line @typescript-eslint/require-await
|
|
4
4
|
export const init = async function (options) {
|
|
5
5
|
const debug = Debug(`${this.config.bin}:sfdx-plugin-update-notifier:hooks:init`);
|
|
6
|
-
debug({ CommandID: options.id });
|
|
7
6
|
if (!['plugins:install', 'plugins:uninstall'].includes(options.id)) {
|
|
8
7
|
env.setBoolean('OCLIF_DISABLE_UPDATENOTIFIER', true);
|
|
9
8
|
debug('set: OCLIF_DISABLE_UPDATENOTIFIER=true');
|
package/lib/hooks/init.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"init.js","sourceRoot":"","sources":["../../src/hooks/init.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,4DAA4D;AAC5D,MAAM,CAAC,MAAM,IAAI,GAAiB,KAAK,WAAW,OAAO;IACvD,MAAM,KAAK,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,yCAAyC,CAAC,CAAC;IACjF,
|
|
1
|
+
{"version":3,"file":"init.js","sourceRoot":"","sources":["../../src/hooks/init.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,4DAA4D;AAC5D,MAAM,CAAC,MAAM,IAAI,GAAiB,KAAK,WAAW,OAAO;IACvD,MAAM,KAAK,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,yCAAyC,CAAC,CAAC;IACjF,IAAI,CAAC,CAAC,iBAAiB,EAAE,mBAAmB,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE;QAClE,GAAG,CAAC,UAAU,CAAC,8BAA8B,EAAE,IAAI,CAAC,CAAC;QACrD,KAAK,CAAC,wCAAwC,CAAC,CAAC;KACjD;AACH,CAAC,CAAC"}
|
package/lib/hooks/prerun.js
CHANGED
|
@@ -4,7 +4,6 @@ const isContentTypeJSON = env.getString('SFDX_CONTENT_TYPE', '').toUpperCase() =
|
|
|
4
4
|
const isOutputEnabled = !(process.argv.find((arg) => ['--json', '--help', '-h'].includes(arg)) || isContentTypeJSON);
|
|
5
5
|
export const prerun = async function (options) {
|
|
6
6
|
const debug = Debug(`${this.config.bin}:sfdx-plugin-update-notifier:hooks:prerun`);
|
|
7
|
-
debug({ CommandID: options.Command.id });
|
|
8
7
|
if (env.getBoolean('SFDX_DISABLE_UPDATENOTIFIER')) {
|
|
9
8
|
debug('found: SFDX_DISABLE_UPDATENOTIFIER=true');
|
|
10
9
|
return;
|
|
@@ -19,9 +18,7 @@ export const prerun = async function (options) {
|
|
|
19
18
|
updateCheckInterval: 0,
|
|
20
19
|
spawnOptions: { detached: false, stdio: 'ignore' },
|
|
21
20
|
defer: false,
|
|
22
|
-
changeLogUrl: {
|
|
23
|
-
'salesforce-alm': 'https://github.com/forcedotcom/cli/blob/main/releasenotes/README.md',
|
|
24
|
-
},
|
|
21
|
+
changeLogUrl: {},
|
|
25
22
|
ignoreDistTags: ['sf'],
|
|
26
23
|
});
|
|
27
24
|
}
|
|
@@ -29,9 +26,7 @@ export const prerun = async function (options) {
|
|
|
29
26
|
await this.config.runHook('updatenotifier', {
|
|
30
27
|
spawnOptions: { detached: true, stdio: 'ignore' },
|
|
31
28
|
defer: true,
|
|
32
|
-
changeLogUrl: {
|
|
33
|
-
'salesforce-alm': 'https://github.com/forcedotcom/cli/blob/main/releasenotes/README.md',
|
|
34
|
-
},
|
|
29
|
+
changeLogUrl: {},
|
|
35
30
|
ignoreDistTags: ['sf'],
|
|
36
31
|
});
|
|
37
32
|
}
|
package/lib/hooks/prerun.js.map
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"prerun.js","sourceRoot":"","sources":["../../src/hooks/prerun.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,iBAAiB,GAAG,GAAG,CAAC,SAAS,CAAC,mBAAmB,EAAE,EAAE,CAAC,CAAC,WAAW,EAAE,KAAK,MAAM,CAAC;AAC1F,MAAM,eAAe,GAAG,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,QAAQ,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,IAAI,iBAAiB,CAAC,CAAC;AAErH,MAAM,CAAC,MAAM,MAAM,GAAmB,KAAK,WAAW,OAAO;IAC3D,MAAM,KAAK,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,2CAA2C,CAAC,CAAC;
|
|
1
|
+
{"version":3,"file":"prerun.js","sourceRoot":"","sources":["../../src/hooks/prerun.ts"],"names":[],"mappings":"AAOA,OAAO,EAAE,GAAG,EAAE,MAAM,iBAAiB,CAAC;AACtC,OAAO,KAAK,MAAM,OAAO,CAAC;AAE1B,MAAM,iBAAiB,GAAG,GAAG,CAAC,SAAS,CAAC,mBAAmB,EAAE,EAAE,CAAC,CAAC,WAAW,EAAE,KAAK,MAAM,CAAC;AAC1F,MAAM,eAAe,GAAG,CAAC,CAAC,OAAO,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,QAAQ,EAAE,QAAQ,EAAE,IAAI,CAAC,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,IAAI,iBAAiB,CAAC,CAAC;AAErH,MAAM,CAAC,MAAM,MAAM,GAAmB,KAAK,WAAW,OAAO;IAC3D,MAAM,KAAK,GAAG,KAAK,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,GAAG,2CAA2C,CAAC,CAAC;IAEnF,IAAI,GAAG,CAAC,UAAU,CAAC,6BAA6B,CAAC,EAAE;QACjD,KAAK,CAAC,yCAAyC,CAAC,CAAC;QACjD,OAAO;KACR;IAED,IAAI,CAAC,eAAe;QAAE,OAAO;IAE7B,IAAI,CAAC,iBAAiB,EAAE,mBAAmB,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE;QACzE,OAAO;KACR;IAED,IAAI,CAAC,gBAAgB,EAAE,sBAAsB,EAAE,QAAQ,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,EAAE;QACrF,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,gBAAgB,EAAE;YAC1C,mBAAmB,EAAE,CAAC;YACtB,YAAY,EAAE,EAAE,QAAQ,EAAE,KAAK,EAAE,KAAK,EAAE,QAAQ,EAAE;YAClD,KAAK,EAAE,KAAK;YACZ,YAAY,EAAE,EAAE;YAChB,cAAc,EAAE,CAAC,IAAI,CAAC;SACvB,CAAC,CAAC;KACJ;SAAM;QACL,MAAM,IAAI,CAAC,MAAM,CAAC,OAAO,CAAC,gBAAgB,EAAE;YAC1C,YAAY,EAAE,EAAE,QAAQ,EAAE,IAAI,EAAE,KAAK,EAAE,QAAQ,EAAE;YACjD,KAAK,EAAE,IAAI;YACX,YAAY,EAAE,EAAE;YAChB,cAAc,EAAE,CAAC,IAAI,CAAC;SACvB,CAAC,CAAC;KACJ;AACH,CAAC,CAAC"}
|
package/oclif.manifest.json
CHANGED
package/package.json
CHANGED
|
@@ -1,27 +1,27 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "sfdx-plugin-update-notifier",
|
|
3
3
|
"description": "update-notifier for sfdx plugins",
|
|
4
|
-
"version": "1.2.
|
|
4
|
+
"version": "1.2.15",
|
|
5
5
|
"author": "jayree",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-update-notifier/issues",
|
|
8
8
|
"dependencies": {
|
|
9
9
|
"@oclif/core": "^2.0.8",
|
|
10
|
-
"@salesforce/kit": "^1.8.
|
|
10
|
+
"@salesforce/kit": "^1.8.5",
|
|
11
11
|
"debug": "^4.3.4",
|
|
12
12
|
"fs-extra": "^11.1.0",
|
|
13
13
|
"marked": "^4.2.12",
|
|
14
14
|
"marked-terminal": "^5.1.1",
|
|
15
|
-
"oclif-plugin-update-notifier": "^1.5.
|
|
15
|
+
"oclif-plugin-update-notifier": "^1.5.13",
|
|
16
16
|
"semver": "^7.3.8",
|
|
17
17
|
"tslib": "^2.4.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@commitlint/cli": "^17.4.
|
|
21
|
-
"@commitlint/config-conventional": "^17.4.
|
|
22
|
-
"@oclif/plugin-command-snapshot": "^3.3.
|
|
23
|
-
"@oclif/plugin-help": "^5.2.
|
|
24
|
-
"@oclif/test": "^2.3.
|
|
20
|
+
"@commitlint/cli": "^17.4.3",
|
|
21
|
+
"@commitlint/config-conventional": "^17.4.3",
|
|
22
|
+
"@oclif/plugin-command-snapshot": "^3.3.5",
|
|
23
|
+
"@oclif/plugin-help": "^5.2.4",
|
|
24
|
+
"@oclif/test": "^2.3.6",
|
|
25
25
|
"@salesforce/dev-config": "^3.1.0",
|
|
26
26
|
"@salesforce/dev-scripts": "^3.1.0",
|
|
27
27
|
"@salesforce/prettier-config": "^0.0.2",
|
|
@@ -32,28 +32,28 @@
|
|
|
32
32
|
"@types/marked": "^4.0.8",
|
|
33
33
|
"@types/marked-terminal": "^3.1.3",
|
|
34
34
|
"@types/mocha": "^10.0.1",
|
|
35
|
-
"@types/node": "^18.
|
|
35
|
+
"@types/node": "^18.13.0",
|
|
36
36
|
"@types/semver": "^7.3.13",
|
|
37
37
|
"@types/sinon": "^10.0.13",
|
|
38
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
39
|
-
"@typescript-eslint/parser": "^5.
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "^5.52.0",
|
|
39
|
+
"@typescript-eslint/parser": "^5.52.0",
|
|
40
40
|
"chai": "^4.3.7",
|
|
41
|
-
"eslint": "^8.
|
|
41
|
+
"eslint": "^8.34.0",
|
|
42
42
|
"eslint-config-prettier": "^8.6.0",
|
|
43
43
|
"eslint-config-salesforce": "^1.1.1",
|
|
44
44
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
45
45
|
"eslint-plugin-header": "^3.1.1",
|
|
46
46
|
"eslint-plugin-import": "^2.27.5",
|
|
47
|
-
"eslint-plugin-jsdoc": "^39.
|
|
47
|
+
"eslint-plugin-jsdoc": "^39.9.1",
|
|
48
48
|
"eslint-plugin-prettier": "^4.2.1",
|
|
49
49
|
"husky": "^8.0.3",
|
|
50
50
|
"is-ci": "^3.0.1",
|
|
51
51
|
"mocha": "^10.2.0",
|
|
52
52
|
"nyc": "^15.1.0",
|
|
53
|
-
"oclif": "^3.6.
|
|
53
|
+
"oclif": "^3.6.5",
|
|
54
54
|
"patch-package": "^6.5.1",
|
|
55
55
|
"pinst": "^3.0.0",
|
|
56
|
-
"prettier": "^2.8.
|
|
56
|
+
"prettier": "^2.8.4",
|
|
57
57
|
"pretty-quick": "^3.1.3",
|
|
58
58
|
"sinon": "^15.0.1",
|
|
59
59
|
"source-map-support": "^0.5.21",
|