Skip to content

Commit

Permalink
Update changelog for 1.6.2 (#779)
Browse files Browse the repository at this point in the history
  • Loading branch information
another-rex committed Jan 31, 2024
1 parent 2d2efde commit 5b4066c
Show file tree
Hide file tree
Showing 5 changed files with 26 additions and 18 deletions.
19 changes: 19 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,22 @@
# v1.6.2:

### Features

- [Feature #694](https://github.com/google/osv-scanner/pull/694)
Add subcommands! OSV-Scanner now has subcommands! The base command has been moved to `scan` (currently the only commands is `scan`).
By default if you do not pass in a command, `scan` will be used, so CLI remains backwards compatible.

This is a building block to adding the guided remediation feature. See [issue #352](https://github.com/google/osv-scanner/issues/352)
for more details!

- [Feature #776](https://github.com/google/osv-scanner/pull/776)
Add pdm lockfile support.

### API Features

- [Feature #754](https://github.com/google/osv-scanner/pull/754)
Add dependency groups to flattened vulnerabilities output.

# v1.6.0:

### Features
Expand Down
8 changes: 4 additions & 4 deletions cmd/osv-scanner/__snapshots__/main_test.snap
Expand Up @@ -9,7 +9,7 @@ No package sources found, --help for usage information.
---

[TestRun/#01 - 1]
osv-scanner version: 1.6.0
osv-scanner version: 1.6.2
commit: n/a
built at: n/a

Expand Down Expand Up @@ -102,7 +102,7 @@ Scanned <rootdir>/fixtures/locks-many/composer.lock file and found 1 package
"informationUri": "https://github.com/google/osv-scanner",
"name": "osv-scanner",
"rules": [],
"version": "1.6.0"
"version": "1.6.2"
}
},
"results": []
Expand Down Expand Up @@ -149,7 +149,7 @@ Scanned <rootdir>/fixtures/locks-many/composer.lock file and found 1 package
}
}
],
"version": "1.6.0"
"version": "1.6.2"
}
},
"artifacts": [
Expand Down Expand Up @@ -456,7 +456,7 @@ Scanned <rootdir>/fixtures/locks-insecure/osv-scanner-flutter-deps.json file as
}
}
],
"version": "1.6.0"
"version": "1.6.2"
}
},
"artifacts": [
Expand Down
13 changes: 1 addition & 12 deletions internal/output/__snapshots__/sarif_test.snap
Expand Up @@ -10,17 +10,6 @@
}
---

[TestGroupFixedVersions/#01 - 1]
{
"lockfile:/path/to/scorecard-check-osv-e2e/go.mod:GHSA-c3h9-896r-86jm,GO-2021-0053": [
"1.3.2"
],
"lockfile:/path/to/scorecard-check-osv-e2e/sub-rust-project/Cargo.lock:GHSA-m5pq-gvj9-9vr8,RUSTSEC-2022-0013": [
"1.5.5"
]
}
---

[TestPrintSARIFReport/#00 - 1]
{
"version": "2.1.0",
Expand Down Expand Up @@ -73,7 +62,7 @@
}
}
],
"version": "1.6.0"
"version": "1.6.2"
}
},
"artifacts": [
Expand Down
2 changes: 1 addition & 1 deletion internal/output/fixtures/test-vuln-results-a.sarif
Expand Up @@ -49,7 +49,7 @@
}
}
],
"version": "1.6.0"
"version": "1.6.2"
}
},
"artifacts": [
Expand Down
2 changes: 1 addition & 1 deletion internal/version/version.go
@@ -1,4 +1,4 @@
package version

// OSVVersion is the current release version, you should update this variable when doing a release
var OSVVersion = "1.6.0"
var OSVVersion = "1.6.2"

0 comments on commit 5b4066c

Please sign in to comment.