diff --git a/CHANGELOG.md b/CHANGELOG.md index c8e15d38..9e0e63bf 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,11 @@ +## v0.22.2 (August 02, 2022) + +## Bug Fixes +* fix: fixable parameter for vulnerability_exception resources (#342) (Darren)([4b5bb7a](https://github.com/lacework/terraform-provider-lacework/commit/4b5bb7a6751dccbda3532609b1c2f7cfdac9fec1)) +## Other Changes +* build(deps): bump github.com/stretchr/testify from 1.7.3 to 1.8.0 (#337) (dependabot[bot])([2229d06](https://github.com/lacework/terraform-provider-lacework/commit/2229d069c887086f4a9e5a4f23fef6ce8b14b586)) +* ci: version bump to v0.22.2-dev (Lacework)([a420033](https://github.com/lacework/terraform-provider-lacework/commit/a42003381d099ead77b5f4d1f652765f9ba5b8eb)) + ## v0.22.1 (July 22, 2022) ## Documentation Updates diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index 540be6aa..7ae391e3 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,8 +1,16 @@ # Release Notes -Another day, another release. These are the release notes for the version `v0.22.1`. +Another day, another release. These are the release notes for the version `v0.22.2`. + +This release introduces a new argument in both vulnerability exception resources, inside `vulnerability_criteria` +named `fixable_vuln`, this new argument is of type `string` and it solves the tristate boolean issue reported at +https://github.com/lacework/terraform-provider-lacework/issues/339. + +The (tres) states are: +* `"false"` (Yes! A string with value `false`) - Constraints the exception by **non-fixable** vulnerabilities +* `"true"` (A string with value `true`) - Constraints the exception by **fixable** vulnerabilities +* `""` (empty string) - **Do not filter** by fixable or non-fixable vulnerability + +**Note** that we deprecated the previous boolean argument `fixable` and it will be removed on version `v1.0`. -## Documentation Updates -* docs: adds api_token to argument reference (#348) (Salim Afiune)([2f5b07a](https://github.com/lacework/terraform-provider-lacework/commit/2f5b07a36cf0c41b01f8b390f09ebacc72ec9e32)) ## Other Changes -* ci: version bump to v0.22.1-dev (Lacework)([f0e1b40](https://github.com/lacework/terraform-provider-lacework/commit/f0e1b40b6e4ed0ae16bba6941d305edc91875b47)) -* test: Use unique API token for all integration tests (#347) (Salim Afiune)([0c85f89](https://github.com/lacework/terraform-provider-lacework/commit/0c85f892c5db68c76cc11fa0a3ef67be50399dd9)) +* build(deps): bump github.com/stretchr/testify from 1.7.3 to 1.8.0 (#337) (dependabot[bot])([2229d06](https://github.com/lacework/terraform-provider-lacework/commit/2229d069c887086f4a9e5a4f23fef6ce8b14b586)) diff --git a/VERSION b/VERSION index 3138eeac..934e07c6 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.22.2-dev \ No newline at end of file +0.22.2 \ No newline at end of file diff --git a/lacework/version.go b/lacework/version.go index 1d5bfb49..e6a1bbe2 100644 --- a/lacework/version.go +++ b/lacework/version.go @@ -1,5 +1,5 @@ // Code generated by: scripts/version_updater.sh -// File generated at: 20220722050254 +// File generated at: 20220802031313 // // <<< DO NOT EDIT >>> // @@ -7,4 +7,4 @@ package lacework // version is the semver coming from the VERSION file -const version = "0.22.2-dev" +const version = "0.22.2"