This is an automated email from the ASF dual-hosted git repository.
dependabot[bot] pushed a change to branch
dependabot/npm_and_yarn/ui/multi-8ce60791b9
in repository https://gitbox.apache.org/repos/asf/streampipes.git
omit 9f403ff0bf chore(deps): bump undici and @angular/build in /ui
add 477dd7a7b2 fix: flaky editAdapter (#4591)
add 1549e00751 feat(#4565): Display field data types in adapter details
page (#4587)
add 0141c1bfc4 feat(#3968): Assets Do Not Consider Dependencies on Labels
and Sites (#4559)
add 8e68cbbfb0 feat: Harmonize resource creation workflow for assets
(#4590)
add f0386a447f chore(deps): bump form-data in /ui (#4586)
add 3be3e8bc85 chore(deps): bump hono from 4.12.18 to 4.12.24 in /ui
(#4534)
add 76cce2a1e7 feat: Improve export dialog (#4502)
add 5bdf175227 chore(deps): bump actions/stale from 10 to 10.2.0 (#4498)
add 1ad2fb2d58 fix: Modify several cypress tests (#4593)
add 343a5b4dcb chore(deps): bump org.apache.commons:commons-configuration2
from 2.14.0 to 2.15.1 (#4576)
add de907b8ae4 chore(deps): bump tar from 7.5.14 to 7.5.16 in /ui (#4585)
add e963b85d2f chore(deps): bump software.amazon.awssdk:s3 from 2.25.14 to
2.46.10 (#4574)
add 53af0aa60d chore(deps-dev): bump tornado from 6.5.6 to 6.5.7 in
/streampipes-client-python (#4584)
add f85fb682bd chore(deps): bump nats-py from 2.14.0 to 2.15.0 in
/streampipes-client-python (#4558)
add c0181f2c63 chore(deps): bump confluent-kafka from 2.13.2 to 2.14.2 in
/streampipes-client-python (#4542)
add 2c605e1049 chore(deps): bump undici and @angular/build in /ui
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 (9f403ff0bf)
\
N -- N -- N
refs/heads/dependabot/npm_and_yarn/ui/multi-8ce60791b9 (2c605e1049)
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/stale-bot.yml | 2 +-
pom.xml | 4 +-
streampipes-client-python/poetry.lock | 107 ++++-----
.../apache/streampipes/export/ExportManager.java | 19 ++
.../export/dataimport/ImportGenerator.java | 25 ++-
.../export/dataimport/PerformImportGenerator.java | 14 ++
.../export/dataimport/PreviewImportGenerator.java | 22 +-
.../export/generator/ExportPackageGenerator.java | 56 +++++
.../model/export/AssetExportConfiguration.java | 28 +++
.../model/export/ExportConfiguration.java | 14 ++
.../storage/api/system/IGenericStorage.java | 2 +
.../couchdb/impl/system/GenericStorageImpl.java | 27 +++
ui/cypress/support/utils/GeneralUtils.ts | 16 +-
ui/cypress/support/utils/asset/AssetBtns.ts | 4 +
ui/cypress/support/utils/asset/AssetUtils.ts | 36 +++
ui/cypress/support/utils/chart/ChartBtns.ts | 11 +-
ui/cypress/support/utils/chart/ChartUtils.ts | 6 +-
.../utils/configuration/ConfigurationUtils.ts | 4 +-
.../support/utils/configuration/SiteUtils.ts | 13 ++
.../utils/connect/ConnectEventSchemaUtils.ts | 11 +-
ui/cypress/support/utils/connect/ConnectUtils.ts | 2 +
ui/cypress/support/utils/shared/SharedUtils.ts | 4 +
ui/cypress/support/utils/user/PermissionUtils.ts | 43 ++++
.../tests/configuration/labels/labels.spec.ts | 2 +-
ui/cypress/tests/configuration/sites/sites.spec.ts | 2 +-
ui/cypress/tests/connect/editAdapter.smoke.spec.ts | 1 +
.../userManagement/testUserRoleAssets.spec.ts | 17 +-
ui/deployment/i18n/de.json | 25 ++-
ui/deployment/i18n/en.json | 19 +-
ui/deployment/i18n/pl.json | 23 +-
ui/package-lock.json | 42 ++--
.../src/lib/model/gen/streampipes-model.ts | 8 +
.../live-preview-table.component.html | 9 +
.../live-preview-table.component.ts | 2 +-
.../pipeline-element-runtime-info.component.ts | 4 +
.../pipeline-element-runtime-info.model.ts | 1 +
ui/src/app/assets/assets.routes.ts | 2 +
.../edit-asset/asset-details.component.html | 29 ++-
.../edit-asset/asset-details.component.ts | 225 ++++++++++++++++++-
.../asset-overview/asset-overview.component.html | 8 +-
.../asset-overview/asset-overview.component.ts | 72 ++++--
.../export/data-export-import.component.html | 18 ++
.../export/data-export-import.component.ts | 118 +++++++++-
.../data-export-dialog.component.html | 221 ++++++++++++++----
.../export-dialog/data-export-dialog.component.ts | 248 ++++++++++++++++++++-
.../data-import-dialog.component.html | 39 +++-
.../import-dialog/data-import-dialog.component.ts | 4 +-
.../label-configuration.component.html | 1 -
.../label-configuration.component.ts | 55 ++++-
.../site-area-configuration.component.html | 1 -
.../site-area-configuration.component.ts | 72 +++++-
51 files changed, 1525 insertions(+), 213 deletions(-)