From fd59953f0ec976092fa83a5d43ef6613372beb9f Mon Sep 17 00:00:00 2001 From: "release-please[bot]" <55107282+release-please[bot]@users.noreply.github.com> Date: Wed, 12 May 2021 12:51:17 +0000 Subject: [PATCH 1/2] chore: release 0.7.0 --- CHANGELOG.md | 12 ++++++++++++ setup.py | 2 +- 2 files changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 3650dfa3..d188c35a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,18 @@ [1]: https://pypi.org/project/pybigquery/#history +## [0.7.0](https://www.github.com/googleapis/python-bigquery-sqlalchemy/compare/v0.6.1...v0.7.0) (2021-05-12) + + +### Features + +* Comment/description support, bug fixes and better test coverage ([#138](https://www.github.com/googleapis/python-bigquery-sqlalchemy/issues/138)) ([fb7c188](https://www.github.com/googleapis/python-bigquery-sqlalchemy/commit/fb7c188fd1d61f2bb2b99742f62042576bff02a9)) + + +### Bug Fixes + +* Select expressions no-longer force use of labels ([#129](https://www.github.com/googleapis/python-bigquery-sqlalchemy/issues/129)) ([669b301](https://www.github.com/googleapis/python-bigquery-sqlalchemy/commit/669b301359f9f37c5c7286a245080b8af2567186)) + ### [0.6.1](https://www.github.com/googleapis/python-bigquery-sqlalchemy/compare/v0.6.0...v0.6.1) (2021-04-12) diff --git a/setup.py b/setup.py index d93f2225..a417129d 100644 --- a/setup.py +++ b/setup.py @@ -24,7 +24,7 @@ # Package metadata. name = "pybigquery" -version = "0.6.1" +version = "0.7.0" description = "SQLAlchemy dialect for BigQuery" # Should be one of: From 9f9f4810359f0563c3028e6f5c5b90a381e5a733 Mon Sep 17 00:00:00 2001 From: Jim Fulton Date: Wed, 12 May 2021 07:14:39 -0600 Subject: [PATCH 2/2] Update CHANGELOG.md --- CHANGELOG.md | 14 +++++++++++++- 1 file changed, 13 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index d188c35a..90c96d1d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -10,12 +10,24 @@ ### Features * Comment/description support, bug fixes and better test coverage ([#138](https://www.github.com/googleapis/python-bigquery-sqlalchemy/issues/138)) ([fb7c188](https://www.github.com/googleapis/python-bigquery-sqlalchemy/commit/fb7c188fd1d61f2bb2b99742f62042576bff02a9)) - + * Runs SQLAlchemy dialect-compliance tests (as system tests). + * 100% unit-test coverage. + * Support for table and column comments/descriptions (requiring SQLAlchemy 1.2 or higher). + * When executing parameterized queries, the new BigQuery DB API parameter syntax is used to pass type information. This is helpful when the DB API can't determine type information from values, or can't determine it correctly. ### Bug Fixes * Select expressions no-longer force use of labels ([#129](https://www.github.com/googleapis/python-bigquery-sqlalchemy/issues/129)) ([669b301](https://www.github.com/googleapis/python-bigquery-sqlalchemy/commit/669b301359f9f37c5c7286a245080b8af2567186)) +* Additional fixes, including: + - Handling of `in` queries. + - String literals with special characters. + - Use BIGNUMERIC when necessary. + - Missing types: BIGINT, SMALLINT, Boolean, REAL, CHAR, NCHAR, VARCHAR, NVARCHAR, TEXT, VARBINARY, DECIMAL + - Literal bytes, dates, times, datetimes, timestamps, and arrays. + - Get view definitions. + + ### [0.6.1](https://www.github.com/googleapis/python-bigquery-sqlalchemy/compare/v0.6.0...v0.6.1) (2021-04-12)