Set version to 1.4.2, FLEVEL to 212; Update NEWS.md

This commit is contained in:
Micah Snyder 2025-01-13 16:35:39 -05:00
parent 537500d1e9
commit 1de7092d6f
No known key found for this signature in database
GPG key ID: 3449E631914956D0
5 changed files with 19 additions and 3 deletions

View file

@ -22,7 +22,7 @@ string(TIMESTAMP TODAY "%Y%m%d")
set(VERSION_SUFFIX "") set(VERSION_SUFFIX "")
project( ClamAV project( ClamAV
VERSION "1.4.1" VERSION "1.4.2"
DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." ) DESCRIPTION "ClamAV open source email, web, and end-point anti-virus toolkit." )
set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH}) set(CMAKE_MODULE_PATH "${CMAKE_CURRENT_SOURCE_DIR}/cmake" ${CMAKE_MODULE_PATH})

2
Jenkinsfile vendored
View file

@ -10,7 +10,7 @@ properties(
parameters( parameters(
[ [
string(name: 'VERSION', string(name: 'VERSION',
defaultValue: '1.4.1', defaultValue: '1.4.2',
description: 'ClamAV version string'), description: 'ClamAV version string'),
string(name: 'FRAMEWORK_BRANCH', string(name: 'FRAMEWORK_BRANCH',
defaultValue: '1.4', defaultValue: '1.4',

15
NEWS.md
View file

@ -3,6 +3,21 @@
Note: This file refers to the official packages. Things described here may Note: This file refers to the official packages. Things described here may
differ slightly from third-party binary packages. differ slightly from third-party binary packages.
## 1.4.2
ClamAV 1.4.2 is a patch release with the following fixes:
- [CVE-2025-20128](https://cve.mitre.org/cgi-bin/cvename.cgi?name=CVE-2025-20128):
Fixed a possible buffer overflow read bug in the OLE2 file parser that could
cause a denial-of-service (DoS) condition.
This issue was introduced in version 1.0.0 and affects all currently
supported versions. It will be fixed in:
- 1.4.2
- 1.0.8
Thank you to OSS-Fuzz for identifying this issue.
## 1.4.1 ## 1.4.1
ClamAV 1.4.1 is a critical patch release with the following fixes: ClamAV 1.4.1 is a critical patch release with the following fixes:

View file

@ -194,6 +194,7 @@ enum FunctionalityLevels {
FUNC_LEVEL_1_4 = 210, /**< LibClamAV release 1.4.0 */ FUNC_LEVEL_1_4 = 210, /**< LibClamAV release 1.4.0 */
FUNC_LEVEL_1_4_1 = 211, /**< LibClamAV release 1.4.1 */ FUNC_LEVEL_1_4_1 = 211, /**< LibClamAV release 1.4.1 */
FUNC_LEVEL_1_4_2 = 212, /**< LibClamAV release 1.4.2 */
}; };
/** /**

View file

@ -69,7 +69,7 @@
* in re-enabling affected modules. * in re-enabling affected modules.
*/ */
#define CL_FLEVEL 211 #define CL_FLEVEL 212
#define CL_FLEVEL_DCONF CL_FLEVEL #define CL_FLEVEL_DCONF CL_FLEVEL
#define CL_FLEVEL_SIGTOOL CL_FLEVEL #define CL_FLEVEL_SIGTOOL CL_FLEVEL