diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml index 1dac81986..fd27195f8 100644 --- a/.github/workflows/release.yml +++ b/.github/workflows/release.yml @@ -45,6 +45,7 @@ jobs: repo: context.repo.repo, tag_name: tagName, name: `Release ${tagName.replace(/^v/, '')}`, + generate_release_notes: true, }); if (release.status < 200 || release.status >= 300) { diff --git a/scripts/typecheck_tests.py b/scripts/typecheck_tests.py index 3e219b136..3b5b612e4 100644 --- a/scripts/typecheck_tests.py +++ b/scripts/typecheck_tests.py @@ -80,6 +80,7 @@ "browsable_api": [ '(expression has type "List[Dict[str, Dict[str, int]]]", base class "GenericAPIView" defined the type as "Union[QuerySet[_MT?], Manager[_MT?], None]")', # noqa: E501 'expression has type "List[Dict[str, Dict[str, int]]]"', + 'List item 0 has incompatible type "Type[IsAuthenticated]', ], "conftest.py": ["Unsupported operand types for"], "models.py": ['"ForeignKeyTarget" has no attribute "sources"'],