diff --git a/CHANGELOG.md b/CHANGELOG.md index 80e37f788..24f6e7964 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,10 @@ +# v0.6.0 + +## Features +* feat(cli): "lacework query" (hidden) command (hazedav)([4ae9ea8](https://github.com/lacework/go-sdk/commit/4ae9ea8bd077a5571cb66be4f75cef7f6c4be5af)) +## Bug Fixes +* fix(cli): Hard coding polling mechanism to start after 64 seconds (#389) (Scott Ford)([f9644a6](https://github.com/lacework/go-sdk/commit/f9644a69b1ce9d4dde40b29fdc27df458c4d289f)) +--- # v0.5.0 ## Features diff --git a/RELEASE_NOTES.md b/RELEASE_NOTES.md index a2941e85c..8faf5592f 100644 --- a/RELEASE_NOTES.md +++ b/RELEASE_NOTES.md @@ -1,26 +1,10 @@ # Release Notes -Another day, another release. These are the release notes for the version `v0.5.0`. +Another day, another release. These are the release notes for the version `v0.6.0`. ## Features -* feat: Filter vuln host list cves and show assessment by severity (#375) (Darren)([7e9313e](https://github.com/lacework/go-sdk/commit/7e9313e82f6a9af30560aac441f67bd6bee0a619)) -* feat(cli): split list of Google project id and alias (#377) (Salim Afiune)([3f8dd94](https://github.com/lacework/go-sdk/commit/3f8dd9419350d60bd3bdd5b416a2e5d7e23af89a)) -## Refactor -* refactor(cli): use official url for agent installs (#369) (Salim Afiune)([ca2d3f7](https://github.com/lacework/go-sdk/commit/ca2d3f7063dce713f6743ace9a4a07d5cc6c2119)) +* feat(cli): "lacework query" (hidden) command (hazedav)([4ae9ea8](https://github.com/lacework/go-sdk/commit/4ae9ea8bd077a5571cb66be4f75cef7f6c4be5af)) ## Bug Fixes -* fix(fmt): undetected format problem (#385) (Salim Afiune)([8161d00](https://github.com/lacework/go-sdk/commit/8161d001edcff2e0d1bd05c2a500653d9c403904)) -* fix(cli): split Azure subscriptions with parentheses (Salim Afiune Maya)([790759e](https://github.com/lacework/go-sdk/commit/790759e4c765f7dc68afebaf02be9dc7853eb3ad)) -* fix(cli): get compliance reports from AWS accounts w/aliases (Salim Afiune Maya)([2dddcb1](https://github.com/lacework/go-sdk/commit/2dddcb10094703fbd9e59cfc2f03697b50f32dc0)) -* fix(cli): Json result adheres to filters for cmd get-report (aws,gcp,azure) (#379) (Darren)([0da3db3](https://github.com/lacework/go-sdk/commit/0da3db3220e6c25b5a581a424ae9180d4e35e690)) -* fix(cli): split GCP projects with parentheses (#380) (Salim Afiune)([339d13e](https://github.com/lacework/go-sdk/commit/339d13ef3af47cc4d52e6833ae308e0d96e5349f)) -* fix(cli): match err message changed in server resp (#376) (Salim Afiune)([de7b137](https://github.com/lacework/go-sdk/commit/de7b13796ce7a5edfb173f2a868d281dce35ddc1)) -## Other Changes -* chore: run goimports-reviser to order imports (#378) (Salim Afiune)([44b8e58](https://github.com/lacework/go-sdk/commit/44b8e589e3861b849e6092db2a248f98882f5918)) -* chore(deps): bump github.com/briandowns/spinner from 1.10.0 to 1.12.0 (#374) (dependabot[bot])([e6058eb](https://github.com/lacework/go-sdk/commit/e6058ebd1ec3e82c6c7c8763ac6b1a9ef9a552db)) -* chore(deps): bump github.com/mitchellh/mapstructure from 1.3.0 to 1.4.1 (#373) (dependabot[bot])([2f40036](https://github.com/lacework/go-sdk/commit/2f40036fb827181ac9e7fc37d71a66ff916bc775)) -* chore(deps): bump github.com/kyokomi/emoji/v2 from 2.2.5 to 2.2.8 (#372) (dependabot[bot])([ec6ec28](https://github.com/lacework/go-sdk/commit/ec6ec281c41fd047521c8c6715b2b9a9e78e0a56)) -* chore(deps): bump github.com/olekukonko/tablewriter from 0.0.4 to 0.0.5 (#370) (dependabot[bot])([bdfa365](https://github.com/lacework/go-sdk/commit/bdfa365f936f775704f7c74320e162f000066ebc)) -* chore(deps): bump github.com/honeycombio/libhoney-go (#371) (dependabot[bot])([0494850](https://github.com/lacework/go-sdk/commit/0494850865c95d1f07348c17a069ea116e6fe121)) -* test(integration): fix failing test from API changes (#368) (Salim Afiune)([57b33e3](https://github.com/lacework/go-sdk/commit/57b33e360cb207b431c077937b99255f7bef4352)) +* fix(cli): Hard coding polling mechanism to start after 64 seconds (#389) (Scott Ford)([f9644a6](https://github.com/lacework/go-sdk/commit/f9644a69b1ce9d4dde40b29fdc27df458c4d289f)) ## Docker Images * `docker pull lacework/lacework-cli:latest` diff --git a/VERSION b/VERSION index 69d71cd69..09a3acfa1 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -0.5.1-dev \ No newline at end of file +0.6.0 \ No newline at end of file diff --git a/api/version.go b/api/version.go index 15cce4a3b..21b39ff38 100644 --- a/api/version.go +++ b/api/version.go @@ -1,5 +1,5 @@ // Code generated by: scripts/version_updater.sh -// File generated at: 20210413182319 +// File generated at: 20210416122357 // // <<< DO NOT EDIT >>> // @@ -7,4 +7,4 @@ package api // Version is the semver coming from the VERSION file -const Version = "0.5.1-dev" +const Version = "0.6.0"