From 37a5142e676ff085453e9cf1c95fcf488133111c Mon Sep 17 00:00:00 2001 From: "opensearch-trigger-bot[bot]" <98922864+opensearch-trigger-bot[bot]@users.noreply.github.com> Date: Fri, 3 Mar 2023 14:25:32 -0800 Subject: [PATCH] Prepping for 2.6.0 release (#110) (#112) * bumping plugin version, jackson-core * changing url in script * Adding 2.6.0 release notes * updating PR links to point to main branch PRs Signed-off-by: Sean Li <lnse@amazon.com> (cherry picked from commit 70913e2052570c6070840d669a676009f1ce8bdb) Co-authored-by: Sean Li <lnse@amazon.com> --- .../backwards_compatibility_tests_workflow.yml | 4 ++-- build.gradle | 4 ++-- helpers/search_processing_kendra_quickstart.sh | 4 ++-- .../search-processor.release-notes-2.6.0.md | 13 +++++++++++++ 4 files changed, 19 insertions(+), 6 deletions(-) create mode 100644 release-notes/search-processor.release-notes-2.6.0.md diff --git a/.github/workflows/backwards_compatibility_tests_workflow.yml b/.github/workflows/backwards_compatibility_tests_workflow.yml index 996de2a..6e5217c 100644 --- a/.github/workflows/backwards_compatibility_tests_workflow.yml +++ b/.github/workflows/backwards_compatibility_tests_workflow.yml @@ -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 @@ -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 diff --git a/build.gradle b/build.gradle index 1602bdf..d9381da 100644 --- a/build.gradle +++ b/build.gradle @@ -53,7 +53,7 @@ validateNebulaPom.enabled = false buildscript { ext { - opensearch_version = "2.5.0" + opensearch_version = "2.6.0" } repositories { @@ -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' diff --git a/helpers/search_processing_kendra_quickstart.sh b/helpers/search_processing_kendra_quickstart.sh index 6cfc1b9..09a90c8 100755 --- a/helpers/search_processing_kendra_quickstart.sh +++ b/helpers/search_processing_kendra_quickstart.sh @@ -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. @@ -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() { diff --git a/release-notes/search-processor.release-notes-2.6.0.md b/release-notes/search-processor.release-notes-2.6.0.md new file mode 100644 index 0000000..fa1a22f --- /dev/null +++ b/release-notes/search-processor.release-notes-2.6.0.md @@ -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)