-
-
Notifications
You must be signed in to change notification settings - Fork 397
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
chore(release)!: Version 3.0 #3364
Draft
JacobCoffee
wants to merge
33
commits into
main
Choose a base branch
from
v3.0
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Draft
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
github-actions
bot
added
area/ci
This PR involves changes to the CI/Infra
area/dependencies
This PR involves changes to the dependencies
area/docs
This PR involves changes to the documentation
size: medium
pr/internal
labels
Apr 10, 2024
Codecov ReportAttention: Patch coverage is
Additional details and impacted files@@ Coverage Diff @@
## main #3364 +/- ##
==========================================
- Coverage 98.34% 98.26% -0.09%
==========================================
Files 347 342 -5
Lines 15756 15363 -393
Branches 1741 1663 -78
==========================================
- Hits 15496 15096 -400
- Misses 124 133 +9
+ Partials 136 134 -2 ☔ View full report in Codecov by Sentry. |
github-actions
bot
added
area/connection
area/contrib
This PR involves changes to the contrib (Deprecated)
area/handlers
This PR involves changes to the handlers
area/middleware
This PR involves changes to the middleware
area/private-api
This PR involves changes to the privatized API
area/static-files
area/template
area/testing
size: large
and removed
size: medium
labels
Apr 10, 2024
…e` (#3393) * Remove 'app' parameter from `.to_asgi_response`
Remove the deprecated utility functions, `get_litestar_scope_state``, ``set_litestar_scope_state``, ``delete_litestar_scope_state``, and ``is_sync_or_async_generator``.
* remove handler names * Remove option handler creation from HTTPRoute * Remove methods attribute from BaseRoute * Move kwargs model to handlers and creation to on_registration * Store kwargs model on handlers instead of routes * Simplify HTTPRoute route_handler_map creation * Simplify Router.route_handler_method_map * Relax typing of HTTPRoute * Move handling logic to route handlers * Remove scope_type * Don't pass route to HTTPRouteHandler during handling * Don't pass scope to handle methods * Resolve and establish connections in routes; Only pass connections to handlers --------- Co-authored-by: Jacob Coffee <[email protected]> Co-authored-by: Peter Schutt <[email protected]>
* Backport static files path traversal fix
* make route handlers functional decorators
…ors (#3529) Remove deprecated test
ignore type error
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
area/asgi
area/channels
area/connection
area/constants
This PR involves changes to the constants
area/contrib
This PR involves changes to the contrib (Deprecated)
area/controller
area/dependencies
This PR involves changes to the dependencies
area/di
area/docs
This PR involves changes to the documentation
area/dto
This PR involves changes to the DTOs
area/enums
This PR involves changes to the enums
area/handlers
This PR involves changes to the handlers
area/kwargs
area/layers
area/logging
area/middleware
This PR involves changes to the middleware
area/openapi
This PR involves changes to the OpenAPI schema
area/private-api
This PR involves changes to the privatized API
area/response
area/router
area/static-files
area/template
area/testing
area/types
This PR involves changes to the custom types
do not merge
Don't merge this
pr/internal
size: large
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.
Standing PR for the 3.0 release
Important
2.x
, be mindful of the changes you are pulling into this branch.main
into this branch as it makes the process of merging it back intomain
with a merge commit when the release is due easiermain
to keep the history of the feature commits intactBreaking Changes
Any breaking changes should be properly marked with
!
in the conventional commits schema, e.g.,fix($scope)!: fix thing but it broke stuff
,feat(dtos)!: add breaking feature