This is an automated email from the ASF dual-hosted git repository.
msyavuz pushed a change to branch template_less
in repository https://gitbox.apache.org/repos/asf/superset.git
from 4709eb0153 fix(Select): Merge conflicts and Select bug (#33165)
add be1b8d6751 feat(Native Filters): Exclude Filter Values (#33054)
add a53907a646 feat(Select): Select all and Deselect all that works on
visible items while searching (#33043)
add 172e5dd095 fix(echart): Thrown errors shown after resized (#33143)
add 00f1fdb3c4 fix: os.makedirs race condition (#33161)
add 4140261797 fix: subheader should show as subtitle (#33172)
add b589d44dfb fix(deckgl): Update Arc to properly adjust line width
(#33154)
add 8c94f9c435 fix(sqllab): Invalid SQL Error breaks SQL Lab (#33164)
add 79afc2b545 docs: add a high-level architecture diagram to the docs
(#33173)
add 7530487760 feat(country-map): fix France Regions IDF region code -
Fixes #32627 (#32695)
add 8fa3b8d7e3 fix(Native Filters): Keep default filter values when
configuring creatable behavior (#33205)
add 99ed968289 fix(Native Filters): Keep default filter values when
configuring creatable behavior (#33205)
add 09364d182c chore(deps-dev): bump http-proxy-middleware from 2.0.7 to
2.0.9 in /superset-frontend (#33197)
add ae48dba3e1 feat(maps): Adding Ivory Coast / Côte d'Ivoire (#33198)
add b6628cdfd2 chore: migrate to more db migration utils (#33155)
add 3729016a0d docs: improve documentation(docs): clarify URL encoding
requirement for connection strings (#30047)
add 8aa127eac2 feat(i18n): Frontend add zh_TW Option (#33192)
add 74ff8dc724 docs: Add note on SQL execution security considerations
(#33210)
add f78c94c988 docs(installation): compare installation methods (#33137)
add f7b7aace38 fix(export): Full CSV/Excel exports respecting SQL_MAX_ROW
config (#33214)
add 150b9a0168 feat(maps): Adding Republic of Serbia to country maps
(#33208)
add 6c01173c21 Merge branch 'master' into template_less
No new revisions were added by this update.
Summary of changes:
docs/data/countries.json | 2 +
docs/docs/configuration/databases.mdx | 7 +
docs/docs/contributing/resources.mdx | 86 +
docs/docs/installation/docker-builds.mdx | 2 +-
docs/docs/installation/docker-compose.mdx | 2 +-
docs/docs/installation/installation-methods.mdx | 58 +
docs/docs/installation/kubernetes.mdx | 2 +-
docs/docs/installation/pypi.mdx | 2 +-
docs/docs/installation/upgrading-superset.mdx | 2 +-
docs/docs/security/security.mdx | 20 +
docs/docusaurus.config.ts | 5 +-
docs/package.json | 7 +-
docs/src/pages/index.tsx | 2 +-
docs/yarn.lock | 7002 ++++++++++++--------
.../e2e/explore/visualizations/big_number.test.js | 4 +-
superset-frontend/package-lock.json | 6 +-
.../src/translation/types/index.ts | 3 +-
.../scripts/Country Map GeoJSON Generator.ipynb | Bin 6956447 -> 10916999
bytes
.../src/countries.ts | 4 +
.../src/countries/france_regions.geojson | 2 +-
.../src/countries/ivory_coast.geojson | 26 +
.../src/countries/republic_of_serbia.geojson | 32 +
.../src/layers/Arc/Arc.tsx | 2 +-
.../BigNumber/BigNumberTotal/controlPanel.test.ts | 97 +
.../BigNumberTotal/transformProps.test.ts | 220 +
.../src/BigNumber/BigNumberTotal/transformProps.ts | 11 +-
.../src/BigNumber/BigNumberViz.tsx | 48 -
.../src/BigNumber/sharedControls.ts | 3 +
.../plugin-chart-echarts/src/BigNumber/types.ts | 2 -
.../plugin-chart-echarts/src/components/Echart.tsx | 38 +-
.../ErrorMessage/InvalidSQLErrorMessage.test.tsx | 21 +
.../ErrorMessage/InvalidSQLErrorMessage.tsx | 12 +-
.../dashboard/components/gridComponents/Chart.jsx | 7 +-
.../components/gridComponents/Chart.test.jsx | 4 +-
.../components/Select/SelectFilterPlugin.test.tsx | 32 +
.../src/filters/components/Select/controlPanel.ts | 1 -
superset/initialization/__init__.py | 3 +-
superset/migrations/shared/utils.py | 4 +-
...cf3d64daf4_add_user_id_dttm_idx_to_log_model.py | 13 +-
..._90139bf715e4_add_currency_column_to_metrics.py | 17 +-
...20_65a167d4c62e_add_indexes_to_report_models.py | 30 +-
...20_16-02_678eefb4ab44_add_access_token_table.py | 5 +-
...0_3dfd0e78650e_add_query_sql_editor_id_index.py | 24 +-
superset/sql_parse.py | 1 +
.../translations/zh_TW/LC_MESSAGES/messages.po | 154 +-
45 files changed, 4983 insertions(+), 3042 deletions(-)
create mode 100644 docs/docs/installation/installation-methods.mdx
create mode 100644
superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/ivory_coast.geojson
create mode 100644
superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries/republic_of_serbia.geojson
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/controlPanel.test.ts
create mode 100644
superset-frontend/plugins/plugin-chart-echarts/src/BigNumber/BigNumberTotal/transformProps.test.ts