This is an automated email from the ASF dual-hosted git repository.

github-bot pushed a change to branch 
dependabot/npm_and_yarn/superset-frontend/react-json-tree-0.18.0
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard a747cad8b0 build(deps): bump react-json-tree in /superset-frontend
     add 068bb719c8 docs: add notes to RELEASING about how to deploy docker 
images (#26998)
     add 26025274a1 fix(maps): Move Overseas department and regions closer to 
France mainland (#26995)
     add 7a270a5922 fix(helm): Fix inconsistency for the chart appVersion and 
default image tag (#27005)
     add 607301ad56 fix(plugins): Fix dashboard filter in Period Over Period 
KPI plugin (#27013)
     add f79e08ec79 fix(cypress): resolving random dri3 error on cypress runner 
(#27001)
     add edecf52ab9 chore(github): adding code owners for translation and 
country map wor… (#27000)
     add 2cd7135a51 build(deps): bump @types/seedrandom from 2.4.30 to 3.0.8 in 
/superset-frontend (#26979)
     add e792460baf docs: add a note about database drivers in Docker builds 
(#27020)
     add 53daa1b13f chore(plugins): Description, Category and Tags for 
BigNumber with Period Time Comparison plugin (#27021)
     add 5b34395689 fix: chart import validation (#26993)
     add 5d46d3a5d3 fix(actions): make tech debt uploader not block CI and skip 
w/o creds (#26966)
     add 14f88e3f89 chore(sqllab): migrate to typescript (#26171)
     add 42b7bd5c03 fix(maps): france_regions.geojson generated with the 
notebook, from natural earth data (#27014)
     add 9670572d99 build(deps-dev): bump copy-webpack-plugin from 9.1.0 to 
12.0.2 in /superset-frontend (#26893)
     add d5ef052044 build(deps): bump react-js-cron from 1.2.0 to 2.1.2 in 
/superset-frontend (#26981)
     add 0fa703abac build(deps): bump react-json-tree in /superset-frontend

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   (a747cad8b0)
            \
             N -- N -- N   
refs/heads/dependabot/npm_and_yarn/superset-frontend/react-json-tree-0.18.0 
(0fa703abac)

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/CODEOWNERS                                 |   7 +
 .github/workflows/bashlib.sh                       |   6 +-
 .github/workflows/tech-debt.yml                    |  19 +-
 RELEASING/README.md                                |  14 +
 docs/docs/installation/docker.mdx                  |  11 +
 helm/superset/Chart.yaml                           |   2 +-
 helm/superset/README.md                            |   4 +-
 helm/superset/values.yaml                          |   2 +-
 superset-frontend/package-lock.json                | 287 ++++++++++++--
 superset-frontend/package.json                     |   4 +-
 .../packages/superset-ui-core/package.json         |   2 +-
 .../superset-ui-core/src/query/types/Query.ts      |   1 +
 .../scripts/Country Map GeoJSON Generator.ipynb    | 441 +++++++++++++++------
 .../src/countries/france.geojson                   |   9 +-
 .../src/countries/france_regions.geojson           |  34 +-
 .../src/countries_custom/france_regions.geojson    |  20 -
 .../src/plugin/buildQuery.ts                       |  16 +-
 .../src/plugin/index.ts                            |  11 +-
 .../src/plugin/transformProps.ts                   |  12 +-
 superset-frontend/spec/helpers/reducerIndex.ts     |   4 +-
 .../components/App/{App.test.jsx => App.test.tsx}  |  31 +-
 .../SqlLab/components/App/{index.jsx => index.tsx} |  52 ++-
 .../src/SqlLab/components/SqlEditor/index.tsx      |   5 +-
 ...rLeftBar.test.jsx => SqlEditorLeftBar.test.tsx} | 177 +++++----
 .../SqlLab/components/SqlEditorLeftBar/index.tsx   |  23 +-
 .../TabbedSqlEditors/TabbedSqlEditors.test.jsx     | 228 -----------
 .../TabbedSqlEditors/TabbedSqlEditors.test.tsx     | 178 +++++++++
 .../TabbedSqlEditors/{index.jsx => index.tsx}      |  95 +++--
 superset-frontend/src/SqlLab/fixtures.ts           |   2 +-
 superset-frontend/src/SqlLab/types.ts              |  19 +-
 ...ryResults.test.js => emptyQueryResults.test.ts} |   7 +-
 ...Helper.js => reduxStateToLocalStorageHelper.ts} |  18 +-
 .../src/components/EmptyState/index.tsx            |   2 +-
 superset-frontend/src/types/bootstrapTypes.ts      |   1 +
 superset/commands/chart/importers/v1/utils.py      |  13 +-
 superset/commands/dashboard/importers/v1/utils.py  |   8 +-
 superset/commands/dataset/importers/v1/utils.py    |   7 +-
 superset/errors.py                                 |   1 +
 superset/jinja_context.py                          |   9 +-
 superset/security/manager.py                       |  41 ++
 superset/utils/core.py                             |   9 +
 tests/integration_tests/charts/commands_tests.py   |   2 +-
 .../integration_tests/dashboards/commands_tests.py |   2 +-
 tests/integration_tests/datasets/commands_tests.py |   2 +-
 .../charts/commands/importers/v1/import_test.py    | 164 ++++++--
 .../commands/importers/v1/import_test.py           | 152 +++----
 tests/unit_tests/security/manager_test.py          | 140 +++++++
 47 files changed, 1512 insertions(+), 782 deletions(-)
 delete mode 100644 
superset-frontend/plugins/legacy-plugin-chart-country-map/src/countries_custom/france_regions.geojson
 rename superset-frontend/src/SqlLab/components/App/{App.test.jsx => 
App.test.tsx} (86%)
 rename superset-frontend/src/SqlLab/components/App/{index.jsx => index.tsx} 
(85%)
 rename 
superset-frontend/src/SqlLab/components/SqlEditorLeftBar/{SqlEditorLeftBar.test.jsx
 => SqlEditorLeftBar.test.tsx} (54%)
 delete mode 100644 
superset-frontend/src/SqlLab/components/TabbedSqlEditors/TabbedSqlEditors.test.jsx
 create mode 100644 
superset-frontend/src/SqlLab/components/TabbedSqlEditors/TabbedSqlEditors.test.tsx
 rename superset-frontend/src/SqlLab/components/TabbedSqlEditors/{index.jsx => 
index.tsx} (83%)
 rename superset-frontend/src/SqlLab/utils/{emptyQueryResults.test.js => 
emptyQueryResults.test.ts} (94%)
 rename superset-frontend/src/SqlLab/utils/{reduxStateToLocalStorageHelper.js 
=> reduxStateToLocalStorageHelper.ts} (83%)

Reply via email to