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

github-bot pushed a change to branch 
dependabot/github_actions/actions/checkout-5
in repository https://gitbox.apache.org/repos/asf/streampipes.git


 discard 1475b3b60a chore(deps): bump actions/checkout from 4 to 5
     add 53cc3a1f75 fix(#3727): Implement failure and recovery strategy in 
ContinuousPlcRequestReader (#3728)
     add 291dc235dc feat(#3725): Add dashboard kiosk mode (#3729)
     add 55369bf435 fix(#3735): Import ColorPickerDirective in 
data-explorer-shared.module.ts (#3736)
     add 76b066df52 feat: Load OpenID config for external authentication (#3734)
     add e21cbaea4a feat: Support alternate ids for groups and roles (#3738)
     add bd4c4af906 feat: Extend certificate information shown in UI (#3739)
     add 4ff27c3f40 feat(#3725): Support public dashboards (#3741)
     add b065306789 feat(#3733): Create API endpoint to upload time series data 
(#3746)
     add 8980186a3b chore(deps): bump 
org.apache.maven.plugins:maven-invoker-plugin (#3708)
     add c3986e9a92 fix(#3356): Avoid NPE when performing post startup tasks 
(#3747)
     add 10fdd0104e feat: Improve asset browser layout (#3750)
     add d92d30f30b fix: Add time settings to query parameters in data explorer 
(#3751)
     add 16b050ad40 chore(deps): bump actions/setup-java from 4 to 5 (#3742)
     add bf140bfd8f chore(deps): bump actions/checkout from 4 to 5

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   (1475b3b60a)
            \
             N -- N -- N   
refs/heads/dependabot/github_actions/actions/checkout-5 (bf140bfd8f)

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/workflows/build.yml                        |   2 +-
 .github/workflows/cypress-test.yml                 |   2 +-
 .github/workflows/extensions-docs.yml              |   2 +-
 .github/workflows/go-client-e2e-test.yml           |   2 +-
 .github/workflows/pr-validation.yml                |   4 +-
 .../streampipes/endpoint/api/data_lake_measure.py  |  64 +++-
 .../streampipes/model/resource/query_result.py     |  49 ++++
 .../environment/model/OAuthConfiguration.java      |  12 +-
 .../parser/OAuthConfigurationParser.java           |  19 +-
 .../security/CompositeCertificateValidator.java    |  16 +-
 .../connectors/opcua/utils/OpcUaUtils.java         |  16 +-
 .../connection/ContinuousPlcRequestReader.java     |  78 ++++-
 streampipes-maven-plugin/pom.xml                   |   2 +-
 .../streampipes/model/client/user/Group.java       |   9 +
 .../streampipes/model/client/user/Permission.java  |   9 +
 .../apache/streampipes/model/client/user/Role.java |  12 +
 .../model/dashboard/CompositeDashboardModel.java   |  10 +
 .../streampipes/model/opcua/Certificate.java       |  75 +++++
 .../model/opcua/CertificateBuilder.java            | 247 ++++++++++++++++
 .../tasks/ApplyDefaultRolesAndPrivilegesTask.java  |  16 +-
 .../management/PermissionResourceManager.java      |   8 +
 .../resource/management/UserResourceManager.java   |   2 +-
 .../impl/dashboard/DataLakeDashboardResource.java  |  43 ++-
 .../rest/impl/datalake/DataLakeDataWriter.java     | 136 +++++++++
 .../rest/impl/datalake/DataLakeResource.java       |  31 ++
 .../datalake/KioskDashboardDataLakeResource.java   | 116 ++++++++
 .../rest/security/SpPermissionEvaluator.java       | 122 +++++---
 .../service/core/UnauthenticatedInterfaces.java    |   5 +-
 .../service/core/WebSecurityConfig.java            |  71 +++--
 .../service/core/oauth2/UserService.java           |  71 ++++-
 .../management/util/GrantedPermissionsBuilder.java |   2 +-
 ui/deployment/app-routing.module.mst               |   1 +
 ...-info.service.ts => dashboard-kiosk.service.ts} |  37 ++-
 .../src/lib/apis/dashboard.service.ts              |  14 +-
 .../src/lib/apis/datalake-rest.service.ts          |  17 +-
 .../src/lib/model/dashboard/dashboard.model.ts     |   1 +
 .../src/lib/model/gen/streampipes-model-client.ts  |  12 +-
 .../src/lib/model/gen/streampipes-model.ts         |  20 +-
 .../lib/query/data-view-query-generator.service.ts |  38 ++-
 .../platform-services/src/public-api.ts            |   1 +
 .../asset-browser-hierarchy.component.html         |   2 +-
 .../asset-browser-hierarchy.component.ts           |  18 +-
 .../asset-browser-filter-labels.component.html     |   3 +-
 .../asset-browser/asset-browser.component.html     |   1 +
 .../asset-browser/asset-browser.component.ts       |   3 +
 ui/src/app/configuration/configuration.module.ts   |   2 +
 .../certificate-details-dialog.component.html      |  25 +-
 .../certificate-details-dialog.component.ts        |   4 +
 .../alternate-id-configuration.component.html}     |  38 ++-
 .../alternate-id-configuration.component.ts}       |  23 +-
 .../edit-group-dialog.component.html               |   7 +
 .../edit-role-dialog.component.html                |  20 +-
 .../edit-role-dialog.component.scss                |   1 -
 .../edit-role-dialog/edit-role-dialog.component.ts |  19 +-
 .../role-configuration.component.html              |   1 -
 .../existing-adapters.component.html               |   2 +-
 .../object-permission-dialog.component.html        | 325 ++++++++++++---------
 .../object-permission-dialog.component.scss        |   9 +
 .../object-permission-dialog.component.ts          |  40 ++-
 .../kiosk/dashboard-kiosk.component.html           |  73 +++++
 .../kiosk/dashboard-kiosk.component.scss}          |  31 +-
 .../components/kiosk/dashboard-kiosk.component.ts  | 141 +++++++++
 .../dashboard-kiosk.module.ts}                     | 124 ++++----
 .../chart-view/abstract-chart-view.directive.ts    |   6 +-
 .../grid-view/dashboard-grid-view.component.html   |  62 ++++
 .../grid-view/dashboard-grid-view.component.scss   |  11 +-
 .../grid-view/dashboard-grid-view.component.ts     |  16 +-
 .../slide-view/dashboard-slide-view.component.html |   5 +-
 .../slide-view/dashboard-slide-view.component.scss |   0
 .../slide-view/dashboard-slide-view.component.ts   |   7 +-
 .../dashboard-shared.module.ts}                    |  48 +--
 .../services/dashboard.service.ts                  |   6 +-
 .../grid-view/dashboard-grid-view.component.html   |  49 ----
 .../dashboard-overview-table.component.html        |  22 +-
 .../dashboard-overview-table.component.ts          |  42 +--
 .../overview/dashboard-overview.component.ts       |  20 +-
 .../panel/dashboard-panel.component.html           |   2 +
 .../components/panel/dashboard-panel.component.ts  |  58 ++--
 ui/src/app/dashboard/dashboard.module.ts           |   6 +-
 .../data-explorer-chart-container.component.html   | 192 ++++++------
 .../data-explorer-chart-container.component.ts     |  16 +-
 .../base/base-data-explorer-widget.directive.ts    |  36 +--
 .../charts/base/echarts-widget.component.ts        |  18 ++
 .../data-explorer-shared.module.ts                 |   3 +-
 .../models/dataview-dashboard.model.ts             |  13 +
 .../services/data-explorer-shared.service.ts       |  62 +++-
 .../data-explorer-chart-view.component.html        |   5 +-
 .../data-explorer-chart-view.component.ts          |  42 ++-
 .../data-explorer-overview-table.component.html    |   2 +-
 .../data-explorer-overview-table.component.ts      |  21 +-
 .../overview/data-explorer-overview.component.ts   |  12 +-
 .../overview/data-explorer-overview.directive.ts   |  12 +-
 ui/src/app/pipelines/pipelines.component.html      |   4 +-
 93 files changed, 2328 insertions(+), 776 deletions(-)
 create mode 100644 
streampipes-model/src/main/java/org/apache/streampipes/model/opcua/CertificateBuilder.java
 create mode 100644 
streampipes-rest/src/main/java/org/apache/streampipes/rest/impl/datalake/DataLakeDataWriter.java
 create mode 100644 
streampipes-rest/src/main/java/org/apache/streampipes/rest/impl/datalake/KioskDashboardDataLakeResource.java
 copy 
ui/projects/streampipes/platform-services/src/lib/apis/{pipeline-element-runtime-info.service.ts
 => dashboard-kiosk.service.ts} (59%)
 copy 
ui/src/app/{core-ui/static-properties/static-runtime-resolvable-tree-input/static-tree-input-selected-nodes/static-tree-input-selected-nodes.component.html
 => 
configuration/security-configuration/alternate-id-configuration/alternate-id-configuration.component.html}
 (51%)
 copy 
ui/{projects/streampipes/shared-ui/src/lib/components/basic-header-title/header-title.component.ts
 => 
src/app/configuration/security-configuration/alternate-id-configuration/alternate-id-configuration.component.ts}
 (64%)
 create mode 100644 
ui/src/app/dashboard-kiosk/components/kiosk/dashboard-kiosk.component.html
 copy ui/src/app/{dashboard/components/panel/dashboard-panel.component.scss => 
dashboard-kiosk/components/kiosk/dashboard-kiosk.component.scss} (77%)
 create mode 100644 
ui/src/app/dashboard-kiosk/components/kiosk/dashboard-kiosk.component.ts
 copy ui/src/app/{home/home.module.ts => 
dashboard-kiosk/dashboard-kiosk.module.ts} (52%)
 rename ui/src/app/{dashboard => 
dashboard-shared}/components/chart-view/abstract-chart-view.directive.ts (95%)
 create mode 100644 
ui/src/app/dashboard-shared/components/chart-view/grid-view/dashboard-grid-view.component.html
 rename ui/src/app/{dashboard => 
dashboard-shared}/components/chart-view/grid-view/dashboard-grid-view.component.scss
 (86%)
 rename ui/src/app/{dashboard => 
dashboard-shared}/components/chart-view/grid-view/dashboard-grid-view.component.ts
 (91%)
 rename ui/src/app/{dashboard => 
dashboard-shared}/components/chart-view/slide-view/dashboard-slide-view.component.html
 (94%)
 rename ui/src/app/{dashboard => 
dashboard-shared}/components/chart-view/slide-view/dashboard-slide-view.component.scss
 (100%)
 rename ui/src/app/{dashboard => 
dashboard-shared}/components/chart-view/slide-view/dashboard-slide-view.component.ts
 (94%)
 copy ui/src/app/{dashboard/dashboard.module.ts => 
dashboard-shared/dashboard-shared.module.ts} (67%)
 rename ui/src/app/{dashboard => 
dashboard-shared}/services/dashboard.service.ts (89%)
 delete mode 100644 
ui/src/app/dashboard/components/chart-view/grid-view/dashboard-grid-view.component.html

Reply via email to