datasift 3.6.0 → 3.6.1
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/CHANGELOG.md +5 -1
- data/VERSION +1 -1
- data/lib/api/api_resource.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA1:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c8f986a3417e54c81bc7dc41877fa5f311a19db6
|
|
4
|
+
data.tar.gz: 89e893af5a7fefae34e9951ed948d1a0ae71d94b
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: d439fd0eb7416b7bb2c8f6adebde7342161c0d65d6ff2e0a0b8a666250b6954f65dd3375868fa035120e6c0961692eae98a3d869b7f80a06a762080969cb55a5
|
|
7
|
+
data.tar.gz: a7dea7f0e79f1c31e3703006d65bd2eced6a355e8eccbcfc5d0c27bbc525db82138855d6b4ad273bd396c463e672dc2cf3f4013ca2de3eb9a4f727e19b49cf09
|
data/CHANGELOG.md
CHANGED
|
@@ -7,7 +7,11 @@ CHANGELOG
|
|
|
7
7
|
* Designed to make the most of DataSift's latest API version and features
|
|
8
8
|
* Designed for Ruby 2.3+. Use features like keyword parameters across the board
|
|
9
9
|
|
|
10
|
-
## v.3.6.
|
|
10
|
+
## v.3.6.1 (2016-03-08)
|
|
11
|
+
### Fixed
|
|
12
|
+
* Use API v1.3 by default
|
|
13
|
+
|
|
14
|
+
## v.3.6.0 (2016-03-08)
|
|
11
15
|
### Added
|
|
12
16
|
* Support for the [/pylon/update](dev.datasift.com/pylon/docs/api/pylon-api-endpoints/pylonupdate) API endpoint
|
|
13
17
|
* Support for [API v1.3](http://dev.datasift.com/docs/api/api-changelog)
|
data/VERSION
CHANGED
|
@@ -1 +1 @@
|
|
|
1
|
-
3.6.
|
|
1
|
+
3.6.1
|
data/lib/api/api_resource.rb
CHANGED
|
@@ -14,7 +14,7 @@ module DataSift
|
|
|
14
14
|
config[:api_host] = 'api.datasift.com' unless config.has_key?(:api_host)
|
|
15
15
|
config[:stream_host] = 'websocket.datasift.com' unless config.has_key?(:stream_host)
|
|
16
16
|
config[:ingestion_host] = 'in.datasift.com' unless config.has_key?(:ingestion_host)
|
|
17
|
-
config[:api_version] = 'v1.
|
|
17
|
+
config[:api_version] = 'v1.3' unless config.has_key?(:api_version)
|
|
18
18
|
config[:enable_ssl] = true unless config.has_key?(:enable_ssl)
|
|
19
19
|
|
|
20
20
|
ssl_default = TLSv1_2
|