This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch social-links-footer
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 5a11e2c6ebb docs: add social media links to website footer and README
add 3868821dc81 fix(webpack): skip building service worker in dev (#38106)
add 5278deaf635 fix(metrics): normalize legacy currency strings (#37455)
add f4acce5727f fix(table): preserve time grain aggregation when temporal
column casing changes (#37893)
add b409ac9c86a docs: add social media links to website footer and README
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 (5a11e2c6ebb)
\
N -- N -- N refs/heads/social-links-footer (b409ac9c86a)
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:
.../plugin-chart-table/src/controlPanel.tsx | 4 +-
.../test/controlPanel.test.ts | 0
.../CurrencyControl/CurrencyControl.test.tsx | 29 ++++-
.../controls/CurrencyControl/CurrencyControl.tsx | 39 +++++--
superset-frontend/webpack.config.js | 7 +-
superset/connectors/sqla/models.py | 3 +-
superset/datasets/schemas.py | 22 +++-
superset/models/sql_types/__init__.py | 7 ++
superset/models/sql_types/base.py | 106 +++++++++++++++++
tests/integration_tests/datasets/api_tests.py | 2 +-
tests/unit_tests/datasets/schema_tests.py | 56 +++++++++
.../unit_tests/models/sql_types}/__init__.py | 0
.../models/sql_types/currency_type_test.py | 129 +++++++++++++++++++++
13 files changed, 385 insertions(+), 19 deletions(-)
copy superset-frontend/plugins/{plugin-chart-ag-grid-table =>
plugin-chart-table}/test/controlPanel.test.ts (100%)
create mode 100644 superset/models/sql_types/base.py
copy {superset-core/src/superset_core/api =>
tests/unit_tests/models/sql_types}/__init__.py (100%)
create mode 100644 tests/unit_tests/models/sql_types/currency_type_test.py