You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by ma...@apache.org on 2024/03/21 19:32:07 UTC

(superset) branch fix_wait_on_db_wra updated (90320af415 -> 10af246a34)

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

maximebeauchemin pushed a change to branch fix_wait_on_db_wra
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 90320af415 fix(dashboard,css): center align 'waiting on database'
    omit 772d37ead3 fix(docker): error around missing requirements/base.txt
     add e32b1c861f docs: make k8s top item in Installation section (#27540)
     add fcceaf081c fix(db_engine_specs): Update convert_dttm to work correctly with CrateDB (#27567)
     add 6e528426dd feat: Adds option to disable drill to detail per database (#27536)
     add 6f3afab01d fix(docker): error around missing requirements/base.txt (#27608)
     new 10af246a34 fix(dashboard,css): center align 'waiting on database'

This update added new revisions after undoing existing revisions.
That is to say, some revisions that were in the old version of the
branch are not in the new version.  This situation occurs
when a user --force pushes a change and generates a repository
containing something like this:

 * -- * -- B -- O -- O -- O   (90320af415)
            \
             N -- N -- N   refs/heads/fix_wait_on_db_wra (10af246a34)

You should already have received notification emails for all of the O
revisions, and so the following emails describe only the N revisions
from the common base, B.

Any revisions marked "omit" are not gone; other references still
refer to them.  Any revisions marked "discard" are gone forever.

The 1 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:
 .github/supersetbot/package.json                   |   2 +-
 .github/supersetbot/src/cli.js                     |   8 +-
 .github/supersetbot/src/cli.test.js                |  12 ++
 .../installing-superset-using-docker-compose.mdx   |  21 ++-
 docs/docs/installation/running-on-kubernetes.mdx   |  12 +-
 docs/docs/intro.mdx                                |   1 -
 docs/static/resources/openapi.json                 |   3 +
 .../DrillDetail/DrillDetailMenuItems.test.tsx      |  16 +-
 .../Chart/DrillDetail/DrillDetailMenuItems.tsx     | 185 ++++++++++-----------
 .../DatabaseSelector/DatabaseSelector.test.tsx     |   4 +
 superset-frontend/src/dashboard/types.ts           |   2 +
 .../databases/DatabaseModal/ExtraOptions.tsx       |  16 ++
 superset-frontend/src/features/databases/types.ts  |   1 +
 .../AddDataset/LeftPanel/LeftPanel.test.tsx        |   4 +
 superset-frontend/src/types/Database.ts            |   1 +
 superset/dashboards/schemas.py                     |   1 +
 superset/databases/api.py                          |   1 +
 superset/databases/schemas.py                      |   5 +-
 superset/db_engine_specs/crate.py                  |   2 +-
 superset/models/core.py                            |   8 +-
 superset/sqllab/utils.py                           |   1 +
 superset/views/database/mixins.py                  |   4 +-
 tests/integration_tests/core_tests.py              |  23 +++
 tests/integration_tests/databases/api_tests.py     |   1 +
 tests/unit_tests/db_engine_specs/test_crate.py     |   2 +-
 25 files changed, 212 insertions(+), 124 deletions(-)
 create mode 100644 .github/supersetbot/src/cli.test.js


(superset) 01/01: fix(dashboard,css): center align 'waiting on database'

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

maximebeauchemin pushed a commit to branch fix_wait_on_db_wra
in repository https://gitbox.apache.org/repos/asf/superset.git

commit 10af246a34792da9255522396866d1abf1856173
Author: Maxime Beauchemin <ma...@gmail.com>
AuthorDate: Thu Mar 21 12:25:25 2024 -0700

    fix(dashboard,css): center align 'waiting on database'
---
 superset-frontend/src/components/Chart/Chart.jsx | 1 +
 1 file changed, 1 insertion(+)

diff --git a/superset-frontend/src/components/Chart/Chart.jsx b/superset-frontend/src/components/Chart/Chart.jsx
index b7d09dfd31..0ed18fc2c3 100644
--- a/superset-frontend/src/components/Chart/Chart.jsx
+++ b/superset-frontend/src/components/Chart/Chart.jsx
@@ -105,6 +105,7 @@ const defaultProps = {
 const Styles = styled.div`
   min-height: ${p => p.height}px;
   position: relative;
+  text-align: center;
 
   .chart-tooltip {
     opacity: 0.75;