Skip to content
Merged
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
1 change: 1 addition & 0 deletions bundler.d/example.rb
Original file line number Diff line number Diff line change
Expand Up @@ -10,3 +10,4 @@
# your docker container and rebundle to get rid of an injected gem.

ensure_gem 'derivative-rodeo', '~> 0.5', '>= 0.5.3'
ensure_gem 'valkyrie-shrine', branch: 'main', git: 'https://github.com/samvera-labs/valkyrie-shrine.git'
2 changes: 1 addition & 1 deletion hyrax-webapp
Submodule hyrax-webapp updated 43 files
+1 −1 .env
+2 −2 Gemfile
+24 −27 Gemfile.lock
+3 −1 app/forms/collection_resource_form.rb
+4 −2 app/services/hyrax/flexible_schema_validator_service.rb
+73 −64 app/services/hyrax/flexible_schema_validators/class_validator.rb
+87 −0 app/services/hyrax/flexible_schema_validators/existing_records_validator.rb
+12 −1 app/services/roles_service.rb
+2 −1 app/views/hyrax/base/_attribute_rows.html.erb
+8 −6 app/views/hyrax/dashboard/collections/_form_discovery.html.erb
+4 −3 app/views/hyrax/etds/_attribute_rows.html.erb
+4 −3 app/views/hyrax/oers/_attribute_rows.html.erb
+2 −1 bin/solrcloud-assign-configset.sh
+1 −1 config/initializers/version.rb
+187 −50 config/locales/de.yml
+3 −0 config/locales/en.yml
+189 −52 config/locales/es.yml
+187 −50 config/locales/fr.yml
+1 −0 config/locales/hyrax.de.yml
+1 −0 config/locales/hyrax.es.yml
+1 −0 config/locales/hyrax.fr.yml
+1 −0 config/locales/hyrax.it.yml
+1 −0 config/locales/hyrax.pt-BR.yml
+1 −0 config/locales/hyrax.zh.yml
+186 −49 config/locales/it.yml
+45 −25 config/locales/pt-BR.yml
+8 −10 config/locales/simple_form.de.yml
+8 −10 config/locales/simple_form.es.yml
+8 −10 config/locales/simple_form.fr.yml
+8 −10 config/locales/simple_form.it.yml
+6 −8 config/locales/simple_form.pt-BR.yml
+7 −9 config/locales/simple_form.zh.yml
+184 −47 config/locales/zh.yml
+123 −134 config/metadata_profiles/m3_profile.yaml
+10 −6 docker-compose.yml
+2 −0 ops/demo-deploy.tmpl.yaml
+38 −22 ops/iiif-deploy.tmpl.yaml
+0 −334 ops/iiif.tmpl.yaml
+3 −1 ops/staging-deploy.tmpl.yaml
+11 −0 spec/models/hyrax/flexible_schema_spec.rb
+181 −0 spec/services/hyrax/flexible_schema_validators/class_validator_spec.rb
+134 −0 spec/services/hyrax/flexible_schema_validators/existing_records_validator_spec.rb
+34 −0 spec/services/roles_service_spec.rb
2 changes: 1 addition & 1 deletion ops/production-deploy.tmpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -148,7 +148,7 @@ extraEnvVars: &envVars
- name: HYKU_MULTITENANT
value: "true"
- name: HYKU_QUEUED_RUNNER
value: "true"
value: "false"
- name: HYKU_ROOT_HOST
value: b2.adventistdigitallibrary.org
- name: HYRAX_ACTIVE_JOB_QUEUE
Expand Down
2 changes: 1 addition & 1 deletion ops/staging-deploy.tmpl.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -164,7 +164,7 @@ extraEnvVars: &envVars
- name: HYKU_MULTITENANT
value: "true"
- name: HYKU_QUEUED_RUNNER
value: "true"
value: "false"
- name: HYKU_ROOT_HOST
value: s2.adventistdigitallibrary.org
- name: HYRAX_ACTIVE_JOB_QUEUE
Expand Down
Loading