diff --git a/.circleci/config.yml b/.circleci/config.yml index b7d7033e9e..bb4fe96603 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -90,21 +90,6 @@ jobs: - run: name: Execute Cypress tests command: npm run cypress run-ci - build-tarball: - docker: - - image: circleci/node:8 - steps: - - checkout - - run: sudo apt install python-pip - - run: sudo pip install -r requirements_bundles.txt - - run: npm install - - run: .circleci/update_version - - run: npm run bundle - - run: npm run build - - run: rm -rf ./node_modules/ - - run: .circleci/pack - - store_artifacts: - path: /tmp/artifacts/ build-docker-image: docker: - image: circleci/node:8 @@ -130,16 +115,6 @@ workflows: - frontend-e2e-tests: requires: - frontend-lint - - build-tarball: - requires: - - backend-unit-tests - - frontend-unit-tests - - frontend-e2e-tests - filters: - branches: - only: - - master - - /release\/.*/ - build-docker-image: requires: - backend-unit-tests diff --git a/CHANGELOG.md b/CHANGELOG.md index b6c91c8351..552ab604af 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,27 @@ # Change Log +## v8.0.0-beta.2 - 2019-09-16 + +This is an update to the previous beta release, which includes: + +* Add options for users to share anonymous usage information with us (see [docs](https://redash.io/help/open-source/admin-guide/usage-data) for details). +* Visualizations: + - Allow the user to decide how to handle null values in charts. +* Upgrade Sentry-SDK to latest version. +* Make horizontal table scroll visible in dashboard widgets without scrolling. +* Data Sources: + * Add support for Azure Data Explorer (Kusto). + * MySQL: fix connections without SSL configuration failing. + * Amazon Redshift: option to set query group for adhoc/scheduled queries. + * Hive: make error message more friendly. + * Qubole: add support to run Quantum queries. +* Display data source icon in query editor. +* Fix: allow users with view only acces to use the queries in Query Results +* Dashboard: when updating parameters refersh only widgets that use those parameters. + +This release had contributions from 12 people: @arikfr, @cclauss, @gabrieldutra, @justinclift, @kravets-levko, @ranbena, @rauchy, @sandeepV2, @shinsuke-nara, @spacentropy, @sphenlee, @swfz. + + ## v8.0.0-beta - 2019-08-18 After months of being heads down with hard work, it's finally time to wrap up the V8 release 🤩 This release includes many long awaited improvements to parameters, UX improvements, further React migration and other changes, fixes and improvements. diff --git a/package.json b/package.json index c30a8f3b5c..338a1a94a7 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "redash-client", - "version": "8.0.0-beta", + "version": "8.0.0-beta.2", "description": "The frontend part of Redash.", "main": "index.js", "scripts": { diff --git a/redash/__init__.py b/redash/__init__.py index 0cd1a5db03..d6f847fbec 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-beta' +__version__ = '8.0.0-beta.2' if os.environ.get("REMOTE_DEBUG"):