Skip to content

Commit

Permalink
Update changelog for v1.7.0 (#843)
Browse files Browse the repository at this point in the history
  • Loading branch information
cuixq committed Mar 6, 2024
1 parent 6189701 commit 037c354
Show file tree
Hide file tree
Showing 6 changed files with 32 additions and 8 deletions.
24 changes: 24 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,27 @@
# v1.7.0:

### Features

- [Feature #352](https://github.com/google/osv-scanner/issues/352) Guided Remediation
Introducing our new experimental guided remediation feature on `osv-scanner fix` subcommand.
See our [docs](https://google.github.io/osv-scanner/experimental/guided-remediation/) for detailed usage instructions.

- [Feature #805](https://github.com/google/osv-scanner/pull/805)
Include CVSS MaxSevirity in JSON output.

### Fixes

- [Bug #818](https://github.com/google/osv-scanner/pull/818)
Align GoVulncheck Go version with go.mod.

- [Bug #797](https://github.com/google/osv-scanner/pull/797)
Don't traverse gitignored dirs for gitignore files.

### Miscellaneous

- [#831](https://github.com/google/osv-scanner/pull/831)
Remove version number from the release binary name.

# v1.6.2:

### 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.2
osv-scanner version: 1.7.0
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.2"
"version": "1.7.0"
}
},
"results": []
Expand Down Expand Up @@ -149,7 +149,7 @@ Scanned <rootdir>/fixtures/locks-many/composer.lock file and found 1 package
}
}
],
"version": "1.6.2"
"version": "1.7.0"
}
},
"artifacts": [
Expand Down Expand Up @@ -490,7 +490,7 @@ Scanned <rootdir>/fixtures/locks-insecure/osv-scanner-flutter-deps.json file as
}
}
],
"version": "1.6.2"
"version": "1.7.0"
}
},
"artifacts": [
Expand Down
2 changes: 1 addition & 1 deletion internal/output/__snapshots__/sarif_test.snap
Expand Up @@ -62,7 +62,7 @@
}
}
],
"version": "1.6.2"
"version": "1.7.0"
}
},
"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.2"
"version": "1.7.0"
}
},
"artifacts": [
Expand Down
2 changes: 1 addition & 1 deletion internal/output/fixtures/test-vuln-results-a_windows.sarif
Expand Up @@ -49,7 +49,7 @@
}
}
],
"version": "1.6.0"
"version": "1.7.0"
}
},
"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.2"
var OSVVersion = "1.7.0"

0 comments on commit 037c354

Please sign in to comment.