sfdx-hardis 6.14.2 → 6.14.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 +9 -0
- package/defaults/ci/.gitlab-ci.yml +2 -1
- package/oclif.lock +243 -243
- package/oclif.manifest.json +2159 -2159
- package/package.json +5 -5
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
|
+
## [6.14.4] 2025-12-08
|
|
8
|
+
|
|
9
|
+
- Ignore a trivy issue located in @salesforce/cli package (will be fixed by Salesforce)
|
|
10
|
+
|
|
11
|
+
## [6.14.3] 2025-12-07
|
|
12
|
+
|
|
13
|
+
- Optimize gitlab-ci workflow for scratch orgs testing step
|
|
14
|
+
- Upgrade dependencies
|
|
15
|
+
|
|
7
16
|
## [6.14.2] 2025-12-03
|
|
8
17
|
|
|
9
18
|
- Add Java (JDK 11+) to Docker image to support PMD engine in Salesforce Code Analyzer
|
|
@@ -131,6 +131,8 @@ refresh_scratch_org_pool:
|
|
|
131
131
|
# Run apex unit tests in testing scratch org
|
|
132
132
|
test_apex:
|
|
133
133
|
stage: test
|
|
134
|
+
when: delayed # Orgs just created can be not ready yet, let's wait a while before running tests
|
|
135
|
+
start_in: 2 minutes
|
|
134
136
|
tags: # Change or even remove tags if standard runners
|
|
135
137
|
- ubuntu
|
|
136
138
|
only:
|
|
@@ -146,7 +148,6 @@ test_apex:
|
|
|
146
148
|
- job: create_scratch_org
|
|
147
149
|
artifacts: true
|
|
148
150
|
script:
|
|
149
|
-
- sleep 120 # Orgs just created can be not ready yet, let's wait a while before running tests
|
|
150
151
|
- sf hardis:auth:login --scratchorg || true
|
|
151
152
|
- sf hardis:org:test:apex
|
|
152
153
|
artifacts:
|