-
-
Notifications
You must be signed in to change notification settings - Fork 595
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: nscuro <[email protected]>
- Loading branch information
Showing
8 changed files
with
63 additions
and
29 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
--- | ||
title: v4.12.0 | ||
type: major | ||
--- | ||
|
||
**Features:** | ||
|
||
* Raise baseline Java version to 21 - [apiserver/#3682] | ||
|
||
**Fixes:** | ||
|
||
**Upgrade Notes:** | ||
|
||
* The API server now requires Java 21 or newer. Users deploying Dependency-Track via containers | ||
don't have to do anything, since those have been shipped with Java 21 since version 4.10.0. | ||
Users deploying Dependency-Track as JAR will need to upgrade their Java installation accordingly. | ||
|
||
For a complete list of changes, refer to the respective GitHub milestones: | ||
|
||
* [API server milestone 4.12.0](https://github.com/DependencyTrack/dependency-track/milestone/27?closed=1) | ||
* [Frontend milestone 4.12.0](https://github.com/DependencyTrack/frontend/milestone/21?closed=1) | ||
|
||
We thank all organizations and individuals who contributed to this release, from logging issues to taking part in discussions on GitHub & Slack to testing of fixes. | ||
|
||
Special thanks to everyone who contributed code to implement enhancements and fix defects: | ||
|
||
###### dependency-track-apiserver.jar | ||
|
||
| Algorithm | Checksum | | ||
|:----------|:---------| | ||
| SHA-1 | | | ||
| SHA-256 | | | ||
|
||
###### dependency-track-bundled.jar | ||
|
||
| Algorithm | Checksum | | ||
|:----------|:---------| | ||
| SHA-1 | | | ||
| SHA-256 | | | ||
|
||
###### frontend-dist.zip | ||
|
||
| Algorithm | Checksum | | ||
|:----------|:---------| | ||
| SHA-1 | | | ||
| SHA-256 | | | ||
|
||
###### Software Bill of Materials (SBOM) | ||
|
||
* API Server: [bom.json](https://github.com/DependencyTrack/dependency-track/releases/download/4.12.0/bom.json) | ||
* Frontend: [bom.json](https://github.com/DependencyTrack/frontend/releases/download/4.12.0/bom.json) | ||
|
||
[apiserver/#3682]: https://github.com/DependencyTrack/dependency-track/pull/3682 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -36,7 +36,7 @@ public class ManagedHttpClientFactoryTest { | |
|
||
@Before | ||
public void before() { | ||
environmentVariables.set("http_proxy", "http://acme\\username:[email protected]:1080"); | ||
environmentVariables.set("http_proxy", "http://acme%5Cusername:[email protected]:1080"); | ||
environmentVariables.set("no_proxy", "localhost:443,127.0.0.1:8080,example.com,www.example.net"); | ||
} | ||
|
||
|