From 61e21c45702bbffb1f2a0cebb16a9dfb2882758e Mon Sep 17 00:00:00 2001 From: Remi Collet Date: Mon, 10 Sep 2018 10:18:26 +0200 Subject: update to 2.10.0-beta1 bump dependency on libuv 1.0 --- cassandra-cpp-driver.spec | 13 +- .../2.9.0_to_2.10.0-beta1/compat_report.html | 697 +++++++++++++++++++++ libcassandra.xml | 2 +- 3 files changed, 707 insertions(+), 5 deletions(-) create mode 100644 compat_reports/2.9.0_to_2.10.0-beta1/compat_report.html diff --git a/cassandra-cpp-driver.spec b/cassandra-cpp-driver.spec index 5ad54d1..7621984 100644 --- a/cassandra-cpp-driver.spec +++ b/cassandra-cpp-driver.spec @@ -7,27 +7,28 @@ # Please, preserve the changelog entries # -%global gh_commit ee29ebf32a5941b7bb0c40e9b03f595123598058 +%global gh_commit ef8a2d300c66b4d3b5aa6bce5c899ee8efdc346c %global gh_short %(c=%{gh_commit}; echo ${c:0:7}) %global gh_owner datastax %global gh_project cpp-driver %global libname libcassandra %global soname 2 +%global prever beta1 Name: cassandra-cpp-driver Summary: DataStax C/C++ Driver for Apache Cassandra -Version: 2.9.0 +Version: 2.10.0%{?prever:~%{prever}} Release: 1%{?dist} License: ASL 2.0 Group: System Environment/Libraries URL: http://datastax.github.io/cpp-driver/ -Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}-%{gh_short}.tar.gz +Source0: https://github.com/%{gh_owner}/%{gh_project}/archive/%{gh_commit}/%{gh_project}-%{version}%{?prever:-%{prever}}-%{gh_short}.tar.gz BuildRequires: gcc BuildRequires: gcc-c++ BuildRequires: cmake >= 2.6.4 -BuildRequires: libuv-devel +BuildRequires: libuv-devel >= 1.0 BuildRequires: openssl-devel @@ -89,6 +90,10 @@ make install DESTDIR="%{buildroot}" %changelog +* Mon Sep 10 2018 Remi Collet - 2.10.0~beta1-1 +- update to 2.10.0-beta1 +- bump dependency on libuv 1.0 + * Tue Apr 17 2018 Remi Collet - 2.9.0-1 - update to 2.9.0 diff --git a/compat_reports/2.9.0_to_2.10.0-beta1/compat_report.html b/compat_reports/2.9.0_to_2.10.0-beta1/compat_report.html new file mode 100644 index 0000000..d6f0030 --- /dev/null +++ b/compat_reports/2.9.0_to_2.10.0-beta1/compat_report.html @@ -0,0 +1,697 @@ + + + + + + + + + +libcassandra: 2.9.0 to 2.10.0-beta1 compatibility report + + + +

API compatibility report for the libcassandra library between 2.9.0 and 2.10.0-beta1 versions on x86_64

+ +
+
+

Test Info


+ + + + + + + +
Library Namelibcassandra
Version #12.9.0
Version #22.10.0-beta1
Archx86_64
GCC Version7
SubjectBinary Compatibility
+

Test Results


+ + + + + + +
Total Header Files1
Total Libraries1
Total Symbols / Types553 / 115
Compatibility100%
+

Problem Summary


+ + + + + + + + + + +
SeverityCount
Added Symbols-38
Removed SymbolsHigh0
Problems with
Data Types
High0
Medium0
Low0
Problems with
Symbols
High0
Medium0
Low0
Problems with
Constants
Low0
Other Changes
in Data Types
-1
+ +

Added Symbols  38 


