Skip to content

Commit ec55266

Browse files
Michael Feromikefero
authored andcommitted
[build, ci]: Updating libuv and OpenSSL dependency versions
* libuv v1.24.0 * [win] OpenSSL v1.0.2q
1 parent bf08ead commit ec55266

6 files changed

Lines changed: 11 additions & 11 deletions

File tree

appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ environment:
4141
DRIVER_TYPE: DSE
4242
BOOST_VERSION: 1.68.0
4343
LIBSSH2_VERSION: 1.8.0
44-
LIBUV_VERSION: 1.23.0
45-
OPENSSL_1_0_VERSION: 1.0.2p
46-
OPENSSL_1_1_VERSION: 1.1.0i
44+
LIBUV_VERSION: 1.24.0
45+
OPENSSL_1_0_VERSION: 1.0.2q
46+
OPENSSL_1_1_VERSION: 1.1.1a
4747
matrix:
4848
- CMAKE_GENERATOR: Visual Studio 10 2010
4949
OPENSSL_MAJOR_MINOR: 1.0

build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ os:
1919
- centos/7-64
2020
- osx/high-sierra
2121
env:
22-
LIBUV_VERSION: 1.23.0
22+
LIBUV_VERSION: 1.24.0
2323
build:
2424
- script: |
2525
. ./cpp-driver/.build.sh

cpp-driver/appveyor.yml

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,9 +41,9 @@ environment:
4141
DRIVER_TYPE: CASS
4242
BOOST_VERSION: 1.68.0
4343
LIBSSH2_VERSION: 1.8.0
44-
LIBUV_VERSION: 1.23.0
45-
OPENSSL_1_0_VERSION: 1.0.2p
46-
OPENSSL_1_1_VERSION: 1.1.0i
44+
LIBUV_VERSION: 1.24.0
45+
OPENSSL_1_0_VERSION: 1.0.2q
46+
OPENSSL_1_1_VERSION: 1.1.1a
4747
matrix:
4848
- CMAKE_GENERATOR: Visual Studio 10 2010
4949
OPENSSL_MAJOR_MINOR: 1.0

cpp-driver/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ os:
1919
- centos/7-64
2020
- osx/high-sierra
2121
env:
22-
LIBUV_VERSION: 1.23.0
22+
LIBUV_VERSION: 1.24.0
2323
build:
2424
- script: |
2525
. .build.sh

cpp-driver/cmake/modules/ExternalProject-OpenSSL.cmake

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,8 +21,8 @@ endif()
2121
# OpenSSL related CMake options
2222
option(OPENSSL_VERSION "OpenSSL version to build and install")
2323
if(NOT OPENSSL_VERSION)
24-
# TODO: Should we default to OpenSSL 1.1 (e.g. 1.1.0i)?
25-
set(OPENSSL_VERSION "1.0.2p")
24+
# TODO: Should we default to OpenSSL 1.1 (e.g. 1.1.1a)?
25+
set(OPENSSL_VERSION "1.0.2q")
2626
endif()
2727
option(OPENSSL_INSTALL_PREFIX "OpenSSL installation prefix location")
2828
if(CASS_USE_ZLIB)

cpp-driver/cmake/modules/ExternalProject-libuv.cmake

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ if(NOT LIBUV_INSTALL_PREFIX)
2222
endif()
2323
option(LIBUV_VERSION "libuv version to build and install")
2424
if(NOT LIBUV_VERSION)
25-
set(LIBUV_VERSION "1.23.0")
25+
set(LIBUV_VERSION "1.24.0")
2626
endif()
2727
set(LIBUV_VERSION ${LIBUV_VERSION} CACHE STRING "libuv version to build and install" FORCE)
2828

0 commit comments

Comments
 (0)