This is an automated email from the ASF dual-hosted git repository.
bdemers pushed a change to branch 1.10.x
in repository https://gitbox.apache.org/repos/asf/shiro.git
from 43240d91 [SHIRO-890] Avoid another proxy creator when
@EnableAspectJAutoProxy enabled
new 28e10e0c Allow for direct configuration of ShiroFilter through
WebEnvironment
new 7141f411 [maven-release-plugin] prepare release shiro-root-1.10.0
new 0b277a68 [maven-release-plugin] prepare for next development iteration
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:
all/pom.xml | 2 +-
cache/pom.xml | 2 +-
config/core/pom.xml | 2 +-
config/ogdl/pom.xml | 2 +-
config/pom.xml | 2 +-
core/pom.xml | 2 +-
crypto/cipher/pom.xml | 2 +-
crypto/core/pom.xml | 2 +-
crypto/hash/pom.xml | 2 +-
crypto/pom.xml | 2 +-
event/pom.xml | 2 +-
integration-tests/guice3/pom.xml | 2 +-
integration-tests/guice4/pom.xml | 2 +-
integration-tests/pom.xml | 2 +-
integration-tests/support/pom.xml | 2 +-
lang/pom.xml | 2 +-
pom.xml | 5 +-
samples/aspectj/pom.xml | 2 +-
samples/guice/pom.xml | 2 +-
samples/jaxrs/pom.xml | 2 +-
samples/pom.xml | 2 +-
samples/quickstart-guice/pom.xml | 2 +-
samples/quickstart/pom.xml | 2 +-
samples/servlet-plugin/pom.xml | 11 +--
samples/spring-boot-web/pom.xml | 2 +-
samples/spring-boot/pom.xml | 2 +-
samples/spring-hibernate/pom.xml | 2 +-
samples/spring-mvc/pom.xml | 2 +-
samples/spring/pom.xml | 2 +-
samples/web/pom.xml | 2 +-
.../japicmp/postAnalysisScript.groovy | 27 ++++---
support/aspectj/pom.xml | 2 +-
support/cas/pom.xml | 2 +-
support/ehcache/pom.xml | 2 +-
support/features/pom.xml | 2 +-
support/guice/pom.xml | 2 +-
.../apache/shiro/guice/web/GuiceShiroFilter.java | 4 +-
.../shiro/guice/web/WebGuiceEnvironment.java | 10 ++-
.../shiro/guice/web/GuiceShiroFilterTest.java | 15 +++-
.../apache/shiro/guice/web/ShiroWebModuleTest.java | 5 +-
.../shiro/guice/web/WebGuiceEnvironmentTest.java | 4 +-
support/hazelcast/pom.xml | 2 +-
support/jaxrs/pom.xml | 2 +-
support/pom.xml | 2 +-
support/quartz/pom.xml | 2 +-
support/servlet-plugin/pom.xml | 2 +-
support/spring-boot/pom.xml | 2 +-
support/spring-boot/spring-boot-starter/pom.xml | 2 +-
.../spring-boot/spring-boot-web-starter/pom.xml | 2 +-
support/spring/pom.xml | 2 +-
.../shiro/spring/web/ShiroFilterFactoryBean.java | 34 ++++++++-
.../AbstractShiroWebFilterConfiguration.java | 11 +++
test-coverage/pom.xml | 2 +-
tools/hasher/pom.xml | 2 +-
tools/pom.xml | 2 +-
web/pom.xml | 2 +-
.../shiro/web/config/ShiroFilterConfiguration.java | 87 ++++++++++++++++++++++
.../shiro/web/env/DefaultWebEnvironment.java | 15 ++++
.../apache/shiro/web/env/IniWebEnvironment.java | 11 +++
.../shiro/web/env/MutableWebEnvironment.java | 8 ++
.../org/apache/shiro/web/env/WebEnvironment.java | 11 +++
.../shiro/web/servlet/AbstractShiroFilter.java | 8 ++
.../shiro/web/servlet/OncePerRequestFilter.java | 33 +++++++-
.../org/apache/shiro/web/servlet/ShiroFilter.java | 2 +
.../shiro/web/env/IniWebEnvironmentTest.groovy | 9 ++-
.../apache/shiro/web/env/MockWebEnvironment.groovy | 6 ++
.../shiro/web/servlet/ShiroFilterTest.groovy | 68 ++++++++++++++++-
.../apache/shiro/web/env/WebEnvironmentStub.java | 13 ++++
.../web/servlet/OncePerRequestFilterTest.java | 52 ++++++++-----
69 files changed, 433 insertions(+), 108 deletions(-)
copy
crypto/cipher/src/test/groovy/org/apache/shiro/crypto/JcaCipherServiceTest.groovy
=> src/japicmp/postAnalysisScript.groovy (59%)
create mode 100644
web/src/main/java/org/apache/shiro/web/config/ShiroFilterConfiguration.java