Aligns with sibling /api/entitiesQuery/find, which serves entity pages
unbounded and is the endpoint paired with /aggHistory in the PE entity-
table export. Capping aggHistory at 100 while /find returns up to 1000
caused entity and aggregated-value lists to fall out of sync on export.
The expensive timeseries reads use tsService.findAllByQueries, the same
path as the WebSocket AggHistoryCmd, which has no such cap.
PE UI exports widget data via REST; without a REST aggregated-history
endpoint the Entity Table rendered aggregated values while CSV export
returned raw latest. New POST /api/entitiesQuery/find/aggHistory mirrors
the WS command and populates aggLatest per entity.
Caps page size at MAX_PAGE_SIZE=100, validates endTs >= startTs, and
fills aggLatest with EMPTY ComparisonTsValue on per-entity fetch
failure for a predictable response contract.
Removed overflow:hidden from DynamicFormSelectItemsComponent that was hiding the Value/Label table headers and "No options configured" message. Added overflow-visible to nested dynamic-form-properties to prevent clipping in expansion panels.
Remove <pkg.skip.bootjar>false</pkg.skip.bootjar> from all child
module <properties> blocks. The root POM already defaults it to false,
and child declarations block the skip-pkg profile override, so
-Dpkg.skip=true was never actually skipping spring-boot:repackage.
Also remove the unused surefire.version property (superseded by
maven-surefire-plugin.version).
The docker-info artifact type was produced by the removed
dockerfile-maven-plugin. Replace with pom type since the
upstream docker modules use pom packaging. This preserves
the reactor ordering dependency.
The com.spotify:dockerfile-maven-plugin:1.4.13 is deprecated and broken
on modern macOS (Apple Silicon) due to its Java HTTP client being
incompatible with current Docker Desktop socket/API.
Replace the Java-based plugin with exec-maven-plugin calling the docker
CLI directly — the same approach already used by the multiarch push
profiles (push-docker-amd-arm-images).
All existing Maven property contracts preserved:
- dockerfile.skip (default true) controls docker build
- push-docker-image profile for single-arch push
- push-docker-amd-arm-images profiles unchanged (already use exec)