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

rusackas pushed a change to branch bifurcating_user_admin_docs
in repository https://gitbox.apache.org/repos/asf/superset.git


 discard 37c3fea7315 fix: pre-commit eslint-docs sed strips docs/ from 
developer_docs path
    omit 779d677b11a docs: fix default imports to named imports in component 
docs
    omit 67a33716701 docs: add ASF license header to admin_docs/index.md
    omit 26efc313e70 docs: fix broken links, missing sidebar entries, and 
restore lost content
    omit d72faba8984 docs: rename /docs to /user-docs for consistency
    omit ed205215014 docs: bifurcate documentation into user, admin, and 
developer sections
    omit 5dbb383b598 docs: fix internal links and add user-facing SQL 
templating guide
    omit 713f10999d2 docs: add missing URL redirects for docs restructuring
     add e06427d1efe feat(embedded): add feature flag to disable logout button 
in embedded contexts (#37537)
     add 8f070169a59 perf(datasource): add pagination to datasource editor 
tables to prevent browser freeze (#37555)
     add 8a74424545a fix(types): add explicit types for extendedDayjs plugin 
methods (#37923)
     add 615f13419cb fix(jest): ignore storybook-static and package __mocks__ 
directories (#37946)
     add 8eb30468884 fix(docs): guard window reference in logging.ts for SSR 
compatibility (#38201)
     add b8459c15b86 chore(deps-dev): bump @typescript-eslint/parser from 
8.56.0 to 8.56.1 in /docs (#38211)
     add f60432e34cf fix: Allow non-owners to fave/unfave charts (#38095)
     add fca8a495611 feat: auto refresh dashboard (#37459)
     add 974bee14c3e fix(extensions): make LOCAL_EXTENSIONS loading resilient 
to individual failures (#38217)
     add 7b04d251d60 fix(build): restore automatic .d.ts generation in dev mode 
(#38202)
     add 762e9d6f05e docs: add missing URL redirects for docs restructuring
     add 62e91ab6d23 docs: fix internal links and add user-facing SQL 
templating guide
     add 45d853bf5d4 docs: bifurcate documentation into user, admin, and 
developer sections
     add 03116f1dfca docs: rename /docs to /user-docs for consistency
     add 4659dc88288 docs: fix broken links, missing sidebar entries, and 
restore lost content
     add edfd01a9998 docs: add ASF license header to admin_docs/index.md
     add 06b1b3d57c0 docs: fix default imports to named imports in component 
docs
     add 7d5579a56e4 fix: pre-commit eslint-docs sed strips docs/ from 
developer_docs path

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   (37c3fea7315)
            \
             N -- N -- N   refs/heads/bifurcating_user_admin_docs (7d5579a56e4)

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:
 .../configuration/networking-settings.mdx          |  18 +
 docs/package.json                                  |   2 +-
 docs/static/feature-flags.json                     |   8 +
 docs/yarn.lock                                     |  67 +++-
 superset-frontend/jest.config.js                   |   5 +
 .../packages/superset-core/src/utils/logging.ts    |   3 +-
 .../src/components/Icons/AntdEnhanced.tsx          |  10 +-
 .../packages/superset-ui-core/src/utils/dates.ts   |  40 +-
 .../superset-ui-core/src/utils/featureFlags.ts     |   1 +
 .../plugin-chart-echarts/src/BigNumber/types.ts    |   1 +
 .../plugin-chart-echarts/src/Graph/buildQuery.ts   |  21 +-
 .../plugin-chart-echarts/src/Heatmap/Heatmap.tsx   |   3 +-
 .../plugin-chart-echarts/src/Sankey/buildQuery.ts  |  19 +-
 .../plugin-chart-echarts/src/Timeseries/types.ts   |   1 +
 .../plugin-chart-echarts/src/Tree/buildQuery.ts    |  15 +-
 .../src/Tree/transformProps.ts                     |  10 +-
 .../src/Treemap/EchartsTreemap.tsx                 |   2 +-
 .../plugin-chart-echarts/src/Treemap/buildQuery.ts |  16 +-
 .../plugin-chart-echarts/src/components/Echart.tsx |  30 +-
 .../plugins/plugin-chart-echarts/src/types.ts      |   1 +
 .../src/utils/orderby.test.ts}                     |  19 +-
 .../plugin-chart-echarts/src/utils/orderby.ts      |  51 +++
 .../plugin-chart-echarts/src/utils/series.ts       |   6 +-
 .../test/Graph/buildQuery.test.ts                  |   2 +
 .../test/Timeseries/transformProps.test.ts         |   2 +-
 .../test/Tree/buildQuery.test.ts                   |  33 +-
 .../plugin-chart-echarts/test/utils/series.test.ts |   2 +-
 .../src/plugin/buildQuery.ts                       |  17 +-
 superset-frontend/src/components/Chart/Chart.tsx   |   6 +-
 .../src/components/Chart/ChartRenderer.test.tsx    |  70 +++-
 .../src/components/Chart/ChartRenderer.tsx         |  18 +-
 .../src/components/Chart/chartAction.ts            |  24 +-
 .../src/components/Chart/chartReducer.ts           |   8 +
 .../src/components/Chart/chartReducers.test.ts     |  30 +-
 .../Datasource/DatasourceModal/index.tsx           |   7 +-
 .../components/CollectionTable/index.tsx           |  55 ++-
 .../DatasourceEditor/DatasourceEditor.tsx          | 367 ++++++++++--------
 .../DatasetUsageTab/DatasetUsageTab.test.tsx       | 143 +++++++
 .../components/DatasetUsageTab/index.tsx           |  71 +++-
 .../tests/DatasourceEditor.test.tsx                | 242 ++++++++++++
 .../src/components/Datasource/types.ts             |  11 +
 .../src/dashboard/actions/autoRefresh.ts           | 124 +++++++
 .../src/dashboard/actions/dashboardState.test.ts   | 164 +++++++++
 .../src/dashboard/actions/dashboardState.ts        |  63 ++--
 superset-frontend/src/dashboard/actions/hydrate.ts |   2 +
 .../components/AutoRefreshIndicator/index.tsx      | 169 +++++++++
 .../AutoRefreshStatus/StatusIndicatorDot.test.tsx  | 114 ++++++
 .../AutoRefreshStatus/StatusIndicatorDot.tsx       | 168 +++++++++
 .../StatusTooltipContent.test.tsx                  | 180 +++++++++
 .../AutoRefreshStatus/StatusTooltipContent.tsx     | 178 +++++++++
 .../components/FiltersBadge/FiltersBadge.test.tsx  | 251 +++++++++----
 .../dashboard/components/FiltersBadge/index.tsx    |  27 +-
 .../dashboard/components/Header/Header.test.tsx    | 128 ++++++-
 .../src/dashboard/components/Header/index.tsx      | 383 +++++++++----------
 .../src/dashboard/components/Header/types.ts       |  26 +-
 .../Header/useHeaderActionsDropdownMenu.tsx        |  13 +-
 .../components/Header/useHeaderAutoRefresh.ts      | 410 +++++++++++++++++++++
 .../dashboard/components/PropertiesModal/index.tsx |  18 +-
 .../PropertiesModal/sections/RefreshSection.tsx    |   2 +-
 .../dashboard/components/RefreshButton/index.tsx   |  81 ++++
 .../{index.ts => RefreshFrequencySelect.test.tsx}  |  25 +-
 .../RefreshFrequency/RefreshFrequencySelect.tsx    |  67 ++--
 .../dashboard/components/RefreshIntervalModal.tsx  |  81 ++--
 .../components/gridComponents/Chart/Chart.tsx      |   5 +-
 .../components/gridComponents/Tab/Tab.test.tsx     |   2 +
 .../components/gridComponents/Tab/Tab.tsx          |  17 +-
 .../src/dashboard/containers/DashboardPage.tsx     |  15 +-
 .../dashboard/contexts/AutoRefreshContext.test.tsx | 137 +++++++
 .../src/dashboard/contexts/AutoRefreshContext.tsx  | 101 +++++
 .../hooks/useAutoRefreshTabPause.test.tsx          | 378 +++++++++++++++++++
 .../src/dashboard/hooks/useAutoRefreshTabPause.ts  | 146 ++++++++
 .../src/dashboard/hooks/useCurrentTime.test.ts     | 182 +++++++++
 .../src/dashboard/hooks/useCurrentTime.ts          |  67 ++++
 .../dashboard/hooks/useRealTimeDashboard.test.ts   | 175 +++++++++
 .../src/dashboard/hooks/useRealTimeDashboard.ts    | 245 ++++++++++++
 .../src/dashboard/hooks/useTabVisibility.test.ts   | 175 +++++++++
 .../src/dashboard/hooks/useTabVisibility.ts        | 102 +++++
 .../dashboard/reducers/autoRefreshReducer.test.ts  | 246 +++++++++++++
 .../src/dashboard/reducers/dashboardState.ts       |  81 ++++
 superset-frontend/src/dashboard/types.ts           |  16 +-
 .../src/dashboard/types/autoRefresh.ts             |  64 ++++
 .../src/features/home/RightMenu.test.tsx           |  83 +++++
 superset-frontend/src/features/home/RightMenu.tsx  |  33 +-
 superset-frontend/webpack.config.js                |  21 +-
 superset/commands/chart/fave.py                    |   8 -
 superset/commands/chart/unfave.py                  |   8 -
 superset/config.py                                 |   5 +
 superset/extensions/utils.py                       |  25 +-
 tests/integration_tests/charts/commands_tests.py   |  17 +-
 89 files changed, 5777 insertions(+), 708 deletions(-)
 copy superset-frontend/{src/explore/exploreUtils/getLegacyEndpointType.test.ts 
=> plugins/plugin-chart-echarts/src/utils/orderby.test.ts} (65%)
 create mode 100644 
superset-frontend/plugins/plugin-chart-echarts/src/utils/orderby.ts
 create mode 100644 superset-frontend/src/dashboard/actions/autoRefresh.ts
 create mode 100644 
superset-frontend/src/dashboard/components/AutoRefreshIndicator/index.tsx
 create mode 100644 
superset-frontend/src/dashboard/components/AutoRefreshStatus/StatusIndicatorDot.test.tsx
 create mode 100644 
superset-frontend/src/dashboard/components/AutoRefreshStatus/StatusIndicatorDot.tsx
 create mode 100644 
superset-frontend/src/dashboard/components/AutoRefreshStatus/StatusTooltipContent.test.tsx
 create mode 100644 
superset-frontend/src/dashboard/components/AutoRefreshStatus/StatusTooltipContent.tsx
 create mode 100644 
superset-frontend/src/dashboard/components/Header/useHeaderAutoRefresh.ts
 create mode 100644 
superset-frontend/src/dashboard/components/RefreshButton/index.tsx
 copy superset-frontend/src/dashboard/components/RefreshFrequency/{index.ts => 
RefreshFrequencySelect.test.tsx} (58%)
 create mode 100644 
superset-frontend/src/dashboard/contexts/AutoRefreshContext.test.tsx
 create mode 100644 
superset-frontend/src/dashboard/contexts/AutoRefreshContext.tsx
 create mode 100644 
superset-frontend/src/dashboard/hooks/useAutoRefreshTabPause.test.tsx
 create mode 100644 
superset-frontend/src/dashboard/hooks/useAutoRefreshTabPause.ts
 create mode 100644 superset-frontend/src/dashboard/hooks/useCurrentTime.test.ts
 create mode 100644 superset-frontend/src/dashboard/hooks/useCurrentTime.ts
 create mode 100644 
superset-frontend/src/dashboard/hooks/useRealTimeDashboard.test.ts
 create mode 100644 
superset-frontend/src/dashboard/hooks/useRealTimeDashboard.ts
 create mode 100644 
superset-frontend/src/dashboard/hooks/useTabVisibility.test.ts
 create mode 100644 superset-frontend/src/dashboard/hooks/useTabVisibility.ts
 create mode 100644 
superset-frontend/src/dashboard/reducers/autoRefreshReducer.test.ts
 create mode 100644 superset-frontend/src/dashboard/types/autoRefresh.ts

Reply via email to