From 4c88e4e7654e5f998bd3e0111833534633865484 Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 4 May 2026 10:55:01 +0000 Subject: [PATCH 1/2] chore(deps-dev): bump infrahub-testcontainers from 1.9.1 to 1.9.2 Bumps [infrahub-testcontainers](https://github.com/opsmill/infrahub) from 1.9.1 to 1.9.2. - [Release notes](https://github.com/opsmill/infrahub/releases) - [Changelog](https://github.com/opsmill/infrahub/blob/stable/CHANGELOG.md) - [Commits](https://github.com/opsmill/infrahub/compare/infrahub-v1.9.1...infrahub-v1.9.2) --- updated-dependencies: - dependency-name: infrahub-testcontainers dependency-version: 1.9.2 dependency-type: direct:development update-type: version-update:semver-patch ... Signed-off-by: dependabot[bot] --- uv.lock | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/uv.lock b/uv.lock index fbd7d895..138a530a 100644 --- a/uv.lock +++ b/uv.lock @@ -878,7 +878,7 @@ types = [ [[package]] name = "infrahub-testcontainers" -version = "1.9.1" +version = "1.9.2" source = { registry = "https://pypi.org/simple" } dependencies = [ { name = "httpx" }, @@ -888,9 +888,9 @@ dependencies = [ { name = "pytest" }, { name = "testcontainers" }, ] -sdist = { url = "https://files.pythonhosted.org/packages/5d/33/26bfcf5c2d43e1c5d2be48df3cfd2bcac19dde0dc386fa2c7d105078cbca/infrahub_testcontainers-1.9.1.tar.gz", hash = "sha256:35b8a6e811bed49daaa404a86a4d019b95f561ec3b111055d57af8dc34dfee18", size = 17360, upload-time = "2026-04-29T21:39:04.393Z" } +sdist = { url = "https://files.pythonhosted.org/packages/a2/b8/c04007377ec72e497935b0a947efff90ed3fd65fedb5d43ea5f5a8a6014d/infrahub_testcontainers-1.9.2.tar.gz", hash = "sha256:77beccfb5818b58ae4bc4c33271bd61e0ba122b204b236c3a0d9e58d32ea44e2", size = 17363, upload-time = "2026-04-30T15:17:43.049Z" } wheels = [ - { url = "https://files.pythonhosted.org/packages/a7/2a/5c9e2c7b0adf70fd4fba643defaa605a971c8568e2fae238eb08269dab49/infrahub_testcontainers-1.9.1-py3-none-any.whl", hash = "sha256:c812d7b49de90d7586d627ebc4ed935024b7e1ae627b5099392086fd5207492d", size = 23191, upload-time = "2026-04-29T21:39:03.16Z" }, + { url = "https://files.pythonhosted.org/packages/35/50/4c70ad3fa2f423332e694f00900d7a3e951872aacf9a8bdd1ade3ae7ca9e/infrahub_testcontainers-1.9.2-py3-none-any.whl", hash = "sha256:dfae768d7b67cf27c451cf2e49feeef7515db301a71310d8fc01b998487f3bbd", size = 23189, upload-time = "2026-04-30T15:17:42.075Z" }, ] [[package]] From f8a2940ffb0f36a37c7ff914be74eefb18d25d1f Mon Sep 17 00:00:00 2001 From: Pol Michel <40861490+polmichel@users.noreply.github.com> Date: Tue, 5 May 2026 11:20:09 +0200 Subject: [PATCH 2/2] chore: bump invoke 2.2.0 -> 2.2.1 for Python 3.14 compatibility (#992) invoke 2.2.0 raises SystemError on Python 3.14: 3.14 tightened fcntl buffer-overflow detection, and invoke's termios.TIOCGWINSZ probe was reading too few fields of a 4-field winsize struct. Any uv run invoke aborts before the task body when stdout is a TTY. invoke 2.2.1 (2025-10-10) unpacks all four fields and discards the unused two -- pure compat fix, no behavior change. See https://github.com/opsmill/infrahub/pull/9128 for the equivalent bump on opsmill/infrahub. Co-authored-by: Claude Opus 4.7 (1M context) --- pyproject.toml | 2 +- uv.lock | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/pyproject.toml b/pyproject.toml index 4f20b96a..b1708471 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -98,7 +98,7 @@ dev = [ "requests", "prek>=0.3.0", "codecov", - "invoke>=2.2.0", + "invoke>=2.2.1", "towncrier>=24.8.0", ] diff --git a/uv.lock b/uv.lock index 138a530a..673a4e2c 100644 --- a/uv.lock +++ b/uv.lock @@ -835,7 +835,7 @@ dev = [ { name = "astroid", specifier = ">=3.1,<4.0" }, { name = "codecov" }, { name = "infrahub-testcontainers", specifier = ">=1.7.3" }, - { name = "invoke", specifier = ">=2.2.0" }, + { name = "invoke", specifier = ">=2.2.1" }, { name = "ipython" }, { name = "mypy", specifier = "==1.11.2" }, { name = "prek", specifier = ">=0.3.0" },