From a14cb54574856e279e2834bb1d4be4b63af4a38a Mon Sep 17 00:00:00 2001 From: dblock Date: Tue, 14 Feb 2023 12:17:42 -0500 Subject: [PATCH 01/14] Created untriaged issue workflow. Signed-off-by: dblock --- .github/workflows/add-untriaged.yml | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 .github/workflows/add-untriaged.yml diff --git a/.github/workflows/add-untriaged.yml b/.github/workflows/add-untriaged.yml new file mode 100644 index 0000000..9dcc702 --- /dev/null +++ b/.github/workflows/add-untriaged.yml @@ -0,0 +1,19 @@ +name: Apply 'untriaged' label during issue lifecycle + +on: + issues: + types: [opened, reopened, transferred] + +jobs: + apply-label: + runs-on: ubuntu-latest + steps: + - uses: actions/github-script@v6 + with: + script: | + github.rest.issues.addLabels({ + issue_number: context.issue.number, + owner: context.repo.owner, + repo: context.repo.repo, + labels: ['untriaged'] + }) From 0785ff808f1b152e9b75a71b3c691082752c0a9c Mon Sep 17 00:00:00 2001 From: Shenoy Pratik Date: Wed, 22 Feb 2023 10:33:28 -0800 Subject: [PATCH 02/14] adding release notes for 2.6 Signed-off-by: Shenoy Pratik --- ...ashboards-visualizations.release-notes-2.6.0.0.md | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 release-notes/opensearch-dashboards-visualizations.release-notes-2.6.0.0.md diff --git a/release-notes/opensearch-dashboards-visualizations.release-notes-2.6.0.0.md b/release-notes/opensearch-dashboards-visualizations.release-notes-2.6.0.0.md new file mode 100644 index 0000000..0ee0ed0 --- /dev/null +++ b/release-notes/opensearch-dashboards-visualizations.release-notes-2.6.0.0.md @@ -0,0 +1,12 @@ +## Version 2.6.0.0 Release Notes + +Compatible with OpenSearch Dashboards 2.6.0 + +### Bug Fixes +* Force resolve glob-parent and debug libraries ([#158](https://github.com/opensearch-project/dashboards-visualizations/pull/158)) + +### Infrastructure +* Fix Node.js and Yarn installation in CI ([#166](https://github.com/opensearch-project/dashboards-visualizations/pull/166)) + +### Maintenance +* Bump version to 2.6.0 ([#160](https://github.com/opensearch-project/dashboards-visualizations/pull/160)) From f81c65dc50323d4c35e29f94cf0ef9c47f06089a Mon Sep 17 00:00:00 2001 From: Derek Ho Date: Tue, 28 Feb 2023 11:41:41 -0500 Subject: [PATCH 03/14] baseline repo groups Signed-off-by: Derek Ho --- .github/CODEOWNERS | 4 +--- MAINTAINERS.md | 14 ++++++++++---- 2 files changed, 11 insertions(+), 7 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 8be6437..0dfaf24 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,4 +1,2 @@ - - # This should match the owning team set up in https://github.com/orgs/opensearch-project/teams -**/* @opensearch-project/dashboards-visualizations \ No newline at end of file +* @anirudha @nknize @ps48 @kavithacm @joshuali925 @YANG-DB @davidcui1225 @rupal-bq @CEHENKLE @mengweieric @eugenesk24 @vamsi-amazon \ No newline at end of file diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 6f9d235..90c2904 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -4,7 +4,13 @@ This document contains a list of maintainers in this repo. See [opensearch-proje ## Current Maintainers -| Maintainer | GitHub ID | Affiliation | -| ---------- | ----------------------------------------------- | ----------- | -| David Cui | [davidcui1225](https://github.com/davidcui1225) | Amazon | -| Joshua Li | [joshuali925](https://github.com/joshuali925) | Amazon | +| Maintainer | GitHub ID | Affiliation | +| ----------------- | ------------------------------------------------- | ----------- | + +## Emeritus Maintainers + +| Maintainer | GitHub ID | Affiliation | +| ----------------- | ------------------------------------------------------- | ----------- | +| Charlotte Henkle | [CEHENKLE](https://github.com/CEHENKLE) | Amazon | +| Anirudha Jadhav | [anirudha](https://github.com/anirudha) | Amazon | +| Nick Knize | [nknize](https://github.com/nknize) | Amazon | \ No newline at end of file From 778a5903463822aa9f1c5c8ff6d9a9f0e96e9053 Mon Sep 17 00:00:00 2001 From: Chen Dai Date: Tue, 18 Apr 2023 13:45:38 -0700 Subject: [PATCH 04/14] Add 2.7 release note (#177) Signed-off-by: Chen Dai --- ...arch-dashboards-visualizations.release-notes-2.7.0.0.md | 7 +++++++ 1 file changed, 7 insertions(+) create mode 100644 release-notes/opensearch-dashboards-visualizations.release-notes-2.7.0.0.md diff --git a/release-notes/opensearch-dashboards-visualizations.release-notes-2.7.0.0.md b/release-notes/opensearch-dashboards-visualizations.release-notes-2.7.0.0.md new file mode 100644 index 0000000..c77044e --- /dev/null +++ b/release-notes/opensearch-dashboards-visualizations.release-notes-2.7.0.0.md @@ -0,0 +1,7 @@ +## Version 2.7.0.0 Release Notes + +Compatible with OpenSearch Dashboards 2.7.0 + +### Maintenance + +* Added untriaged issue workflow ([#164](https://github.com/opensearch-project/dashboards-visualizations/pull/164)) From 95bf4b99aafb3faa7da0988f3754743d18ad21dd Mon Sep 17 00:00:00 2001 From: Derek Ho Date: Tue, 25 Apr 2023 14:33:14 -0400 Subject: [PATCH 05/14] update codeowners and maintainers Signed-off-by: Derek Ho --- .github/CODEOWNERS | 2 +- MAINTAINERS.md | 18 +++++++++++++++++- 2 files changed, 18 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index 0dfaf24..a311908 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ # This should match the owning team set up in https://github.com/orgs/opensearch-project/teams -* @anirudha @nknize @ps48 @kavithacm @joshuali925 @YANG-DB @davidcui1225 @rupal-bq @CEHENKLE @mengweieric @eugenesk24 @vamsi-amazon \ No newline at end of file +* @pjfitzgibbons @ps48 @kavithacm @derek-ho @joshuali925 @dai-chen @YANG-DB @rupal-bq @mengweieric @vamsi-amazon @swiddis @penghuo @seankao-az \ No newline at end of file diff --git a/MAINTAINERS.md b/MAINTAINERS.md index 90c2904..a41d2aa 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -6,6 +6,20 @@ This document contains a list of maintainers in this repo. See [opensearch-proje | Maintainer | GitHub ID | Affiliation | | ----------------- | ------------------------------------------------- | ----------- | +| Eric Wei | [mengweieric](https://github.com/mengweieric) | Amazon | +| Joshua Li | [joshuali925](https://github.com/joshuali925) | Amazon | +| Shenoy Pratik | [ps48](https://github.com/ps48) | Amazon | +| Kavitha Mohan | [kavithacm](https://github.com/kavithacm) | Amazon | +| Rupal Mahajan | [rupal-bq](https://github.com/rupal-bq) | Amazon | +| Derek Ho | [derek-ho](https://github.com/derek-ho) | Amazon | +| Lior Perry | [YANG-DB](https://github.com/YANG-DB) | Amazon | +| Peter Fitzgibbons | [pjfitzgibbons](https://github.com/pjfitzgibbons) | Amazon | +| Simeon Widdis | [swiddis](https://github.com/swiddis) | Amazon | +| Chen Dai | [dai-chen](https://github.com/dai-chen) | Amazon | +| Vamsi Manohar | [vamsi-amazon](https://github.com/vamsi-amazon) | Amazon | +| Peng Huo | [penghuo](https://github.com/penghuo) | Amazon | +| Sean Kao | [seankao-az](https://github.com/seankao-az) | Amazon | + ## Emeritus Maintainers @@ -13,4 +27,6 @@ This document contains a list of maintainers in this repo. See [opensearch-proje | ----------------- | ------------------------------------------------------- | ----------- | | Charlotte Henkle | [CEHENKLE](https://github.com/CEHENKLE) | Amazon | | Anirudha Jadhav | [anirudha](https://github.com/anirudha) | Amazon | -| Nick Knize | [nknize](https://github.com/nknize) | Amazon | \ No newline at end of file +| Nick Knize | [nknize](https://github.com/nknize) | Amazon | +| David Cui | [davidcui1225](https://github.com/davidcui1225) | Amazon | +| Eugene Lee | [eugenesk24](https://github.com/eugenesk24) | Amazon | \ No newline at end of file From 675c37e9d6577720f072d17c0ce5781a48084612 Mon Sep 17 00:00:00 2001 From: Derek Ho Date: Mon, 8 May 2023 15:40:44 -0400 Subject: [PATCH 06/14] add ani to maintainers and codeowners Signed-off-by: Derek Ho --- .github/CODEOWNERS | 2 +- MAINTAINERS.md | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS index a311908..d3de625 100644 --- a/.github/CODEOWNERS +++ b/.github/CODEOWNERS @@ -1,2 +1,2 @@ # This should match the owning team set up in https://github.com/orgs/opensearch-project/teams -* @pjfitzgibbons @ps48 @kavithacm @derek-ho @joshuali925 @dai-chen @YANG-DB @rupal-bq @mengweieric @vamsi-amazon @swiddis @penghuo @seankao-az \ No newline at end of file +* @pjfitzgibbons @ps48 @kavithacm @derek-ho @joshuali925 @dai-chen @YANG-DB @rupal-bq @mengweieric @vamsi-amazon @swiddis @penghuo @seankao-az @anirudha \ No newline at end of file diff --git a/MAINTAINERS.md b/MAINTAINERS.md index a41d2aa..a1f4978 100644 --- a/MAINTAINERS.md +++ b/MAINTAINERS.md @@ -19,6 +19,7 @@ This document contains a list of maintainers in this repo. See [opensearch-proje | Vamsi Manohar | [vamsi-amazon](https://github.com/vamsi-amazon) | Amazon | | Peng Huo | [penghuo](https://github.com/penghuo) | Amazon | | Sean Kao | [seankao-az](https://github.com/seankao-az) | Amazon | +| Anirudha Jadhav | [anirudha](https://github.com/anirudha) | Amazon | ## Emeritus Maintainers @@ -26,7 +27,6 @@ This document contains a list of maintainers in this repo. See [opensearch-proje | Maintainer | GitHub ID | Affiliation | | ----------------- | ------------------------------------------------------- | ----------- | | Charlotte Henkle | [CEHENKLE](https://github.com/CEHENKLE) | Amazon | -| Anirudha Jadhav | [anirudha](https://github.com/anirudha) | Amazon | | Nick Knize | [nknize](https://github.com/nknize) | Amazon | | David Cui | [davidcui1225](https://github.com/davidcui1225) | Amazon | | Eugene Lee | [eugenesk24](https://github.com/eugenesk24) | Amazon | \ No newline at end of file From 6da2161343666328ff525acc0a3e0ad49512c3fa Mon Sep 17 00:00:00 2001 From: Joshua Li Date: Tue, 30 May 2023 12:54:36 -0700 Subject: [PATCH 07/14] Add release notes for 2.8 (#187) Signed-off-by: Joshua Li --- ...earch-dashboards-visualizations.release-notes-2.8.0.0.md | 6 ++++++ 1 file changed, 6 insertions(+) create mode 100644 release-notes/opensearch-dashboards-visualizations.release-notes-2.8.0.0.md diff --git a/release-notes/opensearch-dashboards-visualizations.release-notes-2.8.0.0.md b/release-notes/opensearch-dashboards-visualizations.release-notes-2.8.0.0.md new file mode 100644 index 0000000..b47ee67 --- /dev/null +++ b/release-notes/opensearch-dashboards-visualizations.release-notes-2.8.0.0.md @@ -0,0 +1,6 @@ +## Version 2.8.0.0 Release Notes + +Compatible with OpenSearch Dashboards 2.8.0.0 + +### Maintenance +* Increment version to 2.8.0.0 ([#182](https://github.com/opensearch-project/dashboards-visualizations/pull/182)) From 388a5d5eda746c0390295e7c001bd31d196429ce Mon Sep 17 00:00:00 2001 From: opensearch-ci-bot Date: Wed, 31 May 2023 00:22:36 +0000 Subject: [PATCH 08/14] Increment version to 3.0.0.0 Signed-off-by: opensearch-ci-bot --- gantt-chart/opensearch_dashboards.json | 2 +- gantt-chart/package.json | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/gantt-chart/opensearch_dashboards.json b/gantt-chart/opensearch_dashboards.json index 5e69f16..9f38fc2 100644 --- a/gantt-chart/opensearch_dashboards.json +++ b/gantt-chart/opensearch_dashboards.json @@ -8,4 +8,4 @@ ], "server": true, "ui": true -} +} \ No newline at end of file diff --git a/gantt-chart/package.json b/gantt-chart/package.json index 50c7d60..03fdb63 100644 --- a/gantt-chart/package.json +++ b/gantt-chart/package.json @@ -29,4 +29,4 @@ "debug": "^3.1.0", "glob-parent": "^6.0.1" } -} +} \ No newline at end of file From f5e26d0c169cd7cb29a6873f5f3e04a2f8cb5c8f Mon Sep 17 00:00:00 2001 From: Rupal Mahajan Date: Tue, 11 Jul 2023 09:43:51 -0700 Subject: [PATCH 09/14] Upgrade tough-cookie to fix CVE-2023-26136 (#198) Signed-off-by: Rupal Mahajan --- gantt-chart/package.json | 3 ++- gantt-chart/yarn.lock | 37 +++++++++++++++++++++++++++++++------ 2 files changed, 33 insertions(+), 7 deletions(-) diff --git a/gantt-chart/package.json b/gantt-chart/package.json index 03fdb63..81946c3 100644 --- a/gantt-chart/package.json +++ b/gantt-chart/package.json @@ -27,6 +27,7 @@ "resolutions": { "ansi-regex": "^5.0.1", "debug": "^3.1.0", - "glob-parent": "^6.0.1" + "glob-parent": "^6.0.1", + "tough-cookie": "^4.1.3" } } \ No newline at end of file diff --git a/gantt-chart/yarn.lock b/gantt-chart/yarn.lock index 431dde2..8cabf9a 100644 --- a/gantt-chart/yarn.lock +++ b/gantt-chart/yarn.lock @@ -1521,7 +1521,7 @@ prop-types@^15.7.2: object-assign "^4.1.1" react-is "^16.13.1" -psl@^1.1.28: +psl@^1.1.33: version "1.9.0" resolved "https://registry.yarnpkg.com/psl/-/psl-1.9.0.tgz#d0df2a137f00794565fcaf3b2c00cd09f8d5a5a7" integrity sha512-E/ZsdU4HLs/68gYzgGTkMicWTLPdAftJLfJFlLUAAKZGkStNU72sZjT66SnMDVOfOWY/YAoiD7Jxa9iHvngcag== @@ -1559,6 +1559,11 @@ querystring@0.2.0: resolved "https://registry.yarnpkg.com/querystring/-/querystring-0.2.0.tgz#b209849203bb25df820da756e747005878521620" integrity sha512-X/xY82scca2tau62i9mDyU9K+I+djTMUsvwf7xnUX5GLvVzgJybOJf4Y6o9Zx3oJK/LSXg5tTZBjwzqVPaPO2g== +querystringify@^2.1.1: + version "2.2.0" + resolved "https://registry.yarnpkg.com/querystringify/-/querystringify-2.2.0.tgz#3345941b4153cb9d082d8eee4cda2016a9aef7f6" + integrity sha512-FIqgj2EUvTa7R50u0rGsyTftzjYmv/a3hO345bZNrqabNqjtgiDMgmo4mkUjd+nzU5oF3dClKqFIPUKybUyqoQ== + ramda@~0.26.1: version "0.26.1" resolved "https://registry.yarnpkg.com/ramda/-/ramda-0.26.1.tgz#8d41351eb8111c55353617fc3bbffad8e4d35d06" @@ -1601,6 +1606,11 @@ request-progress@^3.0.0: dependencies: throttleit "^1.0.0" +requires-port@^1.0.0: + version "1.0.0" + resolved "https://registry.yarnpkg.com/requires-port/-/requires-port-1.0.0.tgz#925d2601d39ac485e091cf0da5c6e694dc3dcaff" + integrity sha512-KigOCHcocU3XODJxsu8i/j8T9tzT4adHiecwORRQ0ZZFcp7ahwXuRU1m+yuO90C5ZUyGeGfocHDI14M3L3yDAQ== + resolve-from@^4.0.0: version "4.0.0" resolved "https://registry.yarnpkg.com/resolve-from/-/resolve-from-4.0.0.tgz#4abcd852ad32dd7baabfe9b40e00a36db5f392e6" @@ -1887,13 +1897,15 @@ tmp@~0.2.1: dependencies: rimraf "^3.0.0" -tough-cookie@~2.5.0: - version "2.5.0" - resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-2.5.0.tgz#cd9fb2a0aa1d5a12b473bd9fb96fa3dcff65ade2" - integrity sha512-nlLsUzgm1kfLXSXfRZMc1KLAugd4hqJHDTvc2hDIwS3mZAfMEuMbc03SujMF+GEcpaX/qboeycw6iO8JwVv2+g== +tough-cookie@^4.1.3, tough-cookie@~2.5.0: + version "4.1.3" + resolved "https://registry.yarnpkg.com/tough-cookie/-/tough-cookie-4.1.3.tgz#97b9adb0728b42280aa3d814b6b999b2ff0318bf" + integrity sha512-aX/y5pVRkfRnfmuX+OdbSdXvPe6ieKX/G2s7e98f4poJHnqH3281gDPm/metm6E/WRamfx7WC4HUqkWHfQHprw== dependencies: - psl "^1.1.28" + psl "^1.1.33" punycode "^2.1.1" + universalify "^0.2.0" + url-parse "^1.5.3" tslib@^1.9.0: version "1.14.1" @@ -1934,6 +1946,11 @@ typedarray@^0.0.6: resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777" integrity sha512-/aCDEGatGvZ2BIk+HmLf4ifCJFwvKFNb9/JeZPMulfgFracn9QFcAf5GO8B/mweUjSoblS5In0cWhqpfs/5PQA== +universalify@^0.2.0: + version "0.2.0" + resolved "https://registry.yarnpkg.com/universalify/-/universalify-0.2.0.tgz#6451760566fa857534745ab1dde952d1b1761be0" + integrity sha512-CJ1QgKmNg3CwvAv/kOFmtnEN05f0D/cn9QntgNOQlQF9dgvVTHj3t+8JPdjqawCHk7V/KA+fbUqzZ9XWhcqPUg== + universalify@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/universalify/-/universalify-2.0.0.tgz#75a4984efedc4b08975c5aeb73f530d02df25717" @@ -1951,6 +1968,14 @@ uri-js@^4.2.2: dependencies: punycode "^2.1.0" +url-parse@^1.5.3: + version "1.5.10" + resolved "https://registry.yarnpkg.com/url-parse/-/url-parse-1.5.10.tgz#9d3c2f736c1d75dd3bd2be507dcc111f1e2ea9c1" + integrity sha512-WypcfiRhfeUP9vvF0j6rw0J3hrWrw6iZv3+22h6iRMJ/8z1Tj6XfLP4DsUix5MhMPnXpiHDoKyoZ/bdCkwBCiQ== + dependencies: + querystringify "^2.1.1" + requires-port "^1.0.0" + url@^0.11.0: version "0.11.0" resolved "https://registry.yarnpkg.com/url/-/url-0.11.0.tgz#3838e97cfc60521eb73c525a8e55bfdd9e2e28f1" From b99964dbb4322a07a57c31140de9b8cb432eb8a9 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 11 Jul 2023 09:44:21 -0700 Subject: [PATCH 10/14] Bump semver from 5.7.1 to 5.7.2 in /gantt-chart (#199) Bumps [semver](https://github.com/npm/node-semver) from 5.7.1 to 5.7.2. - [Release notes](https://github.com/npm/node-semver/releases) - [Changelog](https://github.com/npm/node-semver/blob/v5.7.2/CHANGELOG.md) - [Commits](https://github.com/npm/node-semver/compare/v5.7.1...v5.7.2) --- updated-dependencies: - dependency-name: semver dependency-type: indirect ... Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- gantt-chart/yarn.lock | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/gantt-chart/yarn.lock b/gantt-chart/yarn.lock index 8cabf9a..17ea084 100644 --- a/gantt-chart/yarn.lock +++ b/gantt-chart/yarn.lock @@ -1682,14 +1682,14 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== semver@^5.5.0: - version "5.7.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.1.tgz#a954f931aeba508d307bbf069eff0c01c96116f7" - integrity sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ== + version "5.7.2" + resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" + integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== semver@^6.1.2: - version "6.3.0" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.0.tgz#ee0a64c8af5e8ceea67687b133761e1becbd1d3d" - integrity sha512-b39TBaTSfV6yBrapU89p5fKekE2m/NwnDocOVruQFS1/veMgdzuPcnOM34M6CwxW8jH/lxEa5rBoDeUwu5HHTw== + version "6.3.1" + resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" + integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== shebang-command@^1.2.0: version "1.2.0" From eb018fa3d0034080da52a00afc220c4885591708 Mon Sep 17 00:00:00 2001 From: Rupal Mahajan Date: Wed, 12 Jul 2023 09:29:38 -0700 Subject: [PATCH 11/14] Add release notes for 2.9.0 (#205) Signed-off-by: Rupal Mahajan --- ...-dashboards-visualizations.release-notes-2.9.0.0.md | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 release-notes/opensearch-dashboards-visualizations.release-notes-2.9.0.0.md diff --git a/release-notes/opensearch-dashboards-visualizations.release-notes-2.9.0.0.md b/release-notes/opensearch-dashboards-visualizations.release-notes-2.9.0.0.md new file mode 100644 index 0000000..c06fac3 --- /dev/null +++ b/release-notes/opensearch-dashboards-visualizations.release-notes-2.9.0.0.md @@ -0,0 +1,10 @@ +## Version 2.9.0.0 Release Notes + +Compatible with OpenSearch Dashboards 2.9.0.0 + +### Bug Fixes +* Bump semver from 5.7.1 to 5.7.2 ([#199](https://github.com/opensearch-project/dashboards-visualizations/pull/199)) +* Upgrade tough-cookie to fix CVE-2023-26136 ([#198](https://github.com/opensearch-project/dashboards-visualizations/pull/198)) + +### Maintenance +* Increment version to 2.9.0.0 ([#192](https://github.com/opensearch-project/dashboards-visualizations/pull/192)) From f527973d4302adc3e6c4ce5bef887deb871b9103 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 19 Jul 2023 02:02:27 +0000 Subject: [PATCH 12/14] Bump word-wrap from 1.2.3 to 1.2.4 in /gantt-chart Bumps [word-wrap](https://github.com/jonschlinkert/word-wrap) from 1.2.3 to 1.2.4. - [Release notes](https://github.com/jonschlinkert/word-wrap/releases) - [Commits](https://github.com/jonschlinkert/word-wrap/compare/1.2.3...1.2.4) --- updated-dependencies: - dependency-name: word-wrap dependency-type: indirect ... Signed-off-by: dependabot[bot] --- gantt-chart/yarn.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/gantt-chart/yarn.lock b/gantt-chart/yarn.lock index 17ea084..79b3694 100644 --- a/gantt-chart/yarn.lock +++ b/gantt-chart/yarn.lock @@ -2023,9 +2023,9 @@ which@^2.0.1: isexe "^2.0.0" word-wrap@~1.2.3: - version "1.2.3" - resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.3.tgz#610636f6b1f703891bd34771ccb17fb93b47079c" - integrity sha512-Hz/mrNwitNRh/HUAtM/VT/5VH+ygD6DV7mYKZAtHOrbs8U7lvPS6xf7EJKMF0uW1KJCl0H701g3ZGus+muE5vQ== + version "1.2.4" + resolved "https://registry.yarnpkg.com/word-wrap/-/word-wrap-1.2.4.tgz#cb4b50ec9aca570abd1f52f33cd45b6c61739a9f" + integrity sha512-2V81OA4ugVo5pRo46hAoD2ivUJx8jXmWXfUkY4KFNw0hEptvN0QfH3K4nHiwzGeKl5rFKedV48QVoqYavy4YpA== wrap-ansi@^3.0.1: version "3.0.1" From cb12dcfebe2c39cfbf6998b718e78580951e3e68 Mon Sep 17 00:00:00 2001 From: Derek Ho Date: Mon, 31 Jul 2023 12:17:10 -0400 Subject: [PATCH 13/14] update semver (#218) Signed-off-by: Derek Ho --- gantt-chart/package.json | 3 ++- gantt-chart/yarn.lock | 27 ++++++++++++++++++--------- 2 files changed, 20 insertions(+), 10 deletions(-) diff --git a/gantt-chart/package.json b/gantt-chart/package.json index 81946c3..ef865f4 100644 --- a/gantt-chart/package.json +++ b/gantt-chart/package.json @@ -28,6 +28,7 @@ "ansi-regex": "^5.0.1", "debug": "^3.1.0", "glob-parent": "^6.0.1", - "tough-cookie": "^4.1.3" + "tough-cookie": "^4.1.3", + "semver": "^7.5.2" } } \ No newline at end of file diff --git a/gantt-chart/yarn.lock b/gantt-chart/yarn.lock index 79b3694..509cf22 100644 --- a/gantt-chart/yarn.lock +++ b/gantt-chart/yarn.lock @@ -1309,6 +1309,13 @@ loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" +lru-cache@^6.0.0: + version "6.0.0" + resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-6.0.0.tgz#6d6fe6570ebd96aaf90fcad1dafa3b2566db3a94" + integrity sha512-Jo6dJ04CmSjuznwJSS3pUeWmd/H0ffTlkXXgwZi+eq1UCmqQwCh+eLsYOYCwY991i2Fah4h1BEMCx4qThGbsiA== + dependencies: + yallist "^4.0.0" + merge-stream@^2.0.0: version "2.0.0" resolved "https://registry.yarnpkg.com/merge-stream/-/merge-stream-2.0.0.tgz#52823629a14dd00c9770fb6ad47dc6310f2c1f60" @@ -1681,15 +1688,12 @@ safe-buffer@~5.1.0, safe-buffer@~5.1.1: resolved "https://registry.yarnpkg.com/safer-buffer/-/safer-buffer-2.1.2.tgz#44fa161b0187b9549dd84bb91802f9bd8385cd6a" integrity sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg== -semver@^5.5.0: - version "5.7.2" - resolved "https://registry.yarnpkg.com/semver/-/semver-5.7.2.tgz#48d55db737c3287cd4835e17fa13feace1c41ef8" - integrity sha512-cBznnQ9KjJqU67B52RMC65CMarK2600WFnbkcaiwWq3xy/5haFJlshgnpjovMVJ+Hff49d8GEn0b87C5pDQ10g== - -semver@^6.1.2: - version "6.3.1" - resolved "https://registry.yarnpkg.com/semver/-/semver-6.3.1.tgz#556d2ef8689146e46dcea4bfdd095f3434dffcb4" - integrity sha512-BR7VvDCVHO+q2xBEWskxS6DJE1qRnb7DxzUrogb71CWoSficBxYsiAGd+Kl0mmq/MprG9yArRkyrQxTO6XjMzA== +semver@^5.5.0, semver@^6.1.2, semver@^7.5.2: + version "7.5.4" + resolved "https://registry.yarnpkg.com/semver/-/semver-7.5.4.tgz#483986ec4ed38e1c6c48c34894a9182dbff68a6e" + integrity sha512-1bCSESV6Pv+i21Hvpxp3Dx+pSD8lIPt8uVjRrxAUt/nbswYc+tK6Y2btiULjd4+fnq15PX+nqQDC7Oft7WkwcA== + dependencies: + lru-cache "^6.0.0" shebang-command@^1.2.0: version "1.2.0" @@ -2047,6 +2051,11 @@ write@1.0.3: dependencies: mkdirp "^0.5.1" +yallist@^4.0.0: + version "4.0.0" + resolved "https://registry.yarnpkg.com/yallist/-/yallist-4.0.0.tgz#9bb92790d9c0effec63be73519e11a35019a3a72" + integrity sha512-3wdGidZyq5PB084XLES5TpOSRA3wjXAlIWMhum2kRcv/41Sn2emQ0dycQW4uZXLejwKvg6EsvbdlVL+FYEct7A== + yauzl@^2.10.0: version "2.10.0" resolved "https://registry.yarnpkg.com/yauzl/-/yauzl-2.10.0.tgz#c7eb17c93e112cb1086fa6d8e51fb0667b79a5f9" From cde5925dcba09499a0903f8fb51351c66e994b78 Mon Sep 17 00:00:00 2001 From: Derek Ho Date: Mon, 31 Jul 2023 12:23:16 -0400 Subject: [PATCH 14/14] update fail backport Signed-off-by: Derek Ho --- .github/workflows/backport.yml | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/.github/workflows/backport.yml b/.github/workflows/backport.yml index e47d8d8..9537dde 100644 --- a/.github/workflows/backport.yml +++ b/.github/workflows/backport.yml @@ -22,7 +22,9 @@ jobs: installation_id: 22958780 - name: Backport - uses: VachaShah/backport@v1.1.4 + uses: VachaShah/backport@v2.2.0 with: github_token: ${{ steps.github_app_token.outputs.token }} - branch_name: backport/backport-${{ github.event.number }} + head_template: backport/backport-<%= number %>-to-<%= base %> + labels_template: "<%= JSON.stringify([...labels, 'autocut']) %>" + failure_labels: "failed backport"