This is an automated email from the ASF dual-hosted git repository.
lprimak pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/shiro-site.git
The following commit(s) were added to refs/heads/main by this push:
new 5d8fc2175 docs: add note about Shiro version requirement for
pre-flight requests feature
5d8fc2175 is described below
commit 5d8fc21757a80103e58b955ca1f7620e02e10a19
Author: lprimak <[email protected]>
AuthorDate: Tue Jan 13 16:38:10 2026 -0600
docs: add note about Shiro version requirement for pre-flight requests
feature
---
src/site/content/web.adoc | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/site/content/web.adoc b/src/site/content/web.adoc
index ec4965b9c..2266ad319 100644
--- a/src/site/content/web.adoc
+++ b/src/site/content/web.adoc
@@ -475,6 +475,10 @@ When using HTTP-based authentication (like Basic Auth or
Bearer Token) in a brow
To allow pre-flight `OPTIONS` requests to pass through the authentication
filter without requiring credentials, you can configure the
`allowPreFlightRequests` property on any filter extending
`HttpAuthenticationFilter`.
This is commonly used with `authcBasic` (Basic Auth) or `authcBearer` (Bearer
Token / JWT).
+[NOTE]
+====
+this feature is only available in Shiro 2.0.7 or later
+====
[source,ini]
----