active-fedora 13.2.7 → 13.3.0
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 +4 -4
- data/.circleci/config.yml +67 -15
- data/CONTRIBUTING.md +12 -8
- data/Gemfile +7 -1
- data/README.md +10 -3
- data/lib/active_fedora/attribute_methods/read.rb +1 -1
- data/lib/active_fedora/attribute_methods/write.rb +1 -1
- data/lib/active_fedora/querying.rb +2 -1
- data/lib/active_fedora/solr_service.rb +1 -1
- data/lib/active_fedora/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 5833c4a96e372ae86f5727ec33d965f054ba21567c177c0b4340ecc2d6e7bb84
|
4
|
+
data.tar.gz: 86204eff86f88f343876d0974ac446b60d087945bb856a7ec4854d0f91f3adfa
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 70c86acbc2effa48e03911fc3a985918e5ce7004b7e02898ea841e95172db330a5c44a6cd3438513b76312d98b2dbe5b2116b4fdecfd978d15bf5715dbced3e4
|
7
|
+
data.tar.gz: e473abc4f550bae98d519fd6e1617d6336e1427926702bc4d904e59cd9f49638b820b982350c174bd2f7f6f778ef3d53a196d46667e5c4bd1b3f285c99e7eaba
|
data/.circleci/config.yml
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
version: 2.1
|
2
2
|
orbs:
|
3
|
-
samvera: samvera/circleci-orb@0
|
3
|
+
samvera: samvera/circleci-orb@1.0
|
4
4
|
jobs:
|
5
5
|
bundle_lint_test:
|
6
6
|
parameters:
|
@@ -8,7 +8,7 @@ jobs:
|
|
8
8
|
type: string
|
9
9
|
bundler_version:
|
10
10
|
type: string
|
11
|
-
default: 2.
|
11
|
+
default: 2.3.11
|
12
12
|
rails_version:
|
13
13
|
type: string
|
14
14
|
solr_config_path:
|
@@ -31,7 +31,7 @@ jobs:
|
|
31
31
|
echo "$(git branch --all --list master */master)"
|
32
32
|
fi
|
33
33
|
[[ -z "$(git branch --all --list master */master)" ]]
|
34
|
-
|
34
|
+
|
35
35
|
- samvera/bundle_for_gem:
|
36
36
|
ruby_version: << parameters.ruby_version >>
|
37
37
|
bundler_version: << parameters.bundler_version >>
|
@@ -47,31 +47,83 @@ jobs:
|
|
47
47
|
workflows:
|
48
48
|
ci:
|
49
49
|
jobs:
|
50
|
+
# Ruby 2.7 releases
|
51
|
+
- bundle_lint_test:
|
52
|
+
name: ruby2-7_rails6-1
|
53
|
+
ruby_version: 2.7.5
|
54
|
+
rails_version: 6.1.6.1
|
55
|
+
- bundle_lint_test:
|
56
|
+
name: ruby2-7_rails6-0
|
57
|
+
ruby_version: 2.7.5
|
58
|
+
rails_version: 6.0.4.7
|
50
59
|
- bundle_lint_test:
|
51
60
|
name: ruby2-7_rails5-2
|
52
|
-
ruby_version: 2.7.
|
61
|
+
ruby_version: 2.7.5
|
53
62
|
rails_version: 5.2.4
|
63
|
+
# Ruby 2.6 releases
|
64
|
+
- bundle_lint_test:
|
65
|
+
name: ruby2-6_rails6-1
|
66
|
+
ruby_version: 2.6.9
|
67
|
+
rails_version: 6.1.6.1
|
68
|
+
- bundle_lint_test:
|
69
|
+
name: ruby2-6_rails6-0
|
70
|
+
ruby_version: 2.6.9
|
71
|
+
rails_version: 6.0.4.7
|
54
72
|
- bundle_lint_test:
|
55
73
|
name: ruby2-6_rails5-2
|
56
|
-
ruby_version: 2.6.
|
74
|
+
ruby_version: 2.6.9
|
57
75
|
rails_version: 5.2.4
|
76
|
+
# Ruby 2.5 releases
|
77
|
+
- bundle_lint_test:
|
78
|
+
name: ruby2-5_rails6.0
|
79
|
+
ruby_version: 2.5.9
|
80
|
+
rails_version: 6.0.4.7
|
58
81
|
- bundle_lint_test:
|
59
82
|
name: ruby2-5_rails5-2
|
60
|
-
ruby_version: 2.5.
|
83
|
+
ruby_version: 2.5.9
|
61
84
|
rails_version: 5.2.4
|
85
|
+
|
86
|
+
nightly:
|
87
|
+
triggers:
|
88
|
+
- schedule:
|
89
|
+
cron: "0 0 * * *"
|
90
|
+
filters:
|
91
|
+
branches:
|
92
|
+
only:
|
93
|
+
- main
|
94
|
+
jobs:
|
95
|
+
# Ruby 2.7 releases
|
62
96
|
- bundle_lint_test:
|
63
|
-
name: ruby2-
|
64
|
-
ruby_version: 2.
|
65
|
-
rails_version:
|
97
|
+
name: ruby2-7_rails6-1
|
98
|
+
ruby_version: 2.7.5
|
99
|
+
rails_version: 6.1.6.1
|
66
100
|
- bundle_lint_test:
|
67
101
|
name: ruby2-7_rails6-0
|
68
|
-
ruby_version: 2.7.
|
69
|
-
rails_version: 6.0.
|
102
|
+
ruby_version: 2.7.5
|
103
|
+
rails_version: 6.0.4.7
|
104
|
+
- bundle_lint_test:
|
105
|
+
name: ruby2-7_rails5-2
|
106
|
+
ruby_version: 2.7.5
|
107
|
+
rails_version: 5.2.4
|
108
|
+
# Ruby 2.6 releases
|
109
|
+
- bundle_lint_test:
|
110
|
+
name: ruby2-6_rails6-1
|
111
|
+
ruby_version: 2.6.9
|
112
|
+
rails_version: 6.1.6.1
|
70
113
|
- bundle_lint_test:
|
71
114
|
name: ruby2-6_rails6-0
|
72
|
-
ruby_version: 2.6.
|
73
|
-
rails_version: 6.0.
|
115
|
+
ruby_version: 2.6.9
|
116
|
+
rails_version: 6.0.4.7
|
117
|
+
- bundle_lint_test:
|
118
|
+
name: ruby2-6_rails5-2
|
119
|
+
ruby_version: 2.6.9
|
120
|
+
rails_version: 5.2.4
|
121
|
+
# Ruby 2.5 releases
|
74
122
|
- bundle_lint_test:
|
75
123
|
name: ruby2-5_rails6.0
|
76
|
-
ruby_version: 2.5.
|
77
|
-
rails_version: 6.0.
|
124
|
+
ruby_version: 2.5.9
|
125
|
+
rails_version: 6.0.4.7
|
126
|
+
- bundle_lint_test:
|
127
|
+
name: ruby2-5_rails5-2
|
128
|
+
ruby_version: 2.5.9
|
129
|
+
rails_version: 5.2.4
|
data/CONTRIBUTING.md
CHANGED
@@ -44,6 +44,10 @@ prevalence of racist language in discussions of predatory
|
|
44
44
|
publishing](https://www.ncbi.nlm.nih.gov/pmc/articles/PMC6148600/) for
|
45
45
|
further details.
|
46
46
|
|
47
|
+
If you're working on PR for this project, create a feature branch off of `main`.
|
48
|
+
|
49
|
+
Please ***do not*** create a branch called `master` for this repository or as part of your pull request; the branch will either need to be removed or renamed before it can be considered for inclusion in the code base and history of our repositories.
|
50
|
+
|
47
51
|
## Contribution Tasks
|
48
52
|
|
49
53
|
* Reporting Issues
|
@@ -67,10 +71,10 @@ further details.
|
|
67
71
|
|
68
72
|
* Fork the repository on GitHub
|
69
73
|
* Create a topic branch from where you want to base your work.
|
70
|
-
* This is usually the
|
71
|
-
* To quickly create a topic branch based on
|
72
|
-
* Then checkout the new branch with `git checkout fix/
|
73
|
-
* Please avoid working directly on the `
|
74
|
+
* This is usually the main branch.
|
75
|
+
* To quickly create a topic branch based on main; `git branch fix/main/my_contribution main`
|
76
|
+
* Then checkout the new branch with `git checkout fix/main/my_contribution`.
|
77
|
+
* Please avoid working directly on the `main` branch.
|
74
78
|
* You may find the [hub suite of commands](https://github.com/defunkt/hub) helpful
|
75
79
|
* Make sure you have added sufficient tests and documentation for your changes.
|
76
80
|
* Test functionality with RSpec; Test features / UI with Capybara.
|
@@ -131,15 +135,15 @@ further details.
|
|
131
135
|
### Submitting Changes
|
132
136
|
|
133
137
|
* Read the article ["Using Pull Requests"](https://help.github.com/articles/using-pull-requests) on GitHub.
|
134
|
-
* Make sure your branch is up to date with its parent branch (i.e.
|
135
|
-
* `git checkout
|
138
|
+
* Make sure your branch is up to date with its parent branch (i.e. main)
|
139
|
+
* `git checkout main`
|
136
140
|
* `git pull --rebase`
|
137
141
|
* `git checkout <your-branch>`
|
138
|
-
* `git rebase
|
142
|
+
* `git rebase main`
|
139
143
|
* It is a good idea to run your tests again.
|
140
144
|
* If you've made more than one commit take a moment to consider whether squashing commits together would help improve their logical grouping.
|
141
145
|
* [Detailed Walkthrough of One Pull Request per Commit](http://ndlib.github.io/practices/one-commit-per-pull-request/)
|
142
|
-
* `git rebase --interactive
|
146
|
+
* `git rebase --interactive main` ([See Github help](https://help.github.com/articles/interactive-rebase))
|
143
147
|
* Squashing your branch's changes into one commit is "good form" and helps the person merging your request to see everything that is going on.
|
144
148
|
* Push your changes to a topic branch in your fork of the repository.
|
145
149
|
* Submit a pull request from your fork to the project.
|
data/Gemfile
CHANGED
@@ -7,7 +7,13 @@ gemspec path: File.expand_path('..', __FILE__)
|
|
7
7
|
gem 'byebug' unless ENV['TRAVIS']
|
8
8
|
gem 'pry-byebug' unless ENV['CI']
|
9
9
|
|
10
|
-
|
10
|
+
if ENV['RAILS_VERSION']
|
11
|
+
gem 'activemodel', ENV['RAILS_VERSION']
|
12
|
+
gem 'rails', ENV['RAILS_VERSION']
|
13
|
+
else
|
14
|
+
gem 'activemodel', '~> 6.0.4', '< 7'
|
15
|
+
gem 'rails', '~> 6.0.4', '< 7'
|
16
|
+
end
|
11
17
|
|
12
18
|
group :test do
|
13
19
|
gem 'simplecov', require: false
|
data/README.md
CHANGED
@@ -1,13 +1,14 @@
|
|
1
1
|
# ActiveFedora
|
2
2
|
|
3
|
-
Code: [](https://github.com/samvera/maintenance#samvera-core-components)
|
4
4
|
[](https://circleci.com/gh/samvera/active_fedora)
|
5
|
-
[](https://coveralls.io/github/samvera/active_fedora?branch=main)
|
6
|
+
[](https://rubygems.org/gems/active-fedora)
|
6
7
|
|
7
8
|
Docs: [](./CONTRIBUTING.md)
|
8
9
|
[](./LICENSE)
|
9
10
|
|
10
|
-
|
11
|
+
Community Support: [](http://slack.samvera.org/)
|
11
12
|
|
12
13
|
# What is ActiveFedora?
|
13
14
|
|
@@ -101,6 +102,12 @@ is installed, run:
|
|
101
102
|
rake spec
|
102
103
|
```
|
103
104
|
|
105
|
+
## Contributing
|
106
|
+
|
107
|
+
If you're working on PR for this project, create a feature branch off of `main`.
|
108
|
+
|
109
|
+
This repository follows the [Samvera Community Code of Conduct](https://samvera.atlassian.net/wiki/spaces/samvera/pages/405212316/Code+of+Conduct) and [language recommendations](https://github.com/samvera/maintenance/blob/master/templates/CONTRIBUTING.md#language). Please ***do not*** create a branch called `master` for this repository or as part of your pull request; the branch will either need to be removed or renamed before it can be considered for inclusion in the code base and history of this repository.
|
110
|
+
|
104
111
|
# Release Process
|
105
112
|
|
106
113
|
The [release process](https://github.com/samvera/active_fedora/wiki/Release-management-process) is documented on the wiki.
|
@@ -4,7 +4,7 @@ module ActiveFedora
|
|
4
4
|
module ClassMethods
|
5
5
|
protected
|
6
6
|
|
7
|
-
def define_method_attribute=(name)
|
7
|
+
def define_method_attribute=(name, owner: nil)
|
8
8
|
name = name.to_s
|
9
9
|
safe_name = name.unpack('h*'.freeze).first
|
10
10
|
ActiveFedora::AttributeMethods::AttrNames.set_name_cache safe_name, name
|
@@ -8,7 +8,7 @@ module ActiveFedora
|
|
8
8
|
MAX_ROWS = 10_000
|
9
9
|
|
10
10
|
def initialize(options = {})
|
11
|
-
@options = {
|
11
|
+
@options = { timeout: 120, open_timeout: 120, url: 'http://localhost:8080/solr' }.merge(options)
|
12
12
|
end
|
13
13
|
|
14
14
|
def conn
|
metadata
CHANGED
@@ -1,16 +1,16 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: active-fedora
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 13.
|
4
|
+
version: 13.3.0
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Matt Zumwalt
|
8
8
|
- McClain Looney
|
9
9
|
- Justin Coyne
|
10
|
-
autorequire:
|
10
|
+
autorequire:
|
11
11
|
bindir: bin
|
12
12
|
cert_chain: []
|
13
|
-
date: 2022-
|
13
|
+
date: 2022-07-25 00:00:00.000000000 Z
|
14
14
|
dependencies:
|
15
15
|
- !ruby/object:Gem::Dependency
|
16
16
|
name: activemodel
|
@@ -603,7 +603,7 @@ homepage: https://github.com/samvera/active_fedora
|
|
603
603
|
licenses:
|
604
604
|
- Apache-2.0
|
605
605
|
metadata: {}
|
606
|
-
post_install_message:
|
606
|
+
post_install_message:
|
607
607
|
rdoc_options: []
|
608
608
|
require_paths:
|
609
609
|
- lib
|
@@ -618,8 +618,8 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
618
618
|
- !ruby/object:Gem::Version
|
619
619
|
version: '0'
|
620
620
|
requirements: []
|
621
|
-
rubygems_version: 3.
|
622
|
-
signing_key:
|
621
|
+
rubygems_version: 3.0.3
|
622
|
+
signing_key:
|
623
623
|
specification_version: 4
|
624
624
|
summary: A convenience libary for manipulating documents in the Fedora Repository.
|
625
625
|
test_files: []
|