Skip to content
This repository has been archived by the owner on Aug 2, 2022. It is now read-only.

Commit

Permalink
Merge develop branch into master for od1.10 release (#701)
Browse files Browse the repository at this point in the history
Merge develop branch into master for od1.10 release
  • Loading branch information
chloe-zh authored Aug 20, 2020
2 parents 5ab1bc8 + d74612e commit 8735723
Show file tree
Hide file tree
Showing 5 changed files with 64 additions and 27 deletions.
47 changes: 25 additions & 22 deletions .github/draft-release-notes-config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -5,38 +5,41 @@ template: |
# Setting the formatting and sorting for the release notes body
name-template: Version $RESOLVED_VERSION
change-template: "- $TITLE (PR [#$NUMBER](https://github.com/opendistro-for-elasticsearch/sql/pull/$NUMBER))"
change-template: "* $TITLE ([#$NUMBER](https://github.com/opendistro-for-elasticsearch/sql/pull/$NUMBER))"
sort-by: merged_at
sort-direction: ascending
replacers:
- search: '##'
replace: '###'

# Organizing the tagged PRs into categories
# Organizing the tagged PRs into unified ODFE categories
categories:
- title: "Version Upgrades"
- title: 'Breaking Changes'
labels:
- "version compatibility"
- title: "SQL and PPL"
- 'Breaking Changes'
- title: 'Features'
labels:
- "SQL"
- "PPL"
- title: "SQL CLI"
- 'feature'
- title: 'Enhancements'
labels:
- "CLI"
- title: "SQL JDBC"
- 'enhancement'
- title: 'Bug Fixes'
labels:
- "JDBC"
- title: "SQL ODBC"
- 'bug'
- title: 'Infrastructure'
labels:
- "ODBC"
- title: "SQL Workbench"
- 'infra'
- 'test'
- 'dependencies'
- 'github actions'
- title: 'Documentation'
labels:
- "Workbench"
- title: "Enhancements"
- 'documentation'
- title: 'Maintenance'
labels:
- "enhancement"
- "version compatibility"
- "maintenance"
- title: "Bug Fixes"
labels:
- "bug"
- title: "Documentation"
- title: 'Refactoring'
labels:
- "documentation"
- 'refactor'
- 'code quality'
6 changes: 3 additions & 3 deletions .github/workflows/draft-release-notes-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,19 +3,19 @@ name: Release Drafter
on:
push:
branches:
- master
- develop

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 "master"
# Drafts your next Release notes as Pull Requests are merged into "develop"
- name: Update draft release notes
uses: release-drafter/release-drafter@v5
with:
config-name: draft-release-notes-config.yml
tag: (None)
version: 1.9.0.1
version: 1.10.0.0
env:
GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }}
2 changes: 1 addition & 1 deletion .github/workflows/sql-workbench-release-workflow.yml
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ jobs:
uses: actions/checkout@v1
with:
repository: opendistro-for-elasticsearch/kibana-oss
ref: 7.8.0
ref: 7.9.0
token: ${{secrets.OD_ACCESS}}
path: sql/kibana

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v1
with:
repository: elastic/kibana
ref: v7.8.0
ref: v7.9.0
path: sql/kibana
- name: Setup Node
uses: actions/setup-node@v1
Expand Down
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
## 2020-08-20 Version 1.10.0.0

### Features
* Support WHERE clause in new SQL parser ([#682](https://github.com/opendistro-for-elasticsearch/sql/pull/682))
* Add Cypress testing for SQL Workbench ([#562](https://github.com/opendistro-for-elasticsearch/sql/pull/562))
* Lucene query pushdown optimization ([#671](https://github.com/opendistro-for-elasticsearch/sql/pull/671))
* ODBC: Add PBIDS support ([#676](https://github.com/opendistro-for-elasticsearch/sql/pull/676))
* Add PPL enable/disable setting ([#681](https://github.com/opendistro-for-elasticsearch/sql/pull/681))
* Add query size limit ([#679](https://github.com/opendistro-for-elasticsearch/sql/pull/679)
* Expression pushdown optimization ([#663](https://github.com/opendistro-for-elasticsearch/sql/pull/663))
* changes required for using to Power BI Service with Open Distro For Elasticsearch ([#669](https://github.com/opendistro-for-elasticsearch/sql/pull/669))
* Support NULL and MISSING value in response ([#667](https://github.com/opendistro-for-elasticsearch/sql/pull/667))
* ODBC: Use literals instead of parameters in Power BI data connector ([#652](https://github.com/opendistro-for-elasticsearch/sql/pull/652))
* Support select fields and alias in new query engine ([#636](https://github.com/opendistro-for-elasticsearch/sql/pull/636))
* Add comparision operator for SQL ([#635](https://github.com/opendistro-for-elasticsearch/sql/pull/635))

### Enhancements
* Parse backtick strings (``) as identifiers instead of string literals ([#678](https://github.com/opendistro-for-elasticsearch/sql/pull/678))
* add error details for all server communication errors ([#645](https://github.com/opendistro-for-elasticsearch/sql/pull/645))

### Bug Fixes
* Fix for query folding issue while applying filter in PBID ([#666](https://github.com/opendistro-for-elasticsearch/sql/pull/666))
* Fix for query folding issue with direct query mode in Power BI data connector ([#640](https://github.com/opendistro-for-elasticsearch/sql/pull/640))

### Infrastructure
* Adjust release drafter to follow ODFE standards ([#700](https://github.com/opendistro-for-elasticsearch/sql/pull/700))
* ODBC: improve Windows build process ([#661](https://github.com/opendistro-for-elasticsearch/sql/pull/661))
* Skip doctest in github release actions ([#648](https://github.com/opendistro-for-elasticsearch/sql/pull/648))

### Documentation
* Update release notes for OD 1.10 release([#699](https://github.com/opendistro-for-elasticsearch/sql/pull/699))

### Maintenance
* Bumped ES and Kibana versions to v7.9.0 ([#697](https://github.com/opendistro-for-elasticsearch/sql/pull/697))

0 comments on commit 8735723

Please sign in to comment.