-
Notifications
You must be signed in to change notification settings - Fork 99
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
Bump observability version for OpenSearch 1.2 release #189
Changes from 5 commits
68d4344
06fb3ab
65f5126
f192c5a
a35b84a
2901a18
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
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/sql/pull/$NUMBER))" | ||
sort-by: merged_at | ||
sort-direction: ascending | ||
replacers: | ||
- search: '##' | ||
replace: '###' | ||
|
||
# Organizing the tagged PRs into unified categories | ||
eugenesk24 marked this conversation as resolved.
Show resolved
Hide resolved
|
||
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' |
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
name: Developer Certificate of Origin Check | ||
|
||
on: [pull_request] | ||
|
||
jobs: | ||
check: | ||
runs-on: ubuntu-latest | ||
|
||
steps: | ||
- name: Get PR Commits | ||
id: 'get-pr-commits' | ||
uses: tim-actions/get-pr-commits@v1.1.0 | ||
with: | ||
token: ${{ secrets.GITHUB_TOKEN }} | ||
- name: DCO Check | ||
uses: tim-actions/dco@v1.1.0 | ||
with: | ||
commits: ${{ steps.get-pr-commits.outputs.commits }} |
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: x.x.0.0 | ||
env: | ||
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} |
This file was deleted.
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -27,7 +27,7 @@ export const PPL_ENDPOINT = '/_plugins/_ppl'; | |
export const SQL_ENDPOINT = '/_plugins/_sql'; | ||
export const DSL_ENDPOINT = '/_plugins/_dsl'; | ||
|
||
export const observabilityID = 'observability'; | ||
export const observabilityID = 'observability-dashboards'; | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Why is this one observability-dashboards instead of dashboard-observability?? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. just to be consistent with other plugins. I think part of the reason is that it shows up in URL, which means it has to be a dashboards frontend plugin, but I don't think we have a standard on this |
||
export const observabilityTitle = 'Observability'; | ||
export const observabilityPluginOrder = 6000; | ||
|
||
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Question: should this be sql link?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
good point.. forgot to change it