rafsaf / minimal-fastapi-postgres-template

minimal-fastapi-postgres-template based on official template but rewritten
https://minimal-fastapi-postgres-template.rafsaf.pl
MIT License
456 stars 60 forks source link

Bump the all-dependencies group with 4 updates #52

Closed dependabot[bot] closed 5 months ago

dependabot[bot] commented 5 months ago

Bumps the all-dependencies group with 4 updates: fastapi, execnet, starlette and typing-extensions.

Updates fastapi from 0.110.0 to 0.110.1

Release notes

Sourced from fastapi's releases.

0.110.1

Fixes

  • 🐛 Fix parameterless Depends() with generics. PR #9479 by @​nzig.

Refactors

Upgrades

  • ⬆️ Upgrade Starlette to >=0.37.2,<0.38.0, remove Starlette filterwarning for internal tests. PR #11266 by @​nothielf.

Docs

Translations

  • 🌐 Add German translation for docs/de/docs/tutorial/response-status-code.md. PR #10357 by @​nilslindemann.
  • 🌐 Update Chinese translation for docs/zh/docs/tutorial/query-params.md. PR #3480 by @​jaystone776.
  • 🌐 Update Chinese translation for docs/zh/docs/tutorial/body.md. PR #3481 by @​jaystone776.
  • 🌐 Update Chinese translation for docs/zh/docs/tutorial/path-params.md. PR #3479 by @​jaystone776.
  • 🌐 Update Chinese translation for docs/tutorial/body-fields.md. PR #3496 by @​jaystone776.
  • 🌐 Update Chinese translation for docs/tutorial/extra-models.md. PR #3497 by @​jaystone776.
  • 🌐 Add Japanese translation for docs/ja/docs/tutorial/metadata.md. PR #2667 by @​tokusumi.
  • 🌐 Add German translation for docs/de/docs/contributing.md. PR #10487 by @​nilslindemann.
  • 🌐 Update Japanese translation of docs/ja/docs/tutorial/query-params.md. PR #10808 by @​urushio.
  • 🌐 Update Chinese translation for docs/zh/docs/tutorial/security/get-current-user.md. PR #3842 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/openapi-callbacks.md. PR #3825 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/extending-openapi.md. PR #3823 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/testing-dependencies.md. PR #3819 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/custom-request-and-route.md. PR #3816 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/external-links.md. PR #3833 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/templates.md. PR #3812 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/sub-applications.md. PR #3811 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/async-sql-databases.md. PR #3805 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/middleware.md. PR #3804 by @​jaystone776.
  • 🌐 Add Chinese translation for docs/zh/docs/advanced/dataclasses.md. PR #3803 by @​jaystone776.

... (truncated)

Commits


Updates execnet from 2.0.2 to 2.1.1

Changelog

Sourced from execnet's changelog.

