You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ch...@apache.org on 2019/03/01 01:59:47 UTC

[incubator-superset] branch release--0.31 updated (5b7b22f -> fb8e320)

This is an automated email from the ASF dual-hosted git repository.

christine pushed a change to branch release--0.31
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    from 5b7b22f  0.31.0rc12
     new b4cbe13  VIZ-190 fix (#6958)
     new fb8e320  0.31.0rc13

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 superset/assets/package-lock.json        | 2 +-
 superset/assets/package.json             | 2 +-
 superset/assets/src/chart/chartAction.js | 5 ++++-
 3 files changed, 6 insertions(+), 3 deletions(-)


[incubator-superset] 02/02: 0.31.0rc13

Posted by ch...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

christine pushed a commit to branch release--0.31
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git

commit fb8e3208dbd95c04ea91ce4cf93502022a234210
Author: Christine Chambers <cc...@lyft.com>
AuthorDate: Thu Feb 28 17:59:24 2019 -0800

    0.31.0rc13
---
 superset/assets/package-lock.json | 2 +-
 superset/assets/package.json      | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/superset/assets/package-lock.json b/superset/assets/package-lock.json
index 9f64166..618c882 100644
--- a/superset/assets/package-lock.json
+++ b/superset/assets/package-lock.json
@@ -1,6 +1,6 @@
 {
   "name": "superset",
-  "version": "0.31.0rc12",
+  "version": "0.31.0rc13",
   "lockfileVersion": 1,
   "requires": true,
   "dependencies": {
diff --git a/superset/assets/package.json b/superset/assets/package.json
index 461fa41..6004eb5 100644
--- a/superset/assets/package.json
+++ b/superset/assets/package.json
@@ -1,6 +1,6 @@
 {
   "name": "superset",
-  "version": "0.31.0rc12",
+  "version": "0.31.0rc13",
   "description": "Superset is a data exploration platform designed to be visual, intuitive, and interactive.",
   "license": "Apache-2.0",
   "directories": {


[incubator-superset] 01/02: VIZ-190 fix (#6958)

Posted by ch...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

christine pushed a commit to branch release--0.31
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git

commit b4cbe13d22708b7c52de001db1d311a527b7fc71
Author: Kim Truong <47...@users.noreply.github.com>
AuthorDate: Wed Feb 27 21:00:56 2019 -0800

    VIZ-190 fix (#6958)
    
    
    (cherry picked from commit 50264011719b2508d1246d2b2ad3485053a697b4)
---
 superset/assets/src/chart/chartAction.js | 5 ++++-
 1 file changed, 4 insertions(+), 1 deletion(-)

diff --git a/superset/assets/src/chart/chartAction.js b/superset/assets/src/chart/chartAction.js
index bcdc4e1..ad147e3 100644
--- a/superset/assets/src/chart/chartAction.js
+++ b/superset/assets/src/chart/chartAction.js
@@ -246,7 +246,10 @@ export function runQuery(formData, force = false, timeout = 60, key) {
 export function redirectSQLLab(formData) {
   return (dispatch) => {
     const { url } = getExploreUrlAndPayload({ formData, endpointType: 'query' });
-    return SupersetClient.get({ url })
+    return SupersetClient.post({
+      url,
+      postPayload: { form_data: formData },
+    })
       .then(({ json }) => {
         const redirectUrl = new URL(window.location);
         redirectUrl.pathname = '/superset/sqllab';