From 870401281fe8f0b700e20c58867198856001fcfa Mon Sep 17 00:00:00 2001 From: Andrew Lamb Date: Mon, 21 Jul 2025 14:03:01 -0400 Subject: [PATCH 1/2] Add note to upgrade guide about MSRV update --- docs/source/library-user-guide/upgrading.md | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/docs/source/library-user-guide/upgrading.md b/docs/source/library-user-guide/upgrading.md index e6a2f06305c1..810d09944845 100644 --- a/docs/source/library-user-guide/upgrading.md +++ b/docs/source/library-user-guide/upgrading.md @@ -24,6 +24,14 @@ **Note:** DataFusion `49.0.0` has not been released yet. The information provided in this section pertains to features and changes that have already been merged to the main branch and are awaiting release in this version. You can see the current [status of the `49.0.0 `release here](https://github.com/apache/datafusion/issues/16235) +### `MSRV` updated to 1.85.1 + +The Minimum Supported Rust Version (MSRV) for `DataFusionError` has been updated to [`1.85.1`]. See +[#16728] for details. + +[`1.85.1`]: https://releases.rs/docs/1.85.1/ +[#16728]: https://github.com/apache/datafusion/pull/16728 + ### `DataFusionError` variants are now `Box`ed To reduce the size of `DataFusionError`, several variants that were previously stored inline are now `Box`ed. This reduces the size of `Result` and thus stack usage and async state machine size. Please see [#16652] for more details. From 2a913cbc2ac7d2fed83b32a5bd7b1d5b7057f87b Mon Sep 17 00:00:00 2001 From: Piotr Findeisen Date: Mon, 21 Jul 2025 23:42:25 -0700 Subject: [PATCH 2/2] Fix copy-paste error Co-authored-by: Oleks V --- docs/source/library-user-guide/upgrading.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/source/library-user-guide/upgrading.md b/docs/source/library-user-guide/upgrading.md index 810d09944845..6bae22f6916f 100644 --- a/docs/source/library-user-guide/upgrading.md +++ b/docs/source/library-user-guide/upgrading.md @@ -26,7 +26,7 @@ You can see the current [status of the `49.0.0 `release here](https://github.com ### `MSRV` updated to 1.85.1 -The Minimum Supported Rust Version (MSRV) for `DataFusionError` has been updated to [`1.85.1`]. See +The Minimum Supported Rust Version (MSRV) has been updated to [`1.85.1`]. See [#16728] for details. [`1.85.1`]: https://releases.rs/docs/1.85.1/