Skip to content

Commit 8617d67

Browse files
authored
Add changelog for v1.8.3 (#1150)
Update changelog for v1.8.3
1 parent 830002d commit 8617d67

File tree

5 files changed

+70
-53
lines changed

5 files changed

+70
-53
lines changed

CHANGELOG.md

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,20 @@
1+
# v1.8.3:
2+
3+
### Features:
4+
5+
- [Feature #889](https://github.com/google/osv-scanner/pull/889) OSV-Scanner now provides "vertical" output format!
6+
7+
### Fixes:
8+
9+
- [Bug #1115](https://github.com/google/osv-scanner/issues/1115) Ensure that `semantic` is passed a valid `models.Ecosystem`.
10+
- [Bug #1140](https://github.com/google/osv-scanner/pull/1140) Add Maven dependency management to override client.
11+
- [Bug #1149](https://github.com/google/osv-scanner/pull/1149) Handle Maven parent relative path.
12+
13+
### Misc:
14+
15+
- [Feature #1091](https://github.com/google/osv-scanner/pull/1091) Improved the runtime of DiffVulnerabilityResults. Thanks @neilnaveen!
16+
- [Feature #1125](https://github.com/google/osv-scanner/pull/1125) Workflow for stale issue and PR management.
17+
118
# v1.8.2:
219

320
### Features:

cmd/osv-scanner/__snapshots__/main_test.snap

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ No package sources found, --help for usage information.
99
---
1010

1111
[TestRun/#01 - 1]
12-
osv-scanner version: 1.8.2
12+
osv-scanner version: 1.8.3
1313
commit: n/a
1414
built at: n/a
1515

@@ -138,7 +138,7 @@ Scanned <rootdir>/fixtures/locks-many/composer.lock file and found 1 package
138138
"informationUri": "https://github.com/google/osv-scanner",
139139
"name": "osv-scanner",
140140
"rules": [],
141-
"version": "1.8.2"
141+
"version": "1.8.3"
142142
}
143143
},
144144
"results": []
@@ -252,7 +252,7 @@ Filtered 1 vulnerability from output
252252
}
253253
}
254254
],
255-
"version": "1.8.2"
255+
"version": "1.8.3"
256256
}
257257
},
258258
"artifacts": [
@@ -731,7 +731,7 @@ Scanned <rootdir>/fixtures/locks-insecure/osv-scanner-flutter-deps.json file as
731731
}
732732
}
733733
],
734-
"version": "1.8.2"
734+
"version": "1.8.3"
735735
}
736736
},
737737
"artifacts": [

docs/github-action.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ permissions:
5555

5656
jobs:
5757
scan-pr:
58-
uses: "google/osv-scanner-action/.github/workflows/[email protected].2"
58+
uses: "google/osv-scanner-action/.github/workflows/[email protected].3"
5959
```
6060
6161
### View results
@@ -98,7 +98,7 @@ permissions:
9898
9999
jobs:
100100
scan-scheduled:
101-
uses: "google/osv-scanner-action/.github/workflows/[email protected].2"
101+
uses: "google/osv-scanner-action/.github/workflows/[email protected].3"
102102
```
103103

104104
As written, the scanner will run on 12:30 pm UTC every Monday, and also on every push to the main branch. You can change the schedule by following the instructions [here](https://docs.github.com/en/actions/using-workflows/events-that-trigger-workflows#schedule).
@@ -133,7 +133,7 @@ permissions:
133133

134134
jobs:
135135
osv-scan:
136-
uses: "google/osv-scanner-action/.github/workflows/[email protected].2"
136+
uses: "google/osv-scanner-action/.github/workflows/[email protected].3"
137137
with:
138138
# Only scan the top level go.mod file without recursively scanning directories since
139139
# this is pipeline is about releasing the go module and binary
@@ -186,7 +186,7 @@ Examples
186186
```yml
187187
jobs:
188188
scan-pr:
189-
uses: "google/osv-scanner-action/.github/workflows/[email protected].2"
189+
uses: "google/osv-scanner-action/.github/workflows/[email protected].3"
190190
with:
191191
scan-args: |-
192192
--lockfile=./path/to/lockfile1
@@ -198,7 +198,7 @@ jobs:
198198
```yml
199199
jobs:
200200
scan-pr:
201-
uses: "google/osv-scanner-action/.github/workflows/[email protected].2"
201+
uses: "google/osv-scanner-action/.github/workflows/[email protected].3"
202202
with:
203203
scan-args: |-
204204
--recursive
@@ -225,7 +225,7 @@ jobs:
225225
name: Vulnerability scanning
226226
# makes sure the extraction step is completed before running the scanner
227227
needs: extract-deps
228-
uses: "google/osv-scanner-action/.github/workflows/[email protected].2"
228+
uses: "google/osv-scanner-action/.github/workflows/[email protected].3"
229229
with:
230230
# Download the artifact uploaded in extract-deps step
231231
download-artifact: converted-OSV-Scanner-deps

0 commit comments

Comments
 (0)