You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@superset.apache.org by gi...@apache.org on 2021/01/05 23:22:48 UTC

[superset] branch dependabot/npm_and_yarn/superset-frontend/ini-1.3.8 updated (da97bdc -> 647fcd7)

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/ini-1.3.8
in repository https://gitbox.apache.org/repos/asf/superset.git.


 discard da97bdc  build(deps): bump ini from 1.3.5 to 1.3.8 in /superset-frontend
     add ff0fe43  feat(report): add/edit modal improvements (#12183)
     add 164db3e  fix: CTAS on multiple statements (#12188)
     add 7d88e6b  fix: Change Datasource styling fixes (#12165)
     add 62e7706  docs(api): Script to generate API docs (openapi.json) (#12050)
     add e853c16  build(deps): bump @actions/core in /.github/actions/file-changes-action (#12246)
     add 95296df  build(deps): bump node-fetch in /.github/actions/file-changes-action (#12248)
     add 8ecf82d  Remove uppercase for tab names (#12217)
     add 811e1b2  fix: Altered button crashing and title not updating on Explore view (#11960)
     add b349ede  feat(explore): Time picker enhancement follow up (#12208)
     add 8afc4c4  fix(explore): bump superset-ui to 0.16.3 and fix DeckGL bug (#12242)
     add d204b02  Set datasource panel open by default (#12211)
     add d4a854e  fix : Style caret for profile page (#12215)
     add 673dea7  docs: fix build status badge to github actions (#12251)
     add 95f0ead  fix: SaveDatasetModal save state on back button (#12205)
     add 230c0c2  build(deps-dev): bump storybook-addon-paddings in /superset-frontend (#12192)
     add 647fcd7  build(deps): bump ini from 1.3.5 to 1.3.8 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   (da97bdc)
            \
             N -- N -- N   refs/heads/dependabot/npm_and_yarn/superset-frontend/ini-1.3.8 (647fcd7)

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:
 .../actions/file-changes-action/package-lock.json  |   14 +-
 .github/actions/file-changes-action/yarn.lock      |   12 +-
 README.md                                          |    2 +-
 docs/src/resources/openapi.json                    | 3248 ++++++++++++++++++--
 .../cypress/integration/explore/control.test.ts    |   96 +-
 superset-frontend/package-lock.json                |  836 +++--
 superset-frontend/package.json                     |   60 +-
 .../components/AlteredSliceTag_spec.jsx            |    6 +-
 .../views/CRUD/alert/AlertReportModal_spec.jsx     |    5 +-
 .../src/SqlLab/components/ResultSet.tsx            |    2 +-
 .../src/SqlLab/components/TabbedSqlEditors.jsx     |    2 +-
 superset-frontend/src/chart/ChartRenderer.jsx      |    1 -
 .../src/components/AlteredSliceTag.jsx             |   37 +-
 .../components/nativeFilters/FilterBar.tsx         |    2 +-
 .../src/datasource/ChangeDatasourceModal.tsx       |   53 +-
 .../explore/components/ExploreViewContainer.jsx    |    2 +-
 .../src/explore/components/PropertiesModal.tsx     |    5 +
 .../DateFilterControl/DateFilterControl.tsx        |  837 +----
 .../controls/DateFilterControl/constants.ts        |   50 +-
 .../DateFilterControl/frame/AdvancedFrame.tsx      |   66 +
 .../DateFilterControl/frame/CalendarFrame.tsx}     |   44 +-
 .../DateFilterControl/frame/CommonFrame.tsx}       |   40 +-
 .../DateFilterControl/frame/CustomFrame.tsx        |  263 ++
 .../controls/DateFilterControl/frame}/index.ts     |    6 +-
 .../components/controls/DateFilterControl/types.ts |   18 +-
 .../components/controls/DateFilterControl/utils.ts |  209 ++
 .../src/explore/reducers/exploreReducer.js         |    1 +
 .../src/views/CRUD/alert/AlertReportModal.tsx      |   34 +-
 .../alert/components/AlertReportCronScheduler.tsx  |   19 +-
 .../src/visualizations/FilterBox/transformProps.js |    4 +-
 .../src/visualizations/TimeTable/transformProps.js |    4 +-
 .../stylesheets/less/cosmo/bootswatch.less         |   21 +
 superset/async_events/api.py                       |    8 +-
 superset/cli.py                                    |   39 +-
 superset/sql_lab.py                                |   57 +-
 superset/sql_parse.py                              |   11 +-
 superset/viz.py                                    |    2 +
 tests/sql_parse_tests.py                           |   76 +
 tests/sqllab_tests.py                              |  164 +-
 39 files changed, 4887 insertions(+), 1469 deletions(-)
 create mode 100644 superset-frontend/src/explore/components/controls/DateFilterControl/frame/AdvancedFrame.tsx
 copy superset-frontend/src/{dashboard/components/MissingChart.jsx => explore/components/controls/DateFilterControl/frame/CalendarFrame.tsx} (50%)
 copy superset-frontend/src/{dashboard/components/MissingChart.jsx => explore/components/controls/DateFilterControl/frame/CommonFrame.tsx} (52%)
 create mode 100644 superset-frontend/src/explore/components/controls/DateFilterControl/frame/CustomFrame.tsx
 copy superset-frontend/src/{common/components/Modal => explore/components/controls/DateFilterControl/frame}/index.ts (81%)
 create mode 100644 superset-frontend/src/explore/components/controls/DateFilterControl/utils.ts