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

[streampipes] branch 1272-buffer-processor updated (be2b7cb76 -> 9928b01e7)

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

micklich pushed a change to branch 1272-buffer-processor
in repository https://gitbox.apache.org/repos/asf/streampipes.git


    from be2b7cb76 [#1272] fix checkstyle error and rewrite text
     add 18f26a857 Fix logging configuration (#1266) (#1267)
     add 467bc57b7 Properly override messaging protocol when importing resources (#1274) (#1275)
     add 52d32b2c6 fix(python-docs): prevent mkdocs from loading gfonts (#1277)
     add 8d42af9a3 Bump eslint from 8.33.0 to 8.34.0 in /ui (#1279)
     add 5b05ac810 feature(gh-actions): create workflow that provides python docs as artifact weekly (#1263)
     add 32df12b34 [#1245] provide a temporary workaround for inconsistency in eventGrounding (#1250)
     add 0ecec5cc1 Bump maven-plugin-annotations from 3.6.0 to 3.7.1
     add 4f78df821 Bump ddogleg from 0.16 to 0.22
     add 7ef63e909 [hotfix] Remove dependency ddogleg
     add c8acece66 Bump @typescript-eslint/eslint-plugin from 5.50.0 to 5.52.0 in /ui (#1284)
     add 2dccaf6c4 Add pypi workflow
     add f1fca9d09 Change token name
     add 61129279f chore: improve python docs and fix some minor inconsistencies (#1251)
     add 4d1b55afc Bump maven-compiler-plugin from 3.8.1 to 3.10.1 (#1282)
     add fc08f71f2 Bump google-maps-services from 0.10.0 to 2.1.2
     add ce310c5fb Bump byte-buddy.version from 1.12.6 to 1.13.0
     add 01475944e [hotfix] Remove dependency byte-buddy
     add 36b4a8b6f Bump @typescript-eslint/parser from 5.51.0 to 5.52.0 in /ui (#1299)
     add ebafa1191 Provide environment variables via Environment provider (#1223) (#1224)
     add f837a2da7 Bump maven-deploy-plugin from 2.8.2 to 3.1.0 (#1298)
     add 1911a6f85 [hotfix] Add empty constructor to DataExplorerQuery
     add ecdf32bfc [SP-1102] - GET/v2/info/versions update and removement of deprecated endpoints  (#1192)
     add fd706b3f6 [#1308][CI] label-pr workflow fails on fork-based PRs (#1309)
     add b5836f25b remove extentions management module name from its pom (#1295)
     add 73d04f88c Bump cypress from 12.3.0 to 12.5.1 in /ui (#1305)
     add 44955343e [#1040] misc changes in runtime names, ad missing fields in schema
     add 06713c00a [#1040] remove dead code
     add 86d16ebfd [#1040] remove supported code in declaire
     add 9928b01e7 [#1040] fix strings due naming changes

No new revisions were added by this update.

Summary of changes:
 .github/workflows/pr-labeler.yml                   |  10 +-
 .../{pr-labeler.yml => pypi-deployment.yml}        |  47 ++--
 .github/workflows/python-docs.yml                  |  59 ++++
 pom.xml                                            |  25 +-
 streampipes-client-python/README.md                |  10 +-
 ...ive-data-from-the-streampipes-data-stream.ipynb |   4 +-
 ...ine-learning-on-a-streampipes-data-stream.ipynb |   2 +-
 .../docs/getting-started/quickstart.md             |  66 ++---
 streampipes-client-python/docs/index.md            |  56 ++--
 streampipes-client-python/mkdocs.yml               |   4 +-
 .../streampipes/model/common.py                    |   3 +-
 .../streampipes/model/resource/data_stream.py      |  32 +++
 .../tests/client/test_endpoint.py                  |   2 +-
 .../{streampipes => tests/model}/__init__.py       |   0
 .../model/resource}/__init__.py                    |   0
 .../tests/model/resource/test_data_stream.py       |  73 +++++
 .../streampipes/commons/constants/CustomEnvs.java  |  20 +-
 .../commons/constants/DefaultEnvValues.java        |   9 +-
 .../apache/streampipes/commons/constants/Envs.java |  87 +++---
 .../commons/environment/DefaultEnvironment.java    |  80 ++++++
 .../commons/environment/Environment.java           |  40 +++
 .../commons/environment/Environments.java          |  16 +-
 .../environment/variable/EnvironmentVariable.java  |  20 +-
 .../streampipes/commons/networking/Networking.java |  21 +-
 .../streampipes/config/backend/BackendConfig.java  | 104 +------
 .../config/backend/BackendConfigKeys.java          |  11 -
 .../dataexplorer/DataLakeManagementV4.java         |  10 +-
 .../dataexplorer/query/DataExplorerQuery.java      |  10 +-
 .../dataexplorer/sdk/DataLakeQueryBuilder.java     |   8 +-
 .../dataexplorer/v4/query/DataExplorerQueryV4.java |  16 +-
 .../export/resolver/AbstractResolver.java          |   7 +
 .../export/resolver/AdapterResolver.java           |   3 +-
 .../export/resolver/DataSourceResolver.java        |   3 +-
 .../export/resolver/PipelineResolver.java          |   9 +-
 .../export/utils/EventGroundingProcessor.java      |  60 +++-
 streampipes-extensions-management/pom.xml          |   2 -
 ...StreamPipesClientRuntimeConnectionResolver.java |  21 +-
 .../management/connect/adapter/Adapter.java        |  16 --
 .../elements/SendToBrokerAdapterSink.java          |  15 +-
 .../elements/SendToJmsAdapterSink.java             |   4 +-
 .../elements/SendToKafkaAdapterSink.java           |   6 +-
 .../elements/SendToMqttAdapterSink.java            |   4 +-
 .../elements/SendToNatsAdapterSink.java            |   4 +-
 streampipes-extensions/pom.xml                     |   2 +-
 .../LatLngToJtsPointProcessor.java                 |   7 +-
 .../reprojection/ReprojectionProcessor.java        |   8 +-
 .../trajectory/TrajectoryFromPointsProcessor.java  |  16 +-
 .../HaversineDistanceCalculatorProcessor.java      |  21 +-
 .../speedcalculator/SpeedCalculatorProcessor.java  |   6 +-
 .../strings.en                                     |   8 +-
 .../pom.xml                                        |   6 -
 .../simulator/simulator/VehicleDataSimulator.java  |  13 +-
 .../simulator/utils/WatertankDataSimulator.java    |  13 +-
 streampipes-maven-plugin/pom.xml                   |   2 +-
 .../messaging/kafka/SpKafkaProducer.java           |   6 +-
 .../provider/StoredPipelineElementProvider.java    |  13 +-
 .../runtime/PipelineElementRuntimeInfoFetcher.java |  13 +-
 .../manager/setup/AutoInstallation.java            |  56 ++--
 .../resource/management/UserResourceManager.java   |  11 +-
 .../pe/InvocablePipelineElementResource.java       |   4 +-
 streampipes-rest/pom.xml                           |  10 -
 .../streampipes/rest/impl/PipelineResource.java    |  37 ---
 .../org/apache/streampipes/rest/impl/Setup.java    |   3 +
 .../org/apache/streampipes/rest/impl/Version.java  |   3 +
 .../rest/impl/pe/DataStreamResource.java           |  22 --
 .../streampipes/security/jwt/KeyGenerator.java     |   5 +-
 .../resources/{logback-spring.xml => logback.xml}  |   0
 .../service/core/StreamPipesEnvChecker.java        |  40 ++-
 .../src/main/resources/application.properties      |   2 +-
 .../svcdiscovery/consul/ConsulProvider.java        |   2 +-
 .../extensions/security/WebSecurityConfig.java     |  12 +-
 .../src/main/resources/application.properties      |   2 +-
 .../storage/couchdb/utils/CouchDbConfig.java       |  55 ----
 .../streampipes/storage/couchdb/utils/Utils.java   |  27 +-
 .../encryption/SecretEncryptionManager.java        |   7 +-
 .../user/management/jwt/JwtTokenProvider.java      |   7 +-
 .../standalone/function/StreamPipesFunction.java   |  10 +-
 ui/package-lock.json                               | 307 +++++++--------------
 ui/package.json                                    |   8 +-
 79 files changed, 889 insertions(+), 874 deletions(-)
 copy .github/workflows/{pr-labeler.yml => pypi-deployment.yml} (52%)
 create mode 100644 .github/workflows/python-docs.yml
 copy streampipes-client-python/{streampipes => tests/model}/__init__.py (100%)
 copy streampipes-client-python/{streampipes => tests/model/resource}/__init__.py (100%)
 create mode 100644 streampipes-client-python/tests/model/resource/test_data_stream.py
 rename streampipes-service-base/src/main/resources/{logback-spring.xml => logback.xml} (100%)
 delete mode 100644 streampipes-storage-couchdb/src/main/java/org/apache/streampipes/storage/couchdb/utils/CouchDbConfig.java