From fa6754cccdfe4e380ba4cf44bca05ee1bb1b5dec Mon Sep 17 00:00:00 2001 From: "dependabot[bot]" <49699333+dependabot[bot]@users.noreply.github.com> Date: Mon, 22 Jun 2026 11:20:29 +0000 Subject: [PATCH] chore(deps): update bcrypt requirement in /backend Updates the requirements on [bcrypt](https://github.com/pyca/bcrypt) to permit the latest version. - [Changelog](https://github.com/pyca/bcrypt/blob/main/CHANGELOG.rst) - [Commits](https://github.com/pyca/bcrypt/compare/4.2.1...5.0.0) --- updated-dependencies: - dependency-name: bcrypt dependency-version: 5.0.0 dependency-type: direct:production update-type: version-update:semver-major ... Signed-off-by: dependabot[bot] --- backend/pyproject.toml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/backend/pyproject.toml b/backend/pyproject.toml index e6b40a0..31938d0 100644 --- a/backend/pyproject.toml +++ b/backend/pyproject.toml @@ -12,7 +12,7 @@ dependencies = [ "pydantic-settings>=2.8.0,<3", "email-validator==2.2.0", "PyJWT>=2.10.1", - "bcrypt>=4.2.1,<5", + "bcrypt>=4.2.1,<6", "python-multipart>=0.0.20", "redis==5.2.1", "httpx==0.28.1",