dor-services-client 13.0.0 → 13.0.1

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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 52d7f1922fb592d9b86bc19bb2613ea2649b294a83e6dc898795514ef75889ab
4
- data.tar.gz: 3f455ceee20044d6b2dda3f9f74f25100349a7f390c9de462df2621b051e29da
3
+ metadata.gz: 74d7e3fd877e278b201d95659d3003b2a80823060553d3b6922914dac87b7c20
4
+ data.tar.gz: dceb16866228a3fcd1230d1d3e81be9083fdc1a92d41f6d937a964bd913dd9ff
5
5
  SHA512:
6
- metadata.gz: 3a11dbc88113dbb5844d483c4514616ddbea9de1c5cce7afcab3e38b1f466e0f4c1f63cf6fe58953a7b6321b02eb408e2196a240ae8850d25b51d32a1785a48f
7
- data.tar.gz: f322703d6d85a737bebc790701235f4765c4e2fd7fee248704c1c5dc1c027f991b082634765b415cbfb483e4d2f5c664712e500b67af82823fe00c194037639f
6
+ metadata.gz: 49c37f1ab1f9cfabedf44f1f3d94c677c86c91207ed383e33d16679e5f326767f1b36ddd764bfdf928984ee2007abb8cba9d4a41ac557a4bee6e8aba174f00c6
7
+ data.tar.gz: 9b4fabacd6a69c13101da1d59378d359e11a297a0ee7e120ae5a1cf38ab54302774706dbc7756100507964641eb5ed34c5cc3f515ee53f44ba577b0c2f6ab994
data/Gemfile.lock CHANGED
@@ -1,7 +1,7 @@
1
1
  PATH
2
2
  remote: .
3
3
  specs:
4
- dor-services-client (13.0.0)
4
+ dor-services-client (13.0.1)
5
5
  activesupport (>= 4.2, < 8)
6
6
  cocina-models (~> 0.91.0)
7
7
  deprecation
@@ -12,16 +12,22 @@ PATH
12
12
  GEM
13
13
  remote: https://rubygems.org/
14
14
  specs:
15
- activesupport (7.0.8)
15
+ activesupport (7.1.0)
16
+ base64
17
+ bigdecimal
16
18
  concurrent-ruby (~> 1.0, >= 1.0.2)
19
+ connection_pool (>= 2.2.5)
20
+ drb
17
21
  i18n (>= 1.6, < 2)
18
22
  minitest (>= 5.1)
23
+ mutex_m
19
24
  tzinfo (~> 2.0)
20
25
  addressable (2.8.5)
21
26
  public_suffix (>= 2.0.2, < 6.0)
22
27
  ast (2.4.2)
23
28
  attr_extras (7.1.0)
24
29
  base64 (0.1.1)
30
+ bigdecimal (3.1.4)
25
31
  byebug (11.1.3)
26
32
  cocina-models (0.91.2)
27
33
  activesupport
@@ -40,12 +46,15 @@ GEM
40
46
  zeitwerk (~> 2.1)
41
47
  commonmarker (0.23.10)
42
48
  concurrent-ruby (1.2.2)
49
+ connection_pool (2.4.1)
43
50
  crack (0.4.5)
44
51
  rexml
45
52
  deprecation (1.1.0)
46
53
  activesupport
47
54
  diff-lcs (1.5.0)
48
55
  docile (1.4.0)
56
+ drb (2.1.1)
57
+ ruby2_keywords
49
58
  dry-core (1.0.1)
50
59
  concurrent-ruby (~> 1.0)
51
60
  zeitwerk (~> 2.6)
@@ -86,6 +95,7 @@ GEM
86
95
  language_server-protocol (3.17.0.3)
87
96
  minitest (5.20.0)
88
97
  multi_json (1.15.0)
98
+ mutex_m (0.1.2)
89
99
  nokogiri (1.15.4-x86_64-darwin)
90
100
  racc (~> 1.4)
91
101
  nokogiri (1.15.4-x86_64-linux)
@@ -95,7 +105,7 @@ GEM
95
105
  openapi_parser (1.0.0)
96
106
  optimist (3.1.0)
97
107
  parallel (1.23.0)
98
- parser (3.2.2.3)
108
+ parser (3.2.2.4)
99
109
  ast (~> 2.4.1)
100
110
  racc
101
111
  patience_diff (1.2.0)
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'active_support/json' # required for serializing time as iso8601
4
-
5
3
  module Dor
6
4
  module Services
7
5
  class Client
@@ -1,7 +1,5 @@
1
1
  # frozen_string_literal: true
2
2
 
3
- require 'active_support/json' # required for serializing time as iso8601
4
-
5
3
  module Dor
6
4
  module Services
7
5
  class Client
@@ -3,7 +3,7 @@
3
3
  module Dor
4
4
  module Services
5
5
  class Client
6
- VERSION = '13.0.0'
6
+ VERSION = '13.0.1'
7
7
  end
8
8
  end
9
9
  end
@@ -1,11 +1,12 @@
1
1
  # frozen_string_literal: true
2
2
 
3
+ require 'active_support'
3
4
  require 'active_support/core_ext/hash/indifferent_access'
4
5
  require 'active_support/core_ext/module/delegation'
5
6
  require 'active_support/core_ext/object/blank'
6
- require 'active_support/json'
7
7
  require 'active_support/core_ext/object/json'
8
8
  require 'active_support/core_ext/object/to_query'
9
+ require 'active_support/json'
9
10
  require 'cocina/models'
10
11
  require 'faraday'
11
12
  require '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.0.0
4
+ version: 13.0.1
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-10-04 00:00:00.000000000 Z
12
+ date: 2023-10-09 00:00:00.000000000 Z
13
13
  dependencies:
14
14
  - !ruby/object:Gem::Dependency
15
15
  name: activesupport