Skip to content

Commit a114146

Browse files
committed
Updated .env release-notes and changelog for v1.2.0
1 parent 4549282 commit a114146

5 files changed

Lines changed: 12 additions & 6 deletions

File tree

.env

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
VERSION ?= v1.1.1
1+
VERSION ?= v1.2.0

.github/release-notes.md

Lines changed: 8 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,15 @@
11
## What's Changed
22

3-
## \[1.1.1\] \- 2025-09-26
3+
## \[1.2.0\] \- 2026-03-06
4+
5+
### Added
6+
7+
* Added property to `cicdmaxissues` in `ruleoverrides` config, allowing a maximum number of issues to be permitted per rule in CI/CD mode. This enables gradual remediation of existing issues by setting a threshold that can be reduced over time. Exceeding the threshold exits with a non-zero code and prints a violation summary to stderr.
8+
* When running `--list-rules`, each rule now displays its `CicdMaxIssues` value. Rules without a `cicdmaxissues` override show a default value of `0`.
9+
* Added `cicdmaxissues` support to `customregexrules`, allowing custom rules to define their own CI/CD issue threshold directly in their rule definition.
410

511
### Fixed
612

7-
* Fixed `-V` flag not able to display version for go package.
13+
* Enhanced the regex to be case-insensitive and to support `.` in repository names, enabling correct extraction of the repository name from SSH URLs in baseline scan.
814

915
### [Full Changelog](https://github.com/certinia/asist/blob/main/changelog.md)

changelog.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
66

77
---
88

9-
## \[Unreleased\]
9+
## \[1.2.0\] \- 2026-03-06
1010

1111
### Added
1212

config/config_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -700,4 +700,4 @@ func TestGetRuleCicdMaxIssues_WhenCustomRuleParsedFromJSON_ReturnsValue(t *testi
700700
if actualResult != 5 {
701701
t.Errorf("Expected 5 from JSON custom rule cicdmaxissues, got %d", actualResult)
702702
}
703-
}
703+
}

integrationtests/integration_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -864,4 +864,4 @@ func TestMaxIssues_WhenExceedsThreshold_HasViolation(t *testing.T) {
864864
if !strings.Contains(violationOutput, "2 issues (max allowed: 1)") {
865865
t.Errorf("Expected '2 issues (max allowed: 1)' in output, got: %s", violationOutput)
866866
}
867-
}
867+
}

0 commit comments

Comments
 (0)