sfdx-hardis 4.1.2 → 4.2.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/CHANGELOG.md +9 -0
- package/README.md +94 -81
- package/lib/commands/hardis/org/configure/monitoring.js +1 -1
- package/lib/commands/hardis/org/configure/monitoring.js.map +1 -1
- package/lib/commands/hardis/org/create.js +1 -12
- package/lib/commands/hardis/org/create.js.map +1 -1
- package/lib/commands/hardis/project/configure/auth.js +17 -9
- package/lib/commands/hardis/project/configure/auth.js.map +1 -1
- package/lib/commands/hardis/project/deploy/sources/dx.js +12 -1
- package/lib/commands/hardis/project/deploy/sources/dx.js.map +1 -1
- package/lib/commands/hardis/scratch/create.js +1 -11
- package/lib/commands/hardis/scratch/create.js.map +1 -1
- package/lib/common/utils/deployUtils.js +1 -0
- package/lib/common/utils/deployUtils.js.map +1 -1
- package/lib/common/utils/index.d.ts +1 -1
- package/lib/common/utils/index.js +17 -13
- package/lib/common/utils/index.js.map +1 -1
- package/lib/common/utils/orgUtils.d.ts +1 -0
- package/lib/common/utils/orgUtils.js +23 -3
- package/lib/common/utils/orgUtils.js.map +1 -1
- package/lib/hooks/prerun/check-dependencies.js +2 -2
- package/lib/hooks/prerun/check-dependencies.js.map +1 -1
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,6 +4,15 @@
|
|
|
4
4
|
|
|
5
5
|
Note: Can be used with `sfdx plugins:install sfdx-hardis@beta` and docker image `hardisgroupcom/sfdx-hardis@beta`
|
|
6
6
|
|
|
7
|
+
## [4.2.0] 2023-08-30
|
|
8
|
+
|
|
9
|
+
- Simplify UX of hardis:project:configure:auth
|
|
10
|
+
- Factorize prompting of email
|
|
11
|
+
- Expire sfdx-hardis connected app token after 3h
|
|
12
|
+
- Update documentation to add workaround in case there is a crash when retrieving all sources when initializing a DX project from an existing org
|
|
13
|
+
- Add output to explain how to not use QuickDeploy if not wanted
|
|
14
|
+
- Update Quick Deploy documentation
|
|
15
|
+
|
|
7
16
|
## [4.1.2] 2023-08-24
|
|
8
17
|
|
|
9
18
|
- When there is a crash in force:package:installed:list , do not crash but return empty array and display an error message
|