dse-driver 2.0.0-java → 2.1.0-java
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/README.md +15 -4
- data/lib/challenge_evaluator.jar +0 -0
- 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,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 1054d1ba95a60624add0c13ab32dedb1d45c897f
|
|
4
|
+
data.tar.gz: aafcb8cef5335ef2888e704a844e783541754957
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 7bac84e2596dfa0e07863e08cd706d3fcc4b3b7861466a044cc99c0780746ef81cb2d127d49d94bd0ffcbf1ae213f0316b4ed03f53fee0ae494997993264a8a1
|
|
7
|
+
data.tar.gz: 70175441f3665afc9ce4dc0c8a7d155142827bf2b42083743ae9dfdb213978e984f39ff62456007efddfec56e059b95fc421bceb0d26d44df5bced9778fa33af
|
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
|
data/lib/challenge_evaluator.jar
CHANGED
|
Binary file
|
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,21 +1,21 @@
|
|
|
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: java
|
|
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
|
requirement: !ruby/object:Gem::Requirement
|
|
15
15
|
requirements:
|
|
16
16
|
- - '='
|
|
17
17
|
- !ruby/object:Gem::Version
|
|
18
|
-
version: 3.
|
|
18
|
+
version: 3.2.0
|
|
19
19
|
name: cassandra-driver
|
|
20
20
|
prerelease: false
|
|
21
21
|
type: :runtime
|
|
@@ -23,7 +23,7 @@ dependencies:
|
|
|
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
|
requirement: !ruby/object:Gem::Requirement
|
|
29
29
|
requirements:
|