From 3d78992e2194487311d62d5e6f611e1fd9a3b881 Mon Sep 17 00:00:00 2001 From: Amit Galitzky Date: Fri, 7 Jul 2023 13:02:41 -0700 Subject: [PATCH] Merge main into featureAnywhere (#525) * Add branch constants in CI workflow (#345) Signed-off-by: Tyler Ohlsen * Bump decode-uri-component (#359) Signed-off-by: Tyler Ohlsen * removed duplicate popout icon and ran prettier (#382) Signed-off-by: Amit Galitzky * Change detector out of time range modal warning into a callout warning (#384) Signed-off-by: Jackie Han Signed-off-by: Jackie Han * Fix undefined entity list when heatmap is empty (#383) Signed-off-by: Tyler Ohlsen * Updated MAINTAINERS.md to match recommended opensearch-project format. (#388) Signed-off-by: dblock * Add windows env to integration test workflow (#390) Signed-off-by: Tyler Ohlsen * Bump json5 to 2.2.3 (#393) Signed-off-by: Tyler Ohlsen * Add 2.5 release notes (#395) Signed-off-by: Tyler Ohlsen * Update cold start message (#398) Signed-off-by: Kaituo Li * upgrade filter bug (#402) Previously, we didn't actually add filter type when loading old detector. This PR fixed that. Testing done: 1. added a unit tes 2. verified e2et Signed-off-by: Kaituo Li * Changed required minimum intervals in cold start message (#411) Required minimum intervals to finish cold start is related to shingle size. This PR adds the shingle size in the computation and puts the result in the cold start message. Testing done: 1. verified changing shingle size will change the message. Signed-off-by: Kaituo Li * Bump @sideway/formula to 3.0.1 (#418) Signed-off-by: Tyler Ohlsen * Remove auto_expand_replicas override in sample data indices (#423) Signed-off-by: Tyler Ohlsen * Created untriaged issue workflow. (#422) Signed-off-by: dblock * Add 2.6 release notes (#429) Signed-off-by: Tyler Ohlsen * Fix Node.js and Yarn installation in CI (#433) Signed-off-by: Miki * run prettier command against all files (#444) Signed-off-by: Jackie Han * Add 2.7 release notes (#456) Signed-off-by: Jackie Han * updating maintainers and code owners (#476) Signed-off-by: Amit Galitzky * fixing test to pass with node 18 (#491) Signed-off-by: Amit Galitzky * add 2.8.0 release notes (#500) Signed-off-by: Kaituo Li * Remove invalid link (#470) Signed-off-by: Peter Nied Signed-off-by: Peter Nied * Remove global OUI style override (#511) Signed-off-by: Matt Provost --------- Signed-off-by: Tyler Ohlsen Signed-off-by: Amit Galitzky Signed-off-by: Jackie Han Signed-off-by: dblock Signed-off-by: Kaituo Li Signed-off-by: Miki Signed-off-by: Peter Nied Signed-off-by: Peter Nied Signed-off-by: Matt Provost Co-authored-by: Tyler Ohlsen Co-authored-by: Jackie Han Co-authored-by: Daniel (dB.) Doubrovkine Co-authored-by: Kaituo Li Co-authored-by: Miki Co-authored-by: Peter Nied Co-authored-by: Matt Provost --- .../pages/AnomalyCharts/containers/AnomaliesChart.tsx | 3 +++ public/pages/AnomalyCharts/index.scss | 5 ----- public/pages/Dashboard/utils/utils.tsx | 1 - ...maly-detection-dashboards.release-notes-2.8.0.0.md | 11 +++++++++++ 4 files changed, 14 insertions(+), 6 deletions(-) create mode 100644 release-notes/opensearch-anomaly-detection-dashboards.release-notes-2.8.0.0.md diff --git a/public/pages/AnomalyCharts/containers/AnomaliesChart.tsx b/public/pages/AnomalyCharts/containers/AnomaliesChart.tsx index 0a9a4e03..49f97213 100644 --- a/public/pages/AnomalyCharts/containers/AnomaliesChart.tsx +++ b/public/pages/AnomalyCharts/containers/AnomaliesChart.tsx @@ -171,6 +171,9 @@ export const AnomaliesChart = React.memo((props: AnomaliesChartProps) => { }} isPaused={true} commonlyUsedRanges={DATE_PICKER_QUICK_OPTIONS} + updateButtonProps={{ + fill: false, + }} /> ); diff --git a/public/pages/AnomalyCharts/index.scss b/public/pages/AnomalyCharts/index.scss index 7ec70974..ee30bd28 100644 --- a/public/pages/AnomalyCharts/index.scss +++ b/public/pages/AnomalyCharts/index.scss @@ -10,8 +10,3 @@ */ @import 'components/AlertsFlyout/alertsFlyout.scss'; - -.euiSuperUpdateButton { - background-color: transparent !important; - color: #006bb4 !important; -} diff --git a/public/pages/Dashboard/utils/utils.tsx b/public/pages/Dashboard/utils/utils.tsx index 603bb37a..451d2b90 100644 --- a/public/pages/Dashboard/utils/utils.tsx +++ b/public/pages/Dashboard/utils/utils.tsx @@ -313,7 +313,6 @@ export const buildColors = palleteBuilder( rgbColors.map(([r, g, b]) => [r, g, b, 0.8]) ); -// referred to here: https://tiny.amazon.com/337xpvcq/githelaselasblobv1822stor export const fillOutColors = (d: any, i: number, a: any[]) => { return buildColors(i / (a.length + 1)); }; diff --git a/release-notes/opensearch-anomaly-detection-dashboards.release-notes-2.8.0.0.md b/release-notes/opensearch-anomaly-detection-dashboards.release-notes-2.8.0.0.md new file mode 100644 index 00000000..f523d58e --- /dev/null +++ b/release-notes/opensearch-anomaly-detection-dashboards.release-notes-2.8.0.0.md @@ -0,0 +1,11 @@ +## Version 2.8.0.0 Release Notes + +Compatible with OpenSearch Dashboards 2.8.0 + +### Bug Fixes + +* fixing test to pass with node 18 ([#491](https://github.com/opensearch-project/anomaly-detection-dashboards-plugin/pull/491)) + +### Documentation + +* Updating maintainers and code owners ([#476](https://github.com/opensearch-project/anomaly-detection-dashboards-plugin/pull/476)) \ No newline at end of file