tutorcruncher / hermes

1 stars 0 forks source link

Bump the python-packages group with 8 updates #224

Closed dependabot[bot] closed 4 months ago

dependabot[bot] commented 4 months ago

Bumps the python-packages group with 8 updates:

Package From To
fastapi 0.110.0 0.110.2
pydantic 2.6.4 2.7.1
sentry-sdk[fastapi] 1.44.0 1.45.0
logfire[fastapi] 0.23.0 0.26.0
google-api-python-client 2.124.0 2.127.0
googleapis-common-protos 1.62.0 1.63.0
ruff 0.2.1 0.4.1
coverage 7.4.3 7.4.4

Updates fastapi from 0.110.0 to 0.110.2

Release notes

Sourced from fastapi's releases.

0.110.2

Fixes

  • 🐛 Fix support for query parameters with list types, handle JSON encoding Pydantic UndefinedType. PR #9929 by @​arjwilliams.

Refactors

  • ♻️ Simplify Pydantic configs in OpenAPI models in fastapi/openapi/models.py. PR #10886 by @​JoeTanto2.
  • ✨ Add support for Pydantic's 2.7 new deprecated Field parameter, remove URL from validation errors response. PR #11461 by @​tiangolo.

Docs

Translations

  • 🌐 Update Chinese translation for docs/zh/docs/index.html. PR #11430 by @​waketzheng.
  • 🌐 Add Russian translation for docs/ru/docs/tutorial/dependencies/dependencies-in-path-operation-decorators.md. PR #11411 by @​anton2yakovlev.
  • 🌐 Add Portuguese translations for learn/index.md resources/index.md help/index.md about/index.md. PR #10807 by @​nazarepiedady.
  • 🌐 Update Russian translations for deployments docs. PR #11271 by @​Lufa1u.
  • 🌐 Add Bengali translations for docs/bn/docs/python-types.md. PR #11376 by @​imtiaz101325.
  • 🌐 Add Korean translation for docs/ko/docs/tutorial/security/simple-oauth2.md. PR #5744 by @​KdHyeon0661.
  • 🌐 Add Korean translation for docs/ko/docs/help-fastapi.md. PR #4139 by @​kty4119.
  • 🌐 Add Korean translation for docs/ko/docs/advanced/events.md. PR #5087 by @​pers0n4.
  • 🌐 Add Japanese translation for docs/ja/docs/tutorial/path-operation-configuration.md. PR #1954 by @​SwftAlpc.
  • 🌐 Add Japanese translation for docs/ja/docs/tutorial/request-forms-and-files.md. PR #1946 by @​SwftAlpc.
  • 🌐 Add Russian translation for docs/ru/docs/tutorial/dependencies/dependencies-with-yield.md. PR #10532 by @​AlertRED.
  • 🌐 Add Korean translation for docs/ko/docs/tutorial/debugging.md. PR #5695 by @​JungWooGeon.

Internal

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.

... (truncated)

