You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by be...@apache.org on 2023/06/29 21:36:26 UTC

[superset] branch generate_screenshots_custom_width updated (dbbbdbc5b8 -> 74cecb1f8b)

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

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


 discard dbbbdbc5b8 feat: screenshot reports with custom width
    omit d15b4109f0 Fix heads
    omit e6edcde4e8 Revert small change
    omit fb43237b21 Fix style
    omit 41831c4072 Add affordances
    omit 6de6a288cf Update reports model
    omit 34c2690447 Add some constants
     add bb1db9e86f fix: Deque mutated during iteration (#24550)
     add 38df1a873f chore: Un-revert enabling CSP by default (#24543)
     add bf9338129a docs: updating images and markdown (#24462)
     add 46159fd190 build(docker): add dockerize image (#24534)
     add 6a8f60f9fd chore: deprecate FLASK_ENV and improve conf.ENVIRONMENT_TAG_CONFIG (#24404)
     add 0d976765ec build(deps): bump semver from 7.3.8 to 7.5.3 in /superset-websocket/utils/client-ws-app (#24501)
     add b543756957 build(deps-dev): bump @typescript-eslint/parser from 5.60.0 to 5.60.1 in /superset-websocket (#24522)
     add 89225d3938 build(deps-dev): bump @types/node from 20.3.1 to 20.3.2 in /superset-websocket (#24524)
     add 2dfb50b83a build(deps): bump tox from 4.6.1 to 4.6.3 in /requirements (#24452)
     add 2b1275d8c4 fix: Error when searching for a dashboard in the chart list (#24546)
     add 19deb9141d feat: add description column to Tags (#24553)
     add 8ba0b81957 fix(sqllab): Add threshold for checking inactive queries (#24536)
     add be9eb0f3a3 feat: customize screenshot width for alerts/reports (#24547)
     add 74cecb1f8b feat: screenshot reports with custom width

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   (dbbbdbc5b8)
            \
             N -- N -- N   refs/heads/generate_screenshots_custom_width (74cecb1f8b)

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:
 .flaskenv                                          |   2 +-
 .github/workflows/docker_build_push.sh             |  11 ++
 .github/workflows/superset-applitool-cypress.yml   |   2 +-
 .github/workflows/superset-e2e.yml                 |   2 +-
 CONTRIBUTING.md                                    |  10 +-
 Dockerfile                                         |   2 +-
 RELEASING/from_tarball_entrypoint.sh               |   2 +-
 UPDATING.md                                        |   7 +
 docker/.env                                        |   2 +-
 docker/.env-non-dev                                |   2 +-
 dockerize.Dockerfile                               |  13 ++
 docs/docs/contributing/local-backend.mdx           |   6 +-
 .../creating-your-first-dashboard.mdx              |   8 +-
 docs/docs/security.mdx                             |  48 +++----
 docs/static/img/tutorial/tutorial_chart_resize.png | Bin 157971 -> 86804 bytes
 docs/static/img/tutorial/tutorial_edit_button.png  | Bin 0 -> 14099 bytes
 .../img/tutorial/tutorial_first_dashboard.png      | Bin 150931 -> 99255 bytes
 docs/static/img/tutorial/tutorial_pencil_edit.png  | Bin 18098 -> 0 bytes
 helm/superset/Chart.yaml                           |   2 +-
 helm/superset/README.md                            |   6 +-
 helm/superset/values.yaml                          |   4 +-
 requirements/integration.txt                       |  17 +--
 .../src/models/ExtensibleFunction.ts               |   3 +-
 superset-frontend/src/SqlLab/actions/sqlLab.js     |   4 +-
 .../SqlLab/components/QueryAutoRefresh/index.tsx   |   4 +-
 superset-frontend/src/SqlLab/reducers/sqlLab.js    |   1 +
 .../src/components/ReportModal/index.tsx           |   8 +-
 .../src/features/alerts/AlertReportModal.tsx       |  19 ++-
 superset-frontend/src/pages/ChartList/index.tsx    |   8 +-
 superset-websocket/package-lock.json               | 157 ++++++++++++++++++---
 superset-websocket/package.json                    |   4 +-
 .../utils/client-ws-app/package-lock.json          |  12 +-
 superset/config.py                                 |  46 +++++-
 superset/initialization/__init__.py                |   6 +-
 ...240d23c7f86f_update_tag_model_w_description.py} |  21 +--
 superset/tags/models.py                            |   3 +-
 .../appbuilder/general/widgets/base_list.html      |   3 +-
 .../appbuilder/general/widgets/search.html         |   3 +-
 superset/templates/superset/export_dashboards.html |   3 +-
 .../templates/superset/form_view/csv_scripts.html  |   4 +-
 .../form_view/csv_to_database_view/edit.html       |   3 +-
 .../form_view/database_schemas_selector.html       |   3 +-
 .../superset/{flash_wrapper.html => macros.html}   |   8 +-
 .../templates/superset/models/database/macros.html |   9 +-
 .../templates/superset/partials/asset_bundle.html  |   3 +-
 superset/templates/superset/theme.html             |  15 +-
 superset/utils/core.py                             |  34 ++---
 superset/views/base.py                             |  37 +++--
 tests/unit_tests/databases/ssh_tunnel/dao_tests.py |   2 +-
 49 files changed, 389 insertions(+), 180 deletions(-)
 create mode 100644 dockerize.Dockerfile
 create mode 100644 docs/static/img/tutorial/tutorial_edit_button.png
 delete mode 100644 docs/static/img/tutorial/tutorial_pencil_edit.png
 copy superset/migrations/versions/{2015-11-21_11-18_289ce07647b_add_encrypted_password_field.py => 2023-06-29_18-38_240d23c7f86f_update_tag_model_w_description.py} (72%)
 copy superset/templates/superset/{flash_wrapper.html => macros.html} (87%)