updated relnotes

This commit is contained in:
Guenter Obiltschnig 2016-03-04 10:39:54 +01:00
parent aabb406794
commit 24a08d8400
2 changed files with 12 additions and 1 deletions

View File

@ -1,8 +1,10 @@
This is the changelog file for the POCO C++ Libraries. This is the changelog file for the POCO C++ Libraries.
Release 1.7.0 (2016-03-xx) Release 1.7.0 (2016-03-07)
========================== ==========================
- POSSIBLE BREAKING CHANGE: removed automatic registration of Data connectors due to
issues with static initialization order.
- fixed GH #1160: Poco::Net::NetException - fixed GH #1160: Poco::Net::NetException
"SSL Exception: error:1409F07F:SSL routines:ssl3_write_pending:bad write retry" "SSL Exception: error:1409F07F:SSL routines:ssl3_write_pending:bad write retry"
- fixed GH #1152: Wrong TaskProgressNotification description - fixed GH #1152: Wrong TaskProgressNotification description

View File

@ -5,6 +5,8 @@ AAAIntroduction
!!Summary of Changes !!Summary of Changes
- POSSIBLE BREAKING CHANGE: removed automatic registration of Data connectors due to
issues with static initialization order.
- fixed GH #1160: Poco::Net::NetException - fixed GH #1160: Poco::Net::NetException
"SSL Exception: error:1409F07F:SSL routines:ssl3_write_pending:bad write retry" "SSL Exception: error:1409F07F:SSL routines:ssl3_write_pending:bad write retry"
- fixed GH #1152: Wrong TaskProgressNotification description - fixed GH #1152: Wrong TaskProgressNotification description
@ -55,6 +57,13 @@ AAAIntroduction
- added constant for HTTP PATCH method to Poco::Net::HTTPRequest - added constant for HTTP PATCH method to Poco::Net::HTTPRequest
- NumberParser::parseHex[64](): allow 0x/0X prefix - NumberParser::parseHex[64](): allow 0x/0X prefix
!!Incompatible Changes and Possible Transition Issues
- Removed automatic registration of Data connectors due to issues with static
initialization order. Data connectors used in an application must be explicitly
registered with a call to registerConnector() before it can be used, e.g.:
Poco::Data::SQLite::Connector::registerConnector()
!!!Release 1.6.1 !!!Release 1.6.1