+cassandra.h, libcassandra.so.2.10.0
+cass_alloc_set_functions ( CassMallocFunction malloc_func, CassReallocFunction realloc_func, CassFreeFunction free_func )
+cass_batch_set_execution_profile ( CassBatch* batch, char const* name )
+cass_batch_set_execution_profile_n ( CassBatch* batch, char const* name, size_t name_length )
+cass_cluster_set_coalesce_delay ( CassCluster* cluster, cass_int64_t delay_us )
+cass_cluster_set_execution_profile ( CassCluster* cluster, char const* name, CassExecProfile* profile )
+cass_cluster_set_execution_profile_n ( CassCluster* cluster, char const* name, size_t name_length, CassExecProfile* profile )
+cass_cluster_set_local_address ( CassCluster* cluster, char const* name )
+cass_cluster_set_local_address_n ( CassCluster* cluster, char const* name, size_t name_length )
+cass_cluster_set_max_reusable_write_objects ( CassCluster* cluster, unsigned int num_objects )
+cass_cluster_set_max_schema_wait_time ( CassCluster* cluster, unsigned int wait_time_ms )
+cass_cluster_set_new_request_ratio ( CassCluster* cluster, cass_int32_t ratio )
+cass_cluster_set_token_aware_routing_shuffle_replicas ( CassCluster* cluster, enum cass_bool_t enabled )
+cass_execution_profile_free ( CassExecProfile* profile )
+cass_execution_profile_new ( )
+cass_execution_profile_set_blacklist_dc_filtering ( CassExecProfile* profile, char const* dcs )
+cass_execution_profile_set_blacklist_dc_filtering_n ( CassExecProfile* profile, char const* dcs, size_t dcs_length )
+cass_execution_profile_set_blacklist_filtering ( CassExecProfile* profile, char const* hosts )
+cass_execution_profile_set_blacklist_filtering_n ( CassExecProfile* profile, char const* hosts, size_t hosts_length )
+cass_execution_profile_set_consistency ( CassExecProfile* profile, CassConsistency consistency )
+cass_execution_profile_set_constant_speculative_execution_policy ( CassExecProfile* profile, cass_int64_t constant_delay_ms, int max_speculative_executions )
+cass_execution_profile_set_latency_aware_routing ( CassExecProfile* profile, enum cass_bool_t enabled )
+cass_execution_profile_set_latency_aware_routing_settings ( CassExecProfile* profile, cass_double_t exclusion_threshold, cass_uint64_t scale_ms, cass_uint64_t retry_period_ms, cass_uint64_t update_rate_ms, cass_uint64_t min_measured )
+cass_execution_profile_set_load_balance_dc_aware ( CassExecProfile* profile, char const* local_dc, unsigned int used_hosts_per_remote_dc, enum cass_bool_t allow_remote_dcs_for_local_cl )
+cass_execution_profile_set_load_balance_dc_aware_n ( CassExecProfile* profile, char const* local_dc, size_t local_dc_length, unsigned int used_hosts_per_remote_dc, enum cass_bool_t allow_remote_dcs_for_local_cl )
+cass_execution_profile_set_load_balance_round_robin ( CassExecProfile* profile )
+cass_execution_profile_set_no_speculative_execution_policy ( CassExecProfile* profile )
+cass_execution_profile_set_request_timeout ( CassExecProfile* profile, cass_uint64_t timeout_ms )
+cass_execution_profile_set_retry_policy ( CassExecProfile* profile, CassRetryPolicy* retry_policy )
+cass_execution_profile_set_serial_consistency ( CassExecProfile* profile, CassConsistency serial_consistency )
+cass_execution_profile_set_token_aware_routing ( CassExecProfile* profile, enum cass_bool_t enabled )
+cass_execution_profile_set_token_aware_routing_shuffle_replicas ( CassExecProfile* profile, enum cass_bool_t enabled )
+cass_execution_profile_set_whitelist_dc_filtering ( CassExecProfile* profile, char const* dcs )
+cass_execution_profile_set_whitelist_dc_filtering_n ( CassExecProfile* profile, char const* dcs, size_t dcs_length )
+cass_execution_profile_set_whitelist_filtering ( CassExecProfile* profile, char const* hosts )
+cass_execution_profile_set_whitelist_filtering_n ( CassExecProfile* profile, char const* hosts, size_t hosts_length )
+cass_session_get_speculative_execution_metrics ( CassSession const* session, CassSpeculativeExecutionMetrics* output )
+cass_statement_set_execution_profile ( CassStatement* statement, char const* name )
+cass_statement_set_execution_profile_n ( CassStatement* statement, char const* name, size_t name_length )
+
+to the top
+ +

Other Changes in Data Types  1 


+cassandra.h
+ +[+] enum CassError_  1  +
+ + +
+to the top
+

Header Files  1 


+
+cassandra.h
+
+
to the top
+

Libraries  1 


+
+libcassandra.so.2.9.0
+
+
to the top
+


+

Test Info


+ + + + + + +
Library Namelibcassandra
Version #12.9.0
Version #22.10.0-beta1
Archx86_64
SubjectSource Compatibility
+

Test Results


+ + + + + + +
Total Header Files1
Total Libraries1
Total Symbols / Types553 / 115
Compatibility100%
+

Problem Summary


+ + + + + + + + + + +
SeverityCount
Added Symbols-38
Removed SymbolsHigh0
Problems with
Data Types
High0
Medium0
Low0
Problems with
Symbols
High0
Medium0
Low0
Problems with
Constants
Low2
Other Changes
in Data Types
-1
+ +

Added Symbols  38 


