From 29fcabc2b32cf7782180af601b4badd076c662d0 Mon Sep 17 00:00:00 2001 From: Vijayan Balasubramanian Date: Tue, 11 Jun 2024 13:18:05 -0700 Subject: [PATCH] Add release notes (#784) * Add release notes Add release note for 2.15.0. Prepare CHANGELOG for next release Signed-off-by: Vijayan Balasubramanian * update release notes Signed-off-by: Vijayan Balasubramanian --------- Signed-off-by: Vijayan Balasubramanian --- CHANGELOG.md | 12 +----------- ...rch-neural-search.release-notes-2.15.0.0.md | 18 ++++++++++++++++++ 2 files changed, 19 insertions(+), 11 deletions(-) create mode 100644 release-notes/opensearch-neural-search.release-notes-2.15.0.0.md diff --git a/CHANGELOG.md b/CHANGELOG.md index 04e5211ec..1a72fcdaa 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -12,21 +12,11 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/), ### Maintenance ### Refactoring -## [Unreleased 2.x](https://github.com/opensearch-project/neural-search/compare/2.14...2.x) +## [Unreleased 2.x](https://github.com/opensearch-project/neural-search/compare/2.15...2.x) ### Features -- Speed up NeuralSparseQuery by two-phase using a custom search pipeline.([#646](https://github.com/opensearch-project/neural-search/issues/646)) -- Support batchExecute in TextEmbeddingProcessor and SparseEncodingProcessor ([#743](https://github.com/opensearch-project/neural-search/issues/743)) ### Enhancements -- Pass empty doc collector instead of top docs collector to improve hybrid query latencies by 20% ([#731](https://github.com/opensearch-project/neural-search/pull/731)) -- Optimize parameter parsing in text chunking processor ([#733](https://github.com/opensearch-project/neural-search/pull/733)) -- Use lazy initialization for priority queue of hits and scores to improve latencies by 20% ([#746](https://github.com/opensearch-project/neural-search/pull/746)) -- Optimize max score calculation in the Query Phase of the Hybrid Search ([765](https://github.com/opensearch-project/neural-search/pull/765)) -- Implement parallel execution of sub-queries for hybrid search ([#749](https://github.com/opensearch-project/neural-search/pull/749)) ### Bug Fixes -- Total hit count fix in Hybrid Query ([756](https://github.com/opensearch-project/neural-search/pull/756)) -- Fix map type validation issue in multiple pipeline processors ([#661](https://github.com/opensearch-project/neural-search/pull/661)) ### Infrastructure -- Disable memory circuit breaker for integ tests ([#770](https://github.com/opensearch-project/neural-search/pull/770)) ### Documentation ### Maintenance ### Refactoring diff --git a/release-notes/opensearch-neural-search.release-notes-2.15.0.0.md b/release-notes/opensearch-neural-search.release-notes-2.15.0.0.md new file mode 100644 index 000000000..365ae2fc2 --- /dev/null +++ b/release-notes/opensearch-neural-search.release-notes-2.15.0.0.md @@ -0,0 +1,18 @@ +## Version 2.15.0.0 Release Notes + +Compatible with OpenSearch 2.15.0 + +### Features +* Speed up NeuralSparseQuery by two-phase using a custom search pipeline.([#646](https://github.com/opensearch-project/neural-search/issues/646)) +* Support batchExecute in TextEmbeddingProcessor and SparseEncodingProcessor ([#743](https://github.com/opensearch-project/neural-search/issues/743)) +### Enhancements +* Pass empty doc collector instead of top docs collector to improve hybrid query latencies by 20% ([#731](https://github.com/opensearch-project/neural-search/pull/731)) +* Optimize parameter parsing in text chunking processor ([#733](https://github.com/opensearch-project/neural-search/pull/733)) +* Use lazy initialization for priority queue of hits and scores to improve latencies by 20% ([#746](https://github.com/opensearch-project/neural-search/pull/746)) +* Optimize max score calculation in the Query Phase of the Hybrid Search ([765](https://github.com/opensearch-project/neural-search/pull/765)) +* Implement parallel execution of sub-queries for hybrid search ([#749](https://github.com/opensearch-project/neural-search/pull/749)) +### Bug Fixes +* Total hit count fix in Hybrid Query ([756](https://github.com/opensearch-project/neural-search/pull/756)) +* Fix map type validation issue in multiple pipeline processors ([#661](https://github.com/opensearch-project/neural-search/pull/661)) +### Infrastructure +* Disable memory circuit breaker for integ tests ([#770](https://github.com/opensearch-project/neural-search/pull/770))