Skip to content

Commit

Permalink
Fix type mismatch error in json unmarshal for float to struct (#1660)
Browse files Browse the repository at this point in the history
* fix for crash in lambda function cft yaml if code key is not present

* removed duplicate tag image tag

* bump up the version to 1.18.5

* added feature to parse cft template for ssm parameter

* bumped the version to 1.18.7

* bump up version to v1.18.8

* Sanitize the cft template file for aws:: words as it causes parser to fail

* Sanitize the cft template file for aws:: words as it causes parser to fail

* increment version

* Fix the int,float value to string in resource parameters

* updated version to 1.18.10

* Fix e2e test due to double digit minor version
  • Loading branch information
nmoretenable committed Dec 21, 2023
1 parent 9ce8b18 commit 3bf466d
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion pkg/version/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ package version
import "fmt"

// Terrascan The Terrascan version
const Terrascan = "1.18.10"
const Terrascan = "1.18.11"

// Get returns the terrascan version
func Get() string {
Expand Down
2 changes: 1 addition & 1 deletion test/helper/helper.go
Original file line number Diff line number Diff line change
Expand Up @@ -91,7 +91,7 @@ var (
sourceRegexPattern = regexp.MustCompile(`["]*source["]*[ \t]*[:][ \t]*["]*(.+)[\\\/](.+)["]*`)

// version is regex for 'version' attribute in violations output
versionRegexPattern = regexp.MustCompile(`["version":]*"[0-9][\.]([0-9])+[\.]([0-9])"`)
versionRegexPattern = regexp.MustCompile(`["version":]*"[0-9][\.]([0-9])+[\.]([0-9])+"`)
)

// ValidateExitCode validates the exit code of a gexec.Session
Expand Down

0 comments on commit 3bf466d

Please sign in to comment.