Skip to content

Commit 455959d

Browse files
committed
automation: Do not warn if "enabled" property specified
1 parent 1f19fbe commit 455959d

6 files changed

Lines changed: 7 additions & 1 deletion

File tree

addOns/automation/CHANGELOG.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,6 +15,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
1515
### Fixed
1616
- Bug in handling headers with colons in the values.
1717
- Use default authentication poll frequency when none specified, if the value is less than one a progress warning occurs.
18+
- Do not warn if "enabled" property specified.
1819

1920
## [0.51.0] - 2025-07-17
2021
### Added

addOns/automation/src/main/java/org/zaproxy/addon/automation/jobs/ActiveScanConfigJob.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -95,6 +95,7 @@ public void verifyParameters(AutomationProgress progress) {
9595
JobUtils.verifyRegexes(jobData.get(key), key.toString(), progress));
9696
break;
9797

98+
case "enabled":
9899
case "name":
99100
case "type":
100101
break;

addOns/automation/src/main/java/org/zaproxy/addon/automation/jobs/ActiveScanJob.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -103,6 +103,7 @@ public void verifyParameters(AutomationProgress progress) {
103103
params, this.parameters, this.getName(), null, progress);
104104
break;
105105
case "policyDefinition":
106+
case "enabled":
106107
case "name":
107108
case "tests":
108109
case "type":

addOns/automation/src/main/java/org/zaproxy/addon/automation/jobs/ActiveScanPolicyJob.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -89,6 +89,7 @@ public void verifyParameters(AutomationProgress progress) {
8989
policyDefinition.parsePolicyDefinition(
9090
jobData.get(key), this.getName(), progress);
9191
break;
92+
case "enabled":
9293
case "name":
9394
case "tests":
9495
case "type":

addOns/sequence/CHANGELOG.md

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,8 @@ All notable changes to this add-on will be documented in this file.
44
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
55

66
## Unreleased
7-
7+
### Fixed
8+
- Do not warn if "enabled" property specified.
89

910
## [8] - 2025-01-10
1011
### Added

addOns/sequence/src/main/java/org/zaproxy/zap/extension/sequence/automation/SequenceActiveScanJob.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -116,6 +116,7 @@ public void verifyParameters(AutomationProgress progress) {
116116
params, this.parameters, this.getName(), null, progress);
117117
break;
118118
case "policyDefinition":
119+
case "enabled":
119120
case "name":
120121
case "tests":
121122
case "type":

0 commit comments

Comments
 (0)