Skip to content

Commit

Permalink
feat: Release 7.4.0 (#5115)
Browse files Browse the repository at this point in the history
* fix(doc): update release notes
renamed RELEASE_NOTES.md to CHANGELOG.md to be more conventional

* build: bump patch version

* build:prepare release v7.4.0

* build:prepare for next development iteration
  • Loading branch information
jeremylong committed Dec 4, 2022
1 parent afb09b3 commit e6f947d
Show file tree
Hide file tree
Showing 9 changed files with 249 additions and 176 deletions.
27 changes: 20 additions & 7 deletions .github/workflows/release.yml
Expand Up @@ -2,7 +2,7 @@ name: Build and Deploy Release

##
## Automates the release process
## 1. Update the 'body:' below and the release_notes.md
## 1. Update the 'body:' below and the changelog.md
## 2. Run `./prepare-release.sh`
## 3. Create PR, merge PR
## 4. Run `git push origin main --tags`
Expand Down Expand Up @@ -185,12 +185,25 @@ jobs:
prerelease: false
draft: false
body: |
### Changes
- Automated release of 7.3.1 failed and only published to Central; 7.3.2 is a re-release of 7.3.1.
- Resolved several false positives and false negatives.
- Use Jackson Afterburner if still on Java 8 (#4966).
- Exclude `node_modules` from the Maven plugin's scan path (#4974).
- See the full listing of [changes](https://github.com/jeremylong/DependencyCheck/milestone/51?closed=1).
### Added
- Add support for npm package lock v2 and v3 (#5078)
- Added experimental support for Python Poetry (#5025)
- Added a vanilla HTML report for use in Jenkins (#5053)
### Changed
- Renamed `RELEASE_NOTES.md` to `CHANGELOG.md` to be more conventional
- Optimized checksum calculation to improve performance (#5112)
- Added support for scanning .NET assemblies when only the dotnet runtime is installed (#5087)
- Bumped several dependencies
### Fixed
- Fixed bug when setting the proxy port (#5076)
- Resolved several FP and FN
See the full listing of [changes](https://github.com/jeremylong/DependencyCheck/milestone/52?closed=1).
- name: Upload CLI
id: upload-release-cli
Expand Down
384 changes: 222 additions & 162 deletions RELEASE_NOTES.md → CHANGELOG.md

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion ant/pom.xml
Expand Up @@ -20,7 +20,7 @@ Copyright (c) 2013 - Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>7.3.3-SNAPSHOT</version>
<version>7.4.1-SNAPSHOT</version>
</parent>

<artifactId>dependency-check-ant</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion archetype/pom.xml
Expand Up @@ -20,7 +20,7 @@ Copyright (c) 2017 Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>7.3.3-SNAPSHOT</version>
<version>7.4.1-SNAPSHOT</version>
</parent>
<artifactId>dependency-check-plugin</artifactId>
<name>Dependency-Check Plugin Archetype</name>
Expand Down
2 changes: 1 addition & 1 deletion cli/pom.xml
Expand Up @@ -20,7 +20,7 @@ Copyright (c) 2012 - Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>7.3.3-SNAPSHOT</version>
<version>7.4.1-SNAPSHOT</version>
</parent>

<artifactId>dependency-check-cli</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion core/pom.xml
Expand Up @@ -20,7 +20,7 @@ Copyright (c) 2012 Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>7.3.3-SNAPSHOT</version>
<version>7.4.1-SNAPSHOT</version>
</parent>

<artifactId>dependency-check-core</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion maven/pom.xml
Expand Up @@ -20,7 +20,7 @@ Copyright (c) 2013 Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>7.3.3-SNAPSHOT</version>
<version>7.4.1-SNAPSHOT</version>
</parent>
<artifactId>dependency-check-maven</artifactId>
<packaging>maven-plugin</packaging>
Expand Down
2 changes: 1 addition & 1 deletion pom.xml
Expand Up @@ -20,7 +20,7 @@ Copyright (c) 2012 - Jeremy Long

<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>7.3.3-SNAPSHOT</version>
<version>7.4.1-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
Expand Down
2 changes: 1 addition & 1 deletion utils/pom.xml
Expand Up @@ -20,7 +20,7 @@ Copyright (c) 2014 - Jeremy Long. All Rights Reserved.
<parent>
<groupId>org.owasp</groupId>
<artifactId>dependency-check-parent</artifactId>
<version>7.3.3-SNAPSHOT</version>
<version>7.4.1-SNAPSHOT</version>
</parent>

<artifactId>dependency-check-utils</artifactId>
Expand Down

0 comments on commit e6f947d

Please sign in to comment.