You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Use Version::id() instead of "MD5 over source code" for encoding static analysis cache format in cache keys for static analysis cache
This means that cached static analysis results will be treated as
outdated when a new/different version of php-code-coverage is used even
if the static analysis code has not changed. Optimizing this edge case
for performance is not worth risking errors in the code for calculating
the "MD5 over source code" that we previously used for this.
Copy file name to clipboardExpand all lines: ChangeLog-10.1.md
+7
Original file line number
Diff line number
Diff line change
@@ -2,6 +2,12 @@
2
2
3
3
All notable changes are documented in this file using the [Keep a CHANGELOG](http://keepachangelog.com/) principles.
4
4
5
+
## [10.1.17] - 2025-MM-DD
6
+
7
+
### Changed
8
+
9
+
* Changed version identifier for static analysis cache from "MD5 over source code" to `Version::id()`
10
+
5
11
## [10.1.16] - 2024-08-22
6
12
7
13
### Changed
@@ -113,6 +119,7 @@ All notable changes are documented in this file using the [Keep a CHANGELOG](htt
113
119
114
120
* The `SebastianBergmann\CodeCoverage\Filter::includeDirectory()`, `SebastianBergmann\CodeCoverage\Filter::excludeDirectory()`, and `SebastianBergmann\CodeCoverage\Filter::excludeFile()` methods are now deprecated
0 commit comments