From 006439c8991ae063379fcfeae47b89265dc16f01 Mon Sep 17 00:00:00 2001 From: Martin Larralde Date: Fri, 26 Mar 2021 19:39:20 +0100 Subject: [PATCH] Update `CHANGELOG.md` with `fs._ftp_parse` bugfix --- CHANGELOG.md | 4 +++- tests/test_ftp_parse.py | 2 +- 2 files changed, 4 insertions(+), 2 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index c99ffcc3..aacded93 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -25,7 +25,7 @@ and this project adheres to [Semantic Versioning](http://semver.org/). test suites. - `FSTestCases` now builds the large data required for `upload` and `download` tests only once in order to reduce the total testing time. -- `MemoryFS.move` and `MemoryFS.movedir` will now avoid copying data. +- `MemoryFS.move` and `MemoryFS.movedir` will now avoid copying data. Closes [#452](https://github.com/PyFilesystem/pyfilesystem2/issues/452). ### Fixed @@ -36,6 +36,8 @@ and this project adheres to [Semantic Versioning](http://semver.org/). - Avoid creating a new connection on every call of `FTPFS.upload`. Closes [#455](https://github.com/PyFilesystem/pyfilesystem2/issues/455). - `WrapReadOnly.removetree` not raising a `ResourceReadOnly` when called. Closes [#468](https://github.com/PyFilesystem/pyfilesystem2/issues/468). - `WrapCachedDir.isdir` and `WrapCachedDir.isfile` raising a `ResourceNotFound` error on non-existing path ([#470](https://github.com/PyFilesystem/pyfilesystem2/pull/470)). +- `FTPFS` not listing certain entries with sticky/SUID/SGID permissions set by Linux server ([#473](https://github.com/PyFilesystem/pyfilesystem2/pull/473)). + Closes [#451](https://github.com/PyFilesystem/pyfilesystem2/issues/451). ## [2.4.12] - 2021-01-14 diff --git a/tests/test_ftp_parse.py b/tests/test_ftp_parse.py index fe8e0e49..d027082d 100644 --- a/tests/test_ftp_parse.py +++ b/tests/test_ftp_parse.py @@ -285,7 +285,7 @@ def test_decode_linux_suid(self, mock_localtime): "ftp": { "ls": "-rw-r--r-- 1 ftp ftp 25 Mar 18 19:34 robots.txt" }, - } + }, ] parsed = ftp_parse.parse(directory.strip().splitlines())