pubnub 3.6.7 → 3.6.9

Sign up to get free protection for your applications and to get access to all the features.

Potentially problematic release.


This version of pubnub might be problematic. Click here for more details.

checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA1:
3
- metadata.gz: 7e82b13dec635b2feff43fb58315417272f47423
4
- data.tar.gz: 441556a04bd5f8700c72b753c61d1264e2938d28
3
+ metadata.gz: 129da4ca2af9417f9964d5f2730b6b1273b860db
4
+ data.tar.gz: 3d385ff0bbcbb04cf250049a90ed34c9eb84cbdd
5
5
  SHA512:
6
- metadata.gz: a2c7681498fcb0da999db79d21d512b055a81452f5b0a3dc0b0ff9598c7c721f51715ab0958843ec0c5869a69dbafc57ec6397d9fc9d5437d3dc87ac3eeb3873
7
- data.tar.gz: 5d8e97d9be45638f8b00f6f0226eb66877e1594ff63d8ee5a4becc8adfa46b0395c55b7068d44fe13f57a60fecabd4c7bebe92bfcc201583e07c1882cbcc3952
6
+ metadata.gz: 55a1b93f43c5a1d6e8394cf6ca5c1001ee0aca4bb0beb250df7ff121221cb5648e0dbcd53d0f98d275771d873f0334ba81af48c54d5163b26606a297dbdc9c01
7
+ data.tar.gz: 589b847e41ff538ced05e557b0d1f4d6376e9e8cdfeb9615e18a9691684a4923e7ce559ceef93e834d242bfe2662a4f07a9833e5dec85598a7282b23b75840d9
data/CHANGELOG.txt CHANGED
@@ -1,3 +1,9 @@
1
+ 3.6.9 Release
2
+ . Double channel encoding fix
3
+
4
+ 3.6.8 Release
5
+ . Heartbeat fix
6
+
1
7
  3.6.7 Release
2
8
  . Envelopes formatting changes
3
9
 
data/README.md CHANGED
@@ -1,6 +1,6 @@
1
1
  # Please direct all Support Questions and Concerns to Support@PubNub.com
2
2
 
3
- ## PubNub Gem version 3.6.7
3
+ ## PubNub Gem version 3.6.9
4
4
 
5
5
  ##### YOU MUST HAVE A PUBNUB ACCOUNT TO USE THE API.
6
6
  ##### http://www.pubnub.com/account
@@ -17,10 +17,10 @@ We've made the response format compatible across all operations. This may break
17
17
  Examples of affected operations can be found [here](3.5_to_3.6_upgrade_notes.md).
18
18
 
19
19
  ### Upgrading from PubNub 3.3.x and Earlier
20
- PubNub 3.6.7 is NOT compatible with earlier than 3.4 versions of Pubnub Ruby Client.
20
+ PubNub 3.6.9 is NOT compatible with earlier than 3.4 versions of Pubnub Ruby Client.
21
21
 
22
22
  ### Upgrading from PubNub 3.4 and higher versions
23
- PubNub 3.6.7 is compatible with 3.4 version.
23
+ PubNub 3.6.9 is compatible with 3.4 version.
24
24
 
25
25
  ## Important Notice about Blocking vs Non-Blocking Calls
26
26
 
data/lib/pubnub/event.rb CHANGED
@@ -433,7 +433,7 @@ module Pubnub
433
433
  end
434
434
 
435
435
  def path(app)
436
- path = URI.escape("/subscribe/#{@subscribe_key}/#{channels_for_url(@channel)}/0/#{@timetoken}").gsub(/\?/,'%3F')
436
+ path = "/subscribe/#{@subscribe_key}/#{channels_for_url(@channel)}/0/#{@timetoken}".gsub(/\?/,'%3F')
437
437
  end
438
438
 
439
439
  def timetoken(parsed_response)
@@ -33,6 +33,7 @@ module Pubnub
33
33
  def parameters(app)
34
34
  parameters = super(app)
35
35
  parameters.merge!({:state => encode_state(app.env[:state][@origin])}) if app.env[:state] && app.env[:state][@origin]
36
+ parameters.merge!({:heartbeat => app.env[:heartbeat]}) if app.env[:heartbeat]
36
37
  parameters
37
38
  end
38
39
 
@@ -1,3 +1,3 @@
1
1
  module Pubnub
2
- VERSION = '3.6.7'
2
+ VERSION = '3.6.9'
3
3
  end
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: pubnub
3
3
  version: !ruby/object:Gem::Version
4
- version: 3.6.7
4
+ version: 3.6.9
5
5
  platform: ruby
6
6
  authors:
7
7
  - PubNub
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2014-10-20 00:00:00.000000000 Z
11
+ date: 2014-11-05 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: eventmachine