From f117fc7bc7db3dd3f94d953bb22b8cd40bee2c68 Mon Sep 17 00:00:00 2001 From: Arik Fraimovich Date: Sun, 17 Nov 2019 16:40:13 +0200 Subject: [PATCH 1/3] Add CHANGELOG entry for v8.0.1 --- CHANGELOG.md | 10 ++++++++++ 1 file changed, 10 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index 552ab604af..391b2d38cd 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,15 @@ # Change Log +## v8.0.1 - 2019-11-17 + +* Fix the DB migration so that the correct key is used for encrypting Data Source credentials. Otherwise direct upgrades from versions older than v7 will not work properly. +* Bump pymssql to get around pymssql/pymssql#520. +* Specify version of pandas to allow clean install against vanilla Python 2.7.17. + +## v8.0.0 - 2019-10-27 + +There were no changes in this release since v8.0.0-beta.2. This is just to mark a stable release. + ## v8.0.0-beta.2 - 2019-09-16 This is an update to the previous beta release, which includes: From cb1931adfb060720e51172aae344313950544586 Mon Sep 17 00:00:00 2001 From: Arik Fraimovich Date: Sun, 17 Nov 2019 16:59:31 +0200 Subject: [PATCH 2/3] Update version in __init__.py --- redash/__init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/redash/__init__.py b/redash/__init__.py index 9e92fd9e9c..2a5e4e6a57 100644 --- a/redash/__init__.py +++ b/redash/__init__.py @@ -16,7 +16,7 @@ from .query_runner import import_query_runners from .destinations import import_destinations -__version__ = '8.0.0' +__version__ = '8.0.1' if os.environ.get("REMOTE_DEBUG"): From 2b04afe132836501cb97001506b9fc75f70e3dc5 Mon Sep 17 00:00:00 2001 From: Arik Fraimovich Date: Sun, 17 Nov 2019 16:59:57 +0200 Subject: [PATCH 3/3] Update version in package.json --- package.json | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/package.json b/package.json index ac54650b88..458f7f8fa8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redash-client", - "version": "8.0.0", + "version": "8.0.1", "description": "The frontend part of Redash.", "main": "index.js", "scripts": {