This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a change to branch sql_rowcount
in repository https://gitbox.apache.org/repos/asf/superset.git
discard e5de7e17c6 remove bad flaky fix
discard 1e3153f5a1 rebasoing
discard f18a6f4d64 flaky test
discard 8e84c0877c fix unit test
discard 988a3d157c fix tsc
discard 405083ccf6 fix: row limits & row count labels are confusing
add a23bfeda0a chore: Updates translation owners (#27839)
add a664e21054 chore(🦾): bump python simplejson 3.17.3 -> 3.19.2 (#27757)
add ca47717eb0 chore: Adds the 4.0 release notes (#27441)
add 0d0e47acf7 chore(🦾): bump python flask-session 0.5.0 -> 0.8.0 (#27751)
add 3e147f8693 fix: alembic's 'superset db migrate' fails with
CompileError (#27846)
add 9fece4f811 build(deps): bump actions/github-script from 5 to 7 (#27802)
add 8bdf457dfa feat(db): Adding DB_SQLA_URI_VALIDATOR (#27847)
add f25795c4e4 fix(dashboard): missing null check in error extra (#27845)
add 3a34c7ff7c chore: Bump to Python3.10 (#24112)
add 57d4729a5c fix: row limits & row count labels are confusing
add d19d9bfca8 fix tsc
add c99cd01592 fix unit test
add ce9c857781 flaky test
add c161cfe9ae rebasoing
add d4a259831b remove bad flaky fix
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 (e5de7e17c6)
\
N -- N -- N refs/heads/sql_rowcount (d4a259831b)
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:
.asf.yaml | 16 +--
.github/CODEOWNERS | 4 +-
.github/ISSUE_TEMPLATE/bug-report.yml | 1 -
.github/actions/setup-backend/action.yml | 2 +-
.github/supersetbot/src/docker.js | 2 +-
.github/workflows/no-op.yml | 30 ++++
.github/workflows/pre-commit.yml | 2 +-
.github/workflows/superset-cli.yml | 2 +-
.github/workflows/superset-helm-lint.yml | 2 +-
.../workflows/superset-python-integrationtest.yml | 6 +-
.github/workflows/superset-python-misc.yml | 4 +-
.github/workflows/superset-python-presto-hive.yml | 4 +-
.github/workflows/superset-python-unittest.yml | 2 +-
.github/workflows/superset-translations.yml | 2 +-
.github/workflows/supersetbot.yml | 2 +-
Dockerfile | 2 +-
Makefile | 6 +-
RELEASING/Dockerfile.from_local_tarball | 2 +-
RELEASING/Dockerfile.from_svn_tarball | 2 +-
RELEASING/Dockerfile.make_docs | 2 +-
RELEASING/Dockerfile.make_tarball | 2 +-
RELEASING/release-notes-4-0/README.md | 151 +++++++++++++++++++++
.../release-notes-4-0/media/alert-modal-1.png | Bin 0 -> 156064 bytes
.../release-notes-4-0/media/alert-modal-2.png | Bin 0 -> 146949 bytes
.../release-notes-4-0/media/alert-modal-3.png | Bin 0 -> 158396 bytes
.../release-notes-4-0/media/dashboard-dnd-1.png | Bin 0 -> 626066 bytes
.../release-notes-4-0/media/dashboard-dnd-2.png | Bin 0 -> 451634 bytes
RELEASING/release-notes-4-0/media/explore-dnd.png | Bin 0 -> 640684 bytes
RELEASING/release-notes-4-0/media/sunburst.png | Bin 0 -> 383032 bytes
RELEASING/release-notes-4-0/media/tags-1.png | Bin 0 -> 273468 bytes
RELEASING/release-notes-4-0/media/tags-2.png | Bin 0 -> 301495 bytes
UPDATING.md | 6 +
docker-compose-non-dev.yml | 2 +-
docker-compose.yml | 2 +-
docs/docs/contributing/local-backend.mdx | 2 +-
docs/docs/installation/docker.mdx | 2 +-
requirements/base.txt | 6 +-
requirements/development.in | 2 +-
requirements/development.txt | 4 +-
scripts/build_docker.py | 8 +-
.../ErrorMessage/DatabaseErrorMessage.test.tsx | 9 +-
.../ErrorMessage/DatabaseErrorMessage.tsx | 4 +-
superset/config.py | 18 ++-
superset/connectors/sqla/models.py | 5 +-
superset/db_engine_specs/base.py | 3 +
superset/models/slice.py | 8 +-
superset/utils/hashing.py | 4 +-
tests/integration_tests/charts/commands_tests.py | 7 +-
tests/unit_tests/db_engine_specs/test_base.py | 20 +++
tests/unit_tests/extensions/test_sqlalchemy.py | 2 +-
tox.ini | 2 +-
51 files changed, 301 insertions(+), 63 deletions(-)
create mode 100644 RELEASING/release-notes-4-0/README.md
create mode 100644 RELEASING/release-notes-4-0/media/alert-modal-1.png
create mode 100644 RELEASING/release-notes-4-0/media/alert-modal-2.png
create mode 100644 RELEASING/release-notes-4-0/media/alert-modal-3.png
create mode 100644 RELEASING/release-notes-4-0/media/dashboard-dnd-1.png
create mode 100644 RELEASING/release-notes-4-0/media/dashboard-dnd-2.png
create mode 100644 RELEASING/release-notes-4-0/media/explore-dnd.png
create mode 100644 RELEASING/release-notes-4-0/media/sunburst.png
create mode 100644 RELEASING/release-notes-4-0/media/tags-1.png
create mode 100644 RELEASING/release-notes-4-0/media/tags-2.png