-
-
Notifications
You must be signed in to change notification settings - Fork 428
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Upgrade org.bouncycastle:bcpkix-jdk15on #3765
Conversation
This upgrades addresses: * CVE-2016-1000338 * CVE-2016-1000339 * CVE-2016-1000340 * CVE-2016-1000341 * CVE-2016-1000342 * CVE-2016-1000343 * CVE-2016-1000344 * CVE-2018-1000613 * CVE-2019-17359 * CVE-2020-26939 The jdk18on jars are compiled to work with anything from Java 1.8 up. They are also multi-release jars so do support some features that were introduced in Java 9, Java 11, and Java 15. Signed-off-by: Wouter Born <github@maindrain.net>
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thanks!
@wborn. @Andy2003 - just a heads-up, it seems this is causing the fineoffsetweatherstation tests to fail - example: @Test
void testFirmware() {
byte[] data = Hex.decode("FFFF501511456173795765617468657256312E362E3400");
String firmware = new FineOffsetDataParser(Protocol.ELV).getFirmwareVersion(data);
Assertions.assertThat(firmware).isEqualTo("EasyWeatherV1.6.4");
}
|
Fixed already by openhab/openhab-addons#15470 |
This upgrades addresses:
The jdk18on jars are compiled to work with anything from Java 1.8 up. They are also multi-release jars so do support some features that were introduced in Java 9, Java 11, and Java 15.