Skip to content

Commit 915f176

Browse files
authored
Merge pull request #299 from riptano/1.10.0-alpha-2_prep
1.10.0-alpha-2 release preparation
2 parents 6165cd9 + 39aa242 commit 915f176

10 files changed

Lines changed: 39 additions & 7 deletions

File tree

CHANGELOG.md

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,19 @@
1+
1.10.0-alpha-2
2+
===========
3+
4+
Features
5+
--------
6+
[CPP-812] - Enable warnings for implicit casts and fix problems
7+
[CPP-813] - Detect CaaS and change consistency default
8+
[CPP-817] - Provide error if mixed usage of secure connect bundle and contact points/ssl context
9+
[CPP-818] - Add missing configuration elements to Insights startup message
10+
11+
Bug Fixes
12+
--------
13+
[CPP-802] - Handle prepared id mismatch when repreparing on the fly
14+
[CPP-815] - Schema agreement fails with SNI
15+
[CPP-811] - Requests won't complete if they exceed the number of streams on a connection
16+
117
1.10.0-alpha
218
===========
319

appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ environment:
4040
DRIVER_TYPE: DSE
4141
BOOST_VERSION: 1.69.0
4242
LIBSSH2_VERSION: 1.9.0
43-
LIBUV_VERSION: 1.31.0
43+
LIBUV_VERSION: 1.32.0
4444
OPENSSL_1_0_VERSION: 1.0.2s
4545
OPENSSL_1_1_VERSION: 1.1.1c
4646
ZLIB_VERSION: 1.2.11

build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ os:
3434
- centos/7-64/cpp
3535
- osx/high-sierra
3636
env:
37-
LIBUV_VERSION: 1.31.0
37+
LIBUV_VERSION: 1.32.0
3838
build:
3939
- script: |
4040
. ./cpp-driver/.build.sh

cpp-driver/CHANGELOG.md

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,18 @@
1+
2.14.0-alpha-2
2+
===========
3+
4+
Features
5+
--------
6+
[CPP-812] - Enable warnings for implicit casts and fix problems
7+
[CPP-813] - Detect CaaS and change consistency default
8+
[CPP-817] - Provide error if mixed usage of secure connect bundle and contact points/ssl context
9+
10+
Bug Fixes
11+
--------
12+
[CPP-802] - Handle prepared id mismatch when repreparing on the fly
13+
[CPP-815] - Schema agreement fails with SNI
14+
[CPP-811] - Requests won't complete if they exceed the number of streams on a connection
15+
116
2.14.0-alpha
217
===========
318

cpp-driver/appveyor.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@ environment:
3939
DRIVER_TYPE: CASS
4040
BOOST_VERSION: 1.69.0
4141
LIBSSH2_VERSION: 1.9.0
42-
LIBUV_VERSION: 1.31.0
42+
LIBUV_VERSION: 1.32.0
4343
OPENSSL_1_0_VERSION: 1.0.2s
4444
OPENSSL_1_1_VERSION: 1.1.1c
4545
ZLIB_VERSION: 1.2.11

cpp-driver/build.yaml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ os:
3232
- centos/7-64/cpp
3333
- osx/high-sierra
3434
env:
35-
LIBUV_VERSION: 1.31.0
35+
LIBUV_VERSION: 1.32.0
3636
build:
3737
- script: |
3838
. .build.sh

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.31.0")
25+
set(LIBUV_VERSION "1.32.0")
2626
endif()
2727
set(LIBUV_VERSION ${LIBUV_VERSION} CACHE STRING "libuv version to build and install" FORCE)
2828

cpp-driver/include/cassandra.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -54,7 +54,7 @@
5454
#define CASS_VERSION_MAJOR 2
5555
#define CASS_VERSION_MINOR 14
5656
#define CASS_VERSION_PATCH 0
57-
#define CASS_VERSION_SUFFIX "alpha"
57+
#define CASS_VERSION_SUFFIX "alpha-2"
5858

5959
#ifdef __cplusplus
6060
extern "C" {

docs.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,7 @@ sections:
2020
type: markdown
2121
files: ['cpp-driver/topics/README.md',
2222
'cpp-driver/topics/basics/**/*.md',
23+
'cpp-driver/topics/cloud/**/*.md',
2324
'cpp-driver/topics/configuration/**/*.md',
2425
'cpp-driver/topics/logging/**/*.md',
2526
'cpp-driver/topics/metrics/**/*.md',

include/dse.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,7 @@
5151
#define DSE_VERSION_MAJOR 1
5252
#define DSE_VERSION_MINOR 10
5353
#define DSE_VERSION_PATCH 0
54-
#define DSE_VERSION_SUFFIX "alpha"
54+
#define DSE_VERSION_SUFFIX "alpha-2"
5555

5656
#ifdef __cplusplus
5757
extern "C" {

0 commit comments

Comments
 (0)