Skip to content
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

Bump the python-packages group across 1 directory with 5 updates #244

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 11, 2024

Bumps the python-packages group with 5 updates in the / directory:

Package From To
fastapi[all] 0.113.0 0.115.0
uvicorn 0.30.6 0.31.1
pyproj 3.6.1 3.7.0
pydantic-settings 2.4.0 2.5.2
geodense 2.0.0 2.0.1

Updates fastapi[all] from 0.113.0 to 0.115.0

Release notes

Sourced from fastapi[all]'s releases.

0.115.0

Highlights

Now you can declare Query, Header, and Cookie parameters with Pydantic models. 🎉

Query Parameter Models

Use Pydantic models for Query parameters:

from typing import Annotated, Literal
from fastapi import FastAPI, Query
from pydantic import BaseModel, Field
app = FastAPI()
class FilterParams(BaseModel):
limit: int = Field(100, gt=0, le=100)
offset: int = Field(0, ge=0)
order_by: Literal["created_at", "updated_at"] = "created_at"
tags: list[str] = []
@​app.get("/items/")
async def read_items(filter_query: Annotated[FilterParams, Query()]):
return filter_query

Read the new docs: Query Parameter Models.

Header Parameter Models

Use Pydantic models for Header parameters:

from typing import Annotated
from fastapi import FastAPI, Header
from pydantic import BaseModel
app = FastAPI()
class CommonHeaders(BaseModel):
host: str
save_data: bool
if_modified_since: str | None = None
traceparent: str | None = None
</tr></table>

... (truncated)

Commits
  • 40e33e4 🔖 Release version 0.115.0
  • b36047b 📝 Update release notes
  • 7eadeb6 📝 Update release notes
  • 55035f4 ✨ Add support for Pydantic models for parameters using Query, Cookie, `He...
  • 0903da7 📝 Update release notes
  • 4b2b14a ⬆ [pre-commit.ci] pre-commit autoupdate (#12204)
  • 35df20c 📝 Update release notes
  • 8eb3c56 🌐 Add Portuguese translation for `docs/pt/docs/advanced/security/http-basic-a...
  • 2ada161 🔖 Release version 0.114.2
  • 3a5fd71 📝 Update release notes
  • Additional commits viewable in compare view

Updates uvicorn from 0.30.6 to 0.31.1

Release notes

Sourced from uvicorn's releases.

Version 0.31.1

Fixed

  • Support WebSockets 0.13.1 #2471
  • Restore support for [*] in trusted hosts #2480
  • Add PathLike[str] type hint for ssl_keyfile #2481

Full Changelog: encode/uvicorn@0.31.0...0.31.1

Version 0.31.0

Added

