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

build(deps): bump the deps group across 1 directory with 6 updates #392

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 23, 2024

Bumps the deps group with 6 updates in the / directory:

Package From To
ydb 3.16.1 3.17.2
motor 3.5.1 3.6.0
python-telegram-bot 21.5 21.6
idna 3.8 3.10
fastapi 0.114.0 0.115.0
websockets 13.0.1 13.1

Updates ydb from 3.16.1 to 3.17.2

Release notes

Sourced from ydb's releases.

3.17.2

  • Add data_columns support in TableIndex

Full Changelog: 3.17.1...3.17.2

3.17.1

  • New autogenerated docs
  • Add an ability to create async index

Full Changelog: 3.17.0...3.17.1

3.17.0

  • Query Session Pool redesign

Full Changelog: 3.16.1...3.17.0

Changelog

Sourced from ydb's changelog.

3.17.2

  • Add data_columns support in TableIndex

3.17.1

  • New autogenerated docs
  • Add an ability to create async index

3.17.0

  • Query Session Pool redesign
Commits
  • 67dfc17 Release: 3.17.2
  • 07406de Update CHANGELOG.md
  • 58091ce Merge pull request #486 from ydb-platform/update_table_index
  • 47b0460 Add data_columns support in TableIndex
  • ce35b84 Release: 3.17.1
  • 2e94f73 Update CHANGELOG.md
  • c30ed45 Merge pull request #479 from ydb-platform/autogenetated_docs
  • d3bd358 Merge pull request #484 from ydb-platform/add_global_async_index
  • 610697f change target branch to main for docs
  • 6289a11 Add an ability to create async indexes
  • Additional commits viewable in compare view

Updates motor from 3.5.1 to 3.6.0

Release notes

Sourced from motor's releases.

Motor 3.6.0

Community notes: https://www.mongodb.com/community/forums/t/motor-3-6-0-released/297834

Motor 3.5.3

Add GitHub Attestation support to release process.

Motor 3.5.2

Update the PyMongo dependency requirement to >=4.5 and =3.6.

Changelog

Sourced from motor's changelog.

Motor 3.6.0

  • Add support for MongoDB 8.0 and PyMongo 4.9.
  • The length parameter in :meth:MotorCursor.to_list is now optional.

.. note::

This is the last planned minor version of Motor. We are sunsetting Motor in favor of native asyncio support in PyMongo 4.9+. We will continue to provide security releases and bug fixes for Motor, but it will not gain new features.

