From 37b8db9dccc140de67266ac2cce08e8ae8c853ee Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Wed, 17 Jun 2026 18:55:32 +0000 Subject: [PATCH 1/2] =?UTF-8?q?=E2=AC=86=20Bump=20typer=20from=200.23.1=20?= =?UTF-8?q?to=200.26.7?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Bumps [typer](https://github.com/fastapi/typer) from 0.23.1 to 0.26.7. - [Release notes](https://github.com/fastapi/typer/releases) - [Changelog](https://github.com/fastapi/typer/blob/master/docs/release-notes.md) - [Commits](https://github.com/fastapi/typer/compare/0.23.1...0.26.7) --- updated-dependencies: - dependency-name: typer dependency-version: 0.26.7 dependency-type: direct:production update-type: version-update:semver-minor ... Signed-off-by: dependabot[bot] --- uv.lock | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/uv.lock b/uv.lock index e147f64a..07713fa9 100644 --- a/uv.lock +++ b/uv.lock @@ -1425,17 +1425,17 @@ wheels = [ [[package]] name = "typer" -version = "0.23.1" +version = "0.26.7" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "annotated-doc" }, - { name = "click" }, + { name = "colorama", marker = "sys_platform == 'win32'" }, { name = "rich" }, { name = "shellingham" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/fd/07/b822e1b307d40e263e8253d2384cf98c51aa2368cc7ba9a07e523a1d964b/typer-0.23.1.tar.gz", hash = "sha256:2070374e4d31c83e7b61362fd859aa683576432fd5b026b060ad6b4cd3b86134", size = 120047, upload-time = "2026-02-13T10:04:30.984Z" } +sdist = { url = "https://files.pythonhosted.org/packages/5e/ed/ef06584ccdd5c410df0837951ecd7e15d9a6144ea1bd4c73cecab1a89891/typer-0.26.7.tar.gz", hash = "sha256:e314a34c617e419c091b2830dda3ea1f257134ff593061a8f5b9717ab8dddb3a", size = 201709, upload-time = "2026-06-03T07:18:06.843Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/d5/91/9b286ab899c008c2cb05e8be99814807e7fbbd33f0c0c960470826e5ac82/typer-0.23.1-py3-none-any.whl", hash = "sha256:3291ad0d3c701cbf522012faccfbb29352ff16ad262db2139e6b01f15781f14e", size = 56813, upload-time = "2026-02-13T10:04:32.008Z" }, + { url = "https://files.pythonhosted.org/packages/24/25/2201973529af2c954de0bb725323c3aaed6d7f0ceee8f550dec9185df013/typer-0.26.7-py3-none-any.whl", hash = "sha256:5c87cfbc5d34491c5346ebf49c23e18d56ccb863268d3a8d592b26087c2f5e58", size = 122456, upload-time = "2026-06-03T07:18:05.732Z" }, ] [[package]] From d9d77e4ab5938d072c4041e9a55fda990215435d Mon Sep 17 00:00:00 2001 From: Yurii Motov Date: Thu, 18 Jun 2026 13:48:52 +0200 Subject: [PATCH 2/2] Fix typing issue in `test_cli_deploy.py` --- tests/test_cli_deploy.py | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tests/test_cli_deploy.py b/tests/test_cli_deploy.py index 1dbf4a55..099d516f 100644 --- a/tests/test_cli_deploy.py +++ b/tests/test_cli_deploy.py @@ -11,11 +11,10 @@ import pytest import respx import typer -from click.testing import Result from httpx import Response from rich_toolkit.progress import Progress from time_machine import TimeMachineFixture -from typer.testing import CliRunner +from typer.testing import CliRunner, Result from fastapi_cloud_cli.cli import app from fastapi_cloud_cli.config import Settings