@salesforce/plugin-auth 1.8.1 → 2.0.1
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 +21 -0
- package/README.md +380 -89
- package/lib/commands/auth/accesstoken/store.js +16 -9
- package/lib/commands/auth/accesstoken/store.js.map +1 -1
- package/lib/commands/auth/device/login.js +6 -2
- package/lib/commands/auth/device/login.js.map +1 -1
- package/lib/commands/auth/jwt/grant.js +7 -3
- package/lib/commands/auth/jwt/grant.js.map +1 -1
- package/lib/commands/auth/list.d.ts +2 -2
- package/lib/commands/auth/list.js +16 -9
- package/lib/commands/auth/list.js.map +1 -1
- package/lib/commands/auth/logout.js +24 -11
- package/lib/commands/auth/logout.js.map +1 -1
- package/lib/commands/auth/sfdxurl/store.js +13 -5
- package/lib/commands/auth/sfdxurl/store.js.map +1 -1
- package/lib/commands/auth/web/login.js +8 -4
- package/lib/commands/auth/web/login.js.map +1 -1
- package/lib/common.d.ts +0 -10
- package/lib/common.js +3 -60
- package/lib/common.js.map +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +20 -14
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,27 @@
|
|
|
2
2
|
|
|
3
3
|
All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
### [2.0.1](https://github.com/salesforcecli/plugin-auth/compare/v2.0.0...v2.0.1) (2022-04-21)
|
|
6
|
+
|
|
7
|
+
### Bug Fixes
|
|
8
|
+
|
|
9
|
+
- force a new release ([#390](https://github.com/salesforcecli/plugin-auth/issues/390)) ([0fc1e05](https://github.com/salesforcecli/plugin-auth/commit/0fc1e0592073a75fd5bf8adf1de832643c530657))
|
|
10
|
+
|
|
11
|
+
## [2.0.0](https://github.com/salesforcecli/plugin-auth/compare/v1.8.2...v2.0.0) (2022-04-11)
|
|
12
|
+
|
|
13
|
+
### Bug Fixes
|
|
14
|
+
|
|
15
|
+
- building with core3 command5 ([f69c752](https://github.com/salesforcecli/plugin-auth/commit/f69c752a27739433736a837bd61602daf4240dd1))
|
|
16
|
+
- use node 14 explicitly ([#386](https://github.com/salesforcecli/plugin-auth/issues/386)) ([c1ca07d](https://github.com/salesforcecli/plugin-auth/commit/c1ca07de356a035c428b268a2897e8254b28ca8f))
|
|
17
|
+
- use node lts ([#385](https://github.com/salesforcecli/plugin-auth/issues/385)) ([1b4c903](https://github.com/salesforcecli/plugin-auth/commit/1b4c90336af70ad0e9b4464ea171399a6705436d))
|
|
18
|
+
- use oclif not @oclif/dev-cli ([#384](https://github.com/salesforcecli/plugin-auth/issues/384)) ([6ff0a1d](https://github.com/salesforcecli/plugin-auth/commit/6ff0a1d8fdb16c5fd738d47b30d9ef780c0faaed))
|
|
19
|
+
|
|
20
|
+
### [1.8.2](https://github.com/salesforcecli/plugin-auth/compare/v1.8.1...v1.8.2) (2022-03-30)
|
|
21
|
+
|
|
22
|
+
### Bug Fixes
|
|
23
|
+
|
|
24
|
+
- set isDevHub when --setdefaultdevhubusername is passed ([#375](https://github.com/salesforcecli/plugin-auth/issues/375)) ([811f464](https://github.com/salesforcecli/plugin-auth/commit/811f464d2bf16f18798bd4f515c3229f998d4384))
|
|
25
|
+
|
|
5
26
|
### [1.8.1](https://github.com/salesforcecli/plugin-auth/compare/v1.8.0...v1.8.1) (2022-01-31)
|
|
6
27
|
|
|
7
28
|
### Bug Fixes
|