From c6ec5e87304d13b6d9688aafb2734dd4d7c5e4d3 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Tue, 3 Dec 2024 12:03:12 +0100 Subject: [PATCH] Bump the dependencies group with 5 updates (#175) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps the dependencies group with 5 updates: | Package | From | To | | --- | --- | --- | | [phonenumberslite](https://github.com/daviddrysdale/python-phonenumbers) | `8.13.50` | `8.13.51` | | [pydantic](https://github.com/pydantic/pydantic) | `2.10.1` | `2.10.2` | | [typer[all]](https://github.com/fastapi/typer) | `0.13.1` | `0.14.0` | | [bandit[toml]](https://github.com/PyCQA/bandit) | `1.7.10` | `1.8.0` | | [pytest](https://github.com/pytest-dev/pytest) | `8.3.3` | `8.3.4` | Updates `phonenumberslite` from 8.13.50 to 8.13.51
Commits

Updates `pydantic` from 2.10.1 to 2.10.2
Release notes

Sourced from pydantic's releases.

v2.10.2 2024-11-26

What's Changed

Fixes

Full Changelog: https://github.com/pydantic/pydantic/compare/v2.10.1...v2.10.2

Changelog

Sourced from pydantic's changelog.

v2.10.2 (2024-11-25)

GitHub release

What's Changed

Fixes

Commits

Updates `typer[all]` from 0.13.1 to 0.14.0
Release notes

Sourced from typer[all]'s releases.

0.14.0

Breaking Changes

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer

app = typer.Typer() users_app = typer.Typer()

app.add_typer(users_app)

@​users_app.callback() def users(): # <-- This was the inferred command group name """ Manage users in the app. """

@​users_app.command() def create(name: str): print(f"Creating user: {name}")

...the command group would be named users, based on the name of the function def users().

Now you need to set it explicitly:

import typer

app = typer.Typer() users_app = typer.Typer()

app.add_typer(users_app, name="users") # <-- Explicitly set the command group name

@​users_app.callback() def users(): """ Manage users in the app. """

@​users_app.command() def create(name: str): </tr></table>

... (truncated)

Changelog

Sourced from typer[all]'s changelog.

0.14.0

Breaking Changes

Before, it was supported to infer the name of a command group from the callback function name in the sub-app, so, in this code:

import typer

app = typer.Typer() users_app = typer.Typer()

app.add_typer(users_app)

@​users_app.callback() def users(): # <-- This was the inferred command group name """ Manage users in the app. """

@​users_app.command() def create(name: str): print(f"Creating user: {name}")

...the command group would be named users, based on the name of the function def users().

Now you need to set it explicitly:

import typer

app = typer.Typer() users_app = typer.Typer()

app.add_typer(users_app, name="users") # <-- Explicitly set the command group name

@​users_app.callback() def users(): """ Manage users in the app. """

@​users_app.command() </tr></table>

... (truncated)

Commits

Updates `bandit[toml]` from 1.7.10 to 1.8.0
Release notes

Sourced from bandit[toml]'s releases.

1.8.0

What's Changed

Full Changelog: https://github.com/PyCQA/bandit/compare/1.7.10...1.8.0

Commits

Updates `pytest` from 8.3.3 to 8.3.4
Release notes

Sourced from pytest's releases.

8.3.4

pytest 8.3.4 (2024-12-01)

Bug fixes

Improved documentation

Contributor-facing changes

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-automerge-start) [//]: # (dependabot-automerge-end) ---
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
Signed-off-by: dependabot[bot] Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> --- pyproject.toml | 12 ++++++------ 1 file changed, 6 insertions(+), 6 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 0f07d7d..ac3130e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -23,16 +23,16 @@ classifiers = [ ] dependencies = [ "email_validator==2.2.0", - "phonenumberslite==8.13.50", - "pydantic==2.10.1", + "phonenumberslite==8.13.51", + "pydantic==2.10.2", "rich==13.9.4", - "typer[all]==0.13.1", + "typer[all]==0.14.0", "Unidecode==1.3.8", ] [project.optional-dependencies] dev = [ - "bandit[toml]==1.7.10", + "bandit[toml]==1.8.0", "black==24.10.0", "flake8-bugbear==24.10.31", "flake8-builtins==2.5.0", @@ -45,11 +45,11 @@ dev = [ "isort==5.13.2", "mypy==1.13.0", "pep8-naming==0.14.1", - "pytest==8.3.3", + "pytest==8.3.4", ] test = [ "pytest-cov==6.0.0", - "pytest==8.3.3", + "pytest==8.3.4", ] [project.scripts]