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

shuber pushed a change to branch unomi-3-dev
in repository https://gitbox.apache.org/repos/asf/unomi.git


    from 2bc649ce6 UNOMI-925: Fix getPersonaSessions to use PersonaSession 
instead of Session
     add a0a08e4ad UNOMI-919: Refactor the UNOMI startFeatures configuration to 
use a Karaf
     add 92369e3cf UNOMI-919: Avoid applying setup in test mode as packaging is 
already done.
     add d0ca690e1 UNOMI-919: Restore missing feature in merged branch.
     add dc95f7743 UNOMI-919: Fix bad command syntax in tests
     add 383c7ac4d UNOMI-919: Restore additional feature config into unomi 
startup
     add b93fbf466 UNOMI-919: Remove unused healthcheck config file
     add bbad05d11 UNOMI-919: Include dedicated healthcheck config for each 
persistence type.
     add a9e498ce3 UNOMI-919: fix tests
     add cef067f2d UNOMI-919: Remove healthcheck config from karaf/etc package 
to let the bundle propose it's own cfg file.
     add 77883f35a feat: remove the additional features option to use the 
distribution's one.
     add 3dc54983c chore: remove unused variable
     add 2b7aa2738 doc: update documentation for distribution
     add 4b95b49f9 fix: fix test missed in merge
     add f9e9877fc UNOMI-919: Refactor the UNOMI startFeatures configuration to 
use a Karaf feature
     new 113b2a18e Merge remote-tracking branch 'origin/master' into 
merge-master-into-unomi-3-dev
     new c5d240aaa Merges corrections
     add f29384847 Avoid install already installed features and start already 
started features. This avoid duplicate installation in tests.
     add 1fa563a3d [UNOMI-923] Avoid install already installed features and 
start already started features
     add 5cc5543c3 [UNOMI-919] Remove unwanted file
     new b123166c1 Merge remote-tracking branch 'origin/master' into 
merge-master-into-unomi-3-dev
     new 15a2062b6 Upgrade OpenSearch to 3.4.0 and fix configuration references
     new c747986d1 UNOMI-919 Integrate new Unomi distributions with build shell 
script
     new 3b8b0f88f Fix merge with master
     new 434f64cda UNOMI-919 Fix exception when health check is disabled by 
default.
     new 9a21b0a44 UNOMI-919 sync feature startup order with BaseIT order and 
add missing features.
     new d0ccccdbf Update VS Code workspace settings
     new 2d4b620b8 Merge branch 'merge-master-into-unomi-3-dev' into unomi-3-dev

The 10 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:
 .vscode/settings.json                              |   3 +-
 bom/artifacts/pom.xml                              |  12 +
 build.sh                                           |  41 +++-
 {kar => distribution}/pom.xml                      |  54 +----
 distribution/src/main/feature/feature.xml          | 136 +++++++++++
 docker/README.md                                   |  72 ++++--
 docker/src/main/docker/docker-compose-build-es.yml |   5 +-
 docker/src/main/docker/docker-compose-build-os.yml |   9 +-
 docker/src/main/docker/docker-compose-es.yml       |   5 +-
 docker/src/main/docker/docker-compose-os.yml       |   9 +-
 docker/src/main/docker/entrypoint.sh               | 107 ++++-----
 extensions/healthcheck/pom.xml                     |  11 +-
 .../unomi/healthcheck/HealthCheckService.java      |   6 +-
 .../provider/ElasticSearchHealthCheckProvider.java | 135 ++++++-----
 .../provider/OpenSearchHealthCheckProvider.java    | 150 +++++++-----
 .../provider/PersistenceEngineHealthProvider.java  |  37 ---
 .../provider/PersistenceHealthCheckProvider.java   |  66 ------
 .../org.apache.unomi.healthcheck-elasticsearch.cfg |  12 +-
 ...=> org.apache.unomi.healthcheck-opensearch.cfg} |   9 +-
 .../test/java/org/apache/unomi/itests/BaseIT.java  |  22 +-
 .../org/apache/unomi/itests/HealthCheckIT.java     |   7 +-
 kar/src/main/feature/feature.xml                   |  11 +-
 .../apache/unomi/lifecycle/BundleWatcherImpl.java  |   4 +-
 manual/src/main/asciidoc/5-min-quickstart.adoc     |  17 +-
 .../src/main/asciidoc/building-and-deploying.adoc  |  44 +++-
 manual/src/main/asciidoc/configuration.adoc        | 261 +++++++++++++--------
 manual/src/main/asciidoc/graphql.adoc              |  14 +-
 .../asciidoc/migrations/migrate-2.x-to-3.0.adoc    |  12 +-
 .../main/asciidoc/queries-and-aggregations.adoc    |   6 +-
 manual/src/main/asciidoc/shell-commands.adoc       |   9 +-
 manual/src/main/asciidoc/writing-plugins.adoc      |  93 ++++++--
 package/pom.xml                                    |   9 +
 .../main/resources/etc/custom.system.properties    |  19 +-
 .../OpenSearchPersistenceServiceImpl.java          |   2 +-
 .../core/PropertyConditionOSQueryBuilder.java      |   2 +-
 .../resources/OSGI-INF/blueprint/blueprint.xml     |   2 +-
 .../org.apache.unomi.persistence.opensearch.cfg    |  12 +-
 pom.xml                                            |   5 +-
 tools/shell-commands/pom.xml                       |  12 +-
 .../unomi/shell/actions/{Stop.java => Setup.java}  |  15 +-
 .../java/org/apache/unomi/shell/actions/Start.java |  14 +-
 .../java/org/apache/unomi/shell/actions/Stop.java  |   1 -
 .../shell/services/UnomiManagementService.java     |  27 ++-
 .../UnomiManagementServiceConfiguration.java       |  52 ----
 .../internal/UnomiManagementServiceImpl.java       | 256 ++++++++++----------
 .../unomi/shell/services/internal/UnomiSetup.java  |  77 ++++++
 .../src/main/resources/org.apache.unomi.start.cfg  |  18 --
 47 files changed, 1093 insertions(+), 809 deletions(-)
 copy {kar => distribution}/pom.xml (81%)
 create mode 100644 distribution/src/main/feature/feature.xml
 delete mode 100644 
extensions/healthcheck/src/main/java/org/apache/unomi/healthcheck/provider/PersistenceEngineHealthProvider.java
 rename itests/src/test/resources/org.apache.unomi.healthcheck.cfg => 
extensions/healthcheck/src/main/resources/org.apache.unomi.healthcheck-elasticsearch.cfg
 (71%)
 rename 
extensions/healthcheck/src/main/resources/{org.apache.unomi.healthcheck.cfg => 
org.apache.unomi.healthcheck-opensearch.cfg} (78%)
 copy 
tools/shell-commands/src/main/java/org/apache/unomi/shell/actions/{Stop.java => 
Setup.java} (62%)
 delete mode 100644 
tools/shell-commands/src/main/java/org/apache/unomi/shell/services/internal/UnomiManagementServiceConfiguration.java
 create mode 100644 
tools/shell-commands/src/main/java/org/apache/unomi/shell/services/internal/UnomiSetup.java
 delete mode 100644 
tools/shell-commands/src/main/resources/org.apache.unomi.start.cfg

Reply via email to