Commits
  • be1e3fa 🔖 Release version 0.110.2
  • 4ae63ae 📝 Update release notes
  • 6d523d6 📝 Fix types in examples under docs_src/extra_data_types (#10535)
  • d84d6e0 📝 Update release notes
  • a901e2f 📝 Update references to UJSON (#11464)
  • 8a45645 📝 Update release notes
  • 74cc33d ♻️ Simplify Pydantic configs in OpenAPI models in fastapi/openapi/models.py...
  • 5815fa5 📝 Update release notes
  • 09e4859 🐛 Fix support for query parameters with list types, handle JSON encoding Pyda...
  • 071b8f2 📝 Update release notes
  • Additional commits viewable in compare view


Updates pydantic from 2.6.4 to 2.7.1

Release notes

Sourced from pydantic's releases.

v2.7.1 (2024-04-23)

What's Changed

Packaging

New Features

Changes

  • Use field description for RootModel schema description when there is by @​LouisGobert in #9214

Fixes

New Contributors

Full Changelog: https://github.com/pydantic/pydantic/compare/v2.7.0...v2.7.1/

v2.7.0 (2024-04-11)

The code released in v2.7.0 is practically identical to that of v2.7.0b1.

What's Changed

Packaging

... (truncated)

Changelog

Sourced from pydantic's changelog.

v2.7.1 (2024-04-23)

GitHub release

What's Changed

Packaging

New Features

Changes

  • Use field description for RootModel schema description when there is by @​LouisGobert in #9214

Fixes

New Contributors

v2.7.0 (2024-04-11)

GitHub release

The code released in v2.7.0 is practically identical to that of v2.7.0b1.

... (truncated)

Commits
  • 2612947 2.7.1 release prep (#9307)
  • 2b8efa2 Move TODO regarding pickling to markdown (#9288)
  • 73d1049 adds test case for unexpected discriminated union behavior (#9236)
  • c33b925 Change CI to use macos-13 for Python 3.8 and 3.9 (#9305)
  • 82e4664 Fix model json schema with config types (#9287)
  • a0f18e3 Fix bullets in Strict Mode docs (#9296)
  • 77b0e1c Address case where model_construct on a class which defines model_post_init f...
  • 6322b24 Fix strict application to function-after with use_enum_values (#9279)
  • bb857bd docs(performance): remove section on literal vs enum performance (#9262)
  • 3c15a8b docs: make TypeAdapter example PEP-8 compliant (#9268)
  • Additional commits viewable in compare view


Updates sentry-sdk[fastapi] from 1.44.0 to 1.45.0

Release notes

Sourced from sentry-sdk[fastapi]'s releases.

1.45.0

This is the final 1.x release for the forseeable future. Development will continue on the 2.x release line. The first 2.x version will be available in the next few weeks.

Various fixes & improvements

  • Allow to upsert monitors (#2929) by @​sentrivana

    It's now possible to provide monitor_config to the monitor decorator/context manager directly:

    from sentry_sdk.crons import monitor
    

    All keys except schedule are optional

    monitor_config = { "schedule": {"type": "crontab", "value": "0 0 * * *"}, "timezone": "Europe/Vienna", "checkin_margin": 10, "max_runtime": 10, "failure_issue_threshold": 5, "recovery_threshold": 5, }

    @​monitor(monitor_slug='<monitor-slug>', monitor_config=monitor_config) def tell_the_world(): print('My scheduled task...')

    Check out the cron docs for details.

  • Add Django signals_denylist to filter signals that are attached to by signals_spans (#2758) by @​lieryan

    If you want to exclude some Django signals from performance tracking, you can use the new signals_denylist Django option:

    import django.db.models.signals
    import sentry_sdk
    

    sentry_sdk.init( ... integrations=[ DjangoIntegration( ... signals_denylist=[ django.db.models.signals.pre_init, django.db.models.signals.post_init, ], ), ], )

... (truncated)

Changelog

Sourced from sentry-sdk[fastapi]'s changelog.

1.45.0

This is the final 1.x release for the forseeable future. Development will continue on the 2.x release line. The first 2.x version will be available in the next few weeks.

Various fixes & improvements

  • Allow to upsert monitors (#2929) by @​sentrivana

    It's now possible to provide monitor_config to the monitor decorator/context manager directly:

    from sentry_sdk.crons import monitor
    

    All keys except schedule are optional

    monitor_config = { "schedule": {"type": "crontab", "value": "0 0 * * *"}, "timezone": "Europe/Vienna", "checkin_margin": 10, "max_runtime": 10, "failure_issue_threshold": 5, "recovery_threshold": 5, }

    @​monitor(monitor_slug='<monitor-slug>', monitor_config=monitor_config) def tell_the_world(): print('My scheduled task...')

    Check out the cron docs for details.

  • Add Django signals_denylist to filter signals that are attached to by signals_spans (#2758) by @​lieryan

    If you want to exclude some Django signals from performance tracking, you can use the new signals_denylist Django option:

    import django.db.models.signals
    import sentry_sdk
    

    sentry_sdk.init( ... integrations=[ DjangoIntegration( ... signals_denylist=[ django.db.models.signals.pre_init, django.db.models.signals.post_init, ], ), ], )

... (truncated)

Commits
  • 51a906c Update CHANGELOG.md
  • 7570e39 release: 1.45.0
  • e22abb6 fix(metrics): Change data_category from statsd to metric_bucket (#2954)
  • fab65e6 feat(metrics): New normalization of keys, values, units (#2946)
  • a584653 feat(typing): Make monitor_config a TypedDict (#2931)
  • a1ab339 feat(metrics): Add value, unit to before_emit_metric (#2958)
  • 18ccb8f chore: Remove experimental metric summary options (#2957)
  • a422dd7 fix(profiler): Accessing mro might throw a ValueError (#2952)
  • 11e1f9a feat(integrations): Add django signals_denylist to filter signals that are at...
  • f5ec34c build(deps): bump types-protobuf from 4.24.0.20240311 to 4.24.0.20240408 (#2941)
  • Additional commits viewable in compare view


Updates logfire[fastapi] from 0.23.0 to 0.26.0

Updates google-api-python-client from 2.124.0 to 2.127.0

Release notes

Sourced from google-api-python-client's releases.

v2.127.0

2.127.0 (2024-04-23)

Features

Bug Fixes

v2.126.0

... (truncated)

Changelog

Sourced from google-api-python-client's changelog.

2.127.0 (2024-04-23)

Features

Bug Fixes

2.126.0 (2024-04-16)

... (truncated)

Commits
dependabot[bot] commented 4 months ago

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