This repository has been archived by the owner on Aug 2, 2022. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 62
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Adds support for Kibana 7.8.0 (#163) * Bump version number of ES, ODFE, and node * update Jest snapshots * update release notes with Kibana 7.8.0 support * Move plugin entry into Kibana app category in sidebar (cherry picked from commit bf9a91c) * Update the unit-test workflow script to get Kibana version from package.json (#165) * Get Kibana version from the package.json file in unit-test workflow (cherry picked from commit 6d82e56) * Fix the unit-test workflow by checking out the repo first (cherry picked from commit cc9fc0c) * Bump lodash from 4.17.15 to 4.17.19 (#169) * Bump lodash from 4.17.15 to 4.17.19 Bumps [lodash](https://github.com/lodash/lodash) from 4.17.15 to 4.17.19. - [Release notes](https://github.com/lodash/lodash/releases) - [Commits](lodash/lodash@4.17.15...4.17.19) Signed-off-by: dependabot[bot] <[email protected]> * update yarn.lock by running 'yarn kbn bootstrap' Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Tianli Feng <[email protected]> (cherry picked from commit 8b0dd58) * Adds support for Kibana 7.9.0 (#171) * keyCode to key * fix UT * remove used dependency (cherry picked from commit 5d3ff53) * Release note automate (#172) * release note automation * python script fix * compatibale with Kibana (cherry picked from commit c72d37e) * upgrade cypress verison to 5.0.0 * ingonre an uncaught error and add some copyright notice * change a wording back Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: Bowen Lan <[email protected]>
- Loading branch information
1 parent
e4b9d66
commit 812b01d
Showing
42 changed files
with
1,315 additions
and
1,190 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,46 @@ | ||
# https://github.com/marketplace/actions/release-drafter | ||
# As pull requests are merged, a draft release is kept up-to-date listing the changes, ready to publish when you’re ready | ||
|
||
template: | | ||
Compatible with Kibana (**set version here**). | ||
$CHANGES | ||
# Setting the formatting and sorting for the release notes body | ||
name-template: Version (set version here) | ||
change-template: '* $TITLE (#$NUMBER)' | ||
sort-by: merged_at | ||
sort-direction: ascending | ||
replacers: | ||
- search: '##' | ||
replace: '###' | ||
|
||
# Organizing the tagged PRs into unified ODFE categories | ||
categories: | ||
- title: 'Breaking changes' | ||
labels: | ||
- 'breaking change' | ||
- title: 'Features' | ||
labels: | ||
- 'feature' | ||
- title: 'Enhancements' | ||
labels: | ||
- 'enhancement' | ||
- 'action' | ||
- 'API' | ||
- title: 'Bug Fixes' | ||
labels: | ||
- 'bug' | ||
- title: 'Infrastructure' | ||
labels: | ||
- 'infra' | ||
- 'testing' | ||
- 'CI/CD' | ||
- 'dependencies' | ||
- title: 'Documentation' | ||
labels: | ||
- 'documentation' | ||
- title: 'Maintenance' | ||
labels: | ||
- 'version support' | ||
- title: 'Refactoring' | ||
labels: | ||
- 'refactor' |
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 @@ | ||
name: Release Drafter | ||
|
||
on: | ||
push: | ||
branches: | ||
- master | ||
|
||
jobs: | ||
update_release_draft: | ||
name: Update draft release notes | ||
runs-on: ubuntu-latest | ||
steps: | ||
- name: Update draft release notes | ||
uses: release-drafter/release-drafter@v5 | ||
with: | ||
config-name: draft-release-notes-config.yml | ||
name: Version (set here) | ||
tag: (None) | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
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
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
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
Oops, something went wrong.