diff --git a/Gemfile.lock b/Gemfile.lock index 518cef3f..091b34a7 100644 --- a/Gemfile.lock +++ b/Gemfile.lock @@ -121,7 +121,7 @@ GEM rack-test (>= 0.6.3) regexp_parser (>= 1.5, < 3.0) xpath (~> 3.2) - cocina-models (0.95.1) + cocina-models (0.96.0) activesupport deprecation dry-struct (~> 1.0) @@ -144,7 +144,7 @@ GEM connection_pool (2.4.1) crass (1.0.6) date (3.3.4) - debug (1.9.1) + debug (1.9.2) irb (~> 1.10) reline (>= 0.3.8) deep_merge (1.2.2) @@ -252,10 +252,10 @@ GEM net-ssh (>= 2.6.5, < 8.0.0) net-sftp (4.0.0) net-ssh (>= 5.0.0, < 8.0.0) - net-smtp (0.4.0.1) + net-smtp (0.5.0) net-protocol net-ssh (7.2.1) - newrelic_rpm (9.7.1) + newrelic_rpm (9.8.0) nio4r (2.7.1) nokogiri (1.16.3-x86_64-darwin) racc (~> 1.4) @@ -327,7 +327,7 @@ GEM rdoc (6.6.3.1) psych (>= 4.0.0) regexp_parser (2.9.0) - reline (0.4.3) + reline (0.5.0) io-console (~> 0.5) rexml (3.2.6) rspec-core (3.13.0) @@ -366,18 +366,21 @@ GEM rubocop (~> 1.41) rubocop-factory_bot (2.25.1) rubocop (~> 1.41) - rubocop-performance (1.20.2) + rubocop-performance (1.21.0) rubocop (>= 1.48.1, < 2.0) - rubocop-ast (>= 1.30.0, < 2.0) + rubocop-ast (>= 1.31.1, < 2.0) rubocop-rails (2.24.1) activesupport (>= 4.2.0) rack (>= 1.1) rubocop (>= 1.33.0, < 2.0) rubocop-ast (>= 1.31.1, < 2.0) - rubocop-rspec (2.27.1) + rubocop-rspec (2.28.0) rubocop (~> 1.40) rubocop-capybara (~> 2.17) rubocop-factory_bot (~> 2.22) + rubocop-rspec_rails (~> 2.28) + rubocop-rspec_rails (2.28.2) + rubocop (~> 1.40) ruby-progressbar (1.13.0) simplecov (0.22.0) docile (~> 1.1) diff --git a/spec/consumers/purl_updates_consumer_spec.rb b/spec/consumers/purl_updates_consumer_spec.rb index a8d6d416..33e2a597 100644 --- a/spec/consumers/purl_updates_consumer_spec.rb +++ b/spec/consumers/purl_updates_consumer_spec.rb @@ -11,8 +11,8 @@ .new(administrative: { hasAdminPolicy: "druid:hv992ry2431", releaseTags: [ - { to: 'Searchworks', release: true }, - { to: 'Earthworks', release: false } + { to: 'Searchworks', release: true, what: 'self' }, + { to: 'Earthworks', release: false, what: 'self' } ] }) .to_json diff --git a/spec/requests/v1/purls_controller_spec.rb b/spec/requests/v1/purls_controller_spec.rb index afdc21dd..91465ab2 100644 --- a/spec/requests/v1/purls_controller_spec.rb +++ b/spec/requests/v1/purls_controller_spec.rb @@ -15,8 +15,8 @@ .new(administrative: { hasAdminPolicy: "druid:hv992ry2431", releaseTags: [ - { to: 'Searchworks', release: true }, - { to: 'Earthworks', release: false } + { to: 'Searchworks', release: true, what: 'self' }, + { to: 'Earthworks', release: false, what: 'self' } ] }) end