From 4a2b3cc6f9e9b347a1f7530ecadc449717be2832 Mon Sep 17 00:00:00 2001 From: Andrey Nikiforov Date: Sat, 2 Nov 2024 09:15:21 -0700 Subject: [PATCH] upgrade srp to fix login issue with salt starting with zero bytes (#985) --- CHANGELOG.md | 2 ++ pyproject.toml | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index a2513b585..c79c9f7da 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,6 +2,8 @@ ## Unreleased +- fix: errors for accounts with salt started with zero byte [#975](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/975) + ## 1.24.1 (2024-10-28) - fix: accounts without 2fa are supported [#959](https://github.com/icloud-photos-downloader/icloud_photos_downloader/issues/959) diff --git a/pyproject.toml b/pyproject.toml index 18b270eb9..c0ac76a5e 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -39,7 +39,7 @@ dependencies = [ "certifi==2022.12.7", "keyring==25.2.1", "keyrings-alt==5.0.1", - "srp==1.0.21", + "srp==1.0.22", ] [project.optional-dependencies]