-
Notifications
You must be signed in to change notification settings - Fork 38
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
v5.0.0 #131
Merged
Merged
v5.0.0 #131
Conversation
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
master -> develop
Fix jsonOptionsHandler example in response docs
internal writeBytes and writeStream improved
Localized string parsing for SCR
hosting to replace previous extensions file
The See: b70a734, |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Added
RequestData
(andRequestValue
) to support complex form & query submissions,name=falco&classification=toolkit
) parser.FormData
contains parsedRequestValue
and access toIFormFileCollection
.HttpContext.Plug<T>
for generic injection support of dependencies withinHttpHandler
's (service locator pattern).Request.getJson<T>
for generic JSON request deserialization, using default settings (property name case-insensitive, trailing commas allowed).Request.getCookies
, replacingRequest.getCookie
.Response.signInOptions
to sign in claim principal for provided scheme and options then responds with a 301 redirect to provided URL.Response.challengeAndRedirect
, replacingResponse.challengeWithRedirect
.Routing.map[Get|Head|Post|Put|Patch|Delete|Options|Trace|Any]
which producesHttpEndpoint
by associating a route pattern to anHttpHandler
after mapping route.Routing.setDisplayName
to set the display name of the endpoint.Routing.setOrder
to set the order number of the endpoint.WebApplication.run
, registers the providedHttpHandler
as the terminal middleware and runs the application.Changed
Xss
module renamed toXsrf
. Functions:Xsrf.antiforgeryInput
,Xsrf.getToken
&Xsrf.validateToken
.Fixed
multipart/form-data
streaming and JSON serialization/deserialization.WebApplication.UseFalcoNotFound
&IApplicationBuilder.UseFalcoNotFound
to correctly terminate by returningunit
akin to the native method.Removed
net6.0
support dropped (end of life 2024-11-12).webHost [||] {}
builder removed.config {}
builder removed.HttpContext.GetLogger<T>()
extension removed.IApplicationBuilder.IsDevelopment()
,IApplicationBuilder.UseWhen()
extensions removed.Services.inject<T>
(and overloads) removed.Response.withContentLength
removed (unsupported).StringCollectionReader
and derivatives removed (FormCollectionReader
,QueryCollectionReader
,RouteCollectionReader
,HeaderCollectionReader
, andCookieCollectionReader
).RequestData
type.Request.streamForm
,Request.streamFormSecure
,Request.mapFormStream
andRequest.mapFormStreamSecure
removed.Falco.Security.Crypto
andFalco.Security.Auth
modules removed.Request.getCookie
, renamedRequest.getCookies
.Response.challengeWithRedirect
, renamedResponse.challengeAndRedirect
.Response.debugRequest
.