This is an automated email from the ASF dual-hosted git repository.
tenthe pushed a change to branch
4430-chart-settings-not-correctly-migrated-after-event-schema-changes
in repository https://gitbox.apache.org/repos/asf/streampipes.git
from 1653ec90c0 Remove unused imports
add 0346171c97 fix: add compact adapter and map test (#4485)
add 5336e878df chore(deps): bump requests from 2.33.0 to 2.34.0 in
/streampipes-client-python (#4489)
add c69679b645 feat: Extend client API with methods for plain JSON
retrieval and upd… (#4488)
add cfd0ae64aa chore(deps-dev): bump mypy from 2.0.0 to 2.1.0 in
/streampipes-client-python (#4490)
add a476bf14d2 feat: Make dashboard panel collapsible (#4406)
add 579fee6911 chore(deps): bump idna from 3.10 to 3.15 in
/streampipes-client-python (#4492)
add a86e6aa553 chore(deps-dev): bump pymdown-extensions from 10.15 to
10.21.3 in /streampipes-client-python (#4493)
add 7d76a045fb Merge branch 'dev' into
4430-chart-settings-not-correctly-migrated-after-event-schema-changes
No new revisions were added by this update.
Summary of changes:
.../streampipes/client/api/ICustomRequestApi.java | 14 +++
streampipes-client-python/poetry.lock | 123 ++++++++++-----------
streampipes-client-python/pyproject.toml | 2 +-
.../streampipes/client/api/AbstractClientApi.java | 19 ++++
.../streampipes/client/api/CustomRequestApi.java | 45 ++++++++
...va => DeleteRequestWithoutPayloadResponse.java} | 23 ++--
...est.java => PutRequestWithPayloadResponse.java} | 22 ++--
.../influx/DataLakeInfluxQueryBuilder.java | 2 +-
.../influx/sanitize/InfluxNameSanitizer.java | 2 +-
.../dataexplorer/influx/SelectQueryParamsTest.java | 68 +++++++++++-
.../utils/ProvidedQueryParameterBuilder.java | 6 +
.../dataexplorer}/InfluxDbReservedKeywords.java | 2 +-
.../param/ProvidedRestQueryParamConverter.java | 8 +-
.../param/model/GroupByTagsClauseParams.java | 4 +-
.../param/model/GroupByTimeClauseParams.java | 2 +-
.../param/model/InfluxQueryParameterValidator.java | 50 +++++++++
.../model/InfluxQueryParameterValidatorTest.java | 78 +++++++++++++
ui/cypress/tests/chart/chart-types/map.spec.ts | 14 +--
.../connect/compact/addCompactAdapter.spec.ts | 2 +-
.../map/config/map-widget-config.component.html | 16 ++-
.../components/charts/map/map-widget.component.ts | 22 ++--
.../panel/dashboard-panel.component.html | 37 ++++++-
.../panel/dashboard-panel.component.scss | 17 +++
.../components/panel/dashboard-panel.component.ts | 14 ++-
24 files changed, 468 insertions(+), 124 deletions(-)
copy
streampipes-client/src/main/java/org/apache/streampipes/client/http/{PostRequestWithoutPayloadResponse.java
=> DeleteRequestWithoutPayloadResponse.java} (58%)
copy
streampipes-client/src/main/java/org/apache/streampipes/client/http/{PutRequest.java
=> PutRequestWithPayloadResponse.java} (66%)
rename
{streampipes-data-explorer-influx/src/main/java/org/apache/streampipes/dataexplorer/influx
=>
streampipes-data-explorer/src/main/java/org/apache/streampipes/dataexplorer}/InfluxDbReservedKeywords.java
(97%)
create mode 100644
streampipes-data-explorer/src/main/java/org/apache/streampipes/dataexplorer/param/model/InfluxQueryParameterValidator.java
create mode 100644
streampipes-data-explorer/src/test/java/org/apache/streampipes/dataexplorer/param/model/InfluxQueryParameterValidatorTest.java