Commits
  • 20015b4 BUMP 3.6.0
  • cf7b4cf MOTOR-1351 Bump minimum PyMongo version to 3.9 (#308)
  • e13888b MOTOR-1364 Add support for Python 3.13 (#307)
  • 5c77c38 MOTOR-1177 Add documentation for Type Annotation Support (#306)
  • 2a9225d MOTOR-1363 - Pass correct parameter to AsyncIOMotorClientEncryption (#305)
  • 7050d54 MOTOR-1362 Use furo theme in ReadTheDocs (#304)
  • b652685 MOTOR-1360 Use AssumeRole for S3 Access in Evergreen Builds (#303)
  • 48f34cb MOTOR-1165 Add documentation for CSOT (#302)
  • a08b1af MOTOR-1260 Add Projection with aggregation expressions example (#301)
  • 00f27f3 MOTOR-940 Improved Bulk Write API (#300)
  • Additional commits viewable in compare view

Updates python-telegram-bot from 21.5 to 21.6

Release notes

Sourced from python-telegram-bot's releases.

v21.6

Version 21.6

Released 2024-09-19

This is the technical changelog for version 21.6. More elaborate release notes can be found in the news channel @​pythontelegrambotchannel.

New Features

Minor Changes

  • Improve Type Completeness (#4466)

Internal Changes

  • Update Python 3.13 Test Suite to RC2 (#4471)
  • Enforce the offline_bot Fixture in Test*WithoutRequest (#4465)
  • Make Tests for telegram.ext Independent of Networking (#4454)
  • Rename Testing Base Classes (#4453)

Dependency Updates

  • Bump pytest from 8.3.2 to 8.3.3 (#4475)
Changelog

Sourced from python-telegram-bot's changelog.

Version 21.6

Released 2024-09-19

This is the technical changelog for version 21.6. More elaborate release notes can be found in the news channel @pythontelegrambotchannel <https://t.me/pythontelegrambotchannel>_.

New Features

  • Full Support for Bot API 7.10 (:pr:4461 closes :issue:4459, :pr:4460, :pr:4463 by aelkheir <https://github.com/aelkheir>_, :pr:4464)
  • Add Parameter httpx_kwargs to HTTPXRequest (:pr:4451 closes :issue:4424)

Minor Changes

  • Improve Type Completeness (:pr:4466)

Internal Changes

  • Update Python 3.13 Test Suite to RC2 (:pr:4471)
  • Enforce the offline_bot Fixture in Test*WithoutRequest (:pr:4465)
  • Make Tests for telegram.ext Independent of Networking (:pr:4454)
  • Rename Testing Base Classes (:pr:4453)

Dependency Updates

  • Bump pytest from 8.3.2 to 8.3.3 (:pr:4475)
Commits

Updates idna from 3.8 to 3.10

Changelog

Sourced from idna's changelog.

3.10 (2024-09-15) +++++++++++++++++

  • Reverted to Unicode 15.1.0 data. Unicode 16 has some significant changes to UTS46 processing that will require more work to properly implement.

3.9 (2024-09-13) ++++++++++++++++

  • Update to Unicode 16.0.0
  • Deprecate setup.cfg in favour of pyproject.toml
  • Use ruff for code formatting

Thanks to Waket Zheng for contributions to this release.

Commits

Updates fastapi from 0.114.0 to 0.115.0

Release notes

Sourced from fastapi'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 websockets from 13.0.1 to 13.1

Release notes

Sourced from websockets's releases.

13.1

See https://websockets.readthedocs.io/en/stable/project/changelog.html for details.

Commits
  • 4d229bf Release version 13.1.
  • 0afccc9 Clarify comment.
  • 3640923 Wait until state is CLOSED to acces close_exc.
  • 20739e0 Improve exception handling during handshake.
  • 206624a Standard spelling on "an HTTP".
  • 98f236f Run handler only when opening handshake succeeds.
  • d19ed26 Run spellcheck.
  • 070ff1a Add dedicated ConcurrencyError exception.
  • f9cea9c Improve isolation of tests of sync implementation.
  • 14d9d40 Fix typo in convenience imports.
  • 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 deps group with 6 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [ydb](https://github.com/ydb-platform/ydb-python-sdk) | `3.16.1` | `3.17.2` |
| [motor](https://github.com/mongodb/motor) | `3.5.1` | `3.6.0` |
| [python-telegram-bot](https://github.com/python-telegram-bot/python-telegram-bot) | `21.5` | `21.6` |
| [idna](https://github.com/kjd/idna) | `3.8` | `3.10` |
| [fastapi](https://github.com/fastapi/fastapi) | `0.114.0` | `0.115.0` |
| [websockets](https://github.com/python-websockets/websockets) | `13.0.1` | `13.1` |



Updates `ydb` from 3.16.1 to 3.17.2
- [Release notes](https://github.com/ydb-platform/ydb-python-sdk/releases)
- [Changelog](https://github.com/ydb-platform/ydb-python-sdk/blob/main/CHANGELOG.md)
- [Commits](ydb-platform/ydb-python-sdk@3.16.1...3.17.2)

Updates `motor` from 3.5.1 to 3.6.0
- [Release notes](https://github.com/mongodb/motor/releases)
- [Changelog](https://github.com/mongodb/motor/blob/master/doc/changelog.rst)
- [Commits](mongodb/motor@3.5.1...3.6.0)

Updates `python-telegram-bot` from 21.5 to 21.6
- [Release notes](https://github.com/python-telegram-bot/python-telegram-bot/releases)
- [Changelog](https://github.com/python-telegram-bot/python-telegram-bot/blob/master/CHANGES.rst)
- [Commits](python-telegram-bot/python-telegram-bot@v21.5...v21.6)

Updates `idna` from 3.8 to 3.10
- [Release notes](https://github.com/kjd/idna/releases)
- [Changelog](https://github.com/kjd/idna/blob/master/HISTORY.rst)
- [Commits](kjd/idna@v3.8...v3.10)

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

Updates `websockets` from 13.0.1 to 13.1
- [Release notes](https://github.com/python-websockets/websockets/releases)
- [Commits](python-websockets/websockets@13.0.1...13.1)

---
updated-dependencies:
- dependency-name: ydb
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: motor
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: python-telegram-bot
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: idna
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: fastapi
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: deps
- dependency-name: websockets
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: deps
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Updating dependencies label Sep 23, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 30, 2024

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

@dependabot dependabot bot closed this Sep 30, 2024
@dependabot dependabot bot deleted the dependabot/pip/dev/deps-8429caef12 branch September 30, 2024 06:38
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Updating dependencies
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants