This is an automated email from the ASF dual-hosted git repository.
lprimak pushed a commit to branch 3.x
in repository https://gitbox.apache.org/repos/asf/shiro.git
The following commit(s) were added to refs/heads/3.x by this push:
new 6169a266c enh: case-insensitive path matching is enabled by default
6169a266c is described below
commit 6169a266c7dd35486232696b18e9de3b65a7461c
Author: lprimak <[email protected]>
AuthorDate: Sat Jan 31 14:48:56 2026 -0600
enh: case-insensitive path matching is enabled by default
---
.../java/org/apache/shiro/web/config/IniFilterChainResolverFactory.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/web/src/main/java/org/apache/shiro/web/config/IniFilterChainResolverFactory.java
b/web/src/main/java/org/apache/shiro/web/config/IniFilterChainResolverFactory.java
index 15dc3bbd9..c4c9ea299 100644
---
a/web/src/main/java/org/apache/shiro/web/config/IniFilterChainResolverFactory.java
+++
b/web/src/main/java/org/apache/shiro/web/config/IniFilterChainResolverFactory.java
@@ -61,7 +61,7 @@ public class IniFilterChainResolverFactory extends
IniFactorySupport<FilterChain
private List<String> globalFilters =
Collections.singletonList(DefaultFilter.invalidRequest.name());
- private boolean caseInsensitive;
+ private boolean caseInsensitive = true;
public IniFilterChainResolverFactory() {
super();