From fe7bdd21078c03f5c7805028b03fd13198108f55 Mon Sep 17 00:00:00 2001 From: terrafrost Date: Fri, 2 Sep 2022 11:58:53 -0500 Subject: [PATCH 1/2] CHANGELOG: add 2.0.38 release --- CHANGELOG.md | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index cee6c7d8..b623e3c8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,16 @@ # Changelog +## 2.0.38 - 2022-09-02 + +- PublicKeyLoader: add support for OpenSSH encrypted keys (#1737, #1733, #1531, #1490) +- SSH2: fix possibly undefined variable error (#1802) +- SFTP: try to delete dir even if it can't be opened (#1791) +- SFTP: try without path canonicalization if initial realpath() fails (#1796) +- SFTP: detect if stream metadata has wrapper_type set for put() method (#1792) +- BigInteger: fix behavior on 32-bit PHP installs (#1820) +- don't use dynamic properties, which are deprecated in PHP 8.2 (#1808, #1822) +- fix deprecated implicit float to int on 32-bit PHP 8.1 + ## 2.0.37 - 2022-04-04 - RSA: add support for loading PuTTY v3 keys From b03536539f43a4f9aa33c4f0b2f3a1c752088fcd Mon Sep 17 00:00:00 2001 From: terrafrost Date: Fri, 2 Sep 2022 12:04:26 -0500 Subject: [PATCH 2/2] CHANGELOG: PublicKeyLoader -> RSA --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b623e3c8..60c4bdda 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -2,7 +2,7 @@ ## 2.0.38 - 2022-09-02 -- PublicKeyLoader: add support for OpenSSH encrypted keys (#1737, #1733, #1531, #1490) +- RSA: add support for OpenSSH encrypted keys (#1737, #1733, #1531, #1490) - SSH2: fix possibly undefined variable error (#1802) - SFTP: try to delete dir even if it can't be opened (#1791) - SFTP: try without path canonicalization if initial realpath() fails (#1796)