2.1.1 (2024-04-08)

  • [#267](https://github.com/pytest-dev/execnet/issues/267) <https://github.com/pytest-dev/execnet/issue/267>__ Fixed regression in 2.1.0 where the strconfig argument to load/loads is ignored.

2.1.0 (2024-04-05)

  • [#243](https://github.com/pytest-dev/execnet/issues/243) <https://github.com/pytest-dev/execnet/pull/243>__: Added main_thread_only execmodel which is derived from the thread execmodel and only executes remote_exec calls in the main thread.

    Callers of remote_exec must use the returned channel to wait for a task to complete before they call remote_exec again, otherwise the remote_exec call will fail with a concurrent remote_exec would cause deadlock error. The main_thread_only execmodel provides solutions for [#96](https://github.com/pytest-dev/execnet/issues/96) <https://github.com/pytest-dev/execnet/issues/96>__ and pytest-dev/pytest-xdist#620 <https://github.com/pytest-dev/pytest-xdist/issues/620>__ (pending a new pytest-xdist release).

    Also fixed init_popen_io to use closefd=False for shared stdin and stdout file descriptors, preventing Bad file descriptor errors triggered by test_stdouterrin_setnull.

  • The library is now typed and the typing is exposed to type-checkers.

  • Re-exported Gateway, Channel, DumpError and LoadError from execnet. The constructors are private.

  • Fixed GatewayBase.join() timeout argument getting ignored.

  • Removed support for Python 3.7.

  • Added official support for Python 3.12.

Commits
  • e1332b1 Update CHANGELOG for 2.1.1
  • 8481612 Merge pull request #268 from bluetech/fix-strconfig-ignored
  • d08b7e7 gateway_base: fix load(strconfig) getting ignored
  • d0fc2c2 Merge pull request #265 from pytest-dev/release-2.1.0
  • 64ecf67 Update CHANGELOG for 2.1.0
  • eb7f7bc Merge pull request #266 from bluetech/up-download-artifact
  • 89c99c9 ci: update download-artifact action to fix deploy job
  • 42aeb82 Merge pull request #263 from bluetech/typing-fixes
  • 5035913 Export DumpError, LoadError
  • e218d45 gateway_base: replace -> object return types to -> Any
  • Additional commits viewable in compare view


Updates starlette from 0.36.3 to 0.37.2

Release notes

Sourced from starlette's releases.

Version 0.37.2

Added

  • Add bytes to _RequestData type #2510.

Fixed

  • Revert "Turn scope["client"] to None on TestClient (#2377)" #2525.
  • Remove deprecated app argument passed to httpx.Client on the TestClient #2526.

Full Changelog: https://github.com/encode/starlette/compare/0.37.1...0.37.2

Version 0.37.1

Fixed

  • Warn instead of raise for missing env file on Config #2485.

Full Changelog: https://github.com/encode/starlette/compare/0.37.0...0.37.1

Version 0.37.0

Added

  • Support the WebSocket Denial Response ASGI extension #2041.

Full Changelog: https://github.com/encode/starlette/compare/0.36.3...0.37.0

Changelog

Sourced from starlette's changelog.

0.37.2

March 5, 2024

Added

  • Add bytes to _RequestData type #2510.

Fixed

  • Revert "Turn scope["client"] to None on TestClient (#2377)" #2525.
  • Remove deprecated app argument passed to httpx.Client on the TestClient #2526.

0.37.1

February 9, 2024

Fixed

  • Warn instead of raise for missing env file on Config #2485.

0.37.0

February 5, 2024

Added

  • Support the WebSocket Denial Response ASGI extension #2041.
Commits


Updates typing-extensions from 4.10.0 to 4.11.0

Release notes

Sourced from typing-extensions's releases.

4.11.0

Release 4.11.0 (April 5, 2024)

This feature release provides improvements to various recently added features, most importantly type parameter defaults (PEP 696).

There are no changes since 4.11.0rc1.

Changes since 4.10.0:

  • Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra.
  • Fix the runtime behavior of type parameters with defaults (PEP 696). Patch by Nadir Chowdhury.
  • Fix minor discrepancy between error messages produced by typing and typing_extensions on Python 3.10. Patch by Jelle Zijlstra.
  • When include_extra=False, get_type_hints() now strips ReadOnly from the annotation.

4.11.0rc1

  • Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra.
  • Fix the runtime behavior of type parameters with defaults (PEP 696). Patch by Nadir Chowdhury.
  • Fix minor discrepancy between error messages produced by typing and typing_extensions on Python 3.10. Patch by Jelle Zijlstra.
  • When include_extra=False, get_type_hints() now strips ReadOnly from the annotation.
Changelog

Sourced from typing-extensions's changelog.

Release 4.11.0 (April 5, 2024)

This feature release provides improvements to various recently added features, most importantly type parameter defaults (PEP 696).

There are no changes since 4.11.0rc1.

Release 4.11.0rc1 (March 24, 2024)

  • Fix tests on Python 3.13.0a5. Patch by Jelle Zijlstra.
  • Fix the runtime behavior of type parameters with defaults (PEP 696). Patch by Nadir Chowdhury.
  • Fix minor discrepancy between error messages produced by typing and typing_extensions on Python 3.10. Patch by Jelle Zijlstra.
  • When include_extra=False, get_type_hints() now strips ReadOnly from the annotation.
Commits


Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options
You can trigger Dependabot actions by commenting on this PR: - `@dependabot rebase` will rebase this PR - `@dependabot recreate` will recreate this PR, overwriting any edits that have been made to it - `@dependabot merge` will merge this PR after your CI passes on it - `@dependabot squash and merge` will squash and merge this PR after your CI passes on it - `@dependabot cancel merge` will cancel a previously requested merge and block automerging - `@dependabot reopen` will reopen this PR if it is closed - `@dependabot close` will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually - `@dependabot show ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore major version` will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself) - `@dependabot ignore minor version` will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself) - `@dependabot ignore ` will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself) - `@dependabot unignore ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions