preservation-client 5.1.0 → 5.1.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
  SHA256:
3
- metadata.gz: 37cef3d8d379f6c4f512f3612539aaf3df7a39ded00a94ef6a89ff1f0a37d77a
4
- data.tar.gz: ed4a9e507f33b27bbc553ea134167c2f96d09f09ae04d0a68cd106061031ac40
3
+ metadata.gz: 9c2de24ad9435d7b9ae73d7973f54f2b2f2fd5fdae08d0e2e7e958feec532658
4
+ data.tar.gz: 5c08e269ef3d3b2f6c4e0d5094dcd563ac474fd9d4631cdf9dfe343b2608c3b9
5
5
  SHA512:
6
- metadata.gz: 064c59c79d1866cb8b1d75fe0e47caf15329f0e49704d2ed676ac4908214e84c535d13fbe65f2328083e4ed64b120bd8b8f27d5bc87cbbb03245bb4d4550d8a3
7
- data.tar.gz: 193e07cbc0ba2b36fdd25a1aca99655b4996ad74e05c676d116f43dab640f1b80f99045be012f491b4165eb4a5c15810ef5063fb78302181a7d8e181f0514c7a
6
+ metadata.gz: 8a7ac074a5e6b1f621a2ed02986e7233f2195fe7bba3eeb7682f201c49bf0006e815a0f7923aa4efe595ae814427c3e2a7e5d897fa4268f8030cacbdc934df56
7
+ data.tar.gz: 38a734aad0ff248bde114ee4d26dd89c72c5acd7de352f9abee2d2b98a3d8d523801b5cf7c0c65231bc5d59f7a5a7a2d76ffb15a5cca195c6a3e5cdc06bb2861
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- preservation-client (5.1.0)
4
+ preservation-client (5.1.1)
5
5
  activesupport (>= 4.2, < 8)
6
6
  faraday (~> 2.0)
7
7
  moab-versioning (>= 5.0.0, < 7)
@@ -10,7 +10,7 @@ PATH
10
10
  GEM
11
11
  remote: https://rubygems.org/
12
12
  specs:
13
- activesupport (7.0.4)
13
+ activesupport (7.0.4.2)
14
14
  concurrent-ruby (~> 1.0, >= 1.0.2)
15
15
  i18n (>= 1.6, < 2)
16
16
  minitest (>= 5.1)
@@ -20,13 +20,13 @@ GEM
20
20
  ast (2.4.2)
21
21
  byebug (11.1.3)
22
22
  coderay (1.1.3)
23
- concurrent-ruby (1.1.10)
23
+ concurrent-ruby (1.2.0)
24
24
  crack (0.4.5)
25
25
  rexml
26
26
  diff-lcs (1.5.0)
27
27
  docile (1.4.0)
28
28
  druid-tools (3.0.0)
29
- faraday (2.7.2)
29
+ faraday (2.7.4)
30
30
  faraday-net_http (>= 2.0, < 3.1)
31
31
  ruby2_keywords (>= 0.0.4)
32
32
  faraday-net_http (3.0.2)
@@ -60,7 +60,7 @@ GEM
60
60
  racc (1.6.2)
61
61
  rainbow (3.1.1)
62
62
  rake (13.0.6)
63
- regexp_parser (2.6.1)
63
+ regexp_parser (2.6.2)
64
64
  rexml (3.2.5)
65
65
  rspec (3.12.0)
66
66
  rspec-core (~> 3.12.0)
@@ -71,7 +71,7 @@ GEM
71
71
  rspec-expectations (3.12.2)
72
72
  diff-lcs (>= 1.2.0, < 2.0)
73
73
  rspec-support (~> 3.12.0)
74
- rspec-mocks (3.12.2)
74
+ rspec-mocks (3.12.3)
75
75
  diff-lcs (>= 1.2.0, < 2.0)
76
76
  rspec-support (~> 3.12.0)
77
77
  rspec-support (3.12.0)
@@ -91,9 +91,9 @@ GEM
91
91
  rubocop (~> 1.41)
92
92
  rubocop-rake (0.6.0)
93
93
  rubocop (~> 1.0)
94
- rubocop-rspec (2.18.0)
94
+ rubocop-rspec (2.18.1)
95
95
  rubocop (~> 1.33)
96
- rubocop-capybara
96
+ rubocop-capybara (~> 2.17)
97
97
  ruby-progressbar (1.11.0)
98
98
  ruby2_keywords (0.0.5)
99
99
  simplecov (0.22.0)
@@ -128,4 +128,4 @@ DEPENDENCIES
128
128
  webmock
129
129
 
130
130
  BUNDLED WITH
131
- 2.4.4
131
+ 2.3.26
@@ -2,6 +2,6 @@
2
2
 
3
3
  module Preservation
4
4
  class Client
5
- VERSION = '5.1.0'
5
+ VERSION = '5.1.1'
6
6
  end
7
7
  end
@@ -77,7 +77,7 @@ module Preservation
77
77
  end
78
78
 
79
79
  def connection
80
- @connection ||= Faraday.new(url) do |builder|
80
+ @connection ||= Faraday.new(url, request: { read_timeout: 300 }) do |builder|
81
81
  builder.use ErrorFaradayMiddleware
82
82
  builder.use Faraday::Request::UrlEncoded
83
83
  builder.use Faraday::Response::RaiseError # raise exceptions on 40x, 50x responses
metadata CHANGED
@@ -1,14 +1,14 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: preservation-client
3
3
  version: !ruby/object:Gem::Version
4
- version: 5.1.0
4
+ version: 5.1.1
5
5
  platform: ruby
6
6
  authors:
7
7
  - Naomi Dushay
8
- autorequire:
8
+ autorequire:
9
9
  bindir: exe
10
10
  cert_chain: []
11
- date: 2023-01-17 00:00:00.000000000 Z
11
+ date: 2023-01-26 00:00:00.000000000 Z
12
12
  dependencies:
13
13
  - !ruby/object:Gem::Dependency
14
14
  name: activesupport
@@ -240,7 +240,7 @@ metadata:
240
240
  homepage_uri: https://github.com/sul-dlss/preservation-client
241
241
  source_code_uri: https://github.com/sul-dlss/preservation-client.
242
242
  rubygems_mfa_required: 'true'
243
- post_install_message:
243
+ post_install_message:
244
244
  rdoc_options: []
245
245
  require_paths:
246
246
  - lib
@@ -255,8 +255,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
255
255
  - !ruby/object:Gem::Version
256
256
  version: '0'
257
257
  requirements: []
258
- rubygems_version: 3.2.32
259
- signing_key:
258
+ rubygems_version: 3.3.10
259
+ signing_key:
260
260
  specification_version: 4
261
261
  summary: A thin client for getting info from SDR preservation.
262
262
  test_files: []