You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@unomi.apache.org by ta...@apache.org on 2021/03/29 13:56:39 UTC

[unomi] branch UNOMI-446-increment-action updated (a71469c -> 31316c3)

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

taybou pushed a change to branch UNOMI-446-increment-action
in repository https://gitbox.apache.org/repos/asf/unomi.git.


 discard a71469c  UNOMI-446 improve after core review
 discard 016f859  UNOMI-446 improve after core review
 discard 1f97e69  UNOMI-446 improve after core review
 discard 3d5fdf3  UNOMI-444 redeploy unomi objects in case they are modified (#264)
     add 32e05a7  UNOMI-444 redeploy unomi objects in case they are modified (#264)
     add 1e0a898  Secure the unomi logs (#266)
     add 72fa95d  UNOMI-451 : Use bus service rest server (#269)
     add b2eca47  UNOMI-448 : Create generic action to copy properties to profile (#268)
     add 399cac6  UNOMI-450 : deprecate AllEventToProfilePropertiesAction to use CopyPropertiesAction (#270)
     add 86ac6b4  UNOMI-444 redeploy unomi objects in case they are modified (#264)
     add 23e5a64  UNOMI-446 improve after core review
     add d125cd9  UNOMI-446 improve after core review
     add 31316c3  UNOMI-446 improve after core review

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   (a71469c)
            \
             N -- N -- N   refs/heads/UNOMI-446-increment-action (31316c3)

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:
 .../test/java/org/apache/unomi/itests/AllITs.java  |   1 +
 .../test/java/org/apache/unomi/itests/BaseIT.java  |   8 +-
 .../unomi/itests/CopyPropertiesActionIT.java       | 275 +++++++++++++++++++++
 itests/src/test/resources/testCopyProperties.json  |  26 ++
 .../testCopyPropertiesWithoutSystemTags.json       |  23 ++
 itests/src/test/resources/testLogin.json           |   7 +-
 .../main/resources/etc/org.ops4j.pax.logging.cfg   |   2 +-
 .../ElasticSearchPersistenceServiceImpl.java       |   6 +-
 .../ConditionESQueryBuilderDispatcher.java         |  11 +-
 .../core/src/main/resources/log4j2.xml             |   2 +-
 .../actions/AllEventToProfilePropertiesAction.java |   4 +
 .../baseplugin/actions/CopyPropertiesAction.java   | 115 +++++++++
 .../baseplugin/actions/ModifyConsentAction.java    |   5 +-
 .../baseplugin/actions/SetPropertyAction.java      |   7 +-
 .../conditions/BooleanConditionESQueryBuilder.java |  10 +-
 .../HardcodedPropertyAccessorRegistry.java         |   5 +-
 .../conditions/PropertyConditionEvaluator.java     |  55 +++--
 .../actions/allEventToProfilePropertiesAction.json |   5 +-
 .../META-INF/cxs/actions/copyPropertiesAction.json |  17 +-
 .../resources/OSGI-INF/blueprint/blueprint.xml     |  10 +
 .../request/actions/SetRemoteHostInfoAction.java   |   8 +-
 .../apache/unomi/rest/ClusterServiceEndPoint.java  |   5 +-
 .../java/org/apache/unomi/rest/RestServer.java     |  27 +-
 .../java/org/apache/unomi/rest/RestServerBus.java  |  24 +-
 .../resources/META-INF/cxs/rules/exampleLogin.json |   4 +-
 .../apache/unomi/scripting/ExpressionFilter.java   |  12 +-
 .../impl/definitions/DefinitionsServiceImpl.java   |  18 +-
 .../services/impl/goals/GoalsServiceImpl.java      |  19 +-
 .../services/impl/profiles/ProfileServiceImpl.java |  32 +--
 .../services/impl/rules/RulesServiceImpl.java      |   9 +-
 .../services/impl/segments/SegmentServiceImpl.java |  18 +-
 .../java/org/apache/unomi/web/ContextServlet.java  |  20 +-
 .../apache/unomi/web/EventsCollectorServlet.java   |  13 +-
 33 files changed, 649 insertions(+), 154 deletions(-)
 create mode 100644 itests/src/test/java/org/apache/unomi/itests/CopyPropertiesActionIT.java
 create mode 100644 itests/src/test/resources/testCopyProperties.json
 create mode 100644 itests/src/test/resources/testCopyPropertiesWithoutSystemTags.json
 create mode 100644 plugins/baseplugin/src/main/java/org/apache/unomi/plugins/baseplugin/actions/CopyPropertiesAction.java
 copy graphql/cxs-impl/src/main/resources/META-INF/cxs/actions/cdpSessionEvent.json => plugins/baseplugin/src/main/resources/META-INF/cxs/actions/copyPropertiesAction.json (54%)
 copy extensions/lists-extension/services/src/main/java/org/apache/unomi/lists/UserList.java => rest/src/main/java/org/apache/unomi/rest/RestServerBus.java (62%)