esi-sdk 1.1.2 → 1.1.3
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/CHANGELOG.md +7 -0
- data/Gemfile.lock +1 -1
- data/lib/esi/client.rb +2 -2
- data/lib/esi/version.rb +1 -1
- data/release.config.js +2 -2
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 96bfde25cec60466f068690e618f8eb448f287686652529627d83e61bff6a27e
|
|
4
|
+
data.tar.gz: 30a10c563775c08ce91e003fa97a34b72dc48db1b754b39a34d7b7b7398fc3d0
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 4e3e48c1b7e9b03605e0a58a1b9cc7f7d47ae4180efbf0872aef6aec9b187c84febf354f86267694478802f001d2ab0dc5094091ba7789e3be00e16d2217a957
|
|
7
|
+
data.tar.gz: 7f241d000d376edd19b72e743e5f7f5176ce75c32df0468f1544fac413eaa659e651113c4b1332dfecd19f626f8412d9615cd326e85a4d92410cbe5f6ed1682a
|
data/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,12 @@
|
|
|
1
1
|
# ESI SDK Changelog
|
|
2
2
|
|
|
3
|
+
## [1.1.3](https://github.com/bokoboshahni/esi-sdk-ruby/compare/v1.1.2...v1.1.3) (2021-07-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Bug Fixes
|
|
7
|
+
|
|
8
|
+
* Use double splat for cache options ([db32f35](https://github.com/bokoboshahni/esi-sdk-ruby/commit/db32f35fe1737af8a856720366829d2da8a036de))
|
|
9
|
+
|
|
3
10
|
## [1.1.2](https://github.com/bokoboshahni/esi-sdk-ruby/compare/v1.1.1...v1.1.2) (2021-07-19)
|
|
4
11
|
|
|
5
12
|
## [1.1.1](https://github.com/bokoboshahni/esi-sdk-ruby/compare/v1.1.0...v1.1.1) (2021-07-19)
|
data/Gemfile.lock
CHANGED
data/lib/esi/client.rb
CHANGED
|
@@ -200,7 +200,7 @@ module ESI
|
|
|
200
200
|
|
|
201
201
|
def url_encoded_connection
|
|
202
202
|
@url_encoded_connection ||= Faraday.new(base_url, headers: default_headers) do |f|
|
|
203
|
-
f.use :http_cache, cache unless cache.empty?
|
|
203
|
+
f.use :http_cache, **cache unless cache.empty?
|
|
204
204
|
f.request :url_encoded
|
|
205
205
|
f.request :retry, { exceptions: ESI_RETRY_EXCEPTIONS }
|
|
206
206
|
f.response :follow_redirects
|
|
@@ -210,7 +210,7 @@ module ESI
|
|
|
210
210
|
|
|
211
211
|
def json_encoded_connection
|
|
212
212
|
@json_encoded_connection ||= Faraday.new(base_url, headers: default_headers) do |f|
|
|
213
|
-
f.use :http_cache, cache unless cache.empty?
|
|
213
|
+
f.use :http_cache, **cache unless cache.empty?
|
|
214
214
|
f.request :json
|
|
215
215
|
f.request :retry, { exceptions: ESI_RETRY_EXCEPTIONS }
|
|
216
216
|
f.response :follow_redirects
|
data/lib/esi/version.rb
CHANGED
data/release.config.js
CHANGED
|
@@ -21,10 +21,10 @@ module.exports = {
|
|
|
21
21
|
changelogTitle: '# ESI SDK Changelog'
|
|
22
22
|
}],
|
|
23
23
|
['@semantic-release/exec', {
|
|
24
|
-
prepareCmd: "VERSION=${nextRelease.version} bundle exec rake set_version"
|
|
24
|
+
prepareCmd: "VERSION=${nextRelease.version} bundle exec rake set_version && bundle install"
|
|
25
25
|
}],
|
|
26
26
|
['@semantic-release/git', {
|
|
27
|
-
assets: ['CHANGELOG.md', 'lib/esi/version.rb']
|
|
27
|
+
assets: ['CHANGELOG.md', 'Gemfile.lock', 'lib/esi/version.rb']
|
|
28
28
|
}],
|
|
29
29
|
['@semantic-release/exec', {
|
|
30
30
|
publishCmd: "bundle exec rake build release:rubygem_push"
|