Skip to content

Commit bbba6f4

Browse files
PubNub SDK v6.1.1 release.
1 parent ab602cf commit bbba6f4

5 files changed

Lines changed: 24 additions & 7 deletions

File tree

.pubnub.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,15 @@
11
---
2-
version: "6.1.0"
2+
version: "6.1.1"
33
changelog:
4+
- date: 2026-07-21
5+
version: v6.1.1
6+
changes:
7+
- type: bug
8+
text: "`Pubnub::Cbor` now enforces a recursion-depth cap, a per-container length cap, and a total input size cap. Malformed or attacker-crafted tokens reaching `Pubnub::Client#parse_token` raise `Pubnub::Cbor::DecodeError` instead of hanging the caller or triggering `SystemStackError`."
9+
- type: bug
10+
text: "`Pubnub::Constants::DEFAULT_SSL` flipped from `false` to `true`. Integrators must now opt out explicitly to send traffic in cleartext."
11+
- type: bug
12+
text: "The Requested URI debug entry in `Pubnub::Event#uri` now masks the `signature` and `pnsig` query parameter values, per the SDK log practices ADR. `auth` and `token` remain visible at DEBUG since they are permitted URL parameters."
413
- date: 2026-06-15
514
version: v6.1.0
615
changes:
@@ -647,7 +656,7 @@ sdks:
647656
- x86-64
648657
- distribution-type: package
649658
distribution-repository: RubyGems
650-
package-name: pubnub-6.1.0.gem
659+
package-name: pubnub-6.1.1.gem
651660
location: https://rubygems.org/gems/pubnub
652661
requires:
653662
- name: addressable
@@ -752,8 +761,8 @@ sdks:
752761
- x86-64
753762
- distribution-type: library
754763
distribution-repository: GitHub release
755-
package-name: pubnub-6.1.0.gem
756-
location: https://github.com/pubnub/ruby/releases/download/v6.1.0/pubnub-6.1.0.gem
764+
package-name: pubnub-6.1.1.gem
765+
location: https://github.com/pubnub/ruby/releases/download/v6.1.1/pubnub-6.1.1.gem
757766
requires:
758767
- name: addressable
759768
min-version: 2.0.0

CHANGELOG.md

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,11 @@
1+
## v6.1.1
2+
July 21 2026
3+
4+
#### Fixed
5+
- `Pubnub::Cbor` now enforces a recursion-depth cap, a per-container length cap, and a total input size cap. Malformed or attacker-crafted tokens reaching `Pubnub::Client#parse_token` raise `Pubnub::Cbor::DecodeError` instead of hanging the caller or triggering `SystemStackError`.
6+
- `Pubnub::Constants::DEFAULT_SSL` flipped from `false` to `true`. Integrators must now opt out explicitly to send traffic in cleartext.
7+
- The Requested URI debug entry in `Pubnub::Event#uri` now masks the `signature` and `pnsig` query parameter values, per the SDK log practices ADR. `auth` and `token` remain visible at DEBUG since they are permitted URL parameters.
8+
19
## v6.1.0
210
June 15 2026
311

Gemfile.lock

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
PATH
22
remote: .
33
specs:
4-
pubnub (6.1.0)
4+
pubnub (6.1.1)
55
addressable (>= 2.0.0)
66
base64
77
concurrent-ruby (~> 1.3.4)

VERSION

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
6.1.0
1+
6.1.1

lib/pubnub/version.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
# Toplevel Pubnub module.
22
module Pubnub
3-
VERSION = '6.1.0'.freeze
3+
VERSION = '6.1.1'.freeze
44
end

0 commit comments

Comments
 (0)