Release 2.9

Signed-off-by: Michał Trojnara <Michal.Trojnara@stunnel.org>
This commit is contained in:
Michał Trojnara 2024-06-29 20:16:47 +02:00
parent 2b3228d549
commit 76ee550c9d
3 changed files with 13 additions and 5 deletions

View File

@ -7,7 +7,7 @@ on:
env:
# Customize the CMake build type here (Release, Debug, RelWithDebInfo, etc.)
BUILD_TYPE: Release
version: osslsigncode-2.9-dev
version: osslsigncode-2.9
jobs:
build:

View File

@ -16,7 +16,7 @@ project(osslsigncode
LANGUAGES C)
# force nonstandard version format for development packages
set(DEV "-dev")
set(DEV "")
set(PROJECT_VERSION "${PROJECT_VERSION_MAJOR}.${PROJECT_VERSION_MINOR}${DEV}")
# version and contact information

14
NEWS.md
View File

@ -1,13 +1,21 @@
# osslsigncode change log
### 2.9 (unreleased)
### 2.9 (2024.06.29)
- added a 64 bit long pseudo-random NONCE in the TSA request
- used native HTTP client with OpenSSL 3.0 or later, removed libcurl dependency
- missing NID_pkcs9_signingTime is no longer an error
- added support for PEM-encoded CRLs
- fixed the APPX central directory sorting order
- added a special "-" file name to read the passphrase from stdin
(by Steve McIntyre)
- used native HTTP client with OpenSSL 3.x, removing libcurl dependency
- added '-login' option to force a login to PKCS11 engines
(by Brad Hughes)
- added the "-ignore-crl" option to disable fetching and verifying
CRL Distribution Points
- changed error output to stderr instead of stdout
- improved testing
- various testing framework improvements
- various memory corruption fixes
### 2.8 (2024.03.03)