File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ 1.9.0
2+ ===========
3+
4+ Features
5+ --------
6+ [ CPP-745] Exponential reconnection policy with jitter
7+ [ CPP-769] Use ` clang-format ` to fix up formatting
8+ [ CPP-775] Add ` clang-format ` to Windows
9+
10+ Other
11+ --------
12+ [ CPP-743] Move internal components from ` namespace cass ` to ` namespace datastax::internal `
13+ [ CPP-764] Rename namespace from ` cass ` to ` datastax `
14+ [ CPP-766] Allow RPM packaging script to build RPM packages for Amazon Linux
15+ [ CPP-770] Fix header files include guard (__ CASS_XXX to DATASTAX_XXX)
16+ [ CPP-772] Remove per cpp file LOG_FILE attribute to speed up Windows builds
17+
1181.8.0
219===========
320
Original file line number Diff line number Diff line change @@ -41,10 +41,10 @@ environment:
4141 APPVEYOR_IGNORE_COMMIT_FILTERING_ON_TAG : true
4242 DRIVER_TYPE : DSE
4343 BOOST_VERSION : 1.69.0
44- LIBSSH2_VERSION : 1.8.2
45- LIBUV_VERSION : 1.28.0
46- OPENSSL_1_0_VERSION : 1.0.2r
47- OPENSSL_1_1_VERSION : 1.1.1b
44+ LIBSSH2_VERSION : 1.9.0
45+ LIBUV_VERSION : 1.29.1
46+ OPENSSL_1_0_VERSION : 1.0.2s
47+ OPENSSL_1_1_VERSION : 1.1.1c
4848 matrix :
4949 - CMAKE_GENERATOR : Visual Studio 10 2010
5050 OPENSSL_MAJOR_MINOR : 1.0
Original file line number Diff line number Diff line change 1919 - centos/7-64/cpp
2020 - osx/high-sierra
2121env :
22- LIBUV_VERSION : 1.28.0
22+ LIBUV_VERSION : 1.29.1
2323build :
2424 - script : |
2525 . ./cpp-driver/.build.sh
Original file line number Diff line number Diff line change 1+ 2.13.0
2+ ===========
3+
4+ Features
5+ --------
6+ [ CPP-745] Exponential reconnection policy with jitter
7+ [ CPP-769] Use ` clang-format ` to fix up formatting
8+ [ CPP-775] Add ` clang-format ` to Windows
9+
10+ Other
11+ --------
12+ [ CPP-743] Move internal components from ` namespace cass ` to ` namespace datastax::internal `
13+ [ CPP-764] Rename namespace from ` cass ` to ` datastax `
14+ [ CPP-766] Allow RPM packaging script to build RPM packages for Amazon Linux
15+ [ CPP-770] Fix header files include guard (__ CASS_XXX to DATASTAX_XXX)
16+ [ CPP-772] Remove per cpp file LOG_FILE attribute to speed up Windows builds
17+
18+ Community
19+ --------
20+ Fixed the location of the '[ in] ' information for Doxygen. (AlexisWilke)
21+ Added header subdirectory installation capability. (accelerated)
22+ Changed pkg_config templates to use the library variable name. (accelerated)
23+ Fix generation of shlib deps file for debian packages. (jirkasilhan)
24+
1252.12.0
226===========
327
Original file line number Diff line number Diff line change @@ -40,10 +40,10 @@ environment:
4040 APPVEYOR_IGNORE_COMMIT_FILTERING_ON_TAG : true
4141 DRIVER_TYPE : CASS
4242 BOOST_VERSION : 1.69.0
43- LIBSSH2_VERSION : 1.8.2
44- LIBUV_VERSION : 1.28.0
45- OPENSSL_1_0_VERSION : 1.0.2r
46- OPENSSL_1_1_VERSION : 1.1.1b
43+ LIBSSH2_VERSION : 1.9.0
44+ LIBUV_VERSION : 1.29.1
45+ OPENSSL_1_0_VERSION : 1.0.2s
46+ OPENSSL_1_1_VERSION : 1.1.1c
4747 matrix :
4848 - CMAKE_GENERATOR : Visual Studio 10 2010
4949 OPENSSL_MAJOR_MINOR : 1.0
Original file line number Diff line number Diff line change 1919 - centos/7-64/cpp
2020 - osx/high-sierra
2121env :
22- LIBUV_VERSION : 1.28.0
22+ LIBUV_VERSION : 1.29.1
2323build :
2424 - script : |
2525 . .build.sh
Original file line number Diff line number Diff line change @@ -21,8 +21,8 @@ endif()
2121# OpenSSL related CMake options
2222option (OPENSSL_VERSION "OpenSSL version to build and install" )
2323if (NOT OPENSSL_VERSION)
24- # TODO: Should we default to OpenSSL 1.1 (e.g. 1.1.1b )?
25- set (OPENSSL_VERSION "1.0.2r " )
24+ # TODO: Should we default to OpenSSL 1.1 (e.g. 1.1.1c )?
25+ set (OPENSSL_VERSION "1.0.2s " )
2626endif ()
2727option (OPENSSL_INSTALL_PREFIX "OpenSSL installation prefix location" )
2828if (CASS_USE_ZLIB)
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ if(NOT LIBSSH2_INSTALL_PREFIX)
2222endif ()
2323option (LIBSSH2_VERSION "libssh2 version to build and install" )
2424if (NOT LIBSSH2_VERSION)
25- set (LIBSSH2_VERSION "1.8.2 " )
25+ set (LIBSSH2_VERSION "1.9.0 " )
2626endif ()
2727set (LIBSSH2_VERSION ${LIBSSH2_VERSION} CACHE STRING "libssh2 version to build and install" FORCE )
2828
Original file line number Diff line number Diff line change @@ -22,7 +22,7 @@ if(NOT LIBUV_INSTALL_PREFIX)
2222endif ()
2323option (LIBUV_VERSION "libuv version to build and install" )
2424if (NOT LIBUV_VERSION)
25- set (LIBUV_VERSION "1.28.0 " )
25+ set (LIBUV_VERSION "1.29.1 " )
2626endif ()
2727set (LIBUV_VERSION ${LIBUV_VERSION} CACHE STRING "libuv version to build and install" FORCE )
2828
Original file line number Diff line number Diff line change 5757 use_path_nav_files_only : true
5858
5959versions :
60+ - name : " 2.13"
61+ ref : 2.13.0
6062 - name : " 2.12"
6163 ref : 2.12.0
6264 - name : " 2.11"
You can’t perform that action at this time.
0 commit comments