From 8e01ec9b13c23276157d0092854b4791f2374ad3 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Mon, 15 Jun 2020 10:07:36 +0200 Subject: [PATCH 1/2] DOC: add release note about revert for 1.0.5 --- doc/source/whatsnew/v1.0.5.rst | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) diff --git a/doc/source/whatsnew/v1.0.5.rst b/doc/source/whatsnew/v1.0.5.rst index 5dbc911407784..c261c5e5f6398 100644 --- a/doc/source/whatsnew/v1.0.5.rst +++ b/doc/source/whatsnew/v1.0.5.rst @@ -15,8 +15,11 @@ including other versions of pandas. Fixed regressions ~~~~~~~~~~~~~~~~~ -- -- + +- Fix regression in :meth:`read_parquet` when reading from file-like objects or + from public S3 buckets. Note this disables the ability to read from + directories on S3 again, which was added in the 1.0.4 release, but is now + targeted for pandas 1.1.0 (:issue:`34467`, :issue:`34626`, :issue:`34632`). .. _whatsnew_105.bug_fixes: @@ -24,7 +27,6 @@ Bug fixes ~~~~~~~~~ - Fixed building from source with Python 3.8 fetching the wrong version of NumPy (:issue:`34666`) -- Contributors ~~~~~~~~~~~~ From f84b94e4dadee79a9a6b73c47f61a0c74b1c6a13 Mon Sep 17 00:00:00 2001 From: Joris Van den Bossche Date: Mon, 15 Jun 2020 13:28:05 +0200 Subject: [PATCH 2/2] update --- doc/source/whatsnew/v1.0.5.rst | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/doc/source/whatsnew/v1.0.5.rst b/doc/source/whatsnew/v1.0.5.rst index c261c5e5f6398..7dfac54279e6f 100644 --- a/doc/source/whatsnew/v1.0.5.rst +++ b/doc/source/whatsnew/v1.0.5.rst @@ -16,10 +16,13 @@ including other versions of pandas. Fixed regressions ~~~~~~~~~~~~~~~~~ -- Fix regression in :meth:`read_parquet` when reading from file-like objects or - from public S3 buckets. Note this disables the ability to read from - directories on S3 again, which was added in the 1.0.4 release, but is now - targeted for pandas 1.1.0 (:issue:`34467`, :issue:`34626`, :issue:`34632`). +- Fix regression in :meth:`read_parquet` when reading from file-like objects + (:issue:`34467`). +- Fix regression in reading from public S3 buckets (:issue:`34626`). + +Note this disables the ability to read Parquet files from directories on S3 +again (:issue:`26388`, :issue:`34632`), which was added in the 1.0.4 release, +but is now targeted for pandas 1.1.0. .. _whatsnew_105.bug_fixes: