This is an automated email from the ASF dual-hosted git repository.
msyavuz pushed a change to branch msyavuz/chore/move-translator
in repository https://gitbox.apache.org/repos/asf/superset.git
discard 5d3d9bc882 fix: imports
discard 8bf25110c6 fix: imports
discard 938ccbb494 chore: format
discard fc7cc23678 chore: migrate more
discard 1d96bc74cd chore: update imports
discard 48781e5193 chore: migrate imports
discard db6aadaeaf fix: add export
discard ac478416ca chore: initial move
add d7d94ba640 fix(ag-grid): Ag Grid Date Filter timezone correction
(#36270)
add 861e5cd013 fix(security): enforce datasource access control in
get_samples() (#36550)
add 5edaed2e5b fix(alerts): wrong alert trigger with custom query (#35871)
add 7a5441bc7a refactor: Remove unimplemented APIs from
@apache-superset/core (#36952)
add 56ae8d1a45 chore: initial move
add b81a0d1bfd fix: add export
add efdad4c781 chore: migrate imports
add c0c9b0c67d chore: update imports
add 137ff15ebb chore: migrate more
add bc80bb6e0c chore: format
add 97e3cab12e fix: imports
add e8b1b24d40 fix: imports
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 (5d3d9bc882)
\
N -- N -- N refs/heads/msyavuz/chore/move-translator (e8b1b24d40)
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:
docs/developer_portal/extensions/architecture.md | 2 -
docs/developer_portal/extensions/development.md | 4 -
.../packages/superset-core/src/api/environment.ts | 153 -------
.../packages/superset-core/src/api/index.ts | 2 -
.../packages/superset-core/src/api/sqlLab.ts | 109 -----
.../src/utils/dateFilterComparator.ts | 58 ++-
.../test/utils/dateFilterComparator.test.ts | 124 ++++++
superset-frontend/src/core/authentication/index.ts | 6 +-
superset-frontend/src/core/commands/index.ts | 10 +-
superset-frontend/src/core/environment/index.ts | 57 ---
superset-frontend/src/core/extensions/index.ts | 11 +-
superset-frontend/src/core/index.ts | 1 -
superset-frontend/src/core/sqlLab/index.ts | 74 +--
.../src/extensions/ExtensionsStartup.test.tsx | 1 -
.../src/extensions/ExtensionsStartup.tsx | 16 +-
superset/commands/report/alert.py | 66 ++-
superset/commands/report/execute.py | 18 +-
superset/views/datasource/utils.py | 6 +
tests/integration_tests/reports/alert_tests.py | 8 +-
tests/unit_tests/commands/report/alert_test.py | 496 +++++++++++++++++++++
.../unit_tests/views/datasource}/__init__.py | 0
tests/unit_tests/views/datasource/utils_test.py | 217 +++++++++
22 files changed, 999 insertions(+), 440 deletions(-)
delete mode 100644
superset-frontend/packages/superset-core/src/api/environment.ts
create mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/test/utils/dateFilterComparator.test.ts
delete mode 100644 superset-frontend/src/core/environment/index.ts
create mode 100644 tests/unit_tests/commands/report/alert_test.py
copy {superset-core/src/superset_core/api =>
tests/unit_tests/views/datasource}/__init__.py (100%)
create mode 100644 tests/unit_tests/views/datasource/utils_test.py