pubnub 5.3.3 → 5.3.5

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 15cb7d26bab18d7fe5f9aeec8721e63272b243dd6813132c972ab4af50da8acd
4
- data.tar.gz: b1dd294bebc11347ddc48b0489a393549c9e158b1d189cabe6d1f1d823cc6e58
3
+ metadata.gz: 86c7cc7a030addfbffc036f0aad24012009e7299a2dd7b64dcf6555db3967516
4
+ data.tar.gz: 527ccc89a82801ab418c32907fc4df3333f3605794b3124445aafa647864275a
5
5
  SHA512:
6
- metadata.gz: cba51f7ae0a00ee33cca96c635a62894e819c1ceb80fef4052bd97ce18bf5659cd1a2cbcc6e806b9a97af26a510562538270ed2bf78c17c77986feb03c5d3bcb
7
- data.tar.gz: 84c55cfc9fed8c89f14dfce823ceef627971fc494c572115c4f4ebc1bfcc0330120114c3ae1f27a87cb6e7ce7040c3da30619681b7209fd0767bc10c2fde231c
6
+ metadata.gz: fca94c169ea327386f48164e7806bac20233da3b8f51d5ff3fcad61acb34dde0c5bec7f074ea0bf9ed72cc33d38b4170e0ad48607d4954ab71981f70365e440a
7
+ data.tar.gz: f87ff02c1bca1d1b9cb82be21f159a0af5540237acebef2b36bf034e96f8f083568e262d81964cca5012c5b84f3c4d50aedabc18e997f0f42ebb5672fb5f1990
@@ -11,11 +11,12 @@ jobs:
11
11
  process:
12
12
  name: Process command
13
13
  if: github.event.issue.pull_request && endsWith(github.repository, '-private') != true
14
- runs-on: ubuntu-latest
14
+ runs-on:
15
+ group: Default
15
16
  steps:
16
17
  - name: Check referred user
17
18
  id: user-check
18
- env:
19
+ env:
19
20
  CLEN_BOT: ${{ secrets.CLEN_BOT }}
20
21
  run: echo "expected-user=${{ startsWith(github.event.comment.body, format('@{0} ', env.CLEN_BOT)) }}" >> $GITHUB_OUTPUT
21
22
  - name: Regular comment
@@ -23,12 +24,12 @@ jobs:
23
24
  run: echo -e "\033[38;2;19;181;255mThis is regular commit which should be ignored.\033[0m"
24
25
  - name: Checkout repository
25
26
  if: steps.user-check.outputs.expected-user == 'true'
26
- uses: actions/checkout@v3
27
+ uses: actions/checkout@v4
27
28
  with:
28
- token: ${{ secrets.GH_TOKEN }}
29
+ token: ${{ secrets.GH_TOKEN }}
29
30
  - name: Checkout release actions
30
31
  if: steps.user-check.outputs.expected-user == 'true'
31
- uses: actions/checkout@v3
32
+ uses: actions/checkout@v4
32
33
  with:
33
34
  repository: pubnub/client-engineering-deployment-tools
34
35
  ref: v1
@@ -40,4 +41,4 @@ jobs:
40
41
  with:
41
42
  token: ${{ secrets.GH_TOKEN }}
42
43
  listener: ${{ secrets.CLEN_BOT }}
43
- jira-api-key: ${{ secrets.JIRA_API_KEY }}
44
+ jira-api-key: ${{ secrets.JIRA_API_KEY }}
@@ -2,20 +2,20 @@ name: Automated product release
2
2
 
3
3
  on:
4
4
  pull_request:
5
- branches: [ master ]
6
- types: [ closed ]
7
-
5
+ branches: [master]
6
+ types: [closed]
8
7
 
9
8
  jobs:
10
9
  check-release:
11
10
  name: Check release required
12
- runs-on: ubuntu-latest
13
11
  if: ${{ github.event.pull_request.merged && endsWith(github.repository, '-private') != true }}
12
+ runs-on:
13
+ group: Default
14
14
  outputs:
15
15
  release: ${{ steps.check.outputs.ready }}
16
16
  steps:
17
17
  - name: Checkout actions
18
- uses: actions/checkout@v2
18
+ uses: actions/checkout@v4
19
19
  with:
20
20
  repository: pubnub/client-engineering-deployment-tools
21
21
  ref: v1
@@ -28,17 +28,18 @@ jobs:
28
28
  token: ${{ secrets.GH_TOKEN }}
29
29
  publish:
30
30
  name: Publish package
31
- runs-on: ubuntu-latest
32
31
  needs: check-release
33
32
  if: ${{ needs.check-release.outputs.release == 'true' }}
33
+ runs-on:
34
+ group: Default
34
35
  steps:
35
36
  - name: Checkout repository
36
- uses: actions/checkout@v3
37
+ uses: actions/checkout@v4
37
38
  with:
38
39
  # This should be the same as the one specified for on.pull_request.branches
39
40
  ref: master
40
41
  - name: Checkout actions
41
- uses: actions/checkout@v3
42
+ uses: actions/checkout@v4
42
43
  with:
43
44
  repository: pubnub/client-engineering-deployment-tools
44
45
  ref: v1
@@ -9,25 +9,31 @@ concurrency:
9
9
  defaults:
10
10
  run:
11
11
  shell: bash
12
-
12
+ env:
13
+ SDK_PAM_SUB_KEY: ${{ secrets.SDK_PAM_SUB_KEY }}
14
+ SDK_PAM_PUB_KEY: ${{ secrets.SDK_PAM_PUB_KEY }}
15
+ SDK_PAM_SEC_KEY: ${{ secrets.SDK_PAM_SEC_KEY }}
16
+ SDK_SUB_KEY: ${{ secrets.SDK_SUB_KEY }}
17
+ SDK_PUB_KEY: ${{ secrets.SDK_PUB_KEY }}
13
18
 
14
19
  jobs:
15
20
  tests:
16
21
  name: Integration and Unit tests
17
- runs-on: ubuntu-latest
22
+ runs-on:
23
+ group: Default
18
24
  env:
19
25
  NO_COVERAGE: true
20
26
  strategy:
21
27
  fail-fast: true
22
28
  matrix:
23
- ruby: [ 3.0.6, 3.1.4, 3.2.3 ]
29
+ ruby: [3.0.6, 3.1.4, 3.2.3]
24
30
  steps:
25
31
  - name: Checkout repository
26
- uses: actions/checkout@v3
32
+ uses: actions/checkout@v4
27
33
  with:
28
34
  token: ${{ secrets.GH_TOKEN }}
29
35
  - name: Checkout actions
30
- uses: actions/checkout@v3
36
+ uses: actions/checkout@v4
31
37
  with:
32
38
  repository: pubnub/client-engineering-deployment-tools
33
39
  ref: v1
@@ -45,12 +51,13 @@ jobs:
45
51
  uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
46
52
  acceptance-tests:
47
53
  name: Acceptance tests
48
- runs-on: ubuntu-latest
54
+ runs-on:
55
+ group: Default
49
56
  steps:
50
57
  - name: Checkout project
51
- uses: actions/checkout@v3
58
+ uses: actions/checkout@v4
52
59
  - name: Checkout mock-server action
53
- uses: actions/checkout@v3
60
+ uses: actions/checkout@v4
54
61
  with:
55
62
  repository: pubnub/client-engineering-deployment-tools
56
63
  ref: v1
@@ -90,8 +97,9 @@ jobs:
90
97
  uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
91
98
  all-tests:
92
99
  name: Tests
93
- runs-on: ubuntu-latest
94
- needs: [ tests, acceptance-tests ]
100
+ needs: [tests, acceptance-tests]
101
+ runs-on:
102
+ group: Default
95
103
  steps:
96
104
  - name: Tests summary
97
- run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed"
105
+ run: echo -e "\033[38;2;95;215;0m\033[1mAll tests successfully passed"
@@ -5,12 +5,13 @@ on: [push]
5
5
  jobs:
6
6
  pubnub-yml:
7
7
  name: "Validate .pubnub.yml"
8
- runs-on: ubuntu-latest
8
+ runs-on:
9
+ group: Default
9
10
  steps:
10
11
  - name: Checkout project
11
- uses: actions/checkout@v3
12
+ uses: actions/checkout@v4
12
13
  - name: Checkout validator action
13
- uses: actions/checkout@v3
14
+ uses: actions/checkout@v4
14
15
  with:
15
16
  repository: pubnub/client-engineering-deployment-tools
16
17
  ref: v1
@@ -24,9 +25,10 @@ jobs:
24
25
  if: failure()
25
26
  uses: ./.github/.release/actions/actions/utils/fast-jobs-failure
26
27
  all-validations:
27
- name: Validations
28
- runs-on: ubuntu-latest
29
- needs: [pubnub-yml]
30
- steps:
31
- - name: Validations summary
32
- run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"
28
+ name: Validations
29
+ needs: [pubnub-yml]
30
+ runs-on:
31
+ group: Default
32
+ steps:
33
+ - name: Validations summary
34
+ run: echo -e "\033[38;2;95;215;0m\033[1mAll validations passed"
data/.pubnub.yml CHANGED
@@ -1,6 +1,16 @@
1
1
  ---
2
- version: "5.3.3"
2
+ version: "5.3.5"
3
3
  changelog:
4
+ - date: 2024-10-09
5
+ version: v5.3.5
6
+ changes:
7
+ - type: improvement
8
+ text: "Updated direct and transient dependency versions."
9
+ - date: 2024-04-29
10
+ version: v5.3.4
11
+ changes:
12
+ - type: bug
13
+ text: "Fix issue because of which client didn't encode App Context get all event `filter` query value."
4
14
  - date: 2024-01-29
5
15
  version: v5.3.3
6
16
  changes:
@@ -571,7 +581,7 @@ sdks:
571
581
  - x86-64
572
582
  - distribution-type: package
573
583
  distribution-repository: RubyGems
574
- package-name: pubnub-5.3.3.gem
584
+ package-name: pubnub-5.3.5.gem
575
585
  location: https://rubygems.org/gems/pubnub
576
586
  requires:
577
587
  - name: addressable
@@ -676,8 +686,8 @@ sdks:
676
686
  - x86-64
677
687
  - distribution-type: library
678
688
  distribution-repository: GitHub release
679
- package-name: pubnub-5.3.3.gem
680
- location: https://github.com/pubnub/ruby/releases/download/v5.3.3/pubnub-5.3.3.gem
689
+ package-name: pubnub-5.3.5.gem
690
+ location: https://github.com/pubnub/ruby/releases/download/v5.3.5/pubnub-5.3.5.gem
681
691
  requires:
682
692
  - name: addressable
683
693
  min-version: 2.0.0
data/CHANGELOG.md CHANGED
@@ -1,3 +1,15 @@
1
+ ## v5.3.5
2
+ October 09 2024
3
+
4
+ #### Modified
5
+ - Updated direct and transient dependency versions. Fixed the following issues reported by [@pboling](https://github.com/pboling): [#158](https://github.com/pubnub/ruby/issues/158).
6
+
7
+ ## v5.3.4
8
+ April 29 2024
9
+
10
+ #### Fixed
11
+ - Fix issue because of which client didn't encode App Context get all event `filter` query value.
12
+
1
13
  ## v5.3.3
2
14
  January 29 2024
3
15
 
data/Gemfile.lock CHANGED
@@ -1,10 +1,10 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- pubnub (5.3.3)
4
+ pubnub (5.3.5)
5
5
  addressable (>= 2.0.0)
6
- concurrent-ruby (~> 1.1.5)
7
- concurrent-ruby-edge (~> 0.5.0)
6
+ concurrent-ruby (~> 1.3.4)
7
+ concurrent-ruby-edge (~> 0.7.1)
8
8
  dry-validation (~> 1.0)
9
9
  httpclient (~> 2.8, >= 2.8.3)
10
10
  json (>= 2.2.0, < 3)
@@ -13,62 +13,65 @@ PATH
13
13
  GEM
14
14
  remote: https://rubygems.org/
15
15
  specs:
16
- addressable (2.8.6)
17
- public_suffix (>= 2.0.2, < 6.0)
16
+ addressable (2.8.7)
17
+ public_suffix (>= 2.0.2, < 7.0)
18
18
  ast (2.4.2)
19
19
  awesome_print (1.9.2)
20
- bigdecimal (3.1.6)
21
- binding_of_caller (1.0.0)
22
- debug_inspector (>= 0.0.1)
23
- builder (3.2.4)
20
+ base64 (0.2.0)
21
+ bigdecimal (3.1.8)
22
+ binding_of_caller (1.0.1)
23
+ debug_inspector (>= 1.2.0)
24
+ builder (3.3.0)
24
25
  codacy-coverage (2.2.1)
25
26
  simplecov
26
27
  coderay (1.1.3)
27
- concurrent-ruby (1.1.10)
28
- concurrent-ruby-edge (0.5.0)
29
- concurrent-ruby (~> 1.1.5)
30
- crack (0.4.5)
28
+ concurrent-ruby (1.3.4)
29
+ concurrent-ruby-edge (0.7.1)
30
+ concurrent-ruby (~> 1.3)
31
+ crack (1.0.0)
32
+ bigdecimal
31
33
  rexml
32
- cucumber (9.1.2)
33
- builder (~> 3.2, >= 3.2.4)
34
- cucumber-ci-environment (~> 9.2, >= 9.2.0)
35
- cucumber-core (~> 12.0)
34
+ cucumber (9.2.0)
35
+ builder (~> 3.2)
36
+ cucumber-ci-environment (> 9, < 11)
37
+ cucumber-core (> 13, < 14)
36
38
  cucumber-cucumber-expressions (~> 17.0)
37
- cucumber-gherkin (> 24, < 27)
39
+ cucumber-gherkin (> 24, < 28)
38
40
  cucumber-html-formatter (> 20.3, < 22)
39
41
  cucumber-messages (> 19, < 25)
40
42
  diff-lcs (~> 1.5)
41
- mini_mime (~> 1.1, >= 1.1.5)
42
- multi_test (~> 1.1, >= 1.1.0)
43
- sys-uname (~> 1.2, >= 1.2.3)
44
- cucumber-ci-environment (9.2.0)
45
- cucumber-core (12.0.0)
46
- cucumber-gherkin (>= 25, < 27)
43
+ mini_mime (~> 1.1)
44
+ multi_test (~> 1.1)
45
+ sys-uname (~> 1.2)
46
+ cucumber-ci-environment (10.0.1)
47
+ cucumber-core (13.0.3)
48
+ cucumber-gherkin (>= 27, < 28)
47
49
  cucumber-messages (>= 20, < 23)
48
- cucumber-tag-expressions (~> 5.0, >= 5.0.4)
49
- cucumber-cucumber-expressions (17.0.1)
50
- cucumber-gherkin (26.2.0)
51
- cucumber-messages (>= 19.1.4, < 22.1)
52
- cucumber-html-formatter (21.2.0)
53
- cucumber-messages (> 19, < 25)
50
+ cucumber-tag-expressions (> 5, < 7)
51
+ cucumber-cucumber-expressions (17.1.0)
52
+ bigdecimal
53
+ cucumber-gherkin (27.0.0)
54
+ cucumber-messages (>= 19.1.4, < 23)
55
+ cucumber-html-formatter (21.7.0)
56
+ cucumber-messages (> 19, < 27)
54
57
  cucumber-messages (22.0.0)
55
- cucumber-tag-expressions (5.0.6)
58
+ cucumber-tag-expressions (6.1.0)
56
59
  debug_inspector (1.2.0)
57
- diff-lcs (1.5.0)
58
- docile (1.4.0)
59
- dry-configurable (1.1.0)
60
+ diff-lcs (1.5.1)
61
+ docile (1.4.1)
62
+ dry-configurable (1.2.0)
60
63
  dry-core (~> 1.0, < 2)
61
64
  zeitwerk (~> 2.6)
62
65
  dry-core (1.0.1)
63
66
  concurrent-ruby (~> 1.0)
64
67
  zeitwerk (~> 2.6)
65
- dry-inflector (1.0.0)
68
+ dry-inflector (1.1.0)
66
69
  dry-initializer (3.1.1)
67
70
  dry-logic (1.5.0)
68
71
  concurrent-ruby (~> 1.0)
69
72
  dry-core (~> 1.0, < 2)
70
73
  zeitwerk (~> 2.6)
71
- dry-schema (1.13.3)
74
+ dry-schema (1.13.4)
72
75
  concurrent-ruby (~> 1.0)
73
76
  dry-configurable (~> 1.0, >= 1.0.1)
74
77
  dry-core (~> 1.0, < 2)
@@ -89,17 +92,17 @@ GEM
89
92
  dry-initializer (~> 3.0)
90
93
  dry-schema (>= 1.12, < 2)
91
94
  zeitwerk (~> 2.6)
92
- ffi (1.16.3)
93
- hashdiff (1.1.0)
95
+ ffi (1.17.0)
96
+ hashdiff (1.1.1)
94
97
  httpclient (2.8.3)
95
98
  interception (0.5)
96
- json (2.7.1)
99
+ json (2.7.2)
97
100
  language_server-protocol (3.17.0.3)
98
- method_source (1.0.0)
101
+ method_source (1.1.0)
99
102
  mini_mime (1.1.5)
100
103
  multi_test (1.1.0)
101
- parallel (1.24.0)
102
- parser (3.3.0.5)
104
+ parallel (1.26.3)
105
+ parser (3.3.5.0)
103
106
  ast (~> 2.4.1)
104
107
  racc
105
108
  pry (0.14.2)
@@ -111,57 +114,57 @@ GEM
111
114
  pry-stack_explorer (0.6.1)
112
115
  binding_of_caller (~> 1.0)
113
116
  pry (~> 0.13)
114
- public_suffix (5.0.4)
115
- racc (1.7.3)
117
+ public_suffix (6.0.1)
118
+ racc (1.8.1)
116
119
  rainbow (3.1.1)
117
- regexp_parser (2.9.0)
118
- rexml (3.2.6)
119
- rr (3.1.0)
120
- rspec (3.12.0)
121
- rspec-core (~> 3.12.0)
122
- rspec-expectations (~> 3.12.0)
123
- rspec-mocks (~> 3.12.0)
124
- rspec-core (3.12.2)
125
- rspec-support (~> 3.12.0)
126
- rspec-expectations (3.12.3)
120
+ regexp_parser (2.9.2)
121
+ rexml (3.3.8)
122
+ rr (3.1.1)
123
+ rspec (3.13.0)
124
+ rspec-core (~> 3.13.0)
125
+ rspec-expectations (~> 3.13.0)
126
+ rspec-mocks (~> 3.13.0)
127
+ rspec-core (3.13.1)
128
+ rspec-support (~> 3.13.0)
129
+ rspec-expectations (3.13.3)
127
130
  diff-lcs (>= 1.2.0, < 2.0)
128
- rspec-support (~> 3.12.0)
129
- rspec-mocks (3.12.6)
131
+ rspec-support (~> 3.13.0)
132
+ rspec-mocks (3.13.2)
130
133
  diff-lcs (>= 1.2.0, < 2.0)
131
- rspec-support (~> 3.12.0)
134
+ rspec-support (~> 3.13.0)
132
135
  rspec-retry (0.6.2)
133
136
  rspec-core (> 3.3)
134
- rspec-support (3.12.1)
135
- rubocop (1.60.2)
137
+ rspec-support (3.13.1)
138
+ rubocop (1.66.1)
136
139
  json (~> 2.3)
137
140
  language_server-protocol (>= 3.17.0)
138
141
  parallel (~> 1.10)
139
142
  parser (>= 3.3.0.2)
140
143
  rainbow (>= 2.2.2, < 4.0)
141
- regexp_parser (>= 1.8, < 3.0)
142
- rexml (>= 3.2.5, < 4.0)
143
- rubocop-ast (>= 1.30.0, < 2.0)
144
+ regexp_parser (>= 2.4, < 3.0)
145
+ rubocop-ast (>= 1.32.2, < 2.0)
144
146
  ruby-progressbar (~> 1.7)
145
147
  unicode-display_width (>= 2.4.0, < 3.0)
146
- rubocop-ast (1.30.0)
147
- parser (>= 3.2.1.0)
148
+ rubocop-ast (1.32.3)
149
+ parser (>= 3.3.1.0)
148
150
  ruby-progressbar (1.13.0)
149
151
  simplecov (0.22.0)
150
152
  docile (~> 1.1)
151
153
  simplecov-html (~> 0.11)
152
154
  simplecov_json_formatter (~> 0.1)
153
- simplecov-html (0.12.3)
155
+ simplecov-html (0.13.1)
154
156
  simplecov_json_formatter (0.1.4)
155
- sys-uname (1.2.3)
157
+ sys-uname (1.3.0)
156
158
  ffi (~> 1.1)
157
159
  timers (4.3.5)
158
- unicode-display_width (2.5.0)
159
- vcr (6.2.0)
160
- webmock (3.19.1)
160
+ unicode-display_width (2.6.0)
161
+ vcr (6.3.1)
162
+ base64
163
+ webmock (3.24.0)
161
164
  addressable (>= 2.8.0)
162
165
  crack (>= 0.3.2)
163
166
  hashdiff (>= 0.4.0, < 2.0.0)
164
- zeitwerk (2.6.12)
167
+ zeitwerk (2.6.18)
165
168
 
166
169
  PLATFORMS
167
170
  ruby
data/VERSION CHANGED
@@ -1 +1 @@
1
- 5.3.3
1
+ 5.3.5
@@ -39,12 +39,13 @@ module Pubnub
39
39
 
40
40
  def variables_for_signature
41
41
  unsorted_params = parameters(true)
42
- sorted_keys = unsorted_params.sort_by {|k, v| k.to_s}
42
+ sorted_keys = unsorted_params.sort_by { |k, v| k.to_s }
43
43
  sorted_keys.map do |k, v|
44
- if %w[meta ortt].include?(k.to_s)
45
- encoded_value = URI.encode_www_form_component(v.to_json).gsub('+', '%20')
44
+ if %w[meta ortt filter].include?(k.to_s)
45
+ value_for_encoding = v.is_a?(String) ? v : v.to_json
46
+ encoded_value = URI.encode_www_form_component(value_for_encoding).gsub('+', '%20')
46
47
  "#{k}=#{encoded_value}"
47
- elsif %w[t state filter-expr sort filter].include?(k.to_s)
48
+ elsif %w[t state filter-expr sort].include?(k.to_s)
48
49
  "#{k}=#{v}"
49
50
  else
50
51
  "#{k}=#{URI.encode_www_form_component(v.to_s).gsub('+', '%20')}"
@@ -118,10 +118,11 @@ module Pubnub
118
118
  def params_hash_to_url_params(hash)
119
119
  params = ''
120
120
  hash.sort_by { |k, _v| k.to_s }.to_h.each do |key, value|
121
- if %w[meta ortt].include?(key.to_s)
122
- encoded_value = URI.encode_www_form_component(value.to_json).gsub('+', '%20')
121
+ if %w[meta ortt filter].include?(key.to_s)
122
+ value_for_encoding = value.is_a?(String) ? value : value.to_json
123
+ encoded_value = URI.encode_www_form_component(value_for_encoding).gsub('+', '%20')
123
124
  params << "#{key}=#{encoded_value}&"
124
- elsif %w[t state filter filter-expr].include?(key.to_s)
125
+ elsif %w[t state filter-expr].include?(key.to_s)
125
126
  params << "#{key}=#{value}&"
126
127
  else
127
128
  params << "#{key}=#{URI.encode_www_form_component(value).gsub('+', '%20')}&"
@@ -1,4 +1,4 @@
1
1
  # Toplevel Pubnub module.
2
2
  module Pubnub
3
- VERSION = '5.3.3'.freeze
3
+ VERSION = '5.3.5'.freeze
4
4
  end
data/pubnub.gemspec CHANGED
@@ -19,8 +19,8 @@ Gem::Specification.new do |spec|
19
19
  spec.required_ruby_version = '>= 3.0.0'
20
20
 
21
21
  spec.add_dependency 'addressable', '>= 2.0.0'
22
- spec.add_dependency 'concurrent-ruby', '~> 1.1.5'
23
- spec.add_dependency 'concurrent-ruby-edge', '~> 0.5.0'
22
+ spec.add_dependency 'concurrent-ruby', '~> 1.3.4'
23
+ spec.add_dependency 'concurrent-ruby-edge', '~> 0.7.1'
24
24
  spec.add_dependency 'dry-validation', '~> 1.0'
25
25
  spec.add_dependency 'httpclient', '~> 2.8', '>= 2.8.3'
26
26
  spec.add_dependency 'json', '>= 2.2.0', '< 3'
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.3.3
4
+ version: 5.3.5
5
5
  platform: ruby
6
6
  authors:
7
7
  - PubNub
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2024-01-29 00:00:00.000000000 Z
11
+ date: 2024-10-09 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: addressable
@@ -30,28 +30,28 @@ dependencies:
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.1.5
33
+ version: 1.3.4
34
34
  type: :runtime
35
35
  prerelease: false
36
36
  version_requirements: !ruby/object:Gem::Requirement
37
37
  requirements:
38
38
  - - "~>"
39
39
  - !ruby/object:Gem::Version
40
- version: 1.1.5
40
+ version: 1.3.4
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: concurrent-ruby-edge
43
43
  requirement: !ruby/object:Gem::Requirement
44
44
  requirements:
45
45
  - - "~>"
46
46
  - !ruby/object:Gem::Version
47
- version: 0.5.0
47
+ version: 0.7.1
48
48
  type: :runtime
49
49
  prerelease: false
50
50
  version_requirements: !ruby/object:Gem::Requirement
51
51
  requirements:
52
52
  - - "~>"
53
53
  - !ruby/object:Gem::Version
54
- version: 0.5.0
54
+ version: 0.7.1
55
55
  - !ruby/object:Gem::Dependency
56
56
  name: dry-validation
57
57
  requirement: !ruby/object:Gem::Requirement