You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ze...@apache.org on 2023/01/24 20:40:50 UTC

[streampipes] branch chore/formatting-linting-data-explorer updated (861f44a07 -> abb68b8c3)

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

zehnder pushed a change to branch chore/formatting-linting-data-explorer
in repository https://gitbox.apache.org/repos/asf/streampipes.git


    from 861f44a07 [#877] implement onOptionsChanged
     add 3cb8b7b74 refactor: introduce messaging endpoint for python client (#1126)
     add 3a15af353 Bump blacken-docs from 1.12.1 to 1.13.0 in /streampipes-client-python (#1150)
     add 407f1dcc1 [#877] Format and lint CustomMaterial module
     add 6a5b00d7b Merge pull request #1144 from aamirxshaikh/STREAMPIPES-877-CustomMaterial
     add 694b84759 [hotfix] Improve echarts import
     add 73422d4a4 [#1132] Remove set adapters from e2e tests
     add ec9ee297e Merge branch 'dev' into SP-1132
     add 6b826b28c [#1132] Fix preprocessing rule e2e tests
     add 62c2ea4c6 Merge branch 'dev' into SP-1132
     add 4a97d1229 [#1132] Add wait to fix processing element tests
     add 09e70845e [hotfix] Extract string into a variable
     add 8b079f028 Merge pull request #1153 from apache/SP-1132
     add dc3aa010b [hotfix] Fix processing element e2e tests
     add abb68b8c3 Merge branch 'dev' into chore/formatting-linting-data-explorer

No new revisions were added by this update.

Summary of changes:
 streampipes-client-python/.pre-commit-config.yaml  |  7 ++
 streampipes-client-python/setup.py                 |  2 +
 .../streampipes_client/__version__.py              |  2 +-
 .../streampipes_client/client/client.py            |  2 +-
 .../streampipes_client/endpoint/__init__.py        |  9 ++-
 .../endpoint/{ => api}/__init__.py                 |  1 +
 .../endpoint/{ => api}/data_lake_measure.py        |  0
 .../endpoint/{ => api}/data_stream.py              |  0
 .../streampipes_client/endpoint/endpoint.py        | 93 +++++++++++++++++++---
 .../streampipes_client/endpoint/exceptions.py      | 52 ++++++++++++
 .../{ => endpoint/messaging}/__init__.py           |  0
 .../tests/client/test_client.py                    |  2 +-
 .../tests/client/test_endpoint.py                  | 31 +++++++-
 .../iiot/protocol/stream/FileStreamProtocol.java   |  4 +-
 ui/.eslintignore                                   |  1 -
 ui/.prettierignore                                 |  1 -
 .../fixtures/connect/aggregationRules/expected.csv |  2 -
 .../support/builder/GenericAdapterBuilder.ts       |  2 +-
 .../support/utils/DataDownloadDialogUtils.ts       |  2 -
 ui/cypress/support/utils/PrepareTestDataUtils.ts   | 14 ++--
 .../support/utils/ProcessingElementTestUtils.ts    | 20 +++--
 ui/cypress/support/utils/connect/ConnectUtils.ts   | 52 +++++-------
 ui/cypress/support/utils/datalake/DataLakeUtils.ts | 16 ++--
 .../adapter/createAdapterWithoutStarting.spec.ts   |  5 +-
 ui/cypress/tests/adapter/formats/format.spec.ts    |  4 +-
 ui/cypress/tests/adapter/rules/streamRules.spec.ts |  2 +-
 .../dataDownloadDialogTest.smoke.spec.ts           |  1 +
 ui/cypress/tests/datalake/deleteWidget.ts          |  1 -
 .../datalake/widgetDataConfiguration.smoke.spec.ts |  2 -
 ui/deployment/appng5.module.mst                    |  4 +
 .../app/CustomMaterial/custom-material.module.ts   | 11 +--
 .../pipeline-element-runtime-info.component.html   |  2 +-
 .../adapter-started-dialog.component.html          |  3 +-
 ui/src/app/data-explorer/data-explorer.module.ts   |  6 +-
 34 files changed, 249 insertions(+), 107 deletions(-)
 copy streampipes-client-python/streampipes_client/endpoint/{ => api}/__init__.py (99%)
 rename streampipes-client-python/streampipes_client/endpoint/{ => api}/data_lake_measure.py (100%)
 rename streampipes-client-python/streampipes_client/endpoint/{ => api}/data_stream.py (100%)
 create mode 100644 streampipes-client-python/streampipes_client/endpoint/exceptions.py
 copy streampipes-client-python/streampipes_client/{ => endpoint/messaging}/__init__.py (100%)