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

asf-gitbox-commits pushed a change to branch 
backport/graphql-websocket-auth-3.0.x
in repository https://gitbox.apache.org/repos/asf/unomi.git


    omit b9f6d6f0f Require authentication for GraphQL WebSocket upgrade
     add b9617853c [UNOMI-973] - Confine recurrent import/export file endpoints 
to configurable base directories (#849)
     new 6d55e73ad Require authentication for GraphQL WebSocket upgrade 
(unomi-3.0.x)

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   (b9f6d6f0f)
            \
             N -- N -- N   refs/heads/backport/graphql-websocket-auth-3.0.x 
(6d55e73ad)

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 1 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:
 .../apache/unomi/router/api/EndpointValidator.java | 498 ++++++++++++++
 .../apache/unomi/router/api/RouterConstants.java   |  11 +
 extensions/router/router-core/pom.xml              |   7 +
 .../router/core/context/RouterCamelContext.java    |  20 +
 .../route/ProfileExportCollectRouteBuilder.java    |  23 +-
 .../route/ProfileImportFromSourceRouteBuilder.java |  22 +-
 .../core/route/RouterAbstractRouteBuilder.java     |  56 ++
 .../resources/OSGI-INF/blueprint/blueprint.xml     |   4 +
 .../src/main/resources/org.apache.unomi.router.cfg |   9 +-
 .../core/route/FileEndpointContainmentTest.java    | 716 +++++++++++++++++++++
 .../core/route/RefusedConfigurationStatusTest.java | 330 ++++++++++
 extensions/router/router-rest/pom.xml              |   7 +
 .../rest/AbstractConfigurationServiceEndpoint.java |  43 ++
 .../rest/ExportConfigurationServiceEndPoint.java   |  14 +-
 .../rest/ImportConfigurationServiceEndPoint.java   |  10 +-
 .../rest/ConfigurationEndpointValidationTest.java  | 332 ++++++++++
 .../unomi/graphql/servlet/GraphQLServlet.java      | 114 +++-
 .../auth/GraphQLServletSecurityValidator.java      |  70 +-
 .../servlet/websocket/SubscriptionWebSocket.java   | 175 ++++-
 .../websocket/SubscriptionWebSocketFactory.java    |  37 +-
 .../src/main/resources/assets/js/index.jsx         |  26 +-
 .../test/java/org/apache/unomi/itests/AllITs.java  |   2 +
 .../test/java/org/apache/unomi/itests/BaseIT.java  |   8 +
 .../org/apache/unomi/itests/ProfileExportIT.java   |   4 +-
 .../itests/ProfileImportExportContainmentIT.java   | 260 ++++++++
 .../unomi/itests/graphql/GraphQLWebSocketIT.java   | 136 +++-
 .../graphql/socket/out/init-bad-credentials.json   |   6 +
 .../graphql/socket/out/init-with-credentials.json  |   6 +
 .../src/test/resources/org.apache.unomi.router.cfg |   9 +-
 .../src/main/asciidoc/profile-import-export.adoc   |  17 +-
 .../main/resources/etc/custom.system.properties    |   7 +
 31 files changed, 2900 insertions(+), 79 deletions(-)
 create mode 100644 
extensions/router/router-api/src/main/java/org/apache/unomi/router/api/EndpointValidator.java
 create mode 100644 
extensions/router/router-core/src/test/java/org/apache/unomi/router/core/route/FileEndpointContainmentTest.java
 create mode 100644 
extensions/router/router-core/src/test/java/org/apache/unomi/router/core/route/RefusedConfigurationStatusTest.java
 create mode 100644 
extensions/router/router-rest/src/test/java/org/apache/unomi/router/rest/ConfigurationEndpointValidationTest.java
 create mode 100644 
itests/src/test/java/org/apache/unomi/itests/ProfileImportExportContainmentIT.java
 create mode 100644 
itests/src/test/resources/graphql/socket/out/init-bad-credentials.json
 create mode 100644 
itests/src/test/resources/graphql/socket/out/init-with-credentials.json

Reply via email to