From 90e628cb43c44a9d9d1a18e646e168ea7bccaabf Mon Sep 17 00:00:00 2001 From: Rex P <106129829+another-rex@users.noreply.github.com> Date: Wed, 8 May 2024 15:42:15 +1000 Subject: [PATCH] v1.7.3 changelog and version bump (#972) --- CHANGELOG.md | 11 +++++++++++ cmd/osv-scanner/__snapshots__/main_test.snap | 8 ++++---- internal/output/__snapshots__/sarif_test.snap | 2 +- internal/version/version.go | 2 +- 4 files changed, 17 insertions(+), 6 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a3b9028738..f968332b7b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,14 @@ +# v1.7.3: + +### Features: + +- [Feature #934](https://github.com/google/osv-scanner/pull/934) add support for PNPM v9 lockfiles. + +### Fixes: + +- [Bug #938](https://github.com/google/osv-scanner/issues/938) Ensure the sarif output has a stable order. +- [Bug #922](https://github.com/google/osv-scanner/issues/922) Support filtering on alias IDs in Guided Remediation. + # v1.7.2: ### Fixes: diff --git a/cmd/osv-scanner/__snapshots__/main_test.snap b/cmd/osv-scanner/__snapshots__/main_test.snap index fa4c37b28f..baf1e4674a 100755 --- a/cmd/osv-scanner/__snapshots__/main_test.snap +++ b/cmd/osv-scanner/__snapshots__/main_test.snap @@ -9,7 +9,7 @@ No package sources found, --help for usage information. --- [TestRun/#01 - 1] -osv-scanner version: 1.7.2 +osv-scanner version: 1.7.3 commit: n/a built at: n/a @@ -102,7 +102,7 @@ Scanned /fixtures/locks-many/composer.lock file and found 1 package "informationUri": "https://github.com/google/osv-scanner", "name": "osv-scanner", "rules": [], - "version": "1.7.2" + "version": "1.7.3" } }, "results": [] @@ -173,7 +173,7 @@ Loaded filter from: /fixtures/go-project/osv-scanner.toml } } ], - "version": "1.7.2" + "version": "1.7.3" } }, "artifacts": [ @@ -522,7 +522,7 @@ Scanned /fixtures/locks-insecure/osv-scanner-flutter-deps.json file as } } ], - "version": "1.7.2" + "version": "1.7.3" } }, "artifacts": [ diff --git a/internal/output/__snapshots__/sarif_test.snap b/internal/output/__snapshots__/sarif_test.snap index 2a70e02472..4d0023be11 100755 --- a/internal/output/__snapshots__/sarif_test.snap +++ b/internal/output/__snapshots__/sarif_test.snap @@ -62,7 +62,7 @@ } } ], - "version": "1.7.2" + "version": "1.7.3" } }, "artifacts": [ diff --git a/internal/version/version.go b/internal/version/version.go index 4857e8dd53..a280cb9fe6 100644 --- a/internal/version/version.go +++ b/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.7.2" +var OSVVersion = "1.7.3"