dor-services-client 14.17.0 → 14.18.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/Gemfile.lock +7 -7
- data/lib/dor/services/client/object_version.rb +11 -0
- data/lib/dor/services/client/version.rb +1 -1
- metadata +2 -2
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 410670858a6fc9b9b3eb0b680061594471a6a682d85e666f3bf25024bb2069eb
|
4
|
+
data.tar.gz: 7c650e9738ed21e34ff5529e06ee671598bb3ab5a50a7001aa9581a60fa569c6
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7471ac2399737050d387b8a36df88bdb7e1c5e60cf960b5ff313132660a0072c86e157be0f6e1df18625394bedcad3c9fa98702821e43cedc414131d7a1d99a3
|
7
|
+
data.tar.gz: e198a1adc98a31ab498beea281966f24567dee5b565a22a3c7b6aa7ba0453854146cd6f6e50aee1996d7e5e5f1f0c471f38abcb49cd3aeda13d9a7d14a72cb4e
|
data/Gemfile.lock
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
PATH
|
2
2
|
remote: .
|
3
3
|
specs:
|
4
|
-
dor-services-client (14.
|
4
|
+
dor-services-client (14.18.0)
|
5
5
|
activesupport (>= 4.2, < 8)
|
6
6
|
cocina-models (~> 0.98.0)
|
7
7
|
deprecation
|
@@ -55,7 +55,7 @@ GEM
|
|
55
55
|
deprecation (1.1.0)
|
56
56
|
activesupport
|
57
57
|
diff-lcs (1.5.1)
|
58
|
-
docile (1.4.
|
58
|
+
docile (1.4.1)
|
59
59
|
drb (2.2.1)
|
60
60
|
dry-core (1.0.1)
|
61
61
|
concurrent-ruby (~> 1.0)
|
@@ -84,7 +84,7 @@ GEM
|
|
84
84
|
faraday (2.10.0)
|
85
85
|
faraday-net_http (>= 2.0, < 3.2)
|
86
86
|
logger
|
87
|
-
faraday-net_http (3.1.
|
87
|
+
faraday-net_http (3.1.1)
|
88
88
|
net-http
|
89
89
|
faraday-retry (2.2.1)
|
90
90
|
faraday (~> 2.0)
|
@@ -102,11 +102,11 @@ GEM
|
|
102
102
|
mutex_m (0.2.0)
|
103
103
|
net-http (0.4.1)
|
104
104
|
uri
|
105
|
-
nokogiri (1.16.
|
105
|
+
nokogiri (1.16.7-arm64-darwin)
|
106
106
|
racc (~> 1.4)
|
107
|
-
nokogiri (1.16.
|
107
|
+
nokogiri (1.16.7-x86_64-darwin)
|
108
108
|
racc (~> 1.4)
|
109
|
-
nokogiri (1.16.
|
109
|
+
nokogiri (1.16.7-x86_64-linux)
|
110
110
|
racc (~> 1.4)
|
111
111
|
openapi3_parser (0.10.0)
|
112
112
|
commonmarker (>= 1.0)
|
@@ -118,7 +118,7 @@ GEM
|
|
118
118
|
racc
|
119
119
|
patience_diff (1.2.0)
|
120
120
|
optimist (~> 3.0)
|
121
|
-
public_suffix (6.0.
|
121
|
+
public_suffix (6.0.1)
|
122
122
|
racc (1.8.0)
|
123
123
|
rainbow (3.1.1)
|
124
124
|
rake (13.2.1)
|
@@ -40,6 +40,17 @@ module Dor
|
|
40
40
|
@object_identifier = object_identifier
|
41
41
|
end
|
42
42
|
|
43
|
+
# @return [Cocina::Models::DROWithMetadata] the object metadata
|
44
|
+
# @raise [UnexpectedResponse] on an unsuccessful response from the server
|
45
|
+
def find(version)
|
46
|
+
resp = connection.get do |req|
|
47
|
+
req.url "#{base_path}/#{version}"
|
48
|
+
end
|
49
|
+
raise_exception_based_on_response!(resp) unless resp.success?
|
50
|
+
|
51
|
+
build_cocina_from_response(resp, validate: false)
|
52
|
+
end
|
53
|
+
|
43
54
|
# Get the current version for a DOR object. This comes from ObjectVersion table in the DSA
|
44
55
|
# @raise [NotFoundResponse] when the response is a 404 (object not found)
|
45
56
|
# @raise [UnexpectedResponse] when the response is not successful.
|
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: 14.
|
4
|
+
version: 14.18.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: 2024-07-
|
12
|
+
date: 2024-07-31 00:00:00.000000000 Z
|
13
13
|
dependencies:
|
14
14
|
- !ruby/object:Gem::Dependency
|
15
15
|
name: activesupport
|