Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update bulkrax to pull in embargo support #2188

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 14 additions & 2 deletions Gemfile.lock
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ GIT

GIT
remote: https://github.com/samvera-labs/hyku_knapsack.git
revision: 5a7c54cace96881a3963ab2fd881ca6ea3f57372
revision: cbc6c889ebf52dc03b038afde477c5d9c082e76f
Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

why did this change? 🤔 did a

bundle update bulkrax --conservative

branch: required_for_knapsack_instances
specs:
hyku_knapsack (0.0.1)
Expand Down Expand Up @@ -125,7 +125,7 @@ GIT

GIT
remote: https://github.com/samvera/bulkrax.git
revision: 1048453a4d99a6fba4b10531c2dc3a67a51c4c50
revision: 855ce39e805295377eda9a7c24645fbb0ee5617c
branch: main
specs:
bulkrax (8.0.0)
Expand Down Expand Up @@ -1224,6 +1224,15 @@ GEM
rexml (~> 3.2, >= 3.2.5)
rubyzip (>= 1.2.2, < 3.0)
websocket (~> 1.0)
sentry-rails (5.17.3)
railties (>= 5.0)
sentry-ruby (~> 5.17.3)
sentry-ruby (5.17.3)
bigdecimal
concurrent-ruby (~> 1.0, >= 1.0.2)
sentry-sidekiq (5.17.3)
sentry-ruby (~> 5.17.3)
sidekiq (>= 3.0)
shacl (0.3.0)
json-ld (~> 3.2)
rdf (~> 3.2, >= 3.2.8)
Expand Down Expand Up @@ -1501,6 +1510,9 @@ DEPENDENCIES
scss_lint
secure_headers
selenium-webdriver (= 4.8.1)
sentry-rails
sentry-ruby
sentry-sidekiq
shoulda-matchers (~> 4.0)
sidekiq (< 7.0)
simplecov
Expand Down
3 changes: 2 additions & 1 deletion db/schema.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
#
# It's strongly recommended that you check this file into your version control system.

ActiveRecord::Schema.define(version: 2024_02_29_234258) do
ActiveRecord::Schema.define(version: 2024_03_07_053156) do

# These are extensions that must be enabled in order to support this database
enable_extension "hstore"
Expand Down Expand Up @@ -550,6 +550,7 @@
t.datetime "updated_at", null: false
t.string "internal_resource"
t.integer "lock_version"
t.index "(((metadata -> 'bulkrax_identifier'::text) ->> 0))", name: "index_on_bulkrax_identifier", where: "((metadata -> 'bulkrax_identifier'::text) IS NOT NULL)"
t.index ["internal_resource"], name: "index_orm_resources_on_internal_resource"
t.index ["metadata"], name: "index_orm_resources_on_metadata", using: :gin
t.index ["metadata"], name: "index_orm_resources_on_metadata_jsonb_path_ops", opclass: :jsonb_path_ops, using: :gin
Expand Down
Loading