Skip to content

Commit

Permalink
Add release notes for 2.0.0-rc1 (#74) (#75)
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
opensearch-trigger-bot[bot] and joshuali925 authored Apr 21, 2022
1 parent e3b699a commit 69c5434
Show file tree
Hide file tree
Showing 3 changed files with 86 additions and 0 deletions.
45 changes: 45 additions & 0 deletions .github/draft-release-notes-config.yml
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'
21 changes: 21 additions & 0 deletions .github/workflows/draft-release-notes-workflow.yml
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 }}
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))

0 comments on commit 69c5434

Please sign in to comment.