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

rel/1.4^2
Micah Snyder 4 months ago
parent 537500d1e9
commit 1de7092d6f
No known key found for this signature in database
GPG Key ID: 3449E631914956D0
  1. 2
      CMakeLists.txt
  2. 2
      Jenkinsfile
  3. 15
      NEWS.md
  4. 1
      libclamav/bytecode_api.h
  5. 2
      libclamav/others.h

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

2
Jenkinsfile vendored

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

@ -3,6 +3,21 @@
Note: This file refers to the official packages. Things described here may
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
ClamAV 1.4.1 is a critical patch release with the following fixes:

@ -194,6 +194,7 @@ enum FunctionalityLevels {
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_2 = 212, /**< LibClamAV release 1.4.2 */
};
/**

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

Loading…
Cancel
Save