From e60d16a1ebb0aed773ca4b79dbcccb34d3694edf Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?G=C3=BCnter=20Obiltschnig?= Date: Sun, 23 Jun 2019 11:21:32 +0200 Subject: [PATCH] updated CHANGELOG --- CHANGELOG | 23 ++++++++++++----------- 1 file changed, 12 insertions(+), 11 deletions(-) diff --git a/CHANGELOG b/CHANGELOG index 8b7cf678a..13331cb40 100644 --- a/CHANGELOG +++ b/CHANGELOG @@ -3,6 +3,18 @@ This is the changelog file for the POCO C++ Libraries. Release 1.9.1 (2019-06-24) ========================== +- Added support for building with different OpenSSL distributions on Windows. + See the POCO_EXTERNAL_OPENSSL macro defined in Foundation/include/Poco/Config.h + for options. +- Added Poco::Net::HTTPClientSession::flushRequest() +- Added Poco::Net::WebSocket::setMaxPayloadSize() and Poco::Net::WebSocket::getMaxPayloadSize() + to specify a maximum acceptable payload size for Poco::Net::WebSocket::receiveFrame(). +- Redis: added support for additional commands (exists, expire, ping, multi, exec, discard) +- Redis: added Poco::Redis::Client::isConnected() +- Upgraded bundled PCRE to version 8.43 +- Upgraded bundled SQLite to version 3.28.0 +- Added project/solution files for Visual Studio 2019 +- Fixed Visual Studio project files (version information from DLLVersion.rc not included in DLLs) - fixed GH #2220: Encoding/DoubleByteEncoding.cpp fails to compile with VS2008 and _DEBUG - fixed GH #2277: SQLite null pointer dereference occurs when exception is being thrown - fixed GH #2313: PollSet behaves differently on windows @@ -15,21 +27,10 @@ Release 1.9.1 (2019-06-24) - fixed GH #2549: Fix keepAlive in http client session - fixed GH #2570: DialogSocket: receiveStatusMessage() - line length limit applies to entire multi-line message - fixed GH #2583: Crypto library does not build with OpenSSL 1.0.0 -- fixed GH #2583: Crypto library does not build with OpenSSL 1.0.0 (backport) - fixed GH #2655: MongoDB Binary element to string - bug - fixed GH #2661: Poco::Zip::ZipArchive cannot load new tomcat.zip file - fixed GH #2700: Invalid read of memory in Poco::Environment::set which may cause crashes. - fixed GH #2712: File_WIN32.cpp(168): error C2065: “_upath”:Undeclared identifier -- Added support for building with different OpenSSL distributions on Windows. - See the POCO_EXTERNAL_OPENSSL macro defined in Foundation/include/Poco/Config.h - for options. -- Added Poco::Net::HTTPClientSession::flushRequest() -- Added Poco::Net::WebSocket::setMaxPayloadSize() and Poco::Net::WebSocket::getMaxPayloadSize() - to specify a maximum acceptable payload size for Poco::Net::WebSocket::receiveFrame(). -- Redis: added support for additional commands (exists, expire, ping, multi, exec, discard) -- Redis: added Poco::Redis::Client::isConnected() -- Upgraded bundled PCRE to version 8.43 -- Upgraded bundled SQLite to version 3.28.0 Release 1.9.0 (2018-03-07)