Skip to content

Commit 6bb2d87

Browse files
authored
OpenJDK Update (January 2025 Patch releases) (#17141)
Signed-off-by: Andriy Redko <andriy.redko@aiven.io>
1 parent 4a48b4b commit 6bb2d87

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
@@ -77,9 +77,9 @@
7777
import java.util.stream.Stream;
7878

7979
public class DistroTestPlugin implements Plugin<Project> {
80-
private static final String SYSTEM_JDK_VERSION = "21.0.5+11";
80+
private static final String SYSTEM_JDK_VERSION = "21.0.6+71";
8181
private static final String SYSTEM_JDK_VENDOR = "adoptium";
82-
private static final String GRADLE_JDK_VERSION = "21.0.5+11";
82+
private static final String GRADLE_JDK_VERSION = "21.0.6+7";
8383
private static final String GRADLE_JDK_VENDOR = "adoptium";
8484

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

gradle/libs.versions.toml

+1-1
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ opensearch = "2.19.0"
33
lucene = "9.12.1"
44

55
bundled_jdk_vendor = "adoptium"
6-
bundled_jdk = "21.0.5+11"
6+
bundled_jdk = "21.0.6+7"
77

88
# optional dependencies
99
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("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)