-
Notifications
You must be signed in to change notification settings - Fork 44
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Browse files
Browse the repository at this point in the history
Signed-off-by: Joshua Li <[email protected]> (cherry picked from commit dd31e63) Co-authored-by: Joshua Li <[email protected]>
- Loading branch information
1 parent
e3b699a
commit 69c5434
Showing
3 changed files
with
86 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,45 @@ | ||
# The overall template of the release notes | ||
template: | | ||
Compatible with OpenSearch and OpenSearch Dashboards Version $RESOLVED_VERSION | ||
$CHANGES | ||
# Setting the formatting and sorting for the release notes body | ||
name-template: Version $RESOLVED_VERSION | ||
change-template: "* $TITLE ([#$NUMBER](https://github.com/opensearch-project/dashboards-visualizations/pull/$NUMBER))" | ||
sort-by: merged_at | ||
sort-direction: ascending | ||
replacers: | ||
- search: '##' | ||
replace: '###' | ||
|
||
# Organizing the tagged PRs into unified categories | ||
categories: | ||
- title: 'Breaking Changes' | ||
labels: | ||
- 'Breaking Changes' | ||
- title: 'Features' | ||
labels: | ||
- 'feature' | ||
- title: 'Enhancements' | ||
labels: | ||
- 'enhancement' | ||
- title: 'Bug Fixes' | ||
labels: | ||
- 'bug' | ||
- title: 'Infrastructure' | ||
labels: | ||
- 'infra' | ||
- 'test' | ||
- 'dependencies' | ||
- 'github actions' | ||
- title: 'Documentation' | ||
labels: | ||
- 'documentation' | ||
- title: 'Maintenance' | ||
labels: | ||
- "version compatibility" | ||
- "maintenance" | ||
- title: 'Refactoring' | ||
labels: | ||
- 'refactor' | ||
- 'code quality' |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- main | ||
|
||
jobs: | ||
update_release_draft: | ||
name: Update draft release notes | ||
runs-on: ubuntu-latest | ||
steps: | ||
# Drafts your next Release notes as Pull Requests are merged into "main" | ||
- name: Update draft release notes | ||
uses: release-drafter/release-drafter@v5 | ||
with: | ||
config-name: draft-release-notes-config.yml | ||
tag: (None) | ||
version: 2.0.0.0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
20 changes: 20 additions & 0 deletions
20
release-notes/opensearch-dashboards-visualizations.release-notes-2.0.0.0-rc1.md
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,20 @@ | ||
## Version 2.0.0.0-rc1 Release Notes | ||
|
||
Compatible with OpenSearch 2.0.0.0-rc1 | ||
|
||
### Enhancements | ||
* Support advanced settings ([#68](https://github.com/opensearch-project/dashboards-visualizations/pull/68)) | ||
|
||
### Bug Fixes | ||
* Bump async from 3.2.0 to 3.2.3 in /gantt-chart ([#67](https://github.com/opensearch-project/dashboards-visualizations/pull/67)) | ||
* Bump moment from 2.29.1 to 2.29.2 in /gantt-chart ([#66](https://github.com/opensearch-project/dashboards-visualizations/pull/66)) | ||
* Bump minimist from 1.2.5 to 1.2.6 in /gantt-chart ([#57](https://github.com/opensearch-project/dashboards-visualizations/pull/57)) | ||
* Remove duplicated dependencies ([#64](https://github.com/opensearch-project/dashboards-visualizations/pull/64)) | ||
|
||
### Documentation | ||
* Updated issue templates from .github. ([#59](https://github.com/opensearch-project/dashboards-visualizations/pull/59)) | ||
|
||
### Maintenance | ||
* Change alpha1 to rc1 for first 2.0 release ([#65](https://github.com/opensearch-project/dashboards-visualizations/pull/65)) | ||
* Bump version to 2.0.0 ([#56](https://github.com/opensearch-project/dashboards-visualizations/pull/56)) | ||
* Add alpha1 qualifiers for dashboards plugin ([#58](https://github.com/opensearch-project/dashboards-visualizations/pull/58)) |