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/01/23 18:39:40 UTC

[streampipes] branch chore/formatting-inting-editor updated (f5165aadc -> f68fb5c75)

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

bossenti pushed a change to branch chore/formatting-inting-editor
in repository https://gitbox.apache.org/repos/asf/streampipes.git


    omit f5165aadc [#877] apply formatting and linting to editor module
     add ecbc43024 [#1121] Add replay once option to FileStreamProtocol
     add acf446d8c Merge branch 'dev' into SP-1121
     add 62bf0927b [#1121] First start persistence pipeline before starting adapter
     add dd6c07535 [wip] Remove set adapters from e2e tests
     add 37be222bb [#1121] Add option to fast replay a file to FileStreamProtocol
     add 469513753 [#1121] Handle cases where timestamp is not part of FileStreamProtocol events
     add 716e98ddf Merge branch 'SP-1121' into SP-1132
     add ddb280fcf [#1132] Fix preprocessing adapter rules
     add d91c98f80 Redirect to previous view after successful login (#1140)
     add 4655a9add [#877] apply formatting and linting to files module (#1137)
     add f6406e08d Merge branch 'dev' into SP-1140
     add aa2e1c53c Merge pull request #1141 from apache/SP-1140
     add ad423278c Improve structure of pipeline execution management (#1096)
     add 9dd1a91f6 Fix checkstyle issues (#1096)
     add 473a4a023 Fix checkstyle issue (#1096)
     add 7acee1454 Add comments to intefaces (#1096)
     add 96ee8cce0 Support output data streams in functions (#1133)
     add 109ea0263 Extend client API to add data streams (#1133)
     add 7a57d3003 Fix endpoint path (#1133)
     add 5ad116436 Minor improvements to code style (#1133)
     add cc3ef284f Merge branch 'dev' into SP-1133
     add 468032654 Merge pull request #1135 from apache/SP-1133
     add a7276c291 Merge branch 'dev' of github.com:apache/streampipes into dev
     add a6146e53c Fix path in stream resource
     add 0dc12d794 Bump @angular-eslint/template-parser from 15.1.0 to 15.2.0 in /ui (#1145)
     add 52523ab25 [#877] apply formatting and linting to editor module
     add f68fb5c75 [#877] adapt to refactoring

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   (f5165aadc)
            \
             N -- N -- N   refs/heads/chore/formatting-inting-editor (f68fb5c75)

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:
 .../apache/streampipes/client/api/AdminApi.java    |  12 ++
 .../streampipes/client/api/DataStreamApi.java      |   9 +-
 streampipes-config/pom.xml                         |   5 +
 .../streampipes/config/backend/BackendConfig.java  |   3 +-
 ...Settings.java => DefaultMessagingSettings.java} |  83 ++----------
 .../connect/management/util/GroundingUtils.java    |   2 +-
 ...sFunctionDeclarer.java => IFunctionConfig.java} |  11 +-
 .../api/declarer/IStreamPipesFunctionDeclarer.java |   4 +-
 .../connect/adapter/AdapterPipelineGenerator.java  |   2 +-
 .../TransformValueAdapterPipelineElement.java      |   4 +
 .../transform/value/ValueEventTransformer.java     |  11 +-
 .../adapter/util/TransportFormatGenerator.java     |   2 +-
 .../management/init/DeclarersSingleton.java        |   2 +-
 .../iiot/protocol/stream/FileStreamProtocol.java   | 139 ++++++++++++++++++---
 .../strings.en                                     |  18 ++-
 .../model/config}/MessagingSettings.java           |  32 +----
 .../streampipes/model/config}/SpDataFormat.java    |   2 +-
 .../streampipes/model/config}/SpProtocol.java      |   2 +-
 .../manager/matching/DataSetGroundingSelector.java |   2 +-
 .../manager/matching/FormatSelector.java           |   2 +-
 .../manager/matching/ProtocolSelector.java         |   2 +-
 .../AbstractPipelineElementResourceManager.java    |  12 ++
 .../streampipes/rest/impl/admin/ConsulConfig.java  |   2 +-
 .../rest/impl/pe/DataStreamResource.java           |  16 +++
 .../streampipes/rest/security/AuthConstants.java   |   4 +
 .../function/StreamPipesFunctionHandler.java       |  36 +++++-
 .../standalone/function/FunctionConfig.java        |  46 +++----
 .../standalone/function/FunctionConfigBuilder.java |  25 ++--
 .../standalone/function/FunctionContext.java       |   9 ++
 .../function/FunctionContextGenerator.java         |  10 +-
 .../standalone/function/StreamPipesFunction.java   |  64 ++++++++--
 ui/.eslintignore                                   |   1 -
 ui/.prettierignore                                 |   1 -
 .../connect/removeDuplicateRules/expected.csv      |  11 +-
 .../connect/removeDuplicateRules/input.csv         |  20 +--
 .../support/builder/GenericAdapterBuilder.ts       |   5 +
 .../support/builder/SpecificAdapterBuilder.ts      |   5 +
 ui/cypress/support/model/AdapterInput.ts           |   3 +
 ui/cypress/support/utils/PrepareTestDataUtils.ts   |  23 ++--
 ui/cypress/support/utils/connect/ConnectUtils.ts   |  62 ++++-----
 ui/cypress/support/utils/datalake/DataLakeUtils.ts |   2 +-
 .../adapter/createAdapterWithoutStarting.spec.ts   |   2 +-
 ui/cypress/tests/adapter/fileStream.smoke.spec.ts  |   1 -
 ui/cypress/tests/adapter/formats/format.spec.ts    |   6 +-
 .../tests/adapter/persistInDataLake.smoke.spec.ts  |   1 -
 ui/cypress/tests/adapter/rules/streamRules.spec.ts |   4 +-
 ui/cypress/tests/adapter/rules/valueRules.ts       |   1 +
 ui/cypress/tests/datalake/widgets/table.ts         |   2 +-
 ui/package-lock.json                               |  30 ++---
 ui/package.json                                    |   2 +-
 .../_guards/auth.can-activate-children.guard.ts    |   4 +-
 .../pipeline-element-runtime-info.component.html   |   5 +-
 .../adapter-started-dialog.component.ts            |  50 ++++----
 .../pipeline-assembly.component.html               |   4 +-
 .../file-overview/file-overview.component.html     |  54 +++++---
 .../file-overview/file-overview.component.scss     |  16 ++-
 .../file-overview/file-overview.component.ts       |  95 +++++++-------
 .../file-upload/file-upload-dialog.component.html  |  94 ++++++++++----
 .../file-upload/file-upload-dialog.component.scss  |   2 +-
 .../file-upload/file-upload-dialog.component.ts    | 108 ++++++++--------
 ui/src/app/files/files.component.html              |  34 +++--
 ui/src/app/files/files.component.scss              |  12 +-
 ui/src/app/files/files.component.ts                |  56 +++++----
 ui/src/app/files/files.module.ts                   |  82 ++++++------
 ui/src/app/files/files.routes.ts                   |  10 +-
 .../app/login/components/login/login.component.ts  |  11 +-
 .../preview/pipeline-preview.component.html        |   4 +-
 67 files changed, 842 insertions(+), 554 deletions(-)
 copy streampipes-config/src/main/java/org/apache/streampipes/config/backend/{MessagingSettings.java => DefaultMessagingSettings.java} (52%)
 copy streampipes-extensions-api/src/main/java/org/apache/streampipes/extensions/api/declarer/{IStreamPipesFunctionDeclarer.java => IFunctionConfig.java} (80%)
 rename {streampipes-config/src/main/java/org/apache/streampipes/config/backend => streampipes-model/src/main/java/org/apache/streampipes/model/config}/MessagingSettings.java (66%)
 rename {streampipes-config/src/main/java/org/apache/streampipes/config/backend => streampipes-model/src/main/java/org/apache/streampipes/model/config}/SpDataFormat.java (96%)
 rename {streampipes-config/src/main/java/org/apache/streampipes/config/backend => streampipes-model/src/main/java/org/apache/streampipes/model/config}/SpProtocol.java (96%)
 copy streampipes-model/src/main/java/org/apache/streampipes/model/datalake/DataSeries.java => streampipes-wrapper-standalone/src/main/java/org/apache/streampipes/wrapper/standalone/function/FunctionConfig.java (51%)
 copy streampipes-extensions-api/src/main/java/org/apache/streampipes/extensions/api/declarer/IStreamPipesFunctionDeclarer.java => streampipes-wrapper-standalone/src/main/java/org/apache/streampipes/wrapper/standalone/function/FunctionConfigBuilder.java (56%)