-
Notifications
You must be signed in to change notification settings - Fork 1.9k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge branch '2.x' into backport/backport-6875-to-2.x
Signed-off-by: bansvaru <[email protected]>
- Loading branch information
Showing
203 changed files
with
3,710 additions
and
1,465 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
93 changes: 93 additions & 0 deletions
93
buildSrc/src/main/java/org/opensearch/gradle/testclusters/ExtensionsProperties.java
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,93 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.gradle.testclusters; | ||
|
||
public class ExtensionsProperties { | ||
private String name; | ||
private String uniqueId; | ||
private String hostAddress; | ||
private String port; | ||
private String version; | ||
private String opensearchVersion; | ||
private String minimumCompatibleVersion; | ||
|
||
public ExtensionsProperties( | ||
String name, | ||
String uniqueId, | ||
String hostAddress, | ||
String port, | ||
String version, | ||
String opensearchVersion, | ||
String minimumCompatibleVersion | ||
) { | ||
this.name = name; | ||
this.uniqueId = uniqueId; | ||
this.hostAddress = hostAddress; | ||
this.port = port; | ||
this.version = version; | ||
this.opensearchVersion = opensearchVersion; | ||
this.minimumCompatibleVersion = minimumCompatibleVersion; | ||
} | ||
|
||
public String getName() { | ||
return name; | ||
} | ||
|
||
public void setName(String name) { | ||
this.name = name; | ||
} | ||
|
||
public String getUniqueId() { | ||
return uniqueId; | ||
} | ||
|
||
public void setUniqueId(String uniqueId) { | ||
this.uniqueId = uniqueId; | ||
} | ||
|
||
public String getHostAddress() { | ||
return hostAddress; | ||
} | ||
|
||
public void setHostAddress(String hostAddress) { | ||
this.hostAddress = hostAddress; | ||
} | ||
|
||
public String getPort() { | ||
return port; | ||
} | ||
|
||
public void setPort(String port) { | ||
this.port = port; | ||
} | ||
|
||
public String getVersion() { | ||
return version; | ||
} | ||
|
||
public void setVersion(String version) { | ||
this.version = version; | ||
} | ||
|
||
public String getOpensearchVersion() { | ||
return opensearchVersion; | ||
} | ||
|
||
public void setOpensearchVersion(String opensearchVersion) { | ||
this.opensearchVersion = opensearchVersion; | ||
} | ||
|
||
public String getMinimumCompatibleVersion() { | ||
return minimumCompatibleVersion; | ||
} | ||
|
||
public void setMinimumCompatibleVersion(String minimumCompatibleVersion) { | ||
this.minimumCompatibleVersion = minimumCompatibleVersion; | ||
} | ||
} |
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
27 changes: 27 additions & 0 deletions
27
buildSrc/src/main/java/org/opensearch/gradle/testclusters/TestExtensionsList.java
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,27 @@ | ||
/* | ||
* SPDX-License-Identifier: Apache-2.0 | ||
* | ||
* The OpenSearch Contributors require contributions made to | ||
* this file be licensed under the Apache-2.0 license or a | ||
* compatible open source license. | ||
*/ | ||
|
||
package org.opensearch.gradle.testclusters; | ||
|
||
import java.util.List; | ||
|
||
public class TestExtensionsList { | ||
private List<ExtensionsProperties> extensions; | ||
|
||
public TestExtensionsList(List<ExtensionsProperties> extensionsList) { | ||
extensions = extensionsList; | ||
} | ||
|
||
public List<ExtensionsProperties> getExtensions() { | ||
return extensions; | ||
} | ||
|
||
public void setExtensions(List<ExtensionsProperties> extensionsList) { | ||
extensions = extensionsList; | ||
} | ||
} |
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 |
---|---|---|
@@ -1,5 +1,5 @@ | ||
opensearch = 2.8.0 | ||
lucene = 9.5.0 | ||
lucene = 9.6.0 | ||
|
||
bundled_jdk_vendor = adoptium | ||
bundled_jdk = 17.0.7+7 | ||
|
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 was deleted.
Oops, something went wrong.
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 @@ | ||
2c08c7a491e9d033bb4806e0a45496e3a0667217 |
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
Oops, something went wrong.