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

beto pushed a change to branch SO-1003
in repository https://gitbox.apache.org/repos/asf/incubator-superset.git.


    omit fe07aae  Export charts as Zip file
    omit a8c98cb  Add logging when failing to parse extra
    omit 8a2c17f  Export datasets as ZIP files
     add 3a0fcda  Fix tabs switching in SouthPane (#11343)
     add c360413  style(menu): clean up right menu - leaving only "Settings" 
(#11227)
     add 796a2a6  fix: error around latest partition in BigQuery (#11274)
     add 43aca6a  docs: add a roadmap page pointing to SIP-53 (#11169)
     add cae54ac  style: using correct + icon on New Query button (#11353)
     add 225c905  fix(listview): hide actions column if no actions are allowed 
(#11337)
     add 54c2ad4  fix(sqla): allow 'unknown' type queries in explore view 
(#11365)
     add dfbcbcc  fix: Allow "EXPLAIN" queries when "Allow DML" setting is 
False (#11348)
     add f14cf9d  fix: saved_query search on schema and database not working 
(#11286)
     add 6fe7b4a  feat: adding feature flags to escape/hide html in markdown 
(#11340)
     add 6dd5d5c  style: make <Label/> not uppercase (#11355)
     add f6436b7  fix: 'Save Chart' modal's dashboard dropdown isn't sticky 
(#11338)
     add 69046f0  style(sqllab): wrap text in monospace db-provided error 
messages (#11354)
     add c4effe1  Log warning for failure to get table/view names from DB 
(#11374)
     add 9dfe9ae  Fix overflowing tabs (#11367)
     add a2a614d  feat: CSS Templates List Actions (#11271)
     add dcf1276  chore(prophet): ignore logged warning for missing plotly 
package (#11334)
     add a366a34  docs: Fix typo in installing from scratch (#11026)
     add 6c5da18  removing outlines on a few key elements (#11372)
     add 85e28dd  perf(api): improve API info performance (#11346)
     add b86f779  feat: add statsd metrics to FAB rest API post, put and delete 
(#11362)
     add 5a3d23d  docs: add VLMedia to users list (#11386)
     add 64b5aae  style: improve the "Create New Chart" screen's usability 
(#11383)
     add 00e3944  feat: export datasets as ZIP files (#11332)
     add 25ce37f  Export datasets as ZIP files
     add 64e3502  Add logging when failing to parse extra
     add af4ae0a  Export charts as Zip file

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   (fe07aae)
            \
             N -- N -- N   refs/heads/SO-1003 (af4ae0a)

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.

No new revisions were added by this update.

Summary of changes:
 .pre-commit-config.yaml                            |   2 +-
 INTHEWILD.md                                       |   1 +
 UPDATING.md                                        |   4 +
 docs/src/pages/docs/roadmap-page.mdx               |  11 +-
 docs/static/images/roadmap.png                     | Bin 0 -> 522043 bytes
 setup.cfg                                          |   1 +
 .../spec/javascripts/components/Menu_spec.jsx      |   2 +-
 .../CRUD/csstemplates/CssTemplatesList_spec.jsx    |  91 +++++++-
 .../src/SqlLab/components/QuerySearch.jsx          |   4 +
 .../src/SqlLab/components/ResultSet.tsx            |   5 +
 .../src/SqlLab/components/SouthPane.jsx            |   3 +-
 .../src/SqlLab/components/TableElement.jsx         |   2 +-
 superset-frontend/src/SqlLab/main.less             |   1 +
 .../src/addSlice/AddSliceContainer.tsx             |   3 +-
 superset-frontend/src/components/Button/index.tsx  |   2 +-
 superset-frontend/src/components/Menu/Menu.tsx     |  63 ++++--
 superset-frontend/src/components/Menu/NewMenu.tsx  |  22 +-
 superset-frontend/src/components/Menu/UserMenu.tsx |  56 -----
 .../components/dataViewCommon/TableCollection.tsx  |   1 +
 .../components/gridComponents/Markdown.jsx         |  30 ++-
 .../explore/components/controls/VizTypeControl.jsx |   7 +-
 superset-frontend/src/featureFlags.ts              |   2 +
 .../src/views/CRUD/chart/ChartList.tsx             |   5 +-
 .../views/CRUD/csstemplates/CssTemplatesList.tsx   | 209 ++++++++++++++---
 .../src/views/CRUD/dashboard/DashboardList.tsx     |   6 +-
 .../src/views/CRUD/data/database/DatabaseList.tsx  |   6 +-
 .../src/views/CRUD/data/dataset/DatasetList.tsx    |   6 +-
 .../views/CRUD/data/savedquery/SavedQueryList.tsx  |   8 +-
 superset-frontend/src/views/CRUD/hooks.ts          |   2 +-
 .../stylesheets/less/cosmo/bootswatch.less         |   1 -
 superset-frontend/stylesheets/superset.less        |   8 +
 superset/config.py                                 |   7 +
 superset/connectors/sqla/models.py                 |   3 +-
 superset/css_templates/api.py                      |   3 +
 superset/databases/commands/export.py              |   2 +-
 superset/datasets/commands/export.py               |   2 +-
 superset/db_engine_specs/base.py                   |  12 +
 superset/db_engine_specs/bigquery.py               |  19 ++
 superset/models/core.py                            |   7 +-
 superset/queries/saved_queries/api.py              |   2 +-
 superset/sql_parse.py                              |  11 +-
 superset/utils/pandas_postprocessing.py            |   6 +
 superset/views/base_api.py                         |  24 ++
 superset/views/core.py                             |   1 +
 superset/views/css_templates.py                    |   6 +-
 superset/views/utils.py                            |  10 +-
 tests/css_templates/api_tests.py                   |  13 +-
 tests/databases/api_tests.py                       |  11 +-
 tests/datasets/api_tests.py                        | 248 +++++++++++++--------
 tests/db_engine_specs/bigquery_tests.py            |  21 ++
 tests/queries/saved_queries/api_tests.py           |  50 +++++
 tests/sql_parse_tests.py                           |  48 ++++
 52 files changed, 793 insertions(+), 277 deletions(-)
 create mode 100644 docs/static/images/roadmap.png
 delete mode 100644 superset-frontend/src/components/Menu/UserMenu.tsx

Reply via email to