Skip to content

Commit

Permalink
Prepare for v1.4.3 release (#629)
Browse files Browse the repository at this point in the history
  • Loading branch information
cuixq committed Nov 2, 2023
1 parent 2b7f858 commit 6316373
Show file tree
Hide file tree
Showing 3 changed files with 20 additions and 2 deletions.
18 changes: 18 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,21 @@
# v1.4.3:

### Features
- [Feature #621](https://github.com/google/osv-scanner/pull/621)
Add support for scanning vendored C/C++ files.
- [Feature #581](https://github.com/google/osv-scanner/pull/581)
Scan submodules commit hashes.

### Fixes
- [Bug #626](https://github.com/google/osv-scanner/issues/626)
Fix gitignore matching for root directory
- [Bug #622](https://github.com/google/osv-scanner/issues/622)
Go binary not found should not be an error
- [Bug #588](https://github.com/google/osv-scanner/issues/588)
handle npm/yarn aliased packages
- [Bug #607](https://github.com/google/osv-scanner/pull/607)
fix: remove some extra newlines in sarif report

# v1.4.2:

### Fixes
Expand Down
2 changes: 1 addition & 1 deletion internal/output/fixtures/test-vuln-results-a.sarif
Expand Up @@ -49,7 +49,7 @@
}
}
],
"version": "1.4.2"
"version": "1.4.3"
}
},
"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.4.2"
var OSVVersion = "1.4.3"

0 comments on commit 6316373

Please sign in to comment.