This is an automated email from the ASF dual-hosted git repository.
maximebeauchemin pushed a change to branch Dataset
in repository https://gitbox.apache.org/repos/asf/superset.git
discard aa29cc9a2b no pylint verbose report
discard f841eb28e4 pylint
discard 70478879fb fix .get_extra_cache_keys
discard 38560107b6 replace in tests
discard 9e75d6fa76 auto-replace
discard 1408522152 chore: refactor SqlTable and BaseDatasource into Dataset
add de3a1d87b3 docs: various adjustments across the docs (#29093)
add eef7828681 fix(i18n): improved Russian translation (#28572)
add bb9f326f9b chore: change security error level (#28641)
add 8f02eb0a34 fix: Cypress CI process while opening PR from a fork
(#29098)
add 5c9a79442c fix(embedded): add missing GUEST_TOKEN_HEADER_NAME to
bootstrap data (#28932)
add 961cb961e9 refactor: Removes the export of QueryFormData (#28786)
add 9cdf6b88ad docs: Add Gavagai to INTHEWILD (#29104)
add f2e020e398 fix(helm): Set priorityClassName to pods (superset,
celeryBeat, celeryBeatFlower, celeryBeatWorker, celeryBeatWebsocket, jobs)
(#29091)
add 066f6b1f8a feat: add Current time-range options for time filter
(#28637)
add 76b178a17d chore: refactor SqlTable and BaseDatasource into Dataset
add e192bb08cd auto-replace
add 5dd679aba5 replace in tests
add b6a4033d8d fix .get_extra_cache_keys
add f9523232f4 fixage
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 (aa29cc9a2b)
\
N -- N -- N refs/heads/Dataset (f9523232f4)
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:
.github/workflows/superset-e2e.yml | 1 -
RESOURCES/INTHEWILD.md | 1 +
docker/pythonpath_dev/superset_config.py | 9 +
docs/docs/configuration/alerts-reports.mdx | 2 +-
docs/docs/configuration/configuring-superset.mdx | 2 +-
docs/docs/configuration/databases.mdx | 4 +-
docs/docs/configuration/networking-settings.mdx | 4 +-
docs/docs/installation/docker-compose.mdx | 4 +-
docs/docs/installation/upgrading-superset.mdx | 4 +-
docs/docs/quickstart.mdx | 4 +-
docs/docs/using-superset/exploring-data.mdx | 4 +-
helm/superset/Chart.yaml | 2 +-
helm/superset/README.md | 8 +-
helm/superset/templates/deployment-beat.yaml | 3 +
helm/superset/templates/deployment-flower.yaml | 3 +
helm/superset/templates/deployment-worker.yaml | 5 +-
helm/superset/templates/deployment-ws.yaml | 3 +
helm/superset/templates/deployment.yaml | 5 +-
helm/superset/templates/init-job.yaml | 3 +
helm/superset/values.yaml | 13 +
.../src/explore/actions/saveModalActions.test.ts | 3 +-
.../src/explore/actions/saveModalActions.ts | 1 -
.../controls/DateFilterControl/DateFilterLabel.tsx | 8 +
...{CalendarFrame.tsx => CurrentCalendarFrame.tsx} | 37 +-
.../controls/DateFilterControl/components/index.ts | 1 +
.../tests/CurrentCalendarFrame.test.tsx} | 27 +-
.../components/controls/DateFilterControl/types.ts | 13 +
.../controls/DateFilterControl/utils/constants.ts | 31 +-
.../DateFilterControl/utils/dateFilterUtils.ts | 4 +
superset/__init__.py | 2 -
superset/commands/report/alert.py | 16 +-
superset/connectors/sqla/models.py | 61 +-
superset/connectors/sqla/utils.py | 18 +-
superset/embedded/view.py | 5 +-
superset/models/core.py | 46 +-
superset/models/helpers.py | 164 +-
superset/models/sql_lab.py | 7 -
superset/security/manager.py | 10 +-
superset/translations/ar/LC_MESSAGES/messages.po | 5516 +--
superset/translations/de/LC_MESSAGES/messages.po | 33756 +++++++++---------
superset/translations/en/LC_MESSAGES/messages.po | 23336 ++++++-------
superset/translations/es/LC_MESSAGES/messages.po | 31123 ++++++++---------
superset/translations/fr/LC_MESSAGES/messages.po | 34712 ++++++++++---------
superset/translations/it/LC_MESSAGES/messages.po | 28399 +++++++--------
superset/translations/ja/LC_MESSAGES/messages.po | 31841 ++++++++---------
superset/translations/ko/LC_MESSAGES/messages.po | 27726 +++++++--------
superset/translations/messages.pot | 23298 +++++++------
superset/translations/nl/LC_MESSAGES/messages.po | 33361 +++++++++---------
superset/translations/pt/LC_MESSAGES/messages.po | 29294 ++++++++--------
.../translations/pt_BR/LC_MESSAGES/messages.po | 33583 +++++++++---------
superset/translations/ru/LC_MESSAGES/messages.po | 32942 +++++++++---------
superset/translations/sk/LC_MESSAGES/messages.po | 23889 ++++++-------
superset/translations/sl/LC_MESSAGES/messages.po | 33028 +++++++++---------
superset/translations/tr/LC_MESSAGES/messages.po | 26220 +++++++-------
superset/translations/uk/LC_MESSAGES/messages.po | 33217 +++++++++---------
superset/translations/zh/LC_MESSAGES/messages.po | 32191 ++++++++---------
.../translations/zh_TW/LC_MESSAGES/messages.po | 5817 ++--
superset/utils/date_parser.py | 30 +
superset/utils/json.py | 9 +
superset/views/datasource/views.py | 4 +
tests/integration_tests/base_tests.py | 61 +-
tests/integration_tests/datasource_tests.py | 16 +-
tests/integration_tests/superset_test_config.py | 2 +-
tests/unit_tests/utils/date_parser_tests.py | 20 +
64 files changed, 264165 insertions(+), 259764 deletions(-)
copy
superset-frontend/src/explore/components/controls/DateFilterControl/components/{CalendarFrame.tsx
=> CurrentCalendarFrame.tsx} (60%)
copy superset-frontend/{spec/helpers/setup.ts =>
src/explore/components/controls/DateFilterControl/tests/CurrentCalendarFrame.test.tsx}
(54%)