tamsin woo
tamsin woo
we now have a global caster @samvera/hyrax-code-reviewers
[UC San Diego and UC Santa Barbara](https://gitlab.com/surfliner/surfliner) have some sprints scheduled late this summer/early fall that will explore deploying Cantaloupe to Kubernetes with [Helm](https://helm.sh/). We wanted to open this issue...
For Box and Google Drive, we set `expires` as a hard coded `1.hours.from_now`. This seems like a reasonable default, but we're finding in production that with multiple large files in...
e.g. in `Hydra::PCDM`: ```ruby Hydra::PCDM::File.first ``` `Querying#default_sort_params` tries to use the indexer (why does it do this at runtime!)
https://github.com/samvera/active_fedora/blob/511ee837cd9a461021e53d5e20f362b634de39a8/lib/active_fedora.rb#L286 we autoload the railtie, injecting middleware into the `ActionDispatch` stack. this should really only happen if the users application wants it. it seems like the more rails-y approach would...
`NoMethodError` is possible on this method when `find_polymorphic_inverse` returns `nil`. `nil#belongs_to?` is immediately called and undefined. This happens when no inverse `#has_many` relation is defined. The offending lines are: https://github.com/samvera/active_fedora/blob/11-5-stable/lib/active_fedora/associations/has_many_association.rb#L29-L30...
Currently, the following raises `IllegalOperation` via https://github.com/samvera/active_fedora/blob/7afd3004c8a26fb368c28f781423e14374821a11/lib/active_fedora/core.rb#L36: ```ruby MyModel.create(id: 'an_id') MyModel.new(id: 'an_id') ``` This is due to a Fedora request checking that the item does not already exist. Instead, we...
limited/guarded backport of query portion; following this up with deprecations, test updates, etc... @samvera/hyrax-code-reviewers
We want to make sure that Postgres-only tests pass without any ActiveFedora involved, in order to do that we can use Koppie's tests passing as a proxy. ## Acceptance Criteria...