dse-driver 2.0.0 → 2.1.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +8 -8
- data/README.md +15 -4
- data/ext/gss_api_context/extconf.rb +1 -1
- data/ext/gss_api_context/gss_api_context.c +1 -1
- data/ext/gss_api_context/kerberosgss.c +1 -1
- data/ext/gss_api_context/kerberosgss.h +2 -2
- data/lib/dse.rb +1 -1
- data/lib/dse/auth/providers/gss_api.rb +1 -1
- data/lib/dse/auth/providers/password.rb +1 -1
- data/lib/dse/cluster.rb +1 -1
- data/lib/dse/geometry/line_string.rb +1 -1
- data/lib/dse/geometry/point.rb +1 -1
- data/lib/dse/geometry/polygon.rb +1 -1
- data/lib/dse/graph.rb +1 -1
- data/lib/dse/graph/duration.rb +1 -1
- data/lib/dse/graph/edge.rb +1 -1
- data/lib/dse/graph/execution_profile.rb +1 -1
- data/lib/dse/graph/options.rb +1 -1
- data/lib/dse/graph/path.rb +1 -1
- data/lib/dse/graph/result.rb +1 -1
- data/lib/dse/graph/result_set.rb +1 -1
- data/lib/dse/graph/statement.rb +1 -1
- data/lib/dse/graph/vertex.rb +1 -1
- data/lib/dse/graph/vertex_property.rb +1 -1
- data/lib/dse/load_balancing/policies/host_targeting.rb +1 -1
- data/lib/dse/session.rb +1 -1
- data/lib/dse/statements.rb +1 -1
- data/lib/dse/statements/host_targeting.rb +1 -1
- data/lib/dse/util.rb +1 -1
- data/lib/dse/util/endian_buffer.rb +1 -1
- data/lib/dse/version.rb +2 -2
- metadata +4 -4
checksums.yaml
CHANGED
@@ -1,15 +1,15 @@
|
|
1
1
|
---
|
2
2
|
!binary "U0hBMQ==":
|
3
3
|
metadata.gz: !binary |-
|
4
|
-
|
4
|
+
MmRmNmUxZGJmMjY0ZDljYmRiMGJhNjVkN2RiNDY0YWY3OTM1ZmZiZA==
|
5
5
|
data.tar.gz: !binary |-
|
6
|
-
|
6
|
+
MGQyN2RiYzdhMTk4M2E5MzQ0MDhmNmI5ZWNhMGRhNmU3MDY1MWM0NQ==
|
7
7
|
SHA512:
|
8
8
|
metadata.gz: !binary |-
|
9
|
-
|
10
|
-
|
11
|
-
|
9
|
+
YWNmNDg4MTA4MGQyOTlmNTQ0NzAyMmI0MDQ3ZjBkMDhkZTczYjk1YTc2OTYz
|
10
|
+
YzdjMGZhYWIyM2RhNjdlZDBjMDE2YzRiZDYxMWNjZDdhMTk2N2Q2MjlkNDdm
|
11
|
+
MTk4ZjQ2YzNlOTVkODIzZTNkZjg1YmI5OTY3NGJjNDk3YWEyZWQ=
|
12
12
|
data.tar.gz: !binary |-
|
13
|
-
|
14
|
-
|
15
|
-
|
13
|
+
M2YyZGJjMTg3Y2ZjOThjYWQ5NjlkYmY3OTRkYTZhNDM0MzlhYjRjMzNmNzg1
|
14
|
+
OWY1NDYzMWQzYzAyNzBmYjVkNmQ2ZDY0OTM2MDY4OGRlNzFhOWUwMTBjMDYx
|
15
|
+
Yzc0MGQyNmE1MzA1MWJmYzI2NDhkOTg3YWRmYzBkODA1ZjA0NGY=
|
data/README.md
CHANGED
@@ -1,6 +1,6 @@
|
|
1
|
-
# DataStax Enterprise
|
1
|
+
# Ruby DataStax Enterprise Driver
|
2
2
|
|
3
|
-
*NOTE: The DataStax Enterprise
|
3
|
+
*NOTE: The Ruby DataStax Enterprise Driver can be used solely with DataStax Enterprise. Please consult [the license](http://www.datastax.com/terms/datastax-dse-driver-license-terms).*
|
4
4
|
|
5
5
|
This driver is built on top of the [DataStax Ruby driver for Apache Cassandra](http://dsdocs30)
|
6
6
|
and enhanced for the adaptive data management and mixed workload capabilities
|
@@ -11,12 +11,23 @@ Driver documentation can be found [here](http://docs.datastax.com/en/developer/r
|
|
11
11
|
|
12
12
|
In particular, you'll find our [Features](features) and [API](api) sections very enlightening.
|
13
13
|
|
14
|
+
## Compatibility
|
15
|
+
|
16
|
+
This driver works exclusively with the Cassandra Query Language v3 (CQL3), Cassandra's native protocol, and
|
17
|
+
DataStax Enterprise extensions to that protocol. The current version works with:
|
18
|
+
|
19
|
+
* DataStax Enterprise 4.8 and above.
|
20
|
+
* Ruby (MRI) 2.2, 2.3, 2.4
|
21
|
+
* JRuby 1.7, 9k
|
22
|
+
|
23
|
+
__Note__: MRI 2.0 and 2.1 are not officially supported, but they should work.
|
24
|
+
|
14
25
|
## Feedback Requested
|
15
26
|
*Help us focus our efforts!* [Provide your input](http://goo.gl/forms/pCs8PTpHLf) on the Ruby Driver
|
16
27
|
Platform and Runtime Survey (we kept it short).
|
17
28
|
|
18
29
|
If you find an issue, please file an issue in our [public JIRA](https://datastax-oss.atlassian.net/browse/RUBY).
|
19
|
-
*Please be sure to specify the affects-version (DSE-
|
30
|
+
*Please be sure to specify the affects-version (DSE-X.Y.Z).*
|
20
31
|
|
21
32
|
You can also post questions in [our forum](https://groups.google.com/a/lists.datastax.com/forum/#!forum/ruby-driver-user).
|
22
33
|
|
@@ -132,6 +143,6 @@ Although this driver exposes new features introduced in DSE 5.0, it is fully com
|
|
132
143
|
previous versions of DSE.
|
133
144
|
|
134
145
|
## License
|
135
|
-
Copyright (C) 2016 DataStax Inc.
|
146
|
+
Copyright (C) 2016-2017 DataStax Inc.
|
136
147
|
|
137
148
|
The full license terms are available at http://www.datastax.com/terms/datastax-dse-driver-license-terms
|
@@ -1,5 +1,5 @@
|
|
1
1
|
/**
|
2
|
-
* Copyright (c) 2006-
|
2
|
+
* Copyright (c) 2006-2017 Apple Inc. All rights reserved.
|
3
3
|
*
|
4
4
|
* Licensed under the Apache License, Version 2.0 (the "License");
|
5
5
|
* you may not use this file except in compliance with the License.
|
@@ -68,4 +68,4 @@ int authenticate_gss_client_unwrap(
|
|
68
68
|
int authenticate_gss_client_wrap(
|
69
69
|
gss_client_state* state, const char* challenge, int challenge_len
|
70
70
|
);
|
71
|
-
void clear_response(gss_client_state* state);
|
71
|
+
void clear_response(gss_client_state* state);
|
data/lib/dse.rb
CHANGED
data/lib/dse/cluster.rb
CHANGED
data/lib/dse/geometry/point.rb
CHANGED
data/lib/dse/geometry/polygon.rb
CHANGED
data/lib/dse/graph.rb
CHANGED
data/lib/dse/graph/duration.rb
CHANGED
data/lib/dse/graph/edge.rb
CHANGED
data/lib/dse/graph/options.rb
CHANGED
data/lib/dse/graph/path.rb
CHANGED
data/lib/dse/graph/result.rb
CHANGED
data/lib/dse/graph/result_set.rb
CHANGED
data/lib/dse/graph/statement.rb
CHANGED
data/lib/dse/graph/vertex.rb
CHANGED
data/lib/dse/session.rb
CHANGED
data/lib/dse/statements.rb
CHANGED
data/lib/dse/util.rb
CHANGED
data/lib/dse/version.rb
CHANGED
@@ -1,12 +1,12 @@
|
|
1
1
|
# encoding: utf-8
|
2
2
|
|
3
3
|
#--
|
4
|
-
# Copyright (C)
|
4
|
+
# Copyright (C) 2017 DataStax Inc.
|
5
5
|
#
|
6
6
|
# This software can be used solely with DataStax Enterprise. Please consult the license at
|
7
7
|
# http://www.datastax.com/terms/datastax-dse-driver-license-terms
|
8
8
|
#++
|
9
9
|
|
10
10
|
module Dse
|
11
|
-
VERSION = '2.
|
11
|
+
VERSION = '2.1.0'.freeze
|
12
12
|
end
|
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: dse-driver
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.
|
4
|
+
version: 2.1.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Sandeep Tamhankar
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date:
|
11
|
+
date: 2017-05-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: cassandra-driver
|
@@ -16,14 +16,14 @@ dependencies:
|
|
16
16
|
requirements:
|
17
17
|
- - '='
|
18
18
|
- !ruby/object:Gem::Version
|
19
|
-
version: 3.
|
19
|
+
version: 3.2.0
|
20
20
|
type: :runtime
|
21
21
|
prerelease: false
|
22
22
|
version_requirements: !ruby/object:Gem::Requirement
|
23
23
|
requirements:
|
24
24
|
- - '='
|
25
25
|
- !ruby/object:Gem::Version
|
26
|
-
version: 3.
|
26
|
+
version: 3.2.0
|
27
27
|
- !ruby/object:Gem::Dependency
|
28
28
|
name: bundler
|
29
29
|
requirement: !ruby/object:Gem::Requirement
|