Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

minor release 1.17.0 #1459

Merged
merged 2 commits into from
Nov 18, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
23 changes: 23 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,25 @@
# Changelog

## [v1.17.0](https://github.com/tenable/terrascan/tree/v1.17.0) (2022-11-17)

[Full Changelog](https://github.com/tenable/terrascan/compare/v1.16.0...v1.17.0)

**Implemented enhancements:**

- refs resolution [\#1445](https://github.com/tenable/terrascan/pull/1445) ([gaurav-gogia](https://github.com/gaurav-gogia))
- bump goformation from v6 to v7 [\#1440](https://github.com/tenable/terrascan/pull/1440) ([gaurav-gogia](https://github.com/gaurav-gogia))
- update cft map for elb and s3 bucket [\#1434](https://github.com/tenable/terrascan/pull/1434) ([gaurav-gogia](https://github.com/gaurav-gogia))
- Include DirScanErrors info in SARIF file [\#1398](https://github.com/tenable/terrascan/pull/1398) ([shaopeng-gh](https://github.com/shaopeng-gh))

**Merged pull requests:**

- fix remote source url [\#1437](https://github.com/tenable/terrascan/pull/1437) ([Rchanger](https://github.com/Rchanger))
- Update object.get first parameter [\#1433](https://github.com/tenable/terrascan/pull/1433) ([Matt2212](https://github.com/Matt2212))
- Update/release command [\#1430](https://github.com/tenable/terrascan/pull/1430) ([gaurav-gogia](https://github.com/gaurav-gogia))
- updated terrascan version in deployment scripts [\#1429](https://github.com/tenable/terrascan/pull/1429) ([nasir-rabbani](https://github.com/nasir-rabbani))

# Changelog

## [v1.16.0](https://github.com/tenable/terrascan/tree/v1.16.0) (2022-10-19)

[Full Changelog](https://github.com/tenable/terrascan/compare/v1.15.2...v1.16.0)
Expand Down Expand Up @@ -1090,4 +1110,7 @@ Major updates to Terrascan and the underlying architecture including:
\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*


\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*


\* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*
1 change: 1 addition & 0 deletions go.mod
Original file line number Diff line number Diff line change
Expand Up @@ -177,6 +177,7 @@ require (
go.uber.org/atomic v1.6.0 // indirect
go.uber.org/multierr v1.5.0 // indirect
golang.org/x/crypto v0.0.0-20210921155107-089bfa567519 // indirect
golang.org/x/exp/typeparams v0.0.0-20220218215828-6cf2b201936e // indirect
golang.org/x/lint v0.0.0-20200302205851-738671d3881b // indirect
golang.org/x/mod v0.6.0-dev.0.20220419223038-86c51ed26bb4 // indirect
golang.org/x/net v0.0.0-20220722155237-a158d28d115b // indirect
Expand Down
1 change: 1 addition & 0 deletions go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -1535,6 +1535,7 @@ golang.org/x/exp v0.0.0-20200207192155-f17229e696bd/go.mod h1:J/WKrq2StrnmMY6+EH
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6 h1:QE6XYQK6naiK1EPAe1g/ILLxN5RBoH5xkJk3CqlMI/Y=
golang.org/x/exp v0.0.0-20200224162631-6cc2880d07d6/go.mod h1:3jZMyOhIsHpP37uCMkUooju7aAi5cS1Q23tOzKc+0MU=
golang.org/x/exp/typeparams v0.0.0-20220218215828-6cf2b201936e h1:qyrTQ++p1afMkO4DPEeLGq/3oTsdlvdH4vqZUBWzUKM=
golang.org/x/exp/typeparams v0.0.0-20220218215828-6cf2b201936e/go.mod h1:AbB0pIl9nAr9wVwH+Z2ZpaocVmF5I4GyWCDIsVjR0bk=
golang.org/x/image v0.0.0-20190227222117-0694c2d4d067/go.mod h1:kZ7UVZpmo3dzQBMxlp+ypCbDeSB+sBbTgSJuh5dn5js=
golang.org/x/image v0.0.0-20190802002840-cff245a6509b/go.mod h1:FeLwcggjj3mMvU+oOTbSwawSJRM1uh48EjtB4UJZlP0=
golang.org/x/lint v0.0.0-20180702182130-06c8688daad7/go.mod h1:UVdnD1Gm6xHRNCYTkRU2/jEulfH38KcIWyp/GAMgvoE=
Expand Down
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.16.0"
const Terrascan = "1.17.0"

// Get returns the terrascan version
func Get() string {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
}
],
"version": "1.16.0"
"version": "1.17.0"
}
},
"results": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
}
],
"version": "1.16.0"
"version": "1.17.0"
}
},
"results": [
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@
}
}
],
"version": "1.16.0"
"version": "1.17.0"
}
},
"results": [
Expand Down