Skip to content

Commit 3396bb7

Browse files
authored
Release v0.2.0 (#198)
Signed-off-by: Salim Afiune Maya <[email protected]>
1 parent 42e0309 commit 3396bb7

File tree

4 files changed

+96
-11
lines changed

4 files changed

+96
-11
lines changed

CHANGELOG.md

Lines changed: 28 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,31 @@
1+
# v0.2.0
2+
3+
## Features
4+
* feat(cli): new event open command (#197) (Salim Afiune)([42e0309](https://github.com/lacework/go-sdk/commit/42e03096cf387a55329275c22a787ccf239c1baa))
5+
* feat(cli): filter events by severity (Salim Afiune Maya)([2d8fdf4](https://github.com/lacework/go-sdk/commit/2d8fdf46b391562205d036a8f866b4e940377f9c))
6+
* feat(cli): list events from a number of days (Salim Afiune Maya)([0474765](https://github.com/lacework/go-sdk/commit/047476548e6b86dcd249c8f37b0cfb65a49a401d))
7+
* feat(cli): allow users to pass only --start flag (Salim Afiune Maya)([547dc1d](https://github.com/lacework/go-sdk/commit/547dc1d3a8db23e9d9b411e045b6bbce6b99e161))
8+
* feat(cli): filter assessments for specific repos (Salim Afiune Maya)([6482d8e](https://github.com/lacework/go-sdk/commit/6482d8ea6ad712077fc595011cbdfee0715c04bc))
9+
* feat(cli): --active & --fixable flags to container vuln (Salim Afiune Maya)([9f027b9](https://github.com/lacework/go-sdk/commit/9f027b9b56c2b4c110281246971988881f8f1164))
10+
* feat(cli): --active & --fixable flags to host vuln (Salim Afiune Maya)([27f5197](https://github.com/lacework/go-sdk/commit/27f5197c17488a9575a8ba47f17293590a8cdbbf))
11+
* feat(cli): add emoji support for windows (Salim Afiune Maya)([0762814](https://github.com/lacework/go-sdk/commit/07628145c9e034bc8492d9e833bf9cef962996da))
12+
* feat(cli): add an emoji Go package for 🍺 🍕 🌮 (Salim Afiune Maya)([cafb8d8](https://github.com/lacework/go-sdk/commit/cafb8d8cf721e7d3259f7de5f06613d3136c28f0))
13+
* feat(cli): order vulnerabilities by total of hosts (Salim Afiune Maya)([5cfe695](https://github.com/lacework/go-sdk/commit/5cfe69538cb1c869909e4b4f321eeab7c3ac1b19))
14+
* feat(cli): new vulnerability list-assessments command (Salim Afiune Maya)([7e7191a](https://github.com/lacework/go-sdk/commit/7e7191ab1aa4b765081c91573df307d5c9113f9c))
15+
## Refactor
16+
* refactor(cli): container and host vulnerability cmds (Salim Afiune Maya)([c5c0117](https://github.com/lacework/go-sdk/commit/c5c0117492eec958159b13df36b738af48f5a5e0))
17+
* refactor: host vulnerability feature (Salim Afiune Maya)([5e9f770](https://github.com/lacework/go-sdk/commit/5e9f7700acd422f5bf0b79d3faf58ffc6ed0034b))
18+
* refactor: container vulnerability feature (Salim Afiune Maya)([bdaf126](https://github.com/lacework/go-sdk/commit/bdaf12641851b3a3bb514617ca3ae61e062bbb07))
19+
## Performance Improvements
20+
* perf(cli): retry polling on-demand container scan statuses (Salim Afiune Maya)([d14ea35](https://github.com/lacework/go-sdk/commit/d14ea3598c2f5d4ea795f3930c0e6b48698e9777))
21+
## Other Changes
22+
* chore(cli): update help messages (Salim Afiune Maya)([f1c164c](https://github.com/lacework/go-sdk/commit/f1c164c14703e6dc1faecbd566ff7be3aae822ae))
23+
* chore(cli): consistent help message for vuln cmds (Salim Afiune Maya)([f796c58](https://github.com/lacework/go-sdk/commit/f796c5835f91c5224701e60f8236fc55e663b83e))
24+
* chore(cli): leave breadcrumbs for host vuln cmds (Salim Afiune Maya)([45d8427](https://github.com/lacework/go-sdk/commit/45d8427554a9a74f40f3e97c2e0f8c0251a8450f))
25+
* ci(integration): run full tests on windows (#190) (Salim Afiune)([c5c8cf4](https://github.com/lacework/go-sdk/commit/c5c8cf4c80a2fcb40e84dcefbec4f733c5d8bc52))
26+
* test(integration): add host vulnerability tests (Salim Afiune Maya)([a5cb795](https://github.com/lacework/go-sdk/commit/a5cb7951832c4c95c64b24c80f73e06293920283))
27+
* test(integration): add container vulnerability tests (Salim Afiune Maya)([9b2c49d](https://github.com/lacework/go-sdk/commit/9b2c49d88ca962274e145028eaebb58f88ff417b))
28+
---
129
# v0.1.24
230

331
## Features

RELEASE_NOTES.md

Lines changed: 65 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,72 @@
11
# Release Notes
2-
Another day, another release. These are the release notes for the version `v0.1.24`.
2+
Introducing the new Lacework CLI `v0.2.0`
3+
4+
## What's new?
5+
6+
### Top-level vulnerability command
7+
The new `lacework vulnerability` command have two new sub-commands:
8+
* `container`: for container vulnerability assessments
9+
* `host`: for host vulnerability assessments
10+
11+
### Container Vulnerability
12+
The new `lacework vulnerability container` command has the following sub-commands:
13+
* `list-assessments`: list container vulnerability assessments (default last 7 days)
14+
* `show-assessment`: show results of a container vulnerability assessment
15+
* `scan`: request an on-demand container vulnerability assessment
16+
* `scan-status`: check the status of an on-demand container vulnerability assessment
17+
18+
### Host Vulnerability
19+
The new `lacework vulnerability host` command has the following sub-commands:
20+
* `list-cves`: list the CVEs found in the hosts in your environment
21+
* `list-hosts`: list the hosts that contain a specified CVE id in your environment
22+
* `show-assessment`: show results of a host vulnerability assessment
23+
* `scan-pkg-manifest`: request an on-demand host vulnerability assessment from a package-manifest
24+
25+
### Lacework Events
26+
* The new `lacework event open <event_id>` allows you to quickly open events in the Lacework Console to do further investigation
27+
* The `lacework event show <event_id>` also provides a direct link to the event in the Lacework Console
28+
* The `lacework events list` command can now filter by event severity, as well as filter by a specific number of days (max 7 days)
29+
30+
## What's deprecated?
31+
The following commands have been deprecated:
32+
33+
* `lacework vulnerability report` use now `lacework vulnerability container show-assessment`
34+
* `lacework vulnerability scan run` use now `lacework vulnerability container scan`
35+
* `lacework vulnerability scan show` use now `lacework vulnerability container scan-status`
36+
37+
These commands will continue to work for a number of releases showing a deprecation message similar to:
38+
```
39+
$ lacework vulnerability report
40+
(DEPRECATED) This command has been moved, use now the following command:
41+
42+
$ lacework vulnerability container show-assessment <sha256:hash>
43+
```
344

445
## Features
5-
* feat(cli): better ux in account validation (#187) (Salim Afiune)([cdd045a](https://github.com/lacework/go-sdk/commit/cdd045a830dcdc788daf77d9ea558ba4d296e003))
6-
* feat(cli): new access-tokens command (#184) (Salim Afiune)([ee338c4](https://github.com/lacework/go-sdk/commit/ee338c4afb057bf4ea578a8d0ddb48b2d39b34d3))
7-
* feat(cli): Create Jira Alert Channels 🚨 (Salim Afiune Maya)([6ca8cef](https://github.com/lacework/go-sdk/commit/6ca8ceffce1c17f3f84634da5514c059da952ca1))
8-
* feat(api): add Jira alert channel integrations (Salim Afiune Maya)([0cdb2a4](https://github.com/lacework/go-sdk/commit/0cdb2a46d820f249c0fe918320303b1061e0f5ed))
46+
* feat(cli): new event open command (#197) (Salim Afiune)([42e0309](https://github.com/lacework/go-sdk/commit/42e03096cf387a55329275c22a787ccf239c1baa))
47+
* feat(cli): filter events by severity (Salim Afiune Maya)([2d8fdf4](https://github.com/lacework/go-sdk/commit/2d8fdf46b391562205d036a8f866b4e940377f9c))
48+
* feat(cli): list events from a number of days (Salim Afiune Maya)([0474765](https://github.com/lacework/go-sdk/commit/047476548e6b86dcd249c8f37b0cfb65a49a401d))
49+
* feat(cli): allow users to pass only --start flag (Salim Afiune Maya)([547dc1d](https://github.com/lacework/go-sdk/commit/547dc1d3a8db23e9d9b411e045b6bbce6b99e161))
50+
* feat(cli): filter assessments for specific repos (Salim Afiune Maya)([6482d8e](https://github.com/lacework/go-sdk/commit/6482d8ea6ad712077fc595011cbdfee0715c04bc))
51+
* feat(cli): --active & --fixable flags to container vuln (Salim Afiune Maya)([9f027b9](https://github.com/lacework/go-sdk/commit/9f027b9b56c2b4c110281246971988881f8f1164))
52+
* feat(cli): --active & --fixable flags to host vuln (Salim Afiune Maya)([27f5197](https://github.com/lacework/go-sdk/commit/27f5197c17488a9575a8ba47f17293590a8cdbbf))
53+
* feat(cli): add emoji support for windows (Salim Afiune Maya)([0762814](https://github.com/lacework/go-sdk/commit/07628145c9e034bc8492d9e833bf9cef962996da))
54+
* feat(cli): add an emoji Go package for 🍺 🍕 🌮 (Salim Afiune Maya)([cafb8d8](https://github.com/lacework/go-sdk/commit/cafb8d8cf721e7d3259f7de5f06613d3136c28f0))
55+
* feat(cli): order vulnerabilities by total of hosts (Salim Afiune Maya)([5cfe695](https://github.com/lacework/go-sdk/commit/5cfe69538cb1c869909e4b4f321eeab7c3ac1b19))
56+
* feat(cli): new vulnerability list-assessments command (Salim Afiune Maya)([7e7191a](https://github.com/lacework/go-sdk/commit/7e7191ab1aa4b765081c91573df307d5c9113f9c))
957
## Refactor
10-
* refactor: remove legacy field min_alert_severity (#186) (Salim Afiune)([54ca38c](https://github.com/lacework/go-sdk/commit/54ca38c8c509d800e2bddca5435529f5d0b60643))
11-
## Bug Fixes
12-
* fix(cli): display integration update by/update time (Salim Afiune Maya)([7060078](https://github.com/lacework/go-sdk/commit/7060078d3f8a09a82a4efaf98c4cb15f4856f753))
58+
* refactor(cli): container and host vulnerability cmds (Salim Afiune Maya)([c5c0117](https://github.com/lacework/go-sdk/commit/c5c0117492eec958159b13df36b738af48f5a5e0))
59+
* refactor: host vulnerability feature (Salim Afiune Maya)([5e9f770](https://github.com/lacework/go-sdk/commit/5e9f7700acd422f5bf0b79d3faf58ffc6ed0034b))
60+
* refactor: container vulnerability feature (Salim Afiune Maya)([bdaf126](https://github.com/lacework/go-sdk/commit/bdaf12641851b3a3bb514617ca3ae61e062bbb07))
61+
## Performance Improvements
62+
* perf(cli): retry polling on-demand container scan statuses (Salim Afiune Maya)([d14ea35](https://github.com/lacework/go-sdk/commit/d14ea3598c2f5d4ea795f3930c0e6b48698e9777))
63+
## Other Changes
64+
* chore(cli): update help messages (Salim Afiune Maya)([f1c164c](https://github.com/lacework/go-sdk/commit/f1c164c14703e6dc1faecbd566ff7be3aae822ae))
65+
* chore(cli): consistent help message for vuln cmds (Salim Afiune Maya)([f796c58](https://github.com/lacework/go-sdk/commit/f796c5835f91c5224701e60f8236fc55e663b83e))
66+
* chore(cli): leave breadcrumbs for host vuln cmds (Salim Afiune Maya)([45d8427](https://github.com/lacework/go-sdk/commit/45d8427554a9a74f40f3e97c2e0f8c0251a8450f))
67+
* ci(integration): run full tests on windows (#190) (Salim Afiune)([c5c8cf4](https://github.com/lacework/go-sdk/commit/c5c8cf4c80a2fcb40e84dcefbec4f733c5d8bc52))
68+
* test(integration): add host vulnerability tests (Salim Afiune Maya)([a5cb795](https://github.com/lacework/go-sdk/commit/a5cb7951832c4c95c64b24c80f73e06293920283))
69+
* test(integration): add container vulnerability tests (Salim Afiune Maya)([9b2c49d](https://github.com/lacework/go-sdk/commit/9b2c49d88ca962274e145028eaebb58f88ff417b))
1370

1471
## Docker Images
1572
* `docker pull techallylw/lacework-cli:latest`

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
0.2.0-dev
1+
0.2.0-release

api/version.go

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)