feat: Exception Filters (@Catch, @UseFilters, use_global_filters) — closes #112#124
Merged
Conversation
…Host Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This file contains hidden or 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
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.
Summary
Implements Issue #112 — NestJS-compatible Exception Filters as a first-class PyNest primitive.
@Catch(*exc_types)— binds a filter class to one or more exception types;@Catch()catches everything@UseFilters(*filters)— applies filters at route-method or controller-class scopeapp.use_global_filters(*filters)— registers filters that apply to every route in the appExceptionFilterABC — subclass and implementasync catch(exception, host)ArgumentsHost/HttpArgumentsHost— context object giving access to the StarletteRequestinside a filterNotFoundException,BadRequestException,ForbiddenException,UnauthorizedException,ConflictException,UnprocessableEntityException,MethodNotAllowedException,InternalServerErrorException(all subclassHttpException)Filter resolution order (route → controller → global → framework default) is enforced and covered by integration tests.
Changes
nest/common/exceptions.pyHttpExceptionhierarchy,ExceptionFilterABC,ArgumentsHost,HttpArgumentsHostnest/core/decorators/filters.py@Catchand@UseFiltersnest/core/decorators/class_based_view.pynest/core/pynest_application.pyuse_global_filters()+_register_global_handler()nest/common/__init__.pynest/core/decorators/__init__.pyCatch,UseFiltersnest/core/__init__.pyCatch,UseFilterspyproject.tomlhttpxto test dependency groupdocs/exception_filters.mdmkdocs.ymlTest plan
uv run --group test pytest tests/ -v→ 59 passed, 0 failuresArgumentsHost,ExceptionFilterABC@Catch/@UseFiltersdecorator behaviourTestClientcovering: global filter, controller-level filter, route-level priority, catch-all, type mismatch (no match),ArgumentsHostrequest access, async filter🤖 Generated with Claude Code