sfdx-plugin-update-notifier 1.2.2 → 1.2.4
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 +17 -0
- package/README.md +3 -3
- package/oclif.manifest.json +1 -1
- package/package.json +32 -33
package/CHANGELOG.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
## [1.2.4](https://github.com/jayree/sfdx-plugin-update-notifier/compare/v1.2.3...v1.2.4) (2022-12-16)
|
|
2
|
+
|
|
3
|
+
|
|
4
|
+
### Bug Fixes
|
|
5
|
+
|
|
6
|
+
* update dependencies ([a9ee6fc](https://github.com/jayree/sfdx-plugin-update-notifier/commit/a9ee6fc95e1894f7a7f55d66d67e885f2e50a1de))
|
|
7
|
+
|
|
8
|
+
## [1.2.3](https://github.com/jayree/sfdx-plugin-update-notifier/compare/v1.2.2...v1.2.3) (2022-10-08)
|
|
9
|
+
|
|
10
|
+
|
|
11
|
+
### Bug Fixes
|
|
12
|
+
|
|
13
|
+
* **deps:** bump @oclif/core from 1.16.3 to 1.16.5 ([6a0f596](https://github.com/jayree/sfdx-plugin-update-notifier/commit/6a0f59612f65978b9c2509350b930c5cb072dffa))
|
|
14
|
+
* **deps:** bump @salesforce/kit from 1.6.1 to 1.7.0 ([fc440e0](https://github.com/jayree/sfdx-plugin-update-notifier/commit/fc440e02f46d8c6a5963e428feb963652023748d))
|
|
15
|
+
* **deps:** bump marked from 4.1.0 to 4.1.1 ([39a9456](https://github.com/jayree/sfdx-plugin-update-notifier/commit/39a945691a8c87397c8d7435d07639b8a5588b16))
|
|
16
|
+
* **deps:** bump semver from 7.3.7 to 7.3.8 ([f1fa500](https://github.com/jayree/sfdx-plugin-update-notifier/commit/f1fa50094301bf96c481c8af30660e8077b4e273))
|
|
17
|
+
|
|
1
18
|
## [1.2.2](https://github.com/jayree/sfdx-plugin-update-notifier/compare/v1.2.1...v1.2.2) (2022-10-08)
|
|
2
19
|
|
|
3
20
|
|
package/README.md
CHANGED
|
@@ -17,11 +17,11 @@ Update notifications for sfdx plugins based on [jayree/oclif-plugin-update-notif
|
|
|
17
17
|
|
|
18
18
|
<!-- usage -->
|
|
19
19
|
```sh-session
|
|
20
|
-
$
|
|
21
|
-
$
|
|
20
|
+
$ oclif-example plugins:install sfdx-plugin-update-notifier
|
|
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.4
|
|
25
25
|
$ sfdx help plugins:[COMMAND]
|
|
26
26
|
USAGE
|
|
27
27
|
$ sfdx plugins:COMMAND
|
package/oclif.manifest.json
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":"1.2.
|
|
1
|
+
{"version":"1.2.4","commands":{}}
|
package/package.json
CHANGED
|
@@ -1,66 +1,65 @@
|
|
|
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.4",
|
|
5
5
|
"author": "jayree",
|
|
6
6
|
"type": "module",
|
|
7
7
|
"bugs": "https://github.com/jayree/sfdx-plugin-update-notifier/issues",
|
|
8
8
|
"dependencies": {
|
|
9
|
-
"@oclif/core": "^1.
|
|
10
|
-
"@salesforce/kit": "^1.
|
|
9
|
+
"@oclif/core": "^1.21.0",
|
|
10
|
+
"@salesforce/kit": "^1.8.0",
|
|
11
11
|
"debug": "^4.3.4",
|
|
12
|
-
"fs-extra": "^
|
|
13
|
-
"marked": "^4.
|
|
12
|
+
"fs-extra": "^11.1.0",
|
|
13
|
+
"marked": "^4.2.4",
|
|
14
14
|
"marked-terminal": "^5.1.1",
|
|
15
|
-
"oclif-plugin-update-notifier": "^1.5.
|
|
16
|
-
"semver": "^7.3.
|
|
17
|
-
"tslib": "^2.4.
|
|
15
|
+
"oclif-plugin-update-notifier": "^1.5.3",
|
|
16
|
+
"semver": "^7.3.8",
|
|
17
|
+
"tslib": "^2.4.1"
|
|
18
18
|
},
|
|
19
19
|
"devDependencies": {
|
|
20
|
-
"@commitlint/cli": "^17.
|
|
21
|
-
"@commitlint/config-conventional": "^17.
|
|
22
|
-
"@oclif/plugin-command-snapshot": "^3.
|
|
23
|
-
"@oclif/plugin-help": "^5.1.
|
|
24
|
-
"@oclif/test": "^2.
|
|
20
|
+
"@commitlint/cli": "^17.3.0",
|
|
21
|
+
"@commitlint/config-conventional": "^17.3.0",
|
|
22
|
+
"@oclif/plugin-command-snapshot": "^3.2.12",
|
|
23
|
+
"@oclif/plugin-help": "^5.1.20",
|
|
24
|
+
"@oclif/test": "^2.2.15",
|
|
25
25
|
"@salesforce/dev-config": "^3.1.0",
|
|
26
26
|
"@salesforce/dev-scripts": "^3.1.0",
|
|
27
27
|
"@salesforce/prettier-config": "^0.0.2",
|
|
28
|
-
"@types/chai": "^4.3.
|
|
28
|
+
"@types/chai": "^4.3.4",
|
|
29
29
|
"@types/debug": "^4.1.7",
|
|
30
30
|
"@types/fs-extra": "^9.0.13",
|
|
31
|
-
"@types/jsforce": "^1.
|
|
32
|
-
"@types/marked": "^4.0.
|
|
31
|
+
"@types/jsforce": "^1.11.0",
|
|
32
|
+
"@types/marked": "^4.0.8",
|
|
33
33
|
"@types/marked-terminal": "^3.1.3",
|
|
34
|
-
"@types/mocha": "^
|
|
35
|
-
"@types/node": "^18.
|
|
36
|
-
"@types/semver": "^7.3.
|
|
34
|
+
"@types/mocha": "^10.0.1",
|
|
35
|
+
"@types/node": "^18.11.16",
|
|
36
|
+
"@types/semver": "^7.3.13",
|
|
37
37
|
"@types/sinon": "^10.0.13",
|
|
38
|
-
"@typescript-eslint/eslint-plugin": "^5.
|
|
39
|
-
"@typescript-eslint/parser": "^5.
|
|
40
|
-
"chai": "^4.3.
|
|
41
|
-
"eslint": "^8.
|
|
38
|
+
"@typescript-eslint/eslint-plugin": "^5.46.1",
|
|
39
|
+
"@typescript-eslint/parser": "^5.46.1",
|
|
40
|
+
"chai": "^4.3.7",
|
|
41
|
+
"eslint": "^8.29.0",
|
|
42
42
|
"eslint-config-prettier": "^8.5.0",
|
|
43
43
|
"eslint-config-salesforce": "^1.1.0",
|
|
44
44
|
"eslint-config-salesforce-typescript": "^1.1.1",
|
|
45
45
|
"eslint-plugin-header": "^3.1.1",
|
|
46
46
|
"eslint-plugin-import": "^2.26.0",
|
|
47
|
-
"eslint-plugin-jsdoc": "^39.
|
|
47
|
+
"eslint-plugin-jsdoc": "^39.6.4",
|
|
48
48
|
"eslint-plugin-prettier": "^4.2.1",
|
|
49
|
-
"eslint-plugin-sf-plugin": "^1.1
|
|
50
|
-
"husky": "^8.0.
|
|
49
|
+
"eslint-plugin-sf-plugin": "^1.2.1",
|
|
50
|
+
"husky": "^8.0.2",
|
|
51
51
|
"is-ci": "^3.0.1",
|
|
52
|
-
"mocha": "^10.
|
|
52
|
+
"mocha": "^10.2.0",
|
|
53
53
|
"nyc": "^15.1.0",
|
|
54
|
-
"oclif": "^3.
|
|
55
|
-
"patch-package": "^6.
|
|
54
|
+
"oclif": "^3.4.2",
|
|
55
|
+
"patch-package": "^6.5.0",
|
|
56
56
|
"pinst": "^3.0.0",
|
|
57
|
-
"prettier": "^2.
|
|
57
|
+
"prettier": "^2.8.1",
|
|
58
58
|
"pretty-quick": "^3.1.3",
|
|
59
|
-
"sinon": "^
|
|
59
|
+
"sinon": "^15.0.1",
|
|
60
60
|
"source-map-support": "^0.5.21",
|
|
61
61
|
"ts-node": "^10.9.1",
|
|
62
|
-
"typescript": "^4.
|
|
63
|
-
"xunit-file": "^2.0.0"
|
|
62
|
+
"typescript": "^4.9.4"
|
|
64
63
|
},
|
|
65
64
|
"engines": {
|
|
66
65
|
"node": ">=14.0.0"
|