From 5b4ede4628b887c8981abdda2757fdfdd66ff9d1 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Tue, 1 Aug 2023 21:22:57 -0500 Subject: [PATCH 1/2] fix: resolve issue with non method members on protocol --- starlite/config/logging.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/starlite/config/logging.py b/starlite/config/logging.py index 1a86aad64c..5309087c63 100644 --- a/starlite/config/logging.py +++ b/starlite/config/logging.py @@ -259,7 +259,7 @@ class StructLoggingConfig(BaseLoggingConfig, BaseModel): processors: Optional[List[Processor]] = Field(default_factory=default_structlog_processors) # pyright: ignore """Iterable of structlog logging processors.""" - wrapper_class: Optional[Type[BindableLogger]] = Field(default_factory=default_wrapper_class) # pyright: ignore + wrapper_class: Any = Field(default_factory=default_wrapper_class) # pyright: ignore """Structlog bindable logger.""" context_class: Optional[Dict[str, Any]] = None """Context class (a 'contextvar' context) for the logger.""" From b5f9ff1c6a5c51bc0f075fac260386378f865571 Mon Sep 17 00:00:00 2001 From: Jacob Coffee Date: Tue, 1 Aug 2023 21:34:10 -0500 Subject: [PATCH 2/2] infra: add CODEOWNERS to 1.51 branch --- .github/CODEOWNERS | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .github/CODEOWNERS diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000000..6c97be0d36 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1,10 @@ +# Code owner settings for `litestar` +# @maintainers should be assigned to all reviews. +# Most specific assignment takes precedence though, so if you add a more specific thing than the `*` glob, you must also add @maintainers +# For more info about code owners see https://docs.github.com/en/repositories/managing-your-repositorys-settings-and-features/customizing-your-repository/about-code-owners#codeowners-file-example + +# Global Assignment +* @litestar-org/maintainers @litestar-org/members + +# Documentation +docs/* @litestar-org/maintainers @JacobCoffee @provinzkraut