recurly 4.60.0 → 4.61.0
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/.bumpversion.cfg +1 -1
- data/CHANGELOG.md +11 -0
- data/GETTING_STARTED.md +1 -1
- data/lib/recurly/client.rb +5 -4
- data/lib/recurly/connection_pool.rb +4 -4
- data/lib/recurly/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: 8a8df861361535389368703276de1922da24d7dc17c552b2edc543df637ef4c4
|
4
|
+
data.tar.gz: ce07391eb63826ee943db984fa24c39908781ac9d4211efdcfff9a49b2788d6a
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 6685a1d2f404014e8adce298cf3b600a9ff8c32b7c083a7eb2c487fec896be34383d6747ab7c9acb8cb27ad25da932e8d1ffb58529f7f1cc68e533ab4bd1294b
|
7
|
+
data.tar.gz: 357ed12ca060869d6830b4059f2c28472f3255a16f2fbc1ced135cfcb7608ef29e5e0bcc7523a61919a7d6c19975af0bd489e0667b0679a4b6517af1cfcc1e82
|
data/.bumpversion.cfg
CHANGED
data/CHANGELOG.md
CHANGED
@@ -1,5 +1,16 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
## [4.61.0](https://github.com/recurly/recurly-client-ruby/tree/4.61.0) (2025-03-15)
|
4
|
+
|
5
|
+
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.60.0...4.61.0)
|
6
|
+
|
7
|
+
|
8
|
+
**Merged Pull Requests**
|
9
|
+
|
10
|
+
- Add an option to override keep_alive_timeout [#922](https://github.com/recurly/recurly-client-ruby/pull/922) ([taltcher](https://github.com/taltcher))
|
11
|
+
|
12
|
+
|
13
|
+
|
3
14
|
## [4.60.0](https://github.com/recurly/recurly-client-ruby/tree/4.60.0) (2025-03-14)
|
4
15
|
|
5
16
|
[Full Changelog](https://github.com/recurly/recurly-client-ruby/compare/4.59.0...4.60.0)
|
data/GETTING_STARTED.md
CHANGED
@@ -5,7 +5,7 @@ This repository houses the official ruby client for Recurly's V3 API.
|
|
5
5
|
In your Gemfile, add `recurly` as a dependency.
|
6
6
|
|
7
7
|
```ruby
|
8
|
-
gem 'recurly', '~> 4.
|
8
|
+
gem 'recurly', '~> 4.61'
|
9
9
|
```
|
10
10
|
|
11
11
|
> *Note*: We try to follow [semantic versioning](https://semver.org/) and will only apply breaking changes to major versions.
|
data/lib/recurly/client.rb
CHANGED
@@ -61,7 +61,7 @@ module Recurly
|
|
61
61
|
# @param ca_file [String] The CA bundle to use when connecting to the API. Defaults to "data/ca-certificates.crt"
|
62
62
|
# @param api_key [String] The private API key
|
63
63
|
# @param logger [Logger] A logger to use. Defaults to creating a new STDOUT logger with level WARN.
|
64
|
-
def initialize(region: REGION, base_url: API_HOSTS[:us], ca_file: CA_FILE, api_key:, logger: nil)
|
64
|
+
def initialize(region: REGION, base_url: API_HOSTS[:us], ca_file: CA_FILE, api_key:, logger: nil, keep_alive_timeout: 600)
|
65
65
|
raise ArgumentError, "'api_key' must be set to a non-nil value" if api_key.nil?
|
66
66
|
|
67
67
|
raise ArgumentError, "Invalid region type. Expected one of: #{API_HOSTS.keys.join(", ")}" if !API_HOSTS.key?(region)
|
@@ -69,7 +69,7 @@ module Recurly
|
|
69
69
|
base_url = API_HOSTS[region] if base_url == API_HOSTS[:us] && API_HOSTS.key?(region)
|
70
70
|
|
71
71
|
set_api_key(api_key)
|
72
|
-
set_connection_options(base_url, ca_file)
|
72
|
+
set_connection_options(base_url, ca_file, keep_alive_timeout)
|
73
73
|
|
74
74
|
if logger.nil?
|
75
75
|
@logger = Logger.new(STDOUT).tap do |l|
|
@@ -172,7 +172,7 @@ module Recurly
|
|
172
172
|
end
|
173
173
|
|
174
174
|
def run_request(request, options = {})
|
175
|
-
self.class.connection_pool.with_connection(uri: @base_uri, ca_file: @ca_file) do |http|
|
175
|
+
self.class.connection_pool.with_connection(uri: @base_uri, keep_alive_timeout: @keep_alive_timeout, ca_file: @ca_file) do |http|
|
176
176
|
set_http_options(http, options)
|
177
177
|
|
178
178
|
retries = 0
|
@@ -353,9 +353,10 @@ module Recurly
|
|
353
353
|
@api_key = api_key.to_s
|
354
354
|
end
|
355
355
|
|
356
|
-
def set_connection_options(base_url, ca_file)
|
356
|
+
def set_connection_options(base_url, ca_file, keep_alive_timeout)
|
357
357
|
@base_uri = URI.parse(base_url)
|
358
358
|
@ca_file = ca_file
|
359
|
+
@keep_alive_timeout = keep_alive_timeout
|
359
360
|
end
|
360
361
|
|
361
362
|
def build_url(path, options)
|
@@ -9,14 +9,14 @@ module Recurly
|
|
9
9
|
@pool = Hash.new { |h, k| h[k] = [] }
|
10
10
|
end
|
11
11
|
|
12
|
-
def with_connection(uri:, ca_file: nil)
|
12
|
+
def with_connection(uri:, keep_alive_timeout:, ca_file: nil)
|
13
13
|
http = nil
|
14
14
|
@mutex.synchronize do
|
15
15
|
http = @pool[[uri.host, uri.port]].pop
|
16
16
|
end
|
17
17
|
|
18
18
|
# create connection if the pool was empty
|
19
|
-
http ||= init_http_connection(uri, ca_file)
|
19
|
+
http ||= init_http_connection(uri, keep_alive_timeout, ca_file)
|
20
20
|
|
21
21
|
response = yield http
|
22
22
|
|
@@ -29,12 +29,12 @@ module Recurly
|
|
29
29
|
response
|
30
30
|
end
|
31
31
|
|
32
|
-
def init_http_connection(uri, ca_file)
|
32
|
+
def init_http_connection(uri, keep_alive_timeout, ca_file)
|
33
33
|
http = Net::HTTP.new(uri.host, uri.port)
|
34
34
|
http.use_ssl = uri.scheme == "https"
|
35
35
|
http.ca_file = ca_file
|
36
36
|
http.verify_mode = OpenSSL::SSL::VERIFY_PEER
|
37
|
-
http.keep_alive_timeout =
|
37
|
+
http.keep_alive_timeout = keep_alive_timeout
|
38
38
|
|
39
39
|
http
|
40
40
|
end
|
data/lib/recurly/version.rb
CHANGED
metadata
CHANGED
@@ -1,14 +1,14 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: recurly
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 4.
|
4
|
+
version: 4.61.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Recurly
|
8
8
|
autorequire:
|
9
9
|
bindir: bin
|
10
10
|
cert_chain: []
|
11
|
-
date: 2025-03-
|
11
|
+
date: 2025-03-15 00:00:00.000000000 Z
|
12
12
|
dependencies:
|
13
13
|
- !ruby/object:Gem::Dependency
|
14
14
|
name: base64
|
@@ -378,7 +378,7 @@ metadata:
|
|
378
378
|
changelog_uri: https://github.com/recurly/recurly-client-ruby/blob/master/CHANGELOG.md
|
379
379
|
documentation_uri: https://recurly.github.io/recurly-client-ruby/
|
380
380
|
homepage_uri: https://github.com/recurly/recurly-client-ruby
|
381
|
-
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.
|
381
|
+
source_code_uri: https://github.com/recurly/recurly-client-ruby/tree/4.61.0
|
382
382
|
post_install_message:
|
383
383
|
rdoc_options: []
|
384
384
|
require_paths:
|