dor-services-client 12.15.0 → 12.16.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/.circleci/config.yml +1 -1
- data/.rubocop.yml +17 -0
- data/Gemfile.lock +24 -22
- data/dor-services-client.gemspec +1 -1
- data/lib/dor/services/client/version.rb +1 -1
- metadata +4 -4
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: ec7edce5ca401aae71ab8e4b98b1b1c44c646e4565f25ba615ff8b0536ad807f
|
|
4
|
+
data.tar.gz: faabe27c830efb9135f1d171ca6a78193ce46c5edf98455850a9d555c470e336
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 1150fe0e08f2ea9a6bfe9a9bb198c85e661c0cb856b4d4c50392da8c69ce478d81cbc88d6c9936f95f2cedefbe3ab147944b69764fd3b0cd52ed7761eda1ae2d
|
|
7
|
+
data.tar.gz: 72c6d2a0c24e2cce44ead61de2f5eed38234b72fcbf75a0131e14e0c5b4126b2d0a3cbeeb69e18d614061a43f5a409791956f14cedf168c900576b6bd6b47a15
|
data/.circleci/config.yml
CHANGED
data/.rubocop.yml
CHANGED
|
@@ -277,3 +277,20 @@ RSpec/Rails/MinitestAssertions: # new in 2.17
|
|
|
277
277
|
Enabled: true
|
|
278
278
|
RSpec/Rails/TravelAround: # new in 2.19
|
|
279
279
|
Enabled: true
|
|
280
|
+
|
|
281
|
+
Lint/MixedCaseRange: # new in 1.53
|
|
282
|
+
Enabled: true
|
|
283
|
+
Lint/RedundantRegexpQuantifiers: # new in 1.53
|
|
284
|
+
Enabled: true
|
|
285
|
+
Style/RedundantCurrentDirectoryInPath: # new in 1.53
|
|
286
|
+
Enabled: true
|
|
287
|
+
Style/RedundantRegexpArgument: # new in 1.53
|
|
288
|
+
Enabled: true
|
|
289
|
+
Style/ReturnNilInPredicateMethodDefinition: # new in 1.53
|
|
290
|
+
Enabled: true
|
|
291
|
+
Style/YAMLFileRead: # new in 1.53
|
|
292
|
+
Enabled: true
|
|
293
|
+
RSpec/ReceiveMessages: # new in 2.23
|
|
294
|
+
Enabled: true
|
|
295
|
+
RSpec/Rails/NegationBeValid: # new in 2.23
|
|
296
|
+
Enabled: true
|
data/Gemfile.lock
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
dor-services-client (12.
|
|
4
|
+
dor-services-client (12.16.0)
|
|
5
5
|
activesupport (>= 4.2, < 8)
|
|
6
|
-
cocina-models (~> 0.
|
|
6
|
+
cocina-models (~> 0.91.0)
|
|
7
7
|
deprecation
|
|
8
8
|
faraday (~> 2.0)
|
|
9
9
|
faraday-retry
|
|
@@ -12,17 +12,18 @@ PATH
|
|
|
12
12
|
GEM
|
|
13
13
|
remote: https://rubygems.org/
|
|
14
14
|
specs:
|
|
15
|
-
activesupport (7.0.
|
|
15
|
+
activesupport (7.0.8)
|
|
16
16
|
concurrent-ruby (~> 1.0, >= 1.0.2)
|
|
17
17
|
i18n (>= 1.6, < 2)
|
|
18
18
|
minitest (>= 5.1)
|
|
19
19
|
tzinfo (~> 2.0)
|
|
20
|
-
addressable (2.8.
|
|
20
|
+
addressable (2.8.5)
|
|
21
21
|
public_suffix (>= 2.0.2, < 6.0)
|
|
22
22
|
ast (2.4.2)
|
|
23
23
|
attr_extras (7.1.0)
|
|
24
|
+
base64 (0.1.1)
|
|
24
25
|
byebug (11.1.3)
|
|
25
|
-
cocina-models (0.
|
|
26
|
+
cocina-models (0.91.0)
|
|
26
27
|
activesupport
|
|
27
28
|
deprecation
|
|
28
29
|
dry-struct (~> 1.0)
|
|
@@ -32,12 +33,12 @@ GEM
|
|
|
32
33
|
jsonpath
|
|
33
34
|
nokogiri
|
|
34
35
|
openapi3_parser
|
|
35
|
-
openapi_parser (
|
|
36
|
+
openapi_parser (~> 1.0)
|
|
36
37
|
rss
|
|
37
38
|
super_diff
|
|
38
39
|
thor
|
|
39
40
|
zeitwerk (~> 2.1)
|
|
40
|
-
commonmarker (0.23.
|
|
41
|
+
commonmarker (0.23.10)
|
|
41
42
|
concurrent-ruby (1.2.2)
|
|
42
43
|
crack (0.4.5)
|
|
43
44
|
rexml
|
|
@@ -45,7 +46,7 @@ GEM
|
|
|
45
46
|
activesupport
|
|
46
47
|
diff-lcs (1.5.0)
|
|
47
48
|
docile (1.4.0)
|
|
48
|
-
dry-core (1.0.
|
|
49
|
+
dry-core (1.0.1)
|
|
49
50
|
concurrent-ruby (~> 1.0)
|
|
50
51
|
zeitwerk (~> 2.6)
|
|
51
52
|
dry-inflector (1.0.0)
|
|
@@ -82,28 +83,28 @@ GEM
|
|
|
82
83
|
jsonpath (1.1.3)
|
|
83
84
|
multi_json
|
|
84
85
|
language_server-protocol (3.17.0.3)
|
|
85
|
-
minitest (5.
|
|
86
|
+
minitest (5.20.0)
|
|
86
87
|
multi_json (1.15.0)
|
|
87
|
-
nokogiri (1.15.
|
|
88
|
+
nokogiri (1.15.4-x86_64-darwin)
|
|
88
89
|
racc (~> 1.4)
|
|
89
|
-
nokogiri (1.15.
|
|
90
|
+
nokogiri (1.15.4-x86_64-linux)
|
|
90
91
|
racc (~> 1.4)
|
|
91
92
|
openapi3_parser (0.9.2)
|
|
92
93
|
commonmarker (~> 0.17)
|
|
93
|
-
openapi_parser (0.
|
|
94
|
-
optimist (3.0
|
|
94
|
+
openapi_parser (1.0.0)
|
|
95
|
+
optimist (3.1.0)
|
|
95
96
|
parallel (1.23.0)
|
|
96
97
|
parser (3.2.2.3)
|
|
97
98
|
ast (~> 2.4.1)
|
|
98
99
|
racc
|
|
99
100
|
patience_diff (1.2.0)
|
|
100
101
|
optimist (~> 3.0)
|
|
101
|
-
public_suffix (5.0.
|
|
102
|
+
public_suffix (5.0.3)
|
|
102
103
|
racc (1.7.1)
|
|
103
104
|
rainbow (3.1.1)
|
|
104
105
|
rake (13.0.6)
|
|
105
106
|
regexp_parser (2.8.1)
|
|
106
|
-
rexml (3.2.
|
|
107
|
+
rexml (3.2.6)
|
|
107
108
|
rspec (3.12.0)
|
|
108
109
|
rspec-core (~> 3.12.0)
|
|
109
110
|
rspec-expectations (~> 3.12.0)
|
|
@@ -113,13 +114,14 @@ GEM
|
|
|
113
114
|
rspec-expectations (3.12.3)
|
|
114
115
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
115
116
|
rspec-support (~> 3.12.0)
|
|
116
|
-
rspec-mocks (3.12.
|
|
117
|
+
rspec-mocks (3.12.6)
|
|
117
118
|
diff-lcs (>= 1.2.0, < 2.0)
|
|
118
119
|
rspec-support (~> 3.12.0)
|
|
119
120
|
rspec-support (3.12.1)
|
|
120
|
-
rss (0.
|
|
121
|
+
rss (0.3.0)
|
|
121
122
|
rexml
|
|
122
|
-
rubocop (1.
|
|
123
|
+
rubocop (1.56.3)
|
|
124
|
+
base64 (~> 0.1.1)
|
|
123
125
|
json (~> 2.3)
|
|
124
126
|
language_server-protocol (>= 3.17.0)
|
|
125
127
|
parallel (~> 1.10)
|
|
@@ -127,7 +129,7 @@ GEM
|
|
|
127
129
|
rainbow (>= 2.2.2, < 4.0)
|
|
128
130
|
regexp_parser (>= 1.8, < 3.0)
|
|
129
131
|
rexml (>= 3.2.5, < 4.0)
|
|
130
|
-
rubocop-ast (>= 1.28.
|
|
132
|
+
rubocop-ast (>= 1.28.1, < 2.0)
|
|
131
133
|
ruby-progressbar (~> 1.7)
|
|
132
134
|
unicode-display_width (>= 2.4.0, < 3.0)
|
|
133
135
|
rubocop-ast (1.29.0)
|
|
@@ -136,7 +138,7 @@ GEM
|
|
|
136
138
|
rubocop (~> 1.41)
|
|
137
139
|
rubocop-factory_bot (2.23.1)
|
|
138
140
|
rubocop (~> 1.33)
|
|
139
|
-
rubocop-rspec (2.
|
|
141
|
+
rubocop-rspec (2.24.0)
|
|
140
142
|
rubocop (~> 1.33)
|
|
141
143
|
rubocop-capybara (~> 2.17)
|
|
142
144
|
rubocop-factory_bot (~> 2.22)
|
|
@@ -156,11 +158,11 @@ GEM
|
|
|
156
158
|
tzinfo (2.0.6)
|
|
157
159
|
concurrent-ruby (~> 1.0)
|
|
158
160
|
unicode-display_width (2.4.2)
|
|
159
|
-
webmock (3.
|
|
161
|
+
webmock (3.19.1)
|
|
160
162
|
addressable (>= 2.8.0)
|
|
161
163
|
crack (>= 0.3.2)
|
|
162
164
|
hashdiff (>= 0.4.0, < 2.0.0)
|
|
163
|
-
zeitwerk (2.6.
|
|
165
|
+
zeitwerk (2.6.11)
|
|
164
166
|
|
|
165
167
|
PLATFORMS
|
|
166
168
|
x86_64-darwin-19
|
data/dor-services-client.gemspec
CHANGED
|
@@ -25,7 +25,7 @@ Gem::Specification.new do |spec|
|
|
|
25
25
|
spec.required_ruby_version = '>= 3.0', '< 4'
|
|
26
26
|
|
|
27
27
|
spec.add_dependency 'activesupport', '>= 4.2', '< 8'
|
|
28
|
-
spec.add_dependency 'cocina-models', '~> 0.
|
|
28
|
+
spec.add_dependency 'cocina-models', '~> 0.91.0'
|
|
29
29
|
spec.add_dependency 'deprecation', '>= 0'
|
|
30
30
|
spec.add_dependency 'faraday', '~> 2.0'
|
|
31
31
|
spec.add_dependency 'faraday-retry'
|
metadata
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
|
2
2
|
name: dor-services-client
|
|
3
3
|
version: !ruby/object:Gem::Version
|
|
4
|
-
version: 12.
|
|
4
|
+
version: 12.16.0
|
|
5
5
|
platform: ruby
|
|
6
6
|
authors:
|
|
7
7
|
- Justin Coyne
|
|
@@ -9,7 +9,7 @@ authors:
|
|
|
9
9
|
autorequire:
|
|
10
10
|
bindir: exe
|
|
11
11
|
cert_chain: []
|
|
12
|
-
date: 2023-
|
|
12
|
+
date: 2023-09-11 00:00:00.000000000 Z
|
|
13
13
|
dependencies:
|
|
14
14
|
- !ruby/object:Gem::Dependency
|
|
15
15
|
name: activesupport
|
|
@@ -37,14 +37,14 @@ dependencies:
|
|
|
37
37
|
requirements:
|
|
38
38
|
- - "~>"
|
|
39
39
|
- !ruby/object:Gem::Version
|
|
40
|
-
version: 0.
|
|
40
|
+
version: 0.91.0
|
|
41
41
|
type: :runtime
|
|
42
42
|
prerelease: false
|
|
43
43
|
version_requirements: !ruby/object:Gem::Requirement
|
|
44
44
|
requirements:
|
|
45
45
|
- - "~>"
|
|
46
46
|
- !ruby/object:Gem::Version
|
|
47
|
-
version: 0.
|
|
47
|
+
version: 0.91.0
|
|
48
48
|
- !ruby/object:Gem::Dependency
|
|
49
49
|
name: deprecation
|
|
50
50
|
requirement: !ruby/object:Gem::Requirement
|