You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@streampipes.apache.org by ri...@apache.org on 2022/01/11 08:22:46 UTC

[incubator-streampipes] branch dev updated (9c4d9b9 -> de9fca4)

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

riemer pushed a change to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git.


    from 9c4d9b9  [STREAMPIPES-431] Setting Group by option in data explorer's widget configuration is not persisted
     add 7884f29  [STREAMPIPES-504] Refactor runtime-resolvable configs, add initial TreeInputStaticProperty
     add 2e90b69  [hotfix] Add TreeInput to pipeline template visitor
     add 9ec04f8  [STREAMPIPES-504] Improve rendering of runtime-resolvable properties
     add 27051a5  [STREAMPIPES-504] Add UI implementation of tree input
     new de9fca4  Merge branch 'dev' of github.com:apache/incubator-streampipes into dev

The 1 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../worker/rest/RuntimeResolvableResource.java     | 13 +--
 .../api/InvocablePipelineElementResource.java      | 33 ++++----
 .../api/ResolvesContainerProvidedOptions.java      |  7 +-
 .../api/RuntimeResolvableRequestHandler.java       | 50 +++++++++++
 ...idedOptions.java => SupportsRuntimeConfig.java} |  9 +-
 .../streampipes/model/runtime/RuntimeOptions.java  | 49 -----------
 .../model/runtime/RuntimeOptionsResponse.java      | 21 ++---
 .../RuntimeResolvableTreeInputStaticProperty.java  | 70 ++++++++++++++++
 .../staticproperty/SlideToggleStaticProperty.java  |  2 +-
 .../model/staticproperty/StaticProperty.java       |  1 +
 .../model/staticproperty/StaticPropertyType.java   |  6 +-
 .../staticproperty/StaticPropertyVisitor.java      |  2 +
 .../model/staticproperty/TreeInputNode.java        | 75 +++++++++++++++++
 .../endpoint/ExtensionsServiceEndpointUtils.java   | 11 ++-
 .../template/PipelineElementTemplateVisitor.java   |  5 ++
 .../resource/management/secret/SecretVisitor.java  |  5 ++
 .../apache/streampipes/sdk/StaticProperties.java   | 12 +++
 ...AbstractConfigurablePipelineElementBuilder.java |  6 ++
 .../sdk/extractor/AbstractParameterExtractor.java  |  2 +-
 .../api/IPipelineElementDescriptionStorage.java    |  4 +
 .../couchdb/impl/DataProcessorStorageImpl.java     |  3 +-
 .../PipelineElementDescriptionStorageImpl.java     | 21 +++++
 ui/src/app/core-model/gen/streampipes-model.ts     | 68 ++++++++++++---
 ui/src/app/core-ui/core-ui.module.ts               |  7 +-
 .../static-property.component.html                 | 24 ++++--
 .../static-properties/static-property.component.ts |  6 +-
 ...tic-runtime-resolvable-any-input.component.html |  4 +-
 ...tatic-runtime-resolvable-any-input.component.ts | 13 ++-
 .../base-runtime-resolvable-input.ts               | 42 ++++++----
 .../base-runtime-resolvable-selection-input.ts}    | 34 ++++----
 ...c-runtime-resolvable-oneof-input.component.html |  5 +-
 ...tic-runtime-resolvable-oneof-input.component.ts | 13 ++-
 .../static-tree-input.component.html               | 54 ++++++++++++
 .../static-tree-input.component.scss               | 19 +++--
 .../static-tree-input.component.ts                 | 96 ++++++++++++++++++++++
 35 files changed, 619 insertions(+), 173 deletions(-)
 create mode 100644 streampipes-container/src/main/java/org/apache/streampipes/container/api/RuntimeResolvableRequestHandler.java
 copy streampipes-container/src/main/java/org/apache/streampipes/container/api/{ResolvesContainerProvidedOptions.java => SupportsRuntimeConfig.java} (78%)
 delete mode 100644 streampipes-model/src/main/java/org/apache/streampipes/model/runtime/RuntimeOptions.java
 create mode 100644 streampipes-model/src/main/java/org/apache/streampipes/model/staticproperty/RuntimeResolvableTreeInputStaticProperty.java
 create mode 100644 streampipes-model/src/main/java/org/apache/streampipes/model/staticproperty/TreeInputNode.java
 copy ui/src/app/{editor/components/output-strategy/base/BaseOutputStrategy.ts => core-ui/static-properties/static-runtime-resolvable-input/base-runtime-resolvable-selection-input.ts} (53%)
 create mode 100644 ui/src/app/core-ui/static-properties/static-runtime-resolvable-tree-input/static-tree-input.component.html
 copy streampipes-connect-api/src/main/java/org/apache/streampipes/connect/api/IAdapterPipelineElement.java => ui/src/app/core-ui/static-properties/static-runtime-resolvable-tree-input/static-tree-input.component.scss (77%)
 create mode 100644 ui/src/app/core-ui/static-properties/static-runtime-resolvable-tree-input/static-tree-input.component.ts

[incubator-streampipes] 01/01: Merge branch 'dev' of github.com:apache/incubator-streampipes into dev

Posted by ri...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

riemer pushed a commit to branch dev
in repository https://gitbox.apache.org/repos/asf/incubator-streampipes.git

commit de9fca4309826f8d3e04781cd51c255870bc23fe
Merge: 27051a5 9c4d9b9
Author: Dominik Riemer <do...@gmail.com>
AuthorDate: Tue Jan 11 09:22:32 2022 +0100

    Merge branch 'dev' of github.com:apache/incubator-streampipes into dev

 ui/cypress/support/utils/DataLakeUtils.ts          | 46 +++++++++++++++++++++-
 .../datalake/widgetDataConfiguration.smoke.spec.ts | 35 ++++++++--------
 .../datalake-configuration.component.ts            | 15 +++++--
 .../datalake/DatalakeQueryParameterBuilder.ts      | 18 +++++----
 .../static-slide-toggle.component.scss             |  0
 .../static-slide-toggle.component.ts               |  3 +-
 .../group-selection-panel.component.ts             |  8 ++--
 .../data-explorer-dashboard-widget.component.html  | 26 +++++++++---
 .../app/data-explorer/data-explorer.component.html | 15 +++++--
 9 files changed, 125 insertions(+), 41 deletions(-)