Skip to content

Commit 21e5c80

Browse files
authored
OpenJDK Update (January 2025 Patch releases) (#17144)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
1 parent ec54fdd commit 21e5c80

File tree

3 files changed

+6
-4
lines changed

3 files changed

+6
-4
lines changed

buildSrc/src/main/java/org/opensearch/gradle/test/DistroTestPlugin.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -75,9 +75,9 @@
7575
import java.util.stream.Stream;
7676

7777
public class DistroTestPlugin implements Plugin<Project> {
78-
private static final String SYSTEM_JDK_VERSION = "8u432-b06";
78+
private static final String SYSTEM_JDK_VERSION = "8u442-b06";
7979
private static final String SYSTEM_JDK_VENDOR = "adoptium";
80-
private static final String GRADLE_JDK_VERSION = "11.0.25+9";
80+
private static final String GRADLE_JDK_VERSION = "11.0.26+4";
8181
private static final String GRADLE_JDK_VENDOR = "adoptium";
8282

8383
// all distributions used by distro tests. this is temporary until tests are per distribution

buildSrc/version.properties

+1-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@ opensearch = 1.4.0
22
lucene = 8.10.1
33

44
bundled_jdk_vendor = adoptium
5-
bundled_jdk = 11.0.25+9
5+
bundled_jdk = 11.0.26+4
66

77
# optional dependencies
88
spatial4j = 0.7

server/src/test/java/org/opensearch/common/time/DateUtilsTests.java

+3-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@
5858
import static org.hamcrest.Matchers.is;
5959

6060
public class DateUtilsTests extends OpenSearchTestCase {
61-
private static final Set<String> IGNORE = new HashSet<>(Arrays.asList("Antarctica/Vostok"));
61+
private static final Set<String> IGNORE = new HashSet<>(
62+
Arrays.asList("Antarctica/Vostok", "America/Bahia_Banderas", "America/Hermosillo", "America/Mazatlan", "Mexico/BajaSur", "WET")
63+
);
6264

6365
public void testTimezoneIds() {
6466
assertNull(DateUtils.dateTimeZoneToZoneId(null));

0 commit comments

Comments
 (0)