You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by bo...@apache.org on 2023/02/21 21:33:34 UTC

[streampipes] branch chore/improve-getting-started-python updated (a34f4b7cb -> 6b9ee7ff8)

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

bossenti pushed a change to branch chore/improve-getting-started-python
in repository https://gitbox.apache.org/repos/asf/streampipes.git


 discard a34f4b7cb chore(python-docs): add roadmap section
 discard abcd7feba chore(python-docs): fixing yaml path
 discard b231f2c4f chore(python-docs): improve getting started section
     add bec082dc6 Bump @types/node from 18.13.0 to 18.14.0 in /ui (#1324)
     add 3f903ec61 chore(ui): provide some more references for support in the 'about' view (#1319)
     add 7b693a2fd Update data stream generator (#1258) (#1286)
     add c8318c5b3 chore(docs): add information on how to develop the UI locally (#1326)
     add 62037abdf [#1296] Swinging Door Trending (SDT) Filter Processor (#1306)
     add 417ac009b [hotfix] Use extensions-all-jvm module in backend environment
     add 0f6bcf55f Rename endpoint to fetch all pipelines from API (#1333) (#1334)
     add 72c5b6b9c Update all version to 0.92.0-SNAPSHOT (#1338)
     add b8b33370b [#1336] Add a builder to create SpQueryResult objects
     add 6ddd376bd chore(python-docs): improve getting started section
     add 872526fc7 chore(python-docs): fixing yaml path
     add 6b9ee7ff8 chore(python-docs): add roadmap section

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   (a34f4b7cb)
            \
             N -- N -- N   refs/heads/chore/improve-getting-started-python (6b9ee7ff8)

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:
 .../src/main/resources/archetype-resources/pom.xml |   2 +-
 .../src/main/resources/archetype-resources/pom.xml |   2 +-
 .../src/main/resources/archetype-resources/pom.xml |   2 +-
 installer/cli/.env                                 |   6 +-
 installer/cli/README.md                            |   2 +-
 installer/cli/environments/backend                 |   3 +-
 installer/compose/.env                             |   2 +-
 installer/compose/README.md                        |   2 +-
 installer/k8s/Chart.yaml                           |   4 +-
 installer/k8s/README.md                            |   2 +-
 installer/k8s/values.yaml                          |   2 +-
 .../streampipes/function_zoo/river_function.py     |   2 +-
 .../functions/utils/data_stream_generator.py       | 114 +++----------
 .../streampipes/model/common.py                    |  52 ++++--
 .../streampipes/model/resource/data_stream.py      |  36 ++--
 .../streampipes/client/api/DataProcessorApi.java   |   3 +-
 .../apache/streampipes/client/api/DataSinkApi.java |   3 +-
 .../streampipes/client/api/DataStreamApi.java      |   3 +-
 .../apache/streampipes/client/api/PipelineApi.java |   2 +-
 .../processors/filters/jvm/FiltersJvmInit.java     |   4 +-
 .../processor/sdt/SwingingDoorTrendingFilter.java  | 182 +++++++++++++++++++++
 .../sdt/SwingingDoorTrendingFilterProcessor.java   | 133 +++++++++++++++
 .../documentation.md                               |  79 +++++++++
 .../icon.png                                       | Bin 0 -> 107607 bytes
 .../strings.en                                     |  34 ++++
 .../streampipes/model/datalake/DataSeries.java     |  15 ++
 .../{DataSeries.java => DataSeriesBuilder.java}    |  52 +++---
 .../model/datalake/SpQueryResultBuilder.java       |  73 +++++++++
 .../model/datalake/DataSeriesBuilderTest.java      |  90 ++++++++++
 .../model/datalake/SpQueryResultBuilderTest.java   | 116 +++++++++++++
 .../AbstractPipelineElementResourceManager.java    |   9 +-
 .../rest/impl/pe/DataProcessorResource.java        |  12 +-
 .../streampipes/rest/impl/pe/DataSinkResource.java |  12 +-
 .../rest/impl/pe/DataStreamResource.java           |   9 +-
 ...AbstractConfigurablePipelineElementBuilder.java |  18 ++
 ui/README.md                                       |  11 +-
 ui/package-lock.json                               |  18 +-
 ui/package.json                                    |   4 +-
 .../src/lib/apis/pipeline-element.service.ts       |   6 +-
 .../src/lib/apis/pipeline.service.ts               |  12 +-
 .../assets/dialog/base-asset-links.directive.ts    |   2 +-
 ui/src/app/home/components/status.component.ts     |   2 +-
 ui/src/app/info/about/about.component.html         |  23 +++
 .../app/notifications/notifications.component.ts   |   2 +-
 ui/src/app/pipelines/pipelines.component.ts        |   2 +-
 45 files changed, 953 insertions(+), 211 deletions(-)
 create mode 100644 streampipes-extensions/streampipes-processors-filters-jvm/src/main/java/org/apache/streampipes/processors/filters/jvm/processor/sdt/SwingingDoorTrendingFilter.java
 create mode 100644 streampipes-extensions/streampipes-processors-filters-jvm/src/main/java/org/apache/streampipes/processors/filters/jvm/processor/sdt/SwingingDoorTrendingFilterProcessor.java
 create mode 100644 streampipes-extensions/streampipes-processors-filters-jvm/src/main/resources/org.apache.streampipes.processors.filters.jvm.sdt/documentation.md
 create mode 100644 streampipes-extensions/streampipes-processors-filters-jvm/src/main/resources/org.apache.streampipes.processors.filters.jvm.sdt/icon.png
 create mode 100644 streampipes-extensions/streampipes-processors-filters-jvm/src/main/resources/org.apache.streampipes.processors.filters.jvm.sdt/strings.en
 copy streampipes-model/src/main/java/org/apache/streampipes/model/datalake/{DataSeries.java => DataSeriesBuilder.java} (51%)
 create mode 100644 streampipes-model/src/main/java/org/apache/streampipes/model/datalake/SpQueryResultBuilder.java
 create mode 100644 streampipes-model/src/test/java/org/apache/streampipes/model/datalake/DataSeriesBuilderTest.java
 create mode 100644 streampipes-model/src/test/java/org/apache/streampipes/model/datalake/SpQueryResultBuilderTest.java