Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .ci/bwcVersions
Original file line number Diff line number Diff line change
Expand Up @@ -54,3 +54,4 @@ BWC_VERSION:
- "3.3.0"
- "3.3.1"
- "3.3.2"
- "3.4.0"
6 changes: 6 additions & 0 deletions .github/workflows/assemble.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ jobs:
os: [ubuntu-latest, windows-latest, macos-15, ubuntu-24.04-arm]
steps:
- uses: actions/checkout@v6
# https://github.com/actions/runner-images/issues/2840#issuecomment-790492173
- name: Remove unnecessary files Linux
if: ${{ runner.os == 'Linux' }}
run: |
sudo rm -rf /usr/share/dotnet
sudo rm -rf "$AGENT_TOOLSDIRECTORY"
- name: Set up JDK ${{ matrix.java }}
uses: actions/setup-java@v5
with:
Expand Down
2 changes: 1 addition & 1 deletion buildSrc/version.properties
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
# Please use ../gradle/libs.versions.toml for dependency management
opensearch = 3.4.0
opensearch = 3.5.0
10 changes: 10 additions & 0 deletions distribution/archives/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -244,6 +244,16 @@ subprojects {
group = "org.opensearch.distribution"
}

tasks.configureEach { t ->
if (t.name ==~ /^build.+Tar$/) {
def base = t.name - 'Tar' // buildLinuxTar -> buildLinux
def stage = tasks.findByName(base)
if (stage != null) {
t.dependsOn(stage)
}
}
}

tasks.each {
if (it.name.startsWith("build")) {
it.dependsOn project(':libs:agent-sm:agent').assemble
Expand Down
2 changes: 1 addition & 1 deletion gradle/libs.versions.toml
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
[versions]
opensearch = "3.4.0"
opensearch = "3.5.0"
lucene = "10.3.2"

bundled_jdk_vendor = "adoptium"
Expand Down
3 changes: 2 additions & 1 deletion libs/core/src/main/java/org/opensearch/Version.java
Original file line number Diff line number Diff line change
Expand Up @@ -134,7 +134,8 @@ public class Version implements Comparable<Version>, ToXContentFragment {
public static final Version V_3_3_1 = new Version(3030199, org.apache.lucene.util.Version.LUCENE_10_3_1);
public static final Version V_3_3_2 = new Version(3030299, org.apache.lucene.util.Version.LUCENE_10_3_1);
public static final Version V_3_4_0 = new Version(3040099, org.apache.lucene.util.Version.LUCENE_10_3_2);
public static final Version CURRENT = V_3_4_0;
public static final Version V_3_5_0 = new Version(3050099, org.apache.lucene.util.Version.LUCENE_10_3_2);
public static final Version CURRENT = V_3_5_0;

protected static final Map<Integer, Version> idToVersion;
protected static final Map<String, Version> stringToVersion;
Expand Down
Loading