From 2eb53d3da6140bbf21fe4422832ba5765ab532ca Mon Sep 17 00:00:00 2001 From: Dennis Toepker Date: Fri, 1 May 2026 11:11:41 -0700 Subject: [PATCH] Version bump to 3.7 plus accompanying changes Signed-off-by: Dennis Toepker --- notifications/build.gradle | 2 +- notifications/notifications/build.gradle | 2 ++ .../notifications/model/SendTestNotificationRequestTests.kt | 2 +- 3 files changed, 4 insertions(+), 2 deletions(-) diff --git a/notifications/build.gradle b/notifications/build.gradle index 679c820ae51..8ffdeb62ab4 100644 --- a/notifications/build.gradle +++ b/notifications/build.gradle @@ -6,7 +6,7 @@ buildscript { ext { - opensearch_version = System.getProperty("opensearch.version", "3.6.0-SNAPSHOT") + opensearch_version = System.getProperty("opensearch.version", "3.7.0-SNAPSHOT") isSnapshot = "true" == System.getProperty("build.snapshot", "true") buildVersionQualifier = System.getProperty("build.version_qualifier", "") // 3.0.0-SNAPSHOT -> 3.0.0.0-SNAPSHOT diff --git a/notifications/notifications/build.gradle b/notifications/notifications/build.gradle index c4aae98a9f6..1addbd6813a 100644 --- a/notifications/notifications/build.gradle +++ b/notifications/notifications/build.gradle @@ -157,6 +157,8 @@ configurations.all { force "io.netty:netty-resolver:${versions.netty}" force "io.netty:netty-transport-native-unix-common:${versions.netty}" force "org.dafny:DafnyRuntime:4.9.0" + force "org.apache.logging.log4j:log4j-api:${versions.log4j}" + force "org.apache.logging.log4j:log4j-core:${versions.log4j}" } } diff --git a/notifications/notifications/src/test/kotlin/org/opensearch/notifications/model/SendTestNotificationRequestTests.kt b/notifications/notifications/src/test/kotlin/org/opensearch/notifications/model/SendTestNotificationRequestTests.kt index a0bff70b4cb..41e8b2ef172 100644 --- a/notifications/notifications/src/test/kotlin/org/opensearch/notifications/model/SendTestNotificationRequestTests.kt +++ b/notifications/notifications/src/test/kotlin/org/opensearch/notifications/model/SendTestNotificationRequestTests.kt @@ -4,13 +4,13 @@ */ package org.opensearch.notifications.model -import com.fasterxml.jackson.core.JsonParseException import org.junit.jupiter.api.Assertions.assertEquals import org.junit.jupiter.api.Test import org.junit.jupiter.api.assertThrows import org.opensearch.commons.utils.recreateObject import org.opensearch.notifications.createObjectFromJsonString import org.opensearch.notifications.getJsonString +import org.opensearch.tools.jackson.core.JsonParseException import kotlin.test.assertNotNull import kotlin.test.assertNull