From 4d97b283bef15f79caa16f0184dc2267e7fb10f6 Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Sun, 3 Nov 2024 13:49:11 -0800 Subject: [PATCH 1/4] Release notes for 3.3.2 Signed-off-by: Cary Phillips --- CHANGES.md | 102 +++++++++++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 102 insertions(+) diff --git a/CHANGES.md b/CHANGES.md index 031b1fb1e..e5dd59886 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,6 +3,8 @@ # OpenEXR Release Notes +* [Version 3.3.2](#version-332-november-8-2024) November 8, 2024 +* [Version 3.3.1](#version-331-october-8-2024) October 8, 2024 * [Version 3.3.0](#version-330-september-30-2024) September 30, 2024 * [Version 3.2.4](#version-324-march-26-2024) March 26, 2024 * [Version 3.2.3](#version-323-march-6-2024) March 6, 2024 @@ -75,6 +77,106 @@ * [Version 1.0.1](#version-101) * [Version 1.0](#version-10) +## Version 3.3.2 (November 8, 2024) + +Patch release that fixes several bugs and build issues: + +* A recent change to CMake had the unintended consequence of + installing headers and libraries from `libdeflate` when doing an + internal build. This is now fixed. +* Add thread control to `exrmetrics` tool +* Reintroduce single cache for successive scanline reads +* Allow empty filename when providing a custom stream +* Handle non-seekable stream in python module's `InputFile` object + +This release fixes: + +* OSS-fuzz [372524117](https://issues.oss-fuzz.com/issues/372524117) +Null-dereference WRITE in Imf_3_4::ScanLineProcess::run_fill + +### Merged Pull Requests + +* [1907](https://github.com/AcademySoftwareFoundation/openexr/pull/1907) +Handle non-seekable stream +* [1905](https://github.com/AcademySoftwareFoundation/openexr/pull/1905) +check for invalid uncompressed chunk sample count +* [1904](https://github.com/AcademySoftwareFoundation/openexr/pull/1904) +Add thread control to exrmetrics +* [1880](https://github.com/AcademySoftwareFoundation/openexr/pull/1880) +CMake: use EXCLUDE_FROM_ALL when declaring Fetch for deflate library +* [1899](https://github.com/AcademySoftwareFoundation/openexr/pull/1899) +Reintroduce single cache for successive scanline reads +* [1890](https://github.com/AcademySoftwareFoundation/openexr/pull/1890) +Added tests for ImfCRgbaFile +* [1903](https://github.com/AcademySoftwareFoundation/openexr/pull/1903) +Bump pypa/gh-action-pypi-publish from 1.10.3 to 1.11.0 +* [1898](https://github.com/AcademySoftwareFoundation/openexr/pull/1898) +Allow empty file name +* [1896](https://github.com/AcademySoftwareFoundation/openexr/pull/1896) +Bump actions/setup-python from 5.2.0 to 5.3.0 +* [1892](https://github.com/AcademySoftwareFoundation/openexr/pull/1892) +Bump actions/cache from 4.1.1 to 4.1.2 +* [1891](https://github.com/AcademySoftwareFoundation/openexr/pull/1891) +Bump github/codeql-action from 3.26.13 to 3.27.0 +* [1886](https://github.com/AcademySoftwareFoundation/openexr/pull/1886) +Bump github/codeql-action from 3.26.12 to 3.26.13 +* [1884](https://github.com/AcademySoftwareFoundation/openexr/pull/1884) +Add manpage for exrmetrics +* [1885](https://github.com/AcademySoftwareFoundation/openexr/pull/1885) +Bump jmertic/slack-release-notifier +* [1876](https://github.com/AcademySoftwareFoundation/openexr/pull/1876) +news update for v3.3.1 +* [1878](https://github.com/AcademySoftwareFoundation/openexr/pull/1878) +Bump actions/upload-artifact from 4.4.0 to 4.4.3 +* [1877](https://github.com/AcademySoftwareFoundation/openexr/pull/1877) +Bump pypa/cibuildwheel from 2.21.2 to 2.21.3 +* [1874](https://github.com/AcademySoftwareFoundation/openexr/pull/1874) +Bump actions/cache from 4.0.2 to 4.1.1 +* [1872](https://github.com/AcademySoftwareFoundation/openexr/pull/1872) +Bump github/codeql-action from 3.26.11 to 3.26.12 + + +## Version 3.3.1 (October 8, 2024) + +Patch release that addresses several build and performance issues: + +* Fix a performance regression 3.3.0 in huf/piz compression +* Replace ``FetchContent_Populate`` with ``FetchContent_MakeAvailable`` +* Build wheels for python 3.12 +* Fix a problem with python wheel sdist that caused local build to fail +* Compile source files in parallel under MSVC + +### Merged Pull Requests + +* [1868](https://github.com/AcademySoftwareFoundation/openexr/pull/1868) +Address huf / piz performance regressions +* [1867](https://github.com/AcademySoftwareFoundation/openexr/pull/1867) +Fix Typo SECURITY.md +* [1866](https://github.com/AcademySoftwareFoundation/openexr/pull/1866) +Bump pypa/gh-action-pypi-publish from 1.10.2 to 1.10.3 +* [1865](https://github.com/AcademySoftwareFoundation/openexr/pull/1865) +Bump github/codeql-action from 3.26.10 to 3.26.11 +* [1864](https://github.com/AcademySoftwareFoundation/openexr/pull/1864) +Bump pypa/cibuildwheel from 2.21.1 to 2.21.2 +* [1863](https://github.com/AcademySoftwareFoundation/openexr/pull/1863) +Use FetchContent_MakeAvailable instead of FetchContent_Populate +* [1861](https://github.com/AcademySoftwareFoundation/openexr/pull/1861) +CI: build wheels for Python 3.12 +* [1858](https://github.com/AcademySoftwareFoundation/openexr/pull/1858) +Build: compile source files in parallel under MSVC +* [1857](https://github.com/AcademySoftwareFoundation/openexr/pull/1857) +Don't exclude src/test and website from sdist +* [1856](https://github.com/AcademySoftwareFoundation/openexr/pull/1856) +Bazel support: Switch to Imath 3.1.12 +* [1854](https://github.com/AcademySoftwareFoundation/openexr/pull/1854) +Bump github/codeql-action from 3.26.9 to 3.26.10 +* [1851](https://github.com/AcademySoftwareFoundation/openexr/pull/1851) +Use 64-bit values for the pointer math +* [1848](https://github.com/AcademySoftwareFoundation/openexr/pull/1848) +Bump version/soversion on main branch +* [1780](https://github.com/AcademySoftwareFoundation/openexr/pull/1780) +First draft of website documentation for python bindings + ## Version 3.3.0 (September 30, 2024) Minor release two significant changes: From 466bb047a77d4f54481bfa5f96dc5e813c8401fc Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Fri, 8 Nov 2024 14:14:36 -0800 Subject: [PATCH 2/4] 3.3.2 release date Nov 10 Signed-off-by: Cary Phillips --- CHANGES.md | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index e5dd59886..48115f02a 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,7 +3,7 @@ # OpenEXR Release Notes -* [Version 3.3.2](#version-332-november-8-2024) November 8, 2024 +* [Version 3.3.2](#version-332-november-10-2024) November 10, 2024 * [Version 3.3.1](#version-331-october-8-2024) October 8, 2024 * [Version 3.3.0](#version-330-september-30-2024) September 30, 2024 * [Version 3.2.4](#version-324-march-26-2024) March 26, 2024 @@ -77,7 +77,7 @@ * [Version 1.0.1](#version-101) * [Version 1.0](#version-10) -## Version 3.3.2 (November 8, 2024) +## Version 3.3.2 (November 10, 2024) Patch release that fixes several bugs and build issues: From 7efd2a768730ced724612a41918e64a2791960da Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Mon, 11 Nov 2024 07:49:52 -0800 Subject: [PATCH 3/4] Add #1912 to release notes Signed-off-by: Cary Phillips --- CHANGES.md | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) diff --git a/CHANGES.md b/CHANGES.md index 48115f02a..111cd5f13 100644 --- a/CHANGES.md +++ b/CHANGES.md @@ -3,7 +3,7 @@ # OpenEXR Release Notes -* [Version 3.3.2](#version-332-november-10-2024) November 10, 2024 +* [Version 3.3.2](#version-332-november-11-2024) November 11, 2024 * [Version 3.3.1](#version-331-october-8-2024) October 8, 2024 * [Version 3.3.0](#version-330-september-30-2024) September 30, 2024 * [Version 3.2.4](#version-324-march-26-2024) March 26, 2024 @@ -77,13 +77,14 @@ * [Version 1.0.1](#version-101) * [Version 1.0](#version-10) -## Version 3.3.2 (November 10, 2024) +## Version 3.3.2 (November 11, 2024) Patch release that fixes several bugs and build issues: * A recent change to CMake had the unintended consequence of installing headers and libraries from `libdeflate` when doing an internal build. This is now fixed. +* Fix custom namespaces * Add thread control to `exrmetrics` tool * Reintroduce single cache for successive scanline reads * Allow empty filename when providing a custom stream @@ -96,6 +97,8 @@ Null-dereference WRITE in Imf_3_4::ScanLineProcess::run_fill ### Merged Pull Requests +* [1912](https://github.com/AcademySoftwareFoundation/openexr/pull/1912) +Add missing namespace macros * [1907](https://github.com/AcademySoftwareFoundation/openexr/pull/1907) Handle non-seekable stream * [1905](https://github.com/AcademySoftwareFoundation/openexr/pull/1905) From 0e8b671b9cff68b4ecc472514ef62fd0205d9371 Mon Sep 17 00:00:00 2001 From: Cary Phillips Date: Mon, 11 Nov 2024 09:50:58 -0800 Subject: [PATCH 4/4] release notes and website news for v3.3.2 Signed-off-by: Cary Phillips --- website/latest_news_title.rst | 3 +-- website/news.rst | 26 ++++++++++++++++++++++++-- 2 files changed, 25 insertions(+), 4 deletions(-) diff --git a/website/latest_news_title.rst b/website/latest_news_title.rst index abf9753ba..f93724922 100644 --- a/website/latest_news_title.rst +++ b/website/latest_news_title.rst @@ -1,2 +1 @@ -.. |latest-news-title| replace:: **October 8, 2024 - OpenEXR 3.3.1 Released** - +.. |latest-news-title| replace:: **November 11, 2024 - OpenEXR 3.3.2 Released** \ No newline at end of file diff --git a/website/news.rst b/website/news.rst index d65506316..243f30b32 100644 --- a/website/news.rst +++ b/website/news.rst @@ -13,12 +13,35 @@ News .. toctree:: :caption: News +November 11, 2024 - OpenEXR 3.3.2 Released +========================================== + +.. _LatestNewsStart: + +Patch release that fixes several bugs and build issues: + +* A recent change to CMake had the unintended consequence of + installing headers and libraries from `libdeflate` when doing an + internal build. This is now fixed. +* Fix custom namespaces +* Add thread control to `exrmetrics` tool +* Reintroduce single cache for successive scanline reads +* Allow empty filename when providing a custom stream +* Handle non-seekable stream in python module's `InputFile` object + +This release fixes: + +* OSS-fuzz `372524117 `_ + Null-dereference WRITE in Imf_3_4::ScanLineProcess::run_fill + +.. _LatestNewsEnd: + + .. include:: latest_news_title.rst |latest-news-title| ======================================== -.. _LatestNewsStart: Patch release that addresses several build and performance issues: @@ -28,7 +51,6 @@ Patch release that addresses several build and performance issues: * Fix a problem with python wheel sdist that caused local build to fail * Compile source files in parallel under MSVC -.. _LatestNewsEnd: September 30, 2024 - OpenEXR v3.3.0 Released