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/04/14 10:26:25 UTC

[streampipes] branch remove-set-adapters updated (23dba102e -> 126943313)

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

zehnder pushed a change to branch remove-set-adapters
in repository https://gitbox.apache.org/repos/asf/streampipes.git


    from 23dba102e [#1289] Add start adapter
     add b0d235fb2 Bump mypy from 1.1.1 to 1.2.0 in /streampipes-client-python (#1494)
     add 3e5e57a62 Refactor method name in Kafka messaging layer (#1490)
     add b66c6dd93 Bump rdf4j.version from 3.5.0 to 4.2.3 (#1472)
     add b5f16f79c Bump animal-sniffer-annotations from 1.22 to 1.23 (#1469)
     add 59915fa46 [hotfix] adapt image links in python docs (#1496)
     add c73dbf6c7 [hotfix] Move sp-split-section to shared-ui module (#1497)
     add 5e24be6b6 Bump log4j.version from 2.19.0 to 2.20.0 (#1499)
     add cbae1b891 Bump pytest from 7.2.1 to 7.3.0 in /streampipes-client-python (#1498)
     add cb529cc98  #1107 Implementation  of `OSV-scanner` with `gh-action` (#1438)
     add 9694615e5 [hotfix] Fix handling of count queries in data explorer (#1501)
     add 353cdd86e Bump mkdocs-awesome-pages-plugin in /streampipes-client-python
     add 31c68401a Bump zstd-jni from 1.4.3-1 to 1.5.5-1
     add 71f931834 [hotfix] Remove zstd-jni from dependencies
     add 5ef29883d Bump peter-evans/create-pull-request from 4 to 5
     add 2308d9a9c [SP-1504] Do not remove streams on pipeline export (#1505)
     add 4bd34bfb8 Bump pandas-stubs in /streampipes-client-python (#1506)
     add 45775ec9a Bump maven-plugin-plugin from 3.7.0 to 3.8.1 (#1507)
     add c5ec75cbc Sp 1367 Use QueryResult as return type for data lake measure API (#1492)
     add 126943313 Merge branch 'dev' into remove-set-adapters

No new revisions were added by this update.

Summary of changes:
 .github/workflows/osv-scanner.yml                  |  58 +++++++
 pom.xml                                            |  12 +-
 .../docs/getting-started/quickstart.md             |   2 +-
 streampipes-client-python/docs/index.md            |   2 +-
 ...cting-data-from-the-streampipes-data-lake.ipynb |   4 +-
 streampipes-client-python/setup.py                 |   8 +-
 .../streampipes/endpoint/api/data_lake_measure.py  |  11 +-
 .../streampipes/model/resource/__init__.py         |   4 +-
 .../{data_lake_series.py => data_series.py}        |  29 +---
 .../streampipes/model/resource/exceptions.py       |  19 ++-
 .../streampipes/model/resource/query_result.py     |  89 ++++++++++
 .../tests/client/test_data_lake_series.py          | 189 ++++++++++-----------
 .../dataexplorer/param/model/SelectColumn.java     |  24 ++-
 .../query/DataExplorerQueryExecutor.java           |   3 +-
 .../streampipes-sinks-brokers-jvm/pom.xml          |   4 -
 .../sinks/brokers/jvm/kafka/KafkaPublishSink.java  |  12 --
 streampipes-maven-plugin/pom.xml                   |   2 +-
 .../messaging/kafka/SpKafkaProducer.java           |   4 +-
 .../split-section/split-section.component.html     |   0
 .../split-section/split-section.component.scss     |   0
 .../split-section/split-section.component.ts       |   0
 .../shared-ui/src/lib/shared-ui.module.ts          |   3 +
 .../streampipes/shared-ui/src/public-api.ts        |   1 +
 ui/src/app/connect/services/rest.service.ts        |   5 +-
 ui/src/app/core-ui/core-ui.module.ts               |   3 -
 .../widgets/table/table-widget.component.html      |   2 +-
 ui/src/app/editor/services/editor.service.ts       |   5 +-
 ui/src/app/login/services/login.service.ts         |   5 +-
 .../notifications/service/notifications.service.ts |   5 +-
 ui/src/app/services/rest-api.service.ts            |   7 +-
 30 files changed, 326 insertions(+), 186 deletions(-)
 create mode 100644 .github/workflows/osv-scanner.yml
 rename streampipes-client-python/streampipes/model/resource/{data_lake_series.py => data_series.py} (81%)
 copy streampipes-extensions/streampipes-connect-adapters-iiot/src/main/resources/org.apache.streampipes.connect.iiot.protocol.stream.http/strings.en => streampipes-client-python/streampipes/model/resource/exceptions.py (61%)
 create mode 100644 streampipes-client-python/streampipes/model/resource/query_result.py
 rename ui/{src/app/core-ui => projects/streampipes/shared-ui/src/lib/components}/split-section/split-section.component.html (100%)
 rename ui/{src/app/core-ui => projects/streampipes/shared-ui/src/lib/components}/split-section/split-section.component.scss (100%)
 rename ui/{src/app/core-ui => projects/streampipes/shared-ui/src/lib/components}/split-section/split-section.component.ts (100%)