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

Merging main branch into featureAnywhere #499

Merged
merged 22 commits into from
May 31, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
22 commits
Select commit Hold shift + click to select a range
fd180ed
Add branch constants in CI workflow (#345)
ohltyler Dec 1, 2022
0ee7503
Bump decode-uri-component (#359)
ohltyler Dec 16, 2022
6eace81
removed duplicate popout icon and ran prettier (#382)
amitgalitz Dec 22, 2022
ecd0814
Change detector out of time range modal warning into a callout warnin…
jackiehanyang Jan 4, 2023
ae5efd8
Fix undefined entity list when heatmap is empty (#383)
ohltyler Jan 4, 2023
69378e7
Updated MAINTAINERS.md to match recommended opensearch-project format…
dblock Jan 5, 2023
e5038e5
Add windows env to integration test workflow (#390)
ohltyler Jan 6, 2023
11c97ee
Bump json5 to 2.2.3 (#393)
ohltyler Jan 6, 2023
6c7514e
Add 2.5 release notes (#395)
ohltyler Jan 10, 2023
4ea29db
Update cold start message (#398)
kaituo Jan 19, 2023
5caf608
upgrade filter bug (#402)
kaituo Jan 30, 2023
e7ac417
Changed required minimum intervals in cold start message (#411)
kaituo Feb 9, 2023
015fde0
Bump @sideway/formula to 3.0.1 (#418)
ohltyler Feb 14, 2023
24cec7a
Remove auto_expand_replicas override in sample data indices (#423)
ohltyler Feb 15, 2023
0b0bc37
Created untriaged issue workflow. (#422)
dblock Feb 20, 2023
75832b6
Add 2.6 release notes (#429)
ohltyler Feb 20, 2023
bb3f185
Fix Node.js and Yarn installation in CI (#433)
AMoo-Miki Feb 22, 2023
95fd0fd
run prettier command against all files (#444)
jackiehanyang Mar 27, 2023
f0e3016
Add 2.7 release notes (#456)
jackiehanyang Apr 17, 2023
710e3c4
updating maintainers and code owners (#476)
amitgalitz May 9, 2023
93ba127
fixing test to pass with node 18 (#491)
amitgalitz May 24, 2023
ab3aef3
Merge branch 'main' into sync-main
amitgalitz May 31, 2023
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
3 changes: 1 addition & 2 deletions .github/CODEOWNERS
Validating CODEOWNERS rules …
Original file line number Diff line number Diff line change
@@ -1,2 +1 @@
# This should match the owning team set up in https://github.com/orgs/opensearch-project/teams
* @opensearch-project/anomaly-detection
* @ohltyler @kaituo @jackiehanyang @amitgalitz @sean-zheng-amazon
15 changes: 12 additions & 3 deletions MAINTAINERS.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,18 @@ This document contains a list of maintainers in this repo. See [opensearch-proje

## Current Maintainers

| Maintainer | GitHub ID | Affiliation |
| ----------------------- | ------------------------------------------------------- | ----------- |
| Tyler Ohlsen | [ohltyler](https://github.com/ohltyler) | Amazon |
| Maintainer | GitHub ID | Affiliation |
| ----------------------- | -------------------------------------------------------- | ----------- |
| Tyler Ohlsen | [ohltyler](https://github.com/ohltyler) | Amazon |
| Kaituo Li | [kaituo](https://github.com/kaituo) | Amazon |
| Jackie Han | [jackiehanyang](https://github.com/jackiehanyang) | Amazon |
| Amit Galitzky | [amitgalitz](https://github.com/amitgalitz) | Amazon |
| Sean Zheng | [sean-zheng-amazon](https://github.com/sean-zheng-amazon)| Amazon |

## Emeritus Maintainers

| Maintainer | GitHub ID | Affiliation |
| ----------------- | ------------------------------------------------------- | ----------- |
| Yaliang | [ylwu-amzn](https://github.com/ylwu-amzn) | Amazon |
| Yizhe Liu | [yizheliu-amazon](https://github.com/yizheliu-amazon) | Amazon |
| Vijayan Balasubramanian | [VijayanB](https://github.com/VijayanB) | Amazon |
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,11 +29,14 @@ describe('<NameAndDescription /> spec', () => {
expect(container.firstChild).toMatchSnapshot();
});
test('shows error for detector name input when toggling focus/blur', async () => {
const handleValidateName = jest.fn().mockImplementation(() => {
throw 'Required';
const handleValidateName = jest.fn().mockImplementationOnce(() => {
return 'Required';
});
const { queryByText, findByText, getByPlaceholderText } = render(
<Formik initialValues={{ name: '' }} onSubmit={jest.fn()}>
<Formik
initialValues={{ name: '', description: 'one' }}
onSubmit={jest.fn()}
>
{() => (
<div>
<NameAndDescription onValidateDetectorName={handleValidateName} />
Expand All @@ -49,6 +52,7 @@ describe('<NameAndDescription /> spec', () => {
expect(handleValidateName).toHaveBeenCalledTimes(1);
expect(findByText('Required')).not.toBeNull();
});

test('shows error for detector description input when toggling focus/bur', async () => {
const { queryByText, findByText, getByPlaceholderText } = render(
<Formik
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
## Version 2.7.0.0 Release Notes

Compatible with OpenSearch Dashboards 2.7.0

### Enhancements

* Run prettier command against all files ([#444](https://github.com/opensearch-project/anomaly-detection-dashboards-plugin/pull/444))