dwolla_v2 3.1.0 → 3.1.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/README.md +1 -0
- data/lib/dwolla_v2/token.rb +1 -1
- data/lib/dwolla_v2/version.rb +1 -1
- metadata +3 -3
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 4be9f7bea7e810a03f2ab1696a4f58fab0a6a98ea1d58175a439821dda1f22fc
|
|
4
|
+
data.tar.gz: 4298b78df775708117f2b2da8c34324fd473541b6c373fad528bdc056fd00bfd
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: db8f28c736e95cca9712bd393576e1e407f311fc77ce6a368f819980238276a8d48e0563c84665d3cbba112af10c048d81dd1114d5305dcc4737c4a90fb8e41d
|
|
7
|
+
data.tar.gz: 6f4b3852412029a7c9eeb2de586aea3f88d5102b53eac27d624f01f2789553797bb5abb06b22a32593297c5a2e7213ca3b67bd95c8d808fe8fd5b790f61b1c01
|
data/README.md
CHANGED
|
@@ -187,6 +187,7 @@ The gem is available as open source under the terms of the [MIT License](https:/
|
|
|
187
187
|
|
|
188
188
|
## Changelog
|
|
189
189
|
|
|
190
|
+
- **3.1.1** - Fix deprecation warning on Faraday::Connection#authorization (Thanks @javierjulio!). [#60](https://github.com/Dwolla/dwolla-v2-ruby/pull/60)
|
|
190
191
|
- **3.1.0** - Added `DwollaV2::MaxNumberOfResourcesError` (Thanks @paulyeo21!). [#54](https://github.com/Dwolla/dwolla-v2-ruby/pull/54)
|
|
191
192
|
- **3.0.1** - Update dependencies (Thanks @sealabcore!). [#48](https://github.com/Dwolla/dwolla-v2-ruby/pull/48)
|
|
192
193
|
- **3.0.0** - Add integrations auth functions
|
data/lib/dwolla_v2/token.rb
CHANGED
|
@@ -53,7 +53,7 @@ module DwollaV2
|
|
|
53
53
|
|
|
54
54
|
def conn
|
|
55
55
|
@conn ||= Faraday.new do |f|
|
|
56
|
-
f.authorization :Bearer, access_token if access_token
|
|
56
|
+
f.request :authorization, :Bearer, access_token if access_token
|
|
57
57
|
f.headers[:accept] = "application/vnd.dwolla.v1.hal+json"
|
|
58
58
|
f.request :multipart
|
|
59
59
|
f.request :json
|
data/lib/dwolla_v2/version.rb
CHANGED
metadata
CHANGED
|
@@ -1,14 +1,14 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dwolla_v2
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 3.1.
|
|
4
|
+
version: 3.1.1
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Stephen Ausman
|
|
8
8
|
autorequire:
|
|
9
9
|
bindir: exe
|
|
10
10
|
cert_chain: []
|
|
11
|
-
date:
|
|
11
|
+
date: 2021-12-22 00:00:00.000000000 Z
|
|
12
12
|
dependencies:
|
|
13
13
|
- !ruby/object:Gem::Dependency
|
|
14
14
|
name: bundler
|
|
@@ -187,7 +187,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
187
187
|
- !ruby/object:Gem::Version
|
|
188
188
|
version: '0'
|
|
189
189
|
requirements: []
|
|
190
|
-
rubygems_version: 3.0.3
|
|
190
|
+
rubygems_version: 3.0.3.1
|
|
191
191
|
signing_key:
|
|
192
192
|
specification_version: 4
|
|
193
193
|
summary: Dwolla V2 Ruby client
|