+cassandra.h
+cass_alloc_set_functions ( CassMallocFunction malloc_func, CassReallocFunction realloc_func, CassFreeFunction free_func )
+cass_batch_set_execution_profile ( CassBatch* batch, char const* name )
+cass_batch_set_execution_profile_n ( CassBatch* batch, char const* name, size_t name_length )
+cass_cluster_set_coalesce_delay ( CassCluster* cluster, cass_int64_t delay_us )
+cass_cluster_set_execution_profile ( CassCluster* cluster, char const* name, CassExecProfile* profile )
+cass_cluster_set_execution_profile_n ( CassCluster* cluster, char const* name, size_t name_length, CassExecProfile* profile )
+cass_cluster_set_local_address ( CassCluster* cluster, char const* name )
+cass_cluster_set_local_address_n ( CassCluster* cluster, char const* name, size_t name_length )
+cass_cluster_set_max_reusable_write_objects ( CassCluster* cluster, unsigned int num_objects )
+cass_cluster_set_max_schema_wait_time ( CassCluster* cluster, unsigned int wait_time_ms )
+cass_cluster_set_new_request_ratio ( CassCluster* cluster, cass_int32_t ratio )
+cass_cluster_set_token_aware_routing_shuffle_replicas ( CassCluster* cluster, enum cass_bool_t enabled )
+cass_execution_profile_free ( CassExecProfile* profile )
+cass_execution_profile_new ( )
+cass_execution_profile_set_blacklist_dc_filtering ( CassExecProfile* profile, char const* dcs )
+cass_execution_profile_set_blacklist_dc_filtering_n ( CassExecProfile* profile, char const* dcs, size_t dcs_length )
+cass_execution_profile_set_blacklist_filtering ( CassExecProfile* profile, char const* hosts )
+cass_execution_profile_set_blacklist_filtering_n ( CassExecProfile* profile, char const* hosts, size_t hosts_length )
+cass_execution_profile_set_consistency ( CassExecProfile* profile, CassConsistency consistency )
+cass_execution_profile_set_constant_speculative_execution_policy ( CassExecProfile* profile, cass_int64_t constant_delay_ms, int max_speculative_executions )
+cass_execution_profile_set_latency_aware_routing ( CassExecProfile* profile, enum cass_bool_t enabled )
+cass_execution_profile_set_latency_aware_routing_settings ( CassExecProfile* profile, cass_double_t exclusion_threshold, cass_uint64_t scale_ms, cass_uint64_t retry_period_ms, cass_uint64_t update_rate_ms, cass_uint64_t min_measured )
+cass_execution_profile_set_load_balance_dc_aware ( CassExecProfile* profile, char const* local_dc, unsigned int used_hosts_per_remote_dc, enum cass_bool_t allow_remote_dcs_for_local_cl )
+cass_execution_profile_set_load_balance_dc_aware_n ( CassExecProfile* profile, char const* local_dc, size_t local_dc_length, unsigned int used_hosts_per_remote_dc, enum cass_bool_t allow_remote_dcs_for_local_cl )
+cass_execution_profile_set_load_balance_round_robin ( CassExecProfile* profile )
+cass_execution_profile_set_no_speculative_execution_policy ( CassExecProfile* profile )
+cass_execution_profile_set_request_timeout ( CassExecProfile* profile, cass_uint64_t timeout_ms )
+cass_execution_profile_set_retry_policy ( CassExecProfile* profile, CassRetryPolicy* retry_policy )
+cass_execution_profile_set_serial_consistency ( CassExecProfile* profile, CassConsistency serial_consistency )
+cass_execution_profile_set_token_aware_routing ( CassExecProfile* profile, enum cass_bool_t enabled )
+cass_execution_profile_set_token_aware_routing_shuffle_replicas ( CassExecProfile* profile, enum cass_bool_t enabled )
+cass_execution_profile_set_whitelist_dc_filtering ( CassExecProfile* profile, char const* dcs )
+cass_execution_profile_set_whitelist_dc_filtering_n ( CassExecProfile* profile, char const* dcs, size_t dcs_length )
+cass_execution_profile_set_whitelist_filtering ( CassExecProfile* profile, char const* hosts )
+cass_execution_profile_set_whitelist_filtering_n ( CassExecProfile* profile, char const* hosts, size_t hosts_length )
+cass_session_get_speculative_execution_metrics ( CassSession const* session, CassSpeculativeExecutionMetrics* output )
+cass_statement_set_execution_profile ( CassStatement* statement, char const* name )
+cass_statement_set_execution_profile_n ( CassStatement* statement, char const* name, size_t name_length )
+
+to the top
+ +

Problems with Constants, Low Severity  2 


+cassandra.h
+ +[+] CASS_VERSION_MINOR +
+ + + +[+] CASS_VERSION_SUFFIX +
+ + +
+to the top
+ +

Other Changes in Data Types  1 


+cassandra.h
+ +[+] enum CassError_  1  +
+ + +
+to the top
+

Header Files  1 


+
+cassandra.h
+
+
to the top
+

Libraries  1 


+
+libcassandra.so.2.9.0
+
+
to the top
+



+ +
+ + diff --git a/libcassandra.xml b/libcassandra.xml index 97938cb..283cc51 100644 --- a/libcassandra.xml +++ b/libcassandra.xml @@ -9,7 +9,7 @@ -2.9.0 +2.10.0-beta1 -- cgit