sfdx-hardis 2.70.0 → 2.71.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 +6 -1
- package/README.md +129 -62
- package/lib/commands/hardis/org/data/delete.d.ts +16 -0
- package/lib/commands/hardis/org/data/delete.js +64 -0
- package/lib/commands/hardis/org/data/delete.js.map +1 -0
- package/lib/commands/hardis/scratch/pool/refresh.js +3 -8
- package/lib/commands/hardis/scratch/pool/refresh.js.map +1 -1
- package/lib/commands/hardis/scratch/pool/reset.d.ts +16 -0
- package/lib/commands/hardis/scratch/pool/reset.js +75 -0
- package/lib/commands/hardis/scratch/pool/reset.js.map +1 -0
- package/lib/common/utils/dataUtils.d.ts +4 -0
- package/lib/common/utils/dataUtils.js +48 -1
- package/lib/common/utils/dataUtils.js.map +1 -1
- package/lib/common/utils/orgUtils.d.ts +1 -0
- package/lib/common/utils/orgUtils.js +11 -1
- package/lib/common/utils/orgUtils.js.map +1 -1
- package/lib/hooks/init/check-local-sfdx-hardis-files.js +1 -0
- package/lib/hooks/init/check-local-sfdx-hardis-files.js.map +1 -1
- package/messages/org.json +1 -0
- package/oclif.manifest.json +1 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -4,7 +4,12 @@
|
|
|
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
|
-
## [2.
|
|
7
|
+
## [2.71.0] 2022-03-15
|
|
8
|
+
|
|
9
|
+
- New command hardis:org:data:delete to manage [delete data workspaces](https://help.sfdmu.com/full-documentation/advanced-features/delete-from-source) of sfdmu
|
|
10
|
+
- New command hardis:scratch:pool:reset to delete all scratch orgs from a scratch orgs pool (like when a new project-scratch-def is delivered)
|
|
11
|
+
|
|
12
|
+
## [2.70.0] 2022-03-10
|
|
8
13
|
|
|
9
14
|
- hardis:org:apex:test : allow command to succeed when no tests are present in the project, useful for new environments initialization
|
|
10
15
|
|