pubnub 5.5.0 → 5.5.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/.github/CODEOWNERS +2 -2
- data/.github/workflows/run-tests.yml +1 -0
- data/.pubnub.yml +9 -4
- data/CHANGELOG.md +6 -0
- data/Gemfile.lock +1 -1
- data/VERSION +1 -1
- data/lib/pubnub/events/fetch_messages.rb +1 -1
- data/lib/pubnub/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 8d054b29a4bfcfdd5b926e9986e5eece8167eb8af2f1179532188fe13be3e012
|
4
|
+
data.tar.gz: 566fa2a5da4e92f250d858114fc02ab5922faa9114d639876dc4416dde25d1e0
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 3919bb4e27a99c24002066f0dcdfdb10ca2f1adb438084cb7f2dcb899df9a58261b8c9cfc11e259cfd6a8652d05b03d6a147737e8593fed95ccf7c81c40c8446
|
7
|
+
data.tar.gz: 36083fdc199921fe4a2e3bc5ea5ff5eaa388e3d6b8f83500e3a0c4c47e512c9c9cc5845285348321cf0c96018d3aa775cda78eb3e52cfb943fc78ae128f5ff6d
|
data/.github/CODEOWNERS
CHANGED
@@ -1,2 +1,2 @@
|
|
1
|
-
* @parfeon @
|
2
|
-
README.md @techwritermat @kazydek @parfeon @
|
1
|
+
* @parfeon @jguz-pubnub
|
2
|
+
README.md @techwritermat @kazydek @parfeon @jguz-pubnub
|
data/.pubnub.yml
CHANGED
@@ -1,6 +1,11 @@
|
|
1
1
|
---
|
2
|
-
version: "5.5.
|
2
|
+
version: "5.5.1"
|
3
3
|
changelog:
|
4
|
+
- date: 2025-09-08
|
5
|
+
version: v5.5.1
|
6
|
+
changes:
|
7
|
+
- type: bug
|
8
|
+
text: "Fix the issue introduced by RuboCop linter suggestion acceptance, which caused a wrong number of arguments error."
|
4
9
|
- date: 2025-01-28
|
5
10
|
version: v5.5.0
|
6
11
|
changes:
|
@@ -603,7 +608,7 @@ sdks:
|
|
603
608
|
- x86-64
|
604
609
|
- distribution-type: package
|
605
610
|
distribution-repository: RubyGems
|
606
|
-
package-name: pubnub-5.5.
|
611
|
+
package-name: pubnub-5.5.1.gem
|
607
612
|
location: https://rubygems.org/gems/pubnub
|
608
613
|
requires:
|
609
614
|
- name: addressable
|
@@ -708,8 +713,8 @@ sdks:
|
|
708
713
|
- x86-64
|
709
714
|
- distribution-type: library
|
710
715
|
distribution-repository: GitHub release
|
711
|
-
package-name: pubnub-5.5.
|
712
|
-
location: https://github.com/pubnub/ruby/releases/download/v5.5.
|
716
|
+
package-name: pubnub-5.5.1.gem
|
717
|
+
location: https://github.com/pubnub/ruby/releases/download/v5.5.1/pubnub-5.5.1.gem
|
713
718
|
requires:
|
714
719
|
- name: addressable
|
715
720
|
min-version: 2.0.0
|
data/CHANGELOG.md
CHANGED
data/Gemfile.lock
CHANGED
data/VERSION
CHANGED
@@ -1 +1 @@
|
|
1
|
-
5.5.
|
1
|
+
5.5.1
|
@@ -46,7 +46,7 @@ module Pubnub
|
|
46
46
|
@include_message_actions ? Pubnub::Constants::OPERATION_FETCH_MESSAGES_WITH_ACTIONS : Pubnub::Constants::OPERATION_FETCH_MESSAGES
|
47
47
|
end
|
48
48
|
|
49
|
-
def parameters(signature
|
49
|
+
def parameters(signature = false)
|
50
50
|
parameters = super(signature)
|
51
51
|
parameters[:include_meta] = 'true' if @include_meta
|
52
52
|
parameters[:include_uuid] = 'true' if @include_uuid
|
data/lib/pubnub/version.rb
CHANGED
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: 5.5.
|
4
|
+
version: 5.5.1
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- PubNub
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-
|
11
|
+
date: 2025-09-08 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: addressable
|