From ab629e006e3217e92c7c0f5c53a7a5dcf0d45b4c Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Thu, 25 Jul 2024 15:42:01 -0700 Subject: [PATCH 1/3] added release notes for search-relevance (#413) (#415) * added release notes for search-relevance * added release notes for search-relevance * added release notes for search-relevance * Update release-notes/opensearch-dashboards-search-relevance.release-notes-2.16.0.0.md --------- (cherry picked from commit b521e37ff411a500acd19ac81f7c0a6e9b57a738) Signed-off-by: sumukhswamy Signed-off-by: Sumukh Swamy Signed-off-by: github-actions[bot] Co-authored-by: github-actions[bot] Co-authored-by: Sean Li --- ...shboards-search-relevance.release-notes-2.16.0.0.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 release-notes/opensearch-dashboards-search-relevance.release-notes-2.16.0.0.md diff --git a/release-notes/opensearch-dashboards-search-relevance.release-notes-2.16.0.0.md b/release-notes/opensearch-dashboards-search-relevance.release-notes-2.16.0.0.md new file mode 100644 index 0000000..2575d4c --- /dev/null +++ b/release-notes/opensearch-dashboards-search-relevance.release-notes-2.16.0.0.md @@ -0,0 +1,10 @@ +## Version 2.16.0.0 Release Notes + +Compatible with OpenSearch 2.16.0 + +### Features +* [Navigation] Register all plugins to NavGroups ([#406](https://github.com/opensearch-project/dashboards-search-relevance/pull/406)) ([#408](https://github.com/opensearch-project/dashboards-search-relevance/pull/408)) +* version decoupling support for MDS ([#407](https://github.com/opensearch-project/dashboards-search-relevance/pull/407)) ([#409](https://github.com/opensearch-project/dashboards-search-relevance/pull/409)) + +## New Contributors +@tackadam made their first contribution in ([#406](https://github.com/opensearch-project/dashboards-search-relevance/pull/406)) \ No newline at end of file From 9de91b12e3fb481006ec4e5f60deb7c3ca5a5e5d Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 30 Jul 2024 09:54:13 -0700 Subject: [PATCH 2/3] feat: make search relevance visible in first level of all use case (#416) (#418) (cherry picked from commit 87442145d96b8e43c4230a1348a67b2eac7833f6) Signed-off-by: SuZhou-Joe Signed-off-by: github-actions[bot] Co-authored-by: github-actions[bot] --- public/plugin_nav.tsx | 13 +++++++++++-- 1 file changed, 11 insertions(+), 2 deletions(-) diff --git a/public/plugin_nav.tsx b/public/plugin_nav.tsx index 500567e..6a16c04 100644 --- a/public/plugin_nav.tsx +++ b/public/plugin_nav.tsx @@ -3,11 +3,11 @@ * SPDX-License-Identifier: Apache-2.0 */ +import { i18n } from '@osd/i18n'; import { CoreSetup } from '../../../src/core/public'; import { SearchRelevancePluginSetup } from './types'; import { PLUGIN_ID } from '../common'; -import { DEFAULT_NAV_GROUPS, DEFAULT_APP_CATEGORIES, AppCategory } from '../../../src/core/public'; -import { i18n } from "@osd/i18n"; +import { DEFAULT_NAV_GROUPS, AppCategory } from '../../../src/core/public'; const searchRelevance_category: Record = { evaluateSearch: { @@ -19,11 +19,20 @@ const searchRelevance_category: Record) { core.chrome.navGroup.addNavLinksToGroup(DEFAULT_NAV_GROUPS.search, [ { id: PLUGIN_ID, category: searchRelevance_category.evaluateSearch,//change to Evaluate Search + title: titleForSearchRelevance, + showInAllNavGroup: true }, ]); } \ No newline at end of file From 27c93f13f0acbe79b932cab5209cd263d378fbe4 Mon Sep 17 00:00:00 2001 From: opensearch-ci-bot Date: Sun, 18 Aug 2024 00:23:01 +0000 Subject: [PATCH 3/3] Increment version to 2.16.0.0 Signed-off-by: opensearch-ci-bot --- opensearch_dashboards.json | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/opensearch_dashboards.json b/opensearch_dashboards.json index 03fdcf1..cd33419 100644 --- a/opensearch_dashboards.json +++ b/opensearch_dashboards.json @@ -7,6 +7,9 @@ "requiredPlugins": [ "navigation" ], - "optionalPlugins": ["dataSource","dataSourceManagement"], + "optionalPlugins": [ + "dataSource", + "dataSourceManagement" + ], "supportedOSDataSourceVersions": ">=2.8.0" } \ No newline at end of file