Improve ProxyHeadersMiddleware (#2468) and (#2231):

  • Fix the host for requests from clients running on the proxy server itself.
  • Fallback to host that was already set for empty x-forwarded-for headers.
  • Also allow specifying IP Networks as trusted hosts. This greatly simplifies deployments on docker swarm/Kubernetes, where the reverse proxy might have a dynamic IP.
    • This includes support for IPv6 Address/Networks.

Full Changelog: encode/uvicorn@0.30.6...0.31.0

Changelog

Sourced from uvicorn's changelog.

0.31.1 (2024-10-09)

Fixed

  • Support WebSockets 0.13.1 (#2471)
  • Restore support for [*] in trusted hosts (#2480)
  • Add PathLike[str] type hint for ssl_keyfile (#2481)

0.31.0 (2024-09-27)

Added

Improve ProxyHeadersMiddleware (#2468) and (#2231):

  • Fix the host for requests from clients running on the proxy server itself.
  • Fallback to host that was already set for empty x-forwarded-for headers.
  • Also allow to specify IP Networks as trusted hosts. This greatly simplifies deployments on docker swarm/kubernetes, where the reverse proxy might have a dynamic IP.
    • This includes support for IPv6 Address/Networks.
Commits

Updates pyproj from 3.6.1 to 3.7.0

Release notes

Sourced from pyproj's releases.

3.7.0 Release

What's Changed

Dependencies:

Enhancements:

Bug fixes:

Maintenance:

New Contributors

Other contributions:

Full Changelog: pyproj4/pyproj@3.6.1...3.7.0

3.7.0rc0

No release notes provided.

Changelog

Sourced from pyproj's changelog.

3.7.0

  • WHL: Wheels contain PROJ 9.4.1 (pull #1423)
  • DEP: Minimum supported Python version 3.10 (pull #1357)
  • DEP: Minimum PROJ version 9.2 (pull #1394)
  • ENH: Add :meth:CRS.is_deprecated and :meth:CRS.get_non_deprecated (pull #1383)
  • PERF: thread local context (issue #1133)
  • ENH: Add runtime & compiled PROJ versions (discussion #1420)
  • BUG: Handle changes to HotineObliqueMercatorBConversion (issue #1429)
Commits

Updates pydantic-settings from 2.4.0 to 2.5.2

Release notes

Sourced from pydantic-settings's releases.

v2.5.2

What's Changed

Full Changelog: pydantic/pydantic-settings@v2.5.1...v2.5.2

v2.5.1

What's Changed

Full Changelog: pydantic/pydantic-settings@v2.5.0...v2.5.1

v2.5.0

What's Changed

New Contributors

Full Changelog: pydantic/pydantic-settings@v2.4.0...v2.5.0

Commits

Updates geodense from 2.0.0 to 2.0.1

Release notes

Sourced from geodense's releases.

2.0.1

What's Changed

Full Changelog: GeodetischeInfrastructuur/geodense@2.0.0...2.0.1

2.0.1a3

What's Changed

Full Changelog: GeodetischeInfrastructuur/geodense@2.0.1a2...2.0.1a3

2.0.1a2

What's Changed

Full Changelog: GeodetischeInfrastructuur/geodense@2.0.1a1...2.0.1a2

2.0.1a1

What's Changed

Full Changelog: GeodetischeInfrastructuur/geodense@2.0.1a0...2.0.1a1

2.0.1a0

What's Changed

Full Changelog: GeodetischeInfrastructuur/geodense@2.0.0...2.0.1a0

Commits
  • be86850 update mdformat.toml
  • b5c635d update uv gh actions
  • 9143e26 remove .gitignore from generated htmlcov folder by coverage
  • 4b8d228 Update coverage.yaml
  • 8fb225f downgrade lib minimum python version to 3.10 for wider compatibility
  • 12d5242 clean up readme, split readme in dev readme and user readme and markdown form...
  • 0d90b63 downgrade pyproj to 3.6.1
  • fa670af update to py3.12
  • 2cdc06f add yamlfmt config file
  • 48a077a update gh publish wf to use uv
  • Additional commits viewable in compare view

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 <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore <dependency name> 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 <dependency name> 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 <dependency name> 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 <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Bumps the python-packages group with 5 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [fastapi[all]](https://github.com/fastapi/fastapi) | `0.113.0` | `0.115.0` |
| [uvicorn](https://github.com/encode/uvicorn) | `0.30.6` | `0.31.1` |
| [pyproj](https://github.com/pyproj4/pyproj) | `3.6.1` | `3.7.0` |
| [pydantic-settings](https://github.com/pydantic/pydantic-settings) | `2.4.0` | `2.5.2` |
| [geodense](https://github.com/GeodetischeInfrastructuur/geodense) | `2.0.0` | `2.0.1` |



Updates `fastapi[all]` from 0.113.0 to 0.115.0
- [Release notes](https://github.com/fastapi/fastapi/releases)
- [Commits](fastapi/fastapi@0.113.0...0.115.0)

Updates `uvicorn` from 0.30.6 to 0.31.1
- [Release notes](https://github.com/encode/uvicorn/releases)
- [Changelog](https://github.com/encode/uvicorn/blob/master/CHANGELOG.md)
- [Commits](encode/uvicorn@0.30.6...0.31.1)

Updates `pyproj` from 3.6.1 to 3.7.0
- [Release notes](https://github.com/pyproj4/pyproj/releases)
- [Changelog](https://github.com/pyproj4/pyproj/blob/main/docs/history.rst)
- [Commits](pyproj4/pyproj@3.6.1...3.7.0)

Updates `pydantic-settings` from 2.4.0 to 2.5.2
- [Release notes](https://github.com/pydantic/pydantic-settings/releases)
- [Commits](pydantic/pydantic-settings@v2.4.0...v2.5.2)

Updates `geodense` from 2.0.0 to 2.0.1
- [Release notes](https://github.com/GeodetischeInfrastructuur/geodense/releases)
- [Commits](GeodetischeInfrastructuur/geodense@2.0.0...2.0.1)

---
updated-dependencies:
- dependency-name: fastapi[all]
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: uvicorn
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pyproj
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: pydantic-settings
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: python-packages
- dependency-name: geodense
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: python-packages
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Oct 11, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 11, 2024

Looks like these dependencies are updatable in another way, so this is no longer needed.

@dependabot dependabot bot closed this Oct 11, 2024
@dependabot dependabot bot deleted the dependabot/pip/python-packages-acb743c263 branch October 11, 2024 13:50
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants