dor-services-client 13.1.1 → 13.2.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/Gemfile.lock +9 -9
- data/dor-services-client.gemspec +1 -1
- data/lib/dor/services/client/version.rb +1 -1
- metadata +5 -5
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: c4a4eab86e29b682f95d37da74618794a84bd08475e704449f245dc41ecd84e1
|
|
4
|
+
data.tar.gz: 6960751d7cf833f681426c41ced9beb4900af12f126f37a7028d639ada65d37a
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: 0cc64aa9f1e20e6c79bd8e48b8576b079f9acfab2d1e859beb85e89c66e05ea353730709daba949429186e29f28bbbd67d3d4b5c0bd8b1284f15959f496f12d9
|
|
7
|
+
data.tar.gz: d1b32c6f1bb79c8fbb07004c6574daa255728c4a09d57a7d68290bdeea52b15b0d1ad248c7662aed3fbd7a2ab4b53bef771d5d03f7bc7b65b748040d32d83e90
|
data/Gemfile.lock
CHANGED
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
PATH
|
|
2
2
|
remote: .
|
|
3
3
|
specs:
|
|
4
|
-
dor-services-client (13.
|
|
4
|
+
dor-services-client (13.2.0)
|
|
5
5
|
activesupport (>= 4.2, < 8)
|
|
6
|
-
cocina-models (~> 0.
|
|
6
|
+
cocina-models (~> 0.92.0)
|
|
7
7
|
deprecation
|
|
8
8
|
faraday (~> 2.0)
|
|
9
9
|
faraday-retry
|
|
@@ -29,13 +29,14 @@ GEM
|
|
|
29
29
|
base64 (0.1.1)
|
|
30
30
|
bigdecimal (3.1.4)
|
|
31
31
|
byebug (11.1.3)
|
|
32
|
-
cocina-models (0.
|
|
32
|
+
cocina-models (0.92.0)
|
|
33
33
|
activesupport
|
|
34
34
|
deprecation
|
|
35
35
|
dry-struct (~> 1.0)
|
|
36
36
|
dry-types (~> 1.1)
|
|
37
37
|
edtf
|
|
38
38
|
equivalent-xml
|
|
39
|
+
i18n
|
|
39
40
|
jsonpath
|
|
40
41
|
nokogiri
|
|
41
42
|
openapi3_parser
|
|
@@ -113,7 +114,7 @@ GEM
|
|
|
113
114
|
public_suffix (5.0.3)
|
|
114
115
|
racc (1.7.1)
|
|
115
116
|
rainbow (3.1.1)
|
|
116
|
-
rake (13.0
|
|
117
|
+
rake (13.1.0)
|
|
117
118
|
regexp_parser (2.8.2)
|
|
118
119
|
rexml (3.2.6)
|
|
119
120
|
rspec (3.12.0)
|
|
@@ -131,8 +132,7 @@ GEM
|
|
|
131
132
|
rspec-support (3.12.1)
|
|
132
133
|
rss (0.3.0)
|
|
133
134
|
rexml
|
|
134
|
-
rubocop (1.57.
|
|
135
|
-
base64 (~> 0.1.1)
|
|
135
|
+
rubocop (1.57.2)
|
|
136
136
|
json (~> 2.3)
|
|
137
137
|
language_server-protocol (>= 3.17.0)
|
|
138
138
|
parallel (~> 1.10)
|
|
@@ -143,14 +143,14 @@ GEM
|
|
|
143
143
|
rubocop-ast (>= 1.28.1, < 2.0)
|
|
144
144
|
ruby-progressbar (~> 1.7)
|
|
145
145
|
unicode-display_width (>= 2.4.0, < 3.0)
|
|
146
|
-
rubocop-ast (1.
|
|
146
|
+
rubocop-ast (1.30.0)
|
|
147
147
|
parser (>= 3.2.1.0)
|
|
148
148
|
rubocop-capybara (2.19.0)
|
|
149
149
|
rubocop (~> 1.41)
|
|
150
150
|
rubocop-factory_bot (2.24.0)
|
|
151
151
|
rubocop (~> 1.33)
|
|
152
|
-
rubocop-rspec (2.
|
|
153
|
-
rubocop (~> 1.
|
|
152
|
+
rubocop-rspec (2.25.0)
|
|
153
|
+
rubocop (~> 1.40)
|
|
154
154
|
rubocop-capybara (~> 2.17)
|
|
155
155
|
rubocop-factory_bot (~> 2.22)
|
|
156
156
|
ruby-progressbar (1.13.0)
|
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.92.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: 13.
|
|
4
|
+
version: 13.2.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-11-03 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.92.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.92.0
|
|
48
48
|
- !ruby/object:Gem::Dependency
|
|
49
49
|
name: deprecation
|
|
50
50
|
requirement: !ruby/object:Gem::Requirement
|
|
@@ -278,7 +278,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
|
278
278
|
- !ruby/object:Gem::Version
|
|
279
279
|
version: '0'
|
|
280
280
|
requirements: []
|
|
281
|
-
rubygems_version: 3.4.
|
|
281
|
+
rubygems_version: 3.4.19
|
|
282
282
|
signing_key:
|
|
283
283
|
specification_version: 4
|
|
284
284
|
summary: A client for dor-services-app
|