diff options
author | Brad King <brad.king@kitware.com> | 2023-11-28 15:38:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2023-11-28 15:38:54 (GMT) |
commit | 01deb5809854b1ce1fdaa8fd8e31adf31a134904 (patch) | |
tree | c8420faa9e62d2d3187a9e1f8a45e5ec29787e85 /Help | |
parent | 0ff8c20932fc713a6e6d8760462137cb62ef25cf (diff) | |
parent | c4f7eb3f0b39ed679296b01158195afc677a0df9 (diff) | |
download | CMake-01deb5809854b1ce1fdaa8fd8e31adf31a134904.zip CMake-01deb5809854b1ce1fdaa8fd8e31adf31a134904.tar.gz CMake-01deb5809854b1ce1fdaa8fd8e31adf31a134904.tar.bz2 |
Merge branch 'release-3.27' into release-3.28
Diffstat (limited to 'Help')
-rw-r--r-- | Help/release/3.27.rst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/Help/release/3.27.rst b/Help/release/3.27.rst index 8a67ebc..4d90d14 100644 --- a/Help/release/3.27.rst +++ b/Help/release/3.27.rst @@ -291,3 +291,23 @@ Changes made since CMake 3.27.0 include the following. * These versions made no changes to documented features or interfaces. Some implementation updates were made to support ecosystem changes and/or fix regressions. + +3.27.9 +------ + +* The :manual:`cmake-file-api(7)` "codemodel" version 2 "target" object + ``fileSets`` field was introduced by CMake 3.26.0 with entries of its + ``baseDirectories`` member incorrectly expressed as absolute paths + even if they are inside the top-level source directory. This was + fixed in CMake 3.26.6 and has now been fixed in 3.27.9. Clients must + be updated to expect relative paths under the top-level source directory. + +* Fortran module dependency scanning in :ref:`Ninja Generators` was updated + by CMake 3.27.0 to use exact collation dependencies. This was supposed + to fix subtle rebuild failures when moving module sources among targets. + Since then, several cases have been found in which exact collation + dependencies were incorrectly computed when using :ref:`Object Libraries`. + Some of these cases were incrementally fixed through the 3.27.x patch + series, but additional more subtle cases have since been found. In order + to avoid further churn in the 3.27 release series, the original change has + been reverted and deferred to a future version of CMake. |