[java-shib-shared] branch dev/JPAR-234 updated (0ca5718d -> 7f5f4886)
Ian Young
ian at iay.org.uk
Thu Apr 17 14:04:10 UTC 2025
This is an automated email from the git hooks/post-receive script.
iay pushed a change to branch dev/JPAR-234
in repository java-shib-shared.
discard 0ca5718d JPAR-234 - Track Spring Framework 7.0
add fd94f2f5 JSSH-50 Stop including CA:true in generated certificates
add 643aa235 OSJ-427: Simple signature verification fails to detect parameter ...
add 5b5be6aa Add NoOpHttpServletRequestValidator.
add cd24ce37 Add some more test cases to URISupportTest.
add 50f2ecde Add some additional query string methods to URISupport.
add f2b6de90 Add allowed params support to BasicHttpServletRequestParametersValidator
add 4a6c11de Add URISupport#buildQueryMultiMap to support params with multiple values
add 0e231655 IDP-2286 - Add equivalent of PasswordlessCookieManager from Duo plugin
add 819a5643 IDP-2367 - Upgrade breaks use of attributes.properties via idp.searchForProperties
add e6dff40a Add some missing Javadoc and fix some warnings.
add 9dcb9b58 JSSH-58 - Add servlet request validation for method and content type
add 53925496 Port tests to Jetty 12.
add b0f9a3bf typo
add 22e70ab3 JSH-59 - Conditionally add setAttribute support to CookieManager
add 83ae2003 JSSH-60 - Support for managing multiple prefixed cookies
add bef2a72c JSSH-60 - Support for managing multiple prefixed cookies
add adc76b8d IDP-2374 - Implement support for SameSite directly when possible
add 98d5a7a1 Bypass new disabling logic for testing purposes.
add c4d7ce86 Add bypass for ServletContext check around setAttribute calls.
add cb25d1e2 Replace more unnecessary UTF-8 lookups.
new 7f5f4886 JPAR-234 - Track Spring Framework 7.0
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 (0ca5718d)
\
N -- N -- N refs/heads/dev/JPAR-234 (7f5f4886)
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:
.../servlet/impl/SameSiteCookieHeaderFilter.java | 37 +-
.../impl/SameSiteCookieHeaderFilterTest.java | 13 +
shib-networking/pom.xml | 2 +-
.../net/shibboleth/shared/net/CookieManager.java | 413 ++++++++++++++++++++-
.../java/net/shibboleth/shared/net/URISupport.java | 109 +++++-
.../shared/servlet/AbstractConditionalFilter.java | 1 -
.../servlet/HttpServletRequestValidator.java | 23 +-
...asicHttpServletRequestContentTypeValidator.java | 119 ++++++
.../BasicHttpServletRequestMethodValidator.java | 79 ++++
...BasicHttpServletRequestParametersValidator.java | 239 ++++++++++++
.../impl/ChainingHttpServletRequestValidator.java | 89 +++++
.../impl/HttpServletRequestResponseContext.java | 16 +-
.../impl/NoOpHttpServletRequestValidator.java | 21 +-
.../RequestTimeLimitingHttpClientTest.java | 52 +--
.../shibboleth/shared/net/CookieManagerTest.java | 67 +++-
.../net/shibboleth/shared/net/URISupportTest.java | 127 +++++++
...HttpServletRequestContentTypeValidatorTest.java | 118 ++++++
...BasicHttpServletRequestMethodValidatorTest.java | 96 +++++
...cHttpServletRequestParametersValidatorTest.java | 273 ++++++++++++++
.../ChainingHttpServletRequestValidatorTest.java | 87 +++++
.../HttpServletRequestResponseContextTest.java | 1 +
.../shared/security/EncryptedCookieManager.java | 235 ++++++++++++
.../impl/SelfSignedCertificateGenerator.java | 5 +-
...actPropertiesApplicationContextInitializer.java | 44 ++-
.../shared/primitive/ReflectionSupport.java | 54 +++
.../shared/testing/ConstantSupplier.java | 2 +-
26 files changed, 2222 insertions(+), 100 deletions(-)
copy shib-service/src/main/java/net/shibboleth/shared/service/LoggingService.java => shib-networking/src/main/java/net/shibboleth/shared/servlet/HttpServletRequestValidator.java (54%)
create mode 100644 shib-networking/src/main/java/net/shibboleth/shared/servlet/impl/BasicHttpServletRequestContentTypeValidator.java
create mode 100644 shib-networking/src/main/java/net/shibboleth/shared/servlet/impl/BasicHttpServletRequestMethodValidator.java
create mode 100644 shib-networking/src/main/java/net/shibboleth/shared/servlet/impl/BasicHttpServletRequestParametersValidator.java
create mode 100644 shib-networking/src/main/java/net/shibboleth/shared/servlet/impl/ChainingHttpServletRequestValidator.java
copy shib-support/src/main/java/net/shibboleth/shared/component/AbstractIdentifiableInitializableComponent.java => shib-networking/src/main/java/net/shibboleth/shared/servlet/impl/NoOpHttpServletRequestValidator.java (54%)
create mode 100644 shib-networking/src/test/java/net/shibboleth/shared/servlet/impl/BasicHttpServletRequestContentTypeValidatorTest.java
create mode 100644 shib-networking/src/test/java/net/shibboleth/shared/servlet/impl/BasicHttpServletRequestMethodValidatorTest.java
create mode 100644 shib-networking/src/test/java/net/shibboleth/shared/servlet/impl/BasicHttpServletRequestParametersValidatorTest.java
create mode 100644 shib-networking/src/test/java/net/shibboleth/shared/servlet/impl/ChainingHttpServletRequestValidatorTest.java
create mode 100644 shib-security/src/main/java/net/shibboleth/shared/security/EncryptedCookieManager.java
create mode 100644 shib-support/src/main/java/net/shibboleth/shared/primitive/ReflectionSupport.java
--
To stop receiving notification emails like this one, please contact
the administrator of this repository.
More information about the commits
mailing list