Skip to content
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

Merge lastest from master into lyft-release-sp8 #7405

Merged
merged 21 commits into from
Apr 29, 2019
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
7192d36
filter out all nan series (#7313)
datability-io Apr 19, 2019
8fd7d4b
improve not rich tooltip (#7345)
datability-io Apr 22, 2019
845218d
Create issue_label_bot.yaml (#7341)
Apr 22, 2019
5f14b55
fix: do not save colors without a color scheme (#7347)
khtruong Apr 22, 2019
cf87173
[wtforms] Strip leading/trailing whitespace (#7084)
john-bodley Apr 23, 2019
621cef7
[schema] Updating the datasources schema (#5451)
john-bodley Apr 23, 2019
4bc69c0
limit tables/views returned if schema is not provided (#7358)
datability-io Apr 23, 2019
48b2af4
Add type anno (#7342)
craig-rueda Apr 23, 2019
1388452
[schema] Updating the base column schema (#5452)
john-bodley Apr 24, 2019
f58e7b2
Update 937d04c16b64_update_datasources.py (#7361)
john-bodley Apr 24, 2019
cb7c806
Feature flag for client cache (#7348)
betodealmeida Apr 24, 2019
fef5b5e
Fix raw HTML in SliceAdder (#7338)
mistercrunch Apr 24, 2019
7788124
remove backendSync.json (#7331)
kristw Apr 24, 2019
e61a8ee
[bubbles] issue when using duplicated metrics (#7087)
mistercrunch Apr 24, 2019
e8af852
SUPERSET-7: Docker compose config version breaks on Ubuntu 16.04 (#7359)
andrewmusselman Apr 24, 2019
7bc8355
SUPERSET-8: Update text in docs copyright footer (#7360)
andrewmusselman Apr 24, 2019
3a359fd
[schema] Adding commits and removing unnecessary foreign-key definiti…
john-bodley Apr 24, 2019
f83b979
Store last selected dashboard in sessionStorage (#7181)
leakingoxide Apr 24, 2019
f488a32
[schema] Updating the base metric schema (#5453)
john-bodley Apr 25, 2019
929fb6b
Merge branch 'lyftga'
mistercrunch Apr 25, 2019
4fe152d
Fix NoneType bug & fill the test recipients with original recipients …
tssujt Apr 25, 2019
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions .github/issue_label_bot.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
# for Issue Label Bot https://github.com/marketplace/issue-label-bot
label-alias:
bug: '#bug'
feature_request: '#enhancement'
question: '#question'
2 changes: 0 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,8 +14,6 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
cache:
pip: true
jobs:
include:
- language: python
Expand Down
20 changes: 18 additions & 2 deletions UPDATING.md
Original file line number Diff line number Diff line change
Expand Up @@ -21,11 +21,27 @@ under the License.
This file documents any backwards-incompatible changes in Superset and
assists people when migrating to a new version.

## Superset 0.34.0

* [5451](https://github.com/apache/incubator-superset/pull/5451): a change
which adds missing non-nullable fields to the `datasources` table. Depending on
the integrity of the data, manual intervention may be required.

* [5452](https://github.com/apache/incubator-superset/pull/5452): a change
which adds missing non-nullable fields and uniqueness constraints to the
`columns`and `table_columns` tables. Depending on the integrity of the data,
manual intervention may be required.

* [5453](https://github.com/apache/incubator-superset/pull/5453): a change
which adds missing non-nullable fields and uniqueness constraints to the metrics
and sql_metrics tables. Depending on the integrity of the data, manual
intervention may be required.

## Superset 0.32.0

* `npm run backend-sync` is deprecated and no longer needed, will fail if called
* [5445](https://github.com/apache/incubator-superset/pull/5445) : a change
which prevents encoding of empty string from form data in the datanbase.
* [5445](https://github.com/apache/incubator-superset/pull/5445): a change
which prevents encoding of empty string from form data in the database.
This involves a non-schema changing migration which does potentially impact
a large number of records. Scheduled downtime may be advised.

Expand Down
2 changes: 1 addition & 1 deletion contrib/docker/docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
# See the License for the specific language governing permissions and
# limitations under the License.
#
version: '3'
version: '2'
services:
redis:
image: redis:3.2
Expand Down
4 changes: 2 additions & 2 deletions docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@

# General information about the project.
project = "Apache Superset"
copyright = 'Copyright © 2018 The Apache Software Foundation, Licensed under the Apache License, Version 2.0.'
copyright = 'Copyright © 2019 The Apache Software Foundation, Licensed under the Apache License, Version 2.0.'
author = u'Apache Superset Dev'

# The version info for the project you're documenting, acts as replacement for
Expand Down Expand Up @@ -194,7 +194,7 @@
html_show_sphinx = False

# If true, "(C) Copyright ..." is shown in the HTML footer. Default is True.
html_show_copyright = True
html_show_copyright = False

# If true, an OpenSearch description file will be output, and all pages will
# contain a <link> tag referring to it. The value of this option must be the
Expand Down
Loading