Skip to content
This repository was archived by the owner on Sep 27, 2025. It is now read-only.

Commit 53de8f0

Browse files
authored
build: Release 8.3.0 (#5767)
1 parent 313c782 commit 53de8f0

File tree

9 files changed

+36
-13
lines changed

9 files changed

+36
-13
lines changed

.github/workflows/release.yml

Lines changed: 11 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -185,13 +185,20 @@ jobs:
185185
prerelease: false
186186
draft: false
187187
body: |
188+
### Added
189+
190+
- Add LibmanAnalyzer (#5652)
191+
- Update HTML report Dependencies header based on display settings (#5619)
192+
- Add link to suppressed vulnerabilities header in HTML report (#5620)
193+
- Enable local proxy configuration in maven plugin configuration (#5696)
194+
188195
### Fixed
189196
190-
- NullPointerException in MSBuildAnalyzer (#5589)
191-
- SQL Syntax for Oracle (#5590)
192-
- Use `https://` URLs in report templates (#5582)
197+
- Fix npm alias present in requires of dependencies (#5703)
198+
- Make Central URL configurable via CLI (#5667)
199+
- Ensure support of CVSSv3.1 (#5602)
193200
194-
See the full listing of [changes](https://github.com/jeremylong/DependencyCheck/milestone/64?closed=1).
201+
See the full listing of [changes](https://github.com/jeremylong/DependencyCheck/milestone/65?closed=1).
195202
196203
- name: Upload CLI
197204
id: upload-release-cli

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,21 @@
11
# Change Log
22

3+
## [Version 8.3.0](https://github.com/jeremylong/DependencyCheck/releases/tag/v8.3.0) (2023-06-12)
4+
5+
### Added
6+
7+
- Add LibmanAnalyzer (#5652)
8+
- Update HTML report Dependencies header based on display settings (#5619)
9+
- Add link to suppressed vulnerabilities header in HTML report (#5620)
10+
- Enable local proxy configuration in maven plugin configuration (#5696)
11+
12+
### Fixed
13+
14+
- Fix npm alias present in requires of dependencies (#5703)
15+
- Make Central URL configurable via CLI (#5667)
16+
- Ensure support of CVSSv3.1 (#5602)
17+
18+
See the full listing of [changes](https://github.com/jeremylong/DependencyCheck/milestone/65?closed=1).
319

420
## [Version 8.2.1](https://github.com/jeremylong/DependencyCheck/releases/tag/v8.2.1) (2023-03-23)
521

ant/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Copyright (c) 2013 - Jeremy Long. All Rights Reserved.
2020
<parent>
2121
<groupId>org.owasp</groupId>
2222
<artifactId>dependency-check-parent</artifactId>
23-
<version>8.2.2-SNAPSHOT</version>
23+
<version>8.3.1-SNAPSHOT</version>
2424
</parent>
2525

2626
<artifactId>dependency-check-ant</artifactId>

archetype/pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,14 +20,14 @@ Copyright (c) 2017 Jeremy Long. All Rights Reserved.
2020
<parent>
2121
<groupId>org.owasp</groupId>
2222
<artifactId>dependency-check-parent</artifactId>
23-
<version>8.2.2-SNAPSHOT</version>
23+
<version>8.3.1-SNAPSHOT</version>
2424
</parent>
2525
<artifactId>dependency-check-plugin</artifactId>
2626
<name>Dependency-Check Plugin Archetype</name>
2727
<packaging>jar</packaging>
2828
<properties>
2929
<!--reproducible build-->
30-
<project.build.outputTimestamp>2023-03-23T10:32:22Z</project.build.outputTimestamp>
30+
<project.build.outputTimestamp>2023-06-10T11:06:15Z</project.build.outputTimestamp>
3131
</properties>
3232
<scm>
3333
<connection>scm:git:https://github.com/jeremylong/DependencyCheck.git</connection>

cli/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Copyright (c) 2012 - Jeremy Long. All Rights Reserved.
2020
<parent>
2121
<groupId>org.owasp</groupId>
2222
<artifactId>dependency-check-parent</artifactId>
23-
<version>8.2.2-SNAPSHOT</version>
23+
<version>8.3.1-SNAPSHOT</version>
2424
</parent>
2525

2626
<artifactId>dependency-check-cli</artifactId>

core/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
2020
<parent>
2121
<groupId>org.owasp</groupId>
2222
<artifactId>dependency-check-parent</artifactId>
23-
<version>8.2.2-SNAPSHOT</version>
23+
<version>8.3.1-SNAPSHOT</version>
2424
</parent>
2525

2626
<artifactId>dependency-check-core</artifactId>

maven/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
2020
<parent>
2121
<groupId>org.owasp</groupId>
2222
<artifactId>dependency-check-parent</artifactId>
23-
<version>8.2.2-SNAPSHOT</version>
23+
<version>8.3.1-SNAPSHOT</version>
2424
</parent>
2525
<artifactId>dependency-check-maven</artifactId>
2626
<packaging>maven-plugin</packaging>

pom.xml

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Copyright (c) 2012 - Jeremy Long
2020

2121
<groupId>org.owasp</groupId>
2222
<artifactId>dependency-check-parent</artifactId>
23-
<version>8.2.2-SNAPSHOT</version>
23+
<version>8.3.1-SNAPSHOT</version>
2424
<packaging>pom</packaging>
2525

2626
<modules>
@@ -112,7 +112,7 @@ Copyright (c) 2012 - Jeremy Long
112112
</licenses>
113113
<properties>
114114
<!--reproducible build-->
115-
<project.build.outputTimestamp>2023-03-23T10:32:22Z</project.build.outputTimestamp>
115+
<project.build.outputTimestamp>2023-06-10T11:06:15Z</project.build.outputTimestamp>
116116
<project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>
117117
<project.reporting.outputEncoding>UTF-8</project.reporting.outputEncoding>
118118
<github.global.server>github</github.global.server>

utils/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -20,7 +20,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
2020
<parent>
2121
<groupId>org.owasp</groupId>
2222
<artifactId>dependency-check-parent</artifactId>
23-
<version>8.2.2-SNAPSHOT</version>
23+
<version>8.3.1-SNAPSHOT</version>
2424
</parent>
2525

2626
<artifactId>dependency-check-utils</artifactId>

0 commit comments

Comments
 (0)