You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@knox.apache.org by gi...@apache.org on 2022/08/23 13:40:01 UTC

[knox] branch dependabot/maven/org.postgresql-postgresql-42.4.1 updated (6e3b73b47 -> 2b57c2a75)

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

github-bot pushed a change to branch dependabot/maven/org.postgresql-postgresql-42.4.1
in repository https://gitbox.apache.org/repos/asf/knox.git


 discard 6e3b73b47 Bump postgresql from 42.3.3 to 42.4.1
     add d51173a83 KNOX-2779 - support multiple hosts for gateway.host config (#613)
     add 255ca7523 KNOX-2783 - User can be mapped to an empty virtual group (#611)
     add 5121758bc KNOX-2786 - Upgrade spring and json-smart due to CVEs (#614)
     add 28159cfb2 Displaying disk usage on Travis CI nodes
     add 78a058900 KNOX-2778 - Enforce concurrent session limit in KnoxSSO (#615)
     add 66012400d KNOX-2788 - Implementing EmptyVerifier and Cleaning background thread (#620)
     add 2deaf375b KNOX-2787 - Upgrade pac4j to 4.5.6 (#621)
     add 2b57c2a75 Bump postgresql from 42.3.3 to 42.4.1

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   (6e3b73b47)
            \
             N -- N -- N   refs/heads/dependabot/maven/org.postgresql-postgresql-42.4.1 (2b57c2a75)

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:
 .travis.yml                                        |   5 +
 .../filter/CommonIdentityAssertionFilter.java      |  29 +-
 .../filter/CommonIdentityAssertionFilterTest.java  |   7 +-
 gateway-provider-security-pac4j/pom.xml            |  25 +-
 .../pac4j/filter/Pac4jDispatcherFilter.java        |   9 +-
 .../gateway/pac4j/filter/Pac4jIdentityAdapter.java |   3 +-
 .../org/apache/knox/gateway/GatewayMessages.java   |   3 +
 .../org/apache/knox/gateway/GatewayServer.java     |  84 ++--
 .../gateway/config/impl/GatewayConfigImpl.java     |  27 +-
 .../gateway/services/DefaultGatewayServices.java   |   2 +
 ....java => ConcurrentSessionVerifierFactory.java} |  32 +-
 .../control/EmptyConcurrentSessionVerifier.java}   |  21 +-
 .../control/InMemoryConcurrentSessionVerifier.java | 195 +++++++++
 ...org.apache.knox.gateway.services.ServiceFactory |   3 +-
 .../gateway/config/impl/GatewayConfigImplTest.java |  31 ++
 .../services/AbstractGatewayServicesTest.java      |   3 +-
 .../ConcurrentSessionVerifierFactoryTest.java      |  91 ++++
 .../InMemoryConcurrentSessionVerifierTest.java     | 465 +++++++++++++++++++++
 .../gateway/service/knoxsso/WebSSOResource.java    |  26 +-
 .../service/knoxsso/WebSSOResourceTest.java        |  63 ++-
 .../gateway/service/knoxsso/KnoxSSOutMessages.java |   3 +
 .../gateway/service/knoxsso/WebSSOutResource.java  |  25 ++
 .../service/knoxsso/WebSSOutResourceTest.java      |   6 +-
 .../org/apache/knox/gateway/GatewayTestConfig.java |  21 +-
 .../session/control/ConcurrentSessionVerifier.java | 106 -----
 .../control/ConcurrentSessionVerifierTest.java     | 161 -------
 .../apache/knox/gateway/config/GatewayConfig.java  |   6 +-
 .../apache/knox/gateway/services/ServiceType.java  |   3 +-
 .../control/ConcurrentSessionVerifier.java}        |  25 +-
 .../gateway/SimpleDescriptorHandlerFuncTest.java   |   3 +-
 pom.xml                                            |  28 +-
 31 files changed, 1096 insertions(+), 415 deletions(-)
 copy gateway-server/src/main/java/org/apache/knox/gateway/services/factory/{MasterServiceFactory.java => ConcurrentSessionVerifierFactory.java} (58%)
 copy gateway-server/src/{test/java/org/apache/knox/gateway/services/TestService.java => main/java/org/apache/knox/gateway/session/control/EmptyConcurrentSessionVerifier.java} (71%)
 create mode 100644 gateway-server/src/main/java/org/apache/knox/gateway/session/control/InMemoryConcurrentSessionVerifier.java
 create mode 100644 gateway-server/src/test/java/org/apache/knox/gateway/services/factory/ConcurrentSessionVerifierFactoryTest.java
 create mode 100644 gateway-server/src/test/java/org/apache/knox/gateway/session/control/InMemoryConcurrentSessionVerifierTest.java
 delete mode 100644 gateway-spi-common/src/main/java/org/apache/knox/gateway/session/control/ConcurrentSessionVerifier.java
 delete mode 100644 gateway-spi-common/src/test/java/org/apache/knox/gateway/session/control/ConcurrentSessionVerifierTest.java
 copy gateway-spi/src/main/java/org/apache/knox/gateway/{services/security/token/JWTokenAuthority.java => session/control/ConcurrentSessionVerifier.java} (58%)