This is an automated email from the ASF dual-hosted git repository.
rusackas pushed a change to branch docs/add-netlify-ci-badge
in repository https://gitbox.apache.org/repos/asf/superset.git
from c4f1f96c576 lint
add 10a9b4bb947 fix: update Apache Superset website footer copyright year
(#37435)
add 73d4332b511 feat(database): SIP-195 Add MongoDB database engine
support (#37368)
add 7fc9974a7cf fix(deps): remove encodable dependency and pin
query-string to fix Dependabot CI failures (#37450)
add 56ad429200d chore(deps): update @luma.gl/shadertools requirement from
~9.2.2 to ~9.2.6 in /superset-frontend/plugins/legacy-preset-chart-deckgl
(#37237)
add bd419d19af1 chore(deps): update core-js requirement from ^3.38.1 to
^3.48.0 in /superset-frontend/packages/superset-ui-core (#37319)
add 97aea5d128d feat(i18n): complete Māori translation (#37443)
add e28d2782f14 chore(deps): bump core-js from 3.40.0 to 3.48.0 in
/superset-frontend/packages/superset-ui-demo (#37439)
add dba75bd897f chore(deps): bump memoize-one from 5.2.1 to 6.0.0 in
/superset-frontend/packages/superset-ui-demo (#37151)
add 8f6dd4aba02 chore(deps-dev): bump typescript-eslint from 8.53.1 to
8.54.0 in /docs (#37476)
add 58ab4e78ffe chore(deps): bump antd from 6.2.1 to 6.2.2 in /docs
(#37470)
add 1681f74b2ea chore(direnv): add direnv to gitignore (#37481)
add 10a8d8b8ee4 chore(deps-dev): bump @typescript-eslint/parser from
8.53.1 to 8.54.0 in /superset-websocket (#37465)
add e4d71c2a554 docs(readme): sync database logos with auto-generated docs
(#37463)
add a7e7cc30a97 fix(ag-grid-table): preserve time grain aggregation when
temporal column casing changes (#36990)
add 5fa6925522d fix(dashboard): update chart customization UI text to
"Display controls" (#37462)
add 27a4575f3e2 refactor: Move frontend related artifacts into frontend
gitignore (#37496)
add fcb90f6f706 Merge branch 'master' into docs/add-netlify-ci-badge
No new revisions were added by this update.
Summary of changes:
.gitignore | 5 +-
README.md | 103 +-
docs/i18n/en/docusaurus-theme-classic/footer.json | 2 +-
docs/package.json | 4 +-
docs/src/data/databases.json | 75 +-
docs/static/img/databases/mongodb.png | Bin 0 -> 22190 bytes
docs/yarn.lock | 170 +-
superset-frontend/.gitignore | 4 +
superset-frontend/package-lock.json | 370 +-
superset-frontend/package.json | 1 +
.../packages/superset-ui-core/package.json | 2 +-
.../packages/superset-ui-demo/package.json | 5 +-
.../plugins/plugin-chart-table/Table.stories.tsx | 14 +-
.../legacy-preset-chart-deckgl/package.json | 2 +-
.../src/controlPanel.tsx | 4 +-
.../test/controlPanel.test.ts | 77 +
.../plugins/plugin-chart-echarts/package.json | 1 +
.../plugins/plugin-chart-word-cloud/package.json | 3 +-
.../src/chart/WordCloud.tsx | 201 +-
.../src/configureEncodable.ts | 83 -
.../plugins/plugin-chart-word-cloud/src/index.ts | 1 -
.../plugin-chart-word-cloud/src/plugin/index.ts | 3 -
.../components/CustomizationsBadge/index.tsx | 4 +-
.../nativeFilters/FilterBar/FilterBar.test.tsx | 6 +-
.../FilterBar/FilterBarSettings/index.tsx | 2 +-
.../FilterBar/FilterControls/FilterControls.tsx | 2 +-
.../nativeFilters/FilterBar/Header/Header.test.tsx | 4 +-
.../nativeFilters/FilterBar/Header/index.tsx | 2 +-
.../nativeFilters/FilterBar/Vertical.tsx | 2 +-
.../nativeFilters/FilterCard/FilterCard.test.tsx | 4 +-
.../ConfigModalSidebar/ConfigModalSidebar.tsx | 2 +-
.../FiltersConfigForm/FiltersConfigForm.tsx | 12 +-
.../FiltersConfigModal/FiltersConfigModal.tsx | 2 +-
.../FiltersConfigModal/NewItemDropdown.tsx | 2 +-
superset-websocket/package-lock.json | 313 +-
superset-websocket/package.json | 2 +-
superset/config.py | 1 +
.../db_engine_specs/{dynamodb.py => mongodb.py} | 77 +-
superset/translations/mi/LC_MESSAGES/messages.po | 14507 +++++++++++++++++++
tests/unit_tests/db_engine_specs/test_mongodb.py | 125 +
40 files changed, 15523 insertions(+), 676 deletions(-)
create mode 100644 docs/static/img/databases/mongodb.png
create mode 100644
superset-frontend/plugins/plugin-chart-ag-grid-table/test/controlPanel.test.ts
delete mode 100644
superset-frontend/plugins/plugin-chart-word-cloud/src/configureEncodable.ts
copy superset/db_engine_specs/{dynamodb.py => mongodb.py} (52%)
create mode 100644 superset/translations/mi/LC_MESSAGES/messages.po
create mode 100644 tests/unit_tests/db_engine_specs/test_mongodb.py