Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Backport 2.x] Prepping for 2.6.0 release #112

Merged
merged 1 commit into from
Mar 3, 2023
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
4 changes: 2 additions & 2 deletions .github/workflows/backwards_compatibility_tests_workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ jobs:
strategy:
matrix:
java: [ 11, 17 ]
bwc_version : [ "2.5.0" ]
bwc_version : [ "2.6.0" ]
opensearch_version : [ "3.0.0-SNAPSHOT" ]

name: SRP Restart-Upgrade BWC Tests
Expand Down Expand Up @@ -42,7 +42,7 @@ jobs:
strategy:
matrix:
java: [ 11, 17 ]
bwc_version: [ "2.5.0" ]
bwc_version: [ "2.6.0" ]
opensearch_version: [ "3.0.0-SNAPSHOT" ]

name: SRP Rolling-Upgrade BWC Tests
Expand Down
4 changes: 2 additions & 2 deletions build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ validateNebulaPom.enabled = false

buildscript {
ext {
opensearch_version = "2.5.0"
opensearch_version = "2.6.0"
}

repositories {
Expand Down Expand Up @@ -81,7 +81,7 @@ dependencies {
implementation 'org.apache.httpcomponents:httpclient:4.5.13'
implementation 'org.apache.httpcomponents:httpcore:4.4.15'
implementation 'com.fasterxml.jackson.core:jackson-databind:2.14.1'
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.1'
implementation 'com.fasterxml.jackson.core:jackson-core:2.14.2'
implementation 'com.fasterxml.jackson.core:jackson-annotations:2.14.1'
implementation 'commons-logging:commons-logging:1.2'
implementation 'com.amazonaws:aws-java-sdk-sts:1.12.300'
Expand Down
4 changes: 2 additions & 2 deletions helpers/search_processing_kendra_quickstart.sh
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ set -o nounset

# Some useful constants
readonly DOCKER_IMAGE_TAG="opensearch-with-ranking-plugin"
readonly OPENSEARCH_VERSION="2.5.0"
readonly OPENSEARCH_VERSION="2.6.0"

#
# Set default values for OpenSearch (+Dashboards) image tags and plugin URL.
Expand All @@ -20,7 +20,7 @@ if [ -z "${OPENSEARCH_DASHBOARDS_IMAGE_TAG:-}" ]; then
OPENSEARCH_DASHBOARDS_IMAGE_TAG="opensearchproject/opensearch-dashboards:${OPENSEARCH_VERSION}"
fi
if [ -z "${SEARCH_PROCESSOR_PLUGIN_URL:-}" ]; then
SEARCH_PROCESSOR_PLUGIN_URL="https://github.com/opensearch-project/search-processor/releases/download/${OPENSEARCH_VERSION}/search-processor.zip"
SEARCH_PROCESSOR_PLUGIN_URL="https://github.com/opensearch-project/search-processor/releases/download/${OPENSEARCH_VERSION}/opensearch-search-processor-${OPENSEARCH_VERSION}.0.zip"
fi

function print_help() {
Expand Down
13 changes: 13 additions & 0 deletions release-notes/search-processor.release-notes-2.6.0.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
## Version 2.6.0 Release Notes

### Enhancements
* Add more test coverage [#100](https://github.com/opensearch-project/search-processor/pull/100)

### Infrastructure
* Update artifact name [#106](https://github.com/opensearch-project/search-processor/pull/106)

### Maintenance
* Bumping plugin version to `2.6.0` and `jackson-core` version to `2.14.2` [#110](https://github.com/opensearch-project/search-processor/pull/110)

### Documentation
* Adding `2.6.0` release notes [#110](https://github.com/opensearch-project/search-processor/pull/110)