This is an automated email from the ASF dual-hosted git repository.
asf-gitbox-commits pushed a change to branch graphql-scope-profile-events-filter
in repository https://gitbox.apache.org/repos/asf/unomi.git
discard a00929ed3 Cover profile event-scope with an integration test
discard 916dcdfd0 Combine the profile scope with client event filters instead
of replacing it
add 27416cfc2 UNOMI-976: Restrict Groovy action upload to system
administrators
new 595fcb52e UNOMI-977: Restrict router import/export configuration to
system administrators
new c8605a648 Combine the profile scope with client event filters instead
of replacing it
new 231aebcae Cover profile event-scope with an integration test
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 (a00929ed3)
\
N -- N -- N refs/heads/graphql-scope-profile-events-filter
(231aebcae)
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.
The 3 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:
.../karaf-kar/src/main/feature/feature.xml | 2 +
extensions/groovy-actions/rest/pom.xml | 10 ++
.../groovy/actions/rest/GroovyActionsEndPoint.java | 5 +
.../rest/GroovyActionsEndPointRoleTest.java} | 28 ++---
.../services/impl/GroovyActionsServiceImpl.java | 23 +++-
.../impl/GroovyActionsServiceImplTest.java | 49 ++++++++
...Action.groovy => fieldInitializerAction.groovy} | 22 ++--
.../src/main/feature/feature.xml | 2 +
extensions/router/router-rest/pom.xml | 10 ++
.../rest/ExportConfigurationServiceEndPoint.java | 3 +
.../rest/ImportConfigurationServiceEndPoint.java | 3 +
.../rest/RouterConfigurationEndPointRoleTest.java | 44 +++++++
.../test/java/org/apache/unomi/itests/AllITs.java | 2 +
.../apache/unomi/itests/CorePersistenceITs.java | 2 +
.../GroovyActionsEndpointRoleSecurityIT.java | 113 +++++++++++++++++
.../unomi/itests/RouterEndpointRoleSecurityIT.java | 136 +++++++++++++++++++++
16 files changed, 422 insertions(+), 32 deletions(-)
copy
extensions/{json-schema/services/src/main/java/org/apache/unomi/schema/api/ValidationException.java
=>
groovy-actions/rest/src/test/java/org/apache/unomi/groovy/actions/rest/GroovyActionsEndPointRoleTest.java}
(51%)
copy
extensions/groovy-actions/services/src/test/resources/META-INF/cxs/actions/{testSaveAction.groovy
=> fieldInitializerAction.groovy} (64%)
create mode 100644
extensions/router/router-rest/src/test/java/org/apache/unomi/router/rest/RouterConfigurationEndPointRoleTest.java
create mode 100644
itests/src/test/java/org/apache/unomi/itests/GroovyActionsEndpointRoleSecurityIT.java
create mode 100644
itests/src/test/java/org/apache/unomi/itests/RouterEndpointRoleSecurityIT.java