summaryrefslogtreecommitdiff
path: root/sites
diff options
context:
space:
mode:
authorJeff Forcier <jeff@bitprophet.org>2023-01-16 19:52:31 -0500
committerJeff Forcier <jeff@bitprophet.org>2023-01-16 19:56:22 -0500
commit09ff0aadf42c2b932d44926b5625b2c8645bc07c (patch)
tree18b286577b738e808da1844a83c5b2898c5b1059 /sites
parentb5f0758cbdad5991eaee360b84fb66b571236357 (diff)
downloadparamiko-09ff0aadf42c2b932d44926b5625b2c8645bc07c.tar.gz
Nuke now extraneous chmod
Diffstat (limited to 'sites')
-rw-r--r--sites/www/changelog.rst8
1 files changed, 8 insertions, 0 deletions
diff --git a/sites/www/changelog.rst b/sites/www/changelog.rst
index 5e3af1a3..443f0b78 100644
--- a/sites/www/changelog.rst
+++ b/sites/www/changelog.rst
@@ -2,6 +2,14 @@
Changelog
=========
+- :support:`-` The behavior of private key classes' (ie anything inheriting
+ from `~paramiko.pkey.PKey`) private key writing methods used to perform a
+ manual, extra ``chmod`` call after writing. This hasn't been strictly
+ necessary since the mid 2.x release line (when key writing started giving the
+ ``mode`` argument to `os.open`), and has now been removed entirely.
+
+ This should only be observable if you were mocking Paramiko's system calls
+ during your own testing, or similar.
- :support:`-` ``PKey.__cmp__`` has been removed. Ordering-oriented comparison
of key files is unlikely to have ever made sense (the old implementation
attempted to order by the hashes of the key material) and so we have not