plivo 4.30.0 → 4.30.1

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
  SHA1:
3
- metadata.gz: e9dc7434e8982f184b0e1896144431f32fc82a1e
4
- data.tar.gz: 975f64c13a825a1aba8558b821fb2032557648a5
3
+ metadata.gz: df70128a07a0430abad9476ef3c28a3930d0dc99
4
+ data.tar.gz: 84b5800642445b7c44959917d3e42f69329f0223
5
5
  SHA512:
6
- metadata.gz: 24a3cb5257654ae4e8c200cec5ac0291fa407fe669832887258f4e06a7bf9f6715549c4ec0c59f058d6ed9c47d49a387019eae8ee23642725204a54f82bee039
7
- data.tar.gz: 65c9323280aa2390745ee00d16e0505ee82802896d3d8fb4b0ef81f8e8d44d6ccf602fb133c8cdc8cf2e588177c02359b5a57fa755ddf9e1e40f768948cc8e06
6
+ metadata.gz: fa6f07a105ca3ef10f022ceda259119c13fde1673bc5e8e8229240cb86f82cd5c343c89c311d59554562049be034091c8c0325ddffee812e65877b07a9e28a7f
7
+ data.tar.gz: e6b8a56daa10be1973c9487083a77bd99cbaf8a5e227ac7e19ce794b0b53057c3797923f23795e2d891c6da424e8d1b4b9ddcc2c24931313042a42507e2002e9
data/CHANGELOG.md CHANGED
@@ -1,5 +1,9 @@
1
1
  # Change Log
2
2
 
3
+ ## [4.30.1](https://github.com/plivo/plivo-go/tree/v4.30.1) (2022-09-20)
4
+ **stability - faraday upgrade**
5
+ - faraday version upgrade
6
+
3
7
  ## [4.30.0](https://github.com/plivo/plivo-go/tree/v4.30.0) (2022-08-26)
4
8
  **Feature - 10DLC APIs**
5
9
  - Added new 10DLC APIs
data/README.md CHANGED
@@ -9,7 +9,7 @@ The Plivo Ruby SDK makes it simpler to integrate communications into your Ruby a
9
9
  Add this line to your application's Gemfile:
10
10
 
11
11
  ```ruby
12
- gem 'plivo', '>= 4.30.0'
12
+ gem 'plivo', '>= 4.30.1'
13
13
  ```
14
14
 
15
15
  And then execute:
@@ -137,7 +137,7 @@ module Plivo
137
137
  # DANGER: Basic auth should always come after headers, else
138
138
  # The headers will replace the basic_auth
139
139
 
140
- faraday.basic_auth(auth_id, auth_token)
140
+ faraday.request(:basic_auth, auth_id, auth_token)
141
141
 
142
142
  faraday.proxy=@proxy_hash if @proxy_hash
143
143
  faraday.response :json, content_type: /\bjson$/
@@ -150,7 +150,7 @@ module Plivo
150
150
  # DANGER: Basic auth should always come after headers, else
151
151
  # The headers will replace the basic_auth
152
152
 
153
- faraday.basic_auth(auth_id, auth_token)
153
+ faraday.request(:basic_auth, auth_id, auth_token)
154
154
 
155
155
  faraday.proxy=@proxy_hash if @proxy_hash
156
156
  faraday.response :json, content_type: /\bjson$/
@@ -163,7 +163,7 @@ module Plivo
163
163
  # DANGER: Basic auth should always come after headers, else
164
164
  # The headers will replace the basic_auth
165
165
 
166
- faraday.basic_auth(auth_id, auth_token)
166
+ faraday.request(:basic_auth, auth_id, auth_token)
167
167
 
168
168
  faraday.proxy=@proxy_hash if @proxy_hash
169
169
  faraday.response :json, content_type: /\bjson$/
@@ -176,7 +176,7 @@ module Plivo
176
176
  # DANGER: Basic auth should always come after headers, else
177
177
  # The headers will replace the basic_auth
178
178
 
179
- faraday.basic_auth(auth_id, auth_token)
179
+ faraday.request(:basic_auth, auth_id, auth_token)
180
180
 
181
181
  faraday.proxy=@proxy_hash if @proxy_hash
182
182
  faraday.response :json, content_type: /\bjson$/
@@ -189,7 +189,7 @@ module Plivo
189
189
  # DANGER: Basic auth should always come after headers, else
190
190
  # The headers will replace the basic_auth
191
191
 
192
- faraday.basic_auth(auth_id, auth_token)
192
+ faraday.request(:basic_auth, auth_id, auth_token)
193
193
 
194
194
  faraday.proxy=@proxy_hash if @proxy_hash
195
195
  faraday.response :json, content_type: /\bjson$/
@@ -202,7 +202,7 @@ module Plivo
202
202
  # DANGER: Basic auth should always come after headers, else
203
203
  # The headers will replace the basic_auth
204
204
 
205
- faraday.basic_auth(auth_id, auth_token)
205
+ faraday.request(:basic_auth, auth_id, auth_token)
206
206
 
207
207
  faraday.proxy=@proxy_hash if @proxy_hash
208
208
  faraday.response :json, content_type: /\bjson$/
@@ -255,7 +255,7 @@ module Plivo
255
255
 
256
256
  faraday.request :multipart
257
257
  faraday.request :url_encoded
258
- faraday.basic_auth(auth_id, auth_token)
258
+ faraday.request(:basic_auth, auth_id, auth_token)
259
259
 
260
260
  faraday.proxy=@proxy_hash if @proxy_hash
261
261
  faraday.response :json, content_type: /\bjson$/
data/lib/plivo/version.rb CHANGED
@@ -1,3 +1,3 @@
1
1
  module Plivo
2
- VERSION = "4.30.0".freeze
2
+ VERSION = "4.30.1".freeze
3
3
  end
data/plivo.gemspec CHANGED
@@ -31,8 +31,8 @@ Gem::Specification.new do |spec|
31
31
 
32
32
  spec.required_ruby_version = '>= 2.0.0'
33
33
 
34
- spec.add_dependency 'faraday', '~> 1.0.1'
35
- spec.add_dependency 'faraday_middleware', '~> 1.0.0'
34
+ spec.add_dependency 'faraday', '~> 1.0'
35
+ spec.add_dependency 'faraday_middleware', '~> 1.0'
36
36
  spec.add_dependency 'htmlentities'
37
37
  spec.add_dependency 'jwt'
38
38
 
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: plivo
3
3
  version: !ruby/object:Gem::Version
4
- version: 4.30.0
4
+ version: 4.30.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - The Plivo SDKs Team
8
8
  autorequire:
9
9
  bindir: bin
10
10
  cert_chain: []
11
- date: 2022-08-26 00:00:00.000000000 Z
11
+ date: 2022-09-21 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: faraday
@@ -16,28 +16,28 @@ dependencies:
16
16
  requirements:
17
17
  - - "~>"
18
18
  - !ruby/object:Gem::Version
19
- version: 1.0.1
19
+ version: '1.0'
20
20
  type: :runtime
21
21
  prerelease: false
22
22
  version_requirements: !ruby/object:Gem::Requirement
23
23
  requirements:
24
24
  - - "~>"
25
25
  - !ruby/object:Gem::Version
26
- version: 1.0.1
26
+ version: '1.0'
27
27
  - !ruby/object:Gem::Dependency
28
28
  name: faraday_middleware
29
29
  requirement: !ruby/object:Gem::Requirement
30
30
  requirements:
31
31
  - - "~>"
32
32
  - !ruby/object:Gem::Version
33
- version: 1.0.0
33
+ version: '1.0'
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.0.0
40
+ version: '1.0'
41
41
  - !ruby/object:Gem::Dependency
42
42
  name: htmlentities
43
43
  requirement: !ruby/object:Gem::Requirement