active-fedora 9.0.0.rc3 → 9.0.0
Sign up to get free protection for your applications and to get access to all the features.
- checksums.yaml +4 -4
- data/History.txt +1054 -0
- data/active-fedora.gemspec +1 -1
- data/config/predicate_mappings.yml +2 -2
- data/lib/active_fedora.rb +3 -0
- data/lib/active_fedora/attached_files.rb +31 -14
- data/lib/active_fedora/base.rb +2 -0
- data/lib/active_fedora/caching_connection.rb +80 -0
- data/lib/active_fedora/callbacks.rb +13 -14
- data/lib/active_fedora/core.rb +9 -17
- data/lib/active_fedora/errors.rb +1 -1
- data/lib/active_fedora/fedora.rb +5 -1
- data/lib/active_fedora/file.rb +42 -39
- data/lib/active_fedora/ldp_cache.rb +46 -0
- data/lib/active_fedora/ldp_resource_service.rb +27 -0
- data/lib/active_fedora/loadable_from_json.rb +3 -1
- data/lib/active_fedora/log_subscriber.rb +38 -0
- data/lib/active_fedora/persistence.rb +22 -12
- data/lib/active_fedora/predicates.rb +3 -3
- data/lib/active_fedora/railtie.rb +3 -0
- data/lib/active_fedora/rdf.rb +0 -1
- data/lib/active_fedora/relation/finder_methods.rb +2 -3
- data/lib/active_fedora/validations.rb +1 -3
- data/lib/active_fedora/version.rb +1 -1
- data/lib/generators/active_fedora/config/solr/templates/jetty.yml +3 -2
- data/spec/fixtures/rails_root/config/predicate_mappings.yml +2 -2
- data/spec/integration/associations_spec.rb +19 -19
- data/spec/integration/attached_files_spec.rb +3 -3
- data/spec/integration/belongs_to_association_spec.rb +9 -9
- data/spec/integration/caching_spec.rb +59 -0
- data/spec/integration/collection_association_spec.rb +1 -1
- data/spec/integration/fedora_solr_sync_spec.rb +2 -2
- data/spec/integration/file_spec.rb +41 -43
- data/spec/integration/has_and_belongs_to_many_associations_spec.rb +8 -8
- data/spec/integration/has_many_associations_spec.rb +15 -15
- data/spec/integration/nested_attribute_spec.rb +2 -2
- data/spec/integration/relation_spec.rb +1 -1
- data/spec/integration/solr_instance_loader_spec.rb +2 -1
- data/spec/samples/special_thing.rb +2 -2
- data/spec/spec_helper.rb +1 -0
- data/spec/unit/attached_files_spec.rb +41 -5
- data/spec/unit/attributes_spec.rb +1 -1
- data/spec/unit/change_set_spec.rb +1 -1
- data/spec/unit/code_configurator_spec.rb +3 -3
- data/spec/unit/core_spec.rb +16 -1
- data/spec/unit/file_spec.rb +14 -10
- data/spec/unit/has_and_belongs_to_many_association_spec.rb +6 -6
- data/spec/unit/has_many_association_spec.rb +4 -4
- data/spec/unit/indexing_service_spec.rb +2 -2
- data/spec/unit/ldp_resource_spec.rb +17 -0
- data/spec/unit/logger_spec.rb +1 -1
- data/spec/unit/persistence_spec.rb +24 -20
- data/spec/unit/predicates_spec.rb +7 -7
- data/spec/unit/sparql_insert_spec.rb +2 -2
- data/spec/unit/validations_spec.rb +12 -2
- metadata +13 -8
- data/lib/active_fedora/rdf/rels_ext.rb +0 -26
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA1:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 871591e4b1778c1b10fe6b66bd59d42cc6705607
|
4
|
+
data.tar.gz: 7e11bc3fdf8410f813e0bc9dd36fb5e015f2607d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: d67858d7e6c9bbcbcc7761e929d454aa817e5063a7094eb0645c042e057b27e4e97e8aa2b8447119fd3796781be448a39087fa61acadfae9db448b0a28c3b761
|
7
|
+
data.tar.gz: c1a1612ff58d19b86806da7dcb0b421ba6769413ceec565b1dcf030e18d57c5e9f6e1229976d119b2c048e6c1b096893b964741fb6ef7a298131e11bf6854dde
|
data/History.txt
CHANGED
@@ -1,3 +1,1057 @@
|
|
1
|
+
v9.0.0
|
2
|
+
2015-01-30: When save! is called only validate once [Justin Coyne]
|
3
|
+
|
4
|
+
2015-01-29: Add 'eradicate' option to ActiveFedora::Base#destroy [Michael J.
|
5
|
+
Giarlo]
|
6
|
+
|
7
|
+
2015-01-29: Deprecate the three and four arg constructor to add_file This gives
|
8
|
+
a helpful migration path instead of an error when add_file is called with 3 or 4
|
9
|
+
arguments instead of the expected 2 [Justin Coyne]
|
10
|
+
|
11
|
+
2015-01-28: File#stream should return a FileBody object instead of yielding
|
12
|
+
directly. Attempting to follow this pattern:
|
13
|
+
https://github.com/rails/rails/blob/08754f12e65a9ec79633a605e986d0f1ffa4b251/actionpack/lib/action_controller/metal/data_streaming.rb#L81-L96
|
14
|
+
which should let us set `self.response_body = file.stream` in a controller
|
15
|
+
[Justin Coyne]
|
16
|
+
|
17
|
+
2015-01-28: Deprecate File#add_file_datastream and the dsid parameter use
|
18
|
+
#add_file and :path as the parameter instead [Justin Coyne]
|
19
|
+
|
20
|
+
2015-01-26: File#last_modified removed [Justin Coyne]
|
21
|
+
|
22
|
+
2015-01-26: Don't read streams into a string before saving [Justin Coyne]
|
23
|
+
|
24
|
+
2015-01-22: Add caching for lookups from LDP. Also added Instrumentation and a
|
25
|
+
log subscriber [Justin Coyne]
|
26
|
+
|
27
|
+
2015-01-23: Encodes file name in HTTP header to allow for special characters in
|
28
|
+
file names [Hector Correa]
|
29
|
+
|
30
|
+
2015-01-22: Fixes bug that prevented ActiveFedora from deserializing classes
|
31
|
+
correctly when the base_path setting in fedora.yaml was not set [Hector Correa]
|
32
|
+
|
33
|
+
2015-01-22: Add LdpResourceService [Justin Coyne]
|
34
|
+
|
35
|
+
2015-01-21: Removed ActiveFedora::RDF::RelsExt That URI was only used in beta
|
36
|
+
development for Fedora 4, but has now been unpublished. Use the traditional
|
37
|
+
predicates at ActiveFedora::RDF::Fcrepo::RelsExt instead. [Justin Coyne]
|
38
|
+
|
39
|
+
2015-01-20: Load singular datastream attributes from solr Previously only the
|
40
|
+
first character of singular datastream attributes was being returned when the
|
41
|
+
object was loaded from solr. [Justin Coyne]
|
42
|
+
|
43
|
+
2015-01-16: Jetty should wait a bit longer before unblocking [Michael J. Giarlo]
|
44
|
+
|
45
|
+
2015-01-16: Use Fcrepo4 class repository definitions [Adam Wead]
|
46
|
+
|
47
|
+
2015-01-14: Pass nested attribute options to the resource [Justin Coyne]
|
48
|
+
|
49
|
+
2015-01-14: Upgrade ActiveTriples to 0.6.0 [Justin Coyne]
|
50
|
+
|
51
|
+
2015-01-13: After setting nested rdf attributes, mark the attributes as changed.
|
52
|
+
Fixes #685 [Justin Coyne]
|
53
|
+
|
54
|
+
2015-01-13: Warn user when initial connection to Fedora fails and the URL does
|
55
|
+
not end with /rest [Hector Correa]
|
56
|
+
|
57
|
+
2015-01-13: Support nested attributes for RDF properties. Fixes #682 [Justin
|
58
|
+
Coyne]
|
59
|
+
|
60
|
+
2015-01-09: Warn when the same predicate is used in more than one property in
|
61
|
+
the same class [Hector Correa]
|
62
|
+
|
63
|
+
2015-01-07: Fix reindex_everything. Fixes #678 [Justin Coyne]
|
64
|
+
|
65
|
+
2015-01-07: Bumping to 9.0.0.rc2, which contains a fix to the fedora generator
|
66
|
+
[Michael J. Giarlo]
|
67
|
+
|
68
|
+
2015-01-07: Use the File class in the root namespace Otherwise it's trying to
|
69
|
+
call ActiveFedora::File.expand_path which is not a method [Justin Coyne]
|
70
|
+
|
71
|
+
2015-01-07: Can assign single ActiveTriples::Resource to single-valued attribute
|
72
|
+
(fixes #653) [David Chandek-Stark]
|
73
|
+
|
74
|
+
2015-01-06: Create an indexing service for RDF properties [Justin Coyne]
|
75
|
+
|
76
|
+
2015-01-07: Test on rails 4.2 and Ruby 2.2 [Justin Coyne]
|
77
|
+
|
78
|
+
2015-01-07: Remove cucumber from the solr template [Justin Coyne]
|
79
|
+
|
80
|
+
2015-01-06: Renamed Base.get_descendent_uris to Base.descendent_uris [Justin
|
81
|
+
Coyne]
|
82
|
+
|
83
|
+
2015-01-06: Provide the URI as part of the error message when object recreation
|
84
|
+
is attempted [Justin Coyne]
|
85
|
+
|
86
|
+
2015-01-05: Generate tests for model with RDF predicates [Justin Coyne]
|
87
|
+
|
88
|
+
2015-01-05: Updates to model generator templates to work with latest version of
|
89
|
+
rspec-rails [Justin Coyne]
|
90
|
+
|
91
|
+
2015-01-05: Update the model generator. Fixes #665 [Justin Coyne]
|
92
|
+
|
93
|
+
2015-01-02: reindex_everything should ignore non-RDF sources Because they don't
|
94
|
+
have parsable graphs. [Justin Coyne]
|
95
|
+
|
96
|
+
2014-12-23: Fix a typo [ci skip] [Justin Coyne]
|
97
|
+
|
98
|
+
2014-12-22: IndexingService#generate_solr_document should yield the solr
|
99
|
+
document [Justin Coyne]
|
100
|
+
|
101
|
+
2014-12-22: Restore the generator for fedora.yml [Justin Coyne]
|
102
|
+
|
103
|
+
2014-12-19: Add strong parameters validation [Justin Coyne]
|
104
|
+
|
105
|
+
2014-12-17: Filter out gemfiles/ from coverage stats [Justin Coyne]
|
106
|
+
|
107
|
+
2014-12-17: Add a service object for indexing profile json documents Fixes #654
|
108
|
+
This allows implementers to override to_json without impacting the structure of
|
109
|
+
how the profile is stored in solr. [Justin Coyne]
|
110
|
+
|
111
|
+
2014-12-17: Use Travis' new container based arch [Justin Coyne]
|
112
|
+
|
113
|
+
2014-12-17: fixes #648 Bug: LoadableFromJson raises error when you have extra
|
114
|
+
fields in the object profile (from calling .as_json) [Matt Zumwalt]
|
115
|
+
|
116
|
+
2014-12-09: Reload and sort versions [Adam Wead]
|
117
|
+
|
118
|
+
2014-12-16: Raise an error if data could be lost from singularizing a list When
|
119
|
+
a property is set to `multiple: false` and we find more than one statement for
|
120
|
+
the predicate, then raise an ActiveFedora::ConstraintError. [Justin Coyne]
|
121
|
+
|
122
|
+
2014-12-11: Bump ldp dependency to 0.2 [Justin Coyne]
|
123
|
+
|
124
|
+
2014-12-10: PERF: Don't query solr again if we know there will be no results
|
125
|
+
[Justin Coyne]
|
126
|
+
|
127
|
+
2014-12-10: Single valued properties accessed via the Hash accessor should be
|
128
|
+
singular [Justin Coyne]
|
129
|
+
|
130
|
+
2014-12-08: Enable single-value rdf fields withought depending on ActiveTriples
|
131
|
+
[Justin Coyne]
|
132
|
+
|
133
|
+
2014-12-05: Support indexing single value RDF properties [Justin Coyne]
|
134
|
+
|
135
|
+
2014-12-05: Init the base path when the Fedora object is initialized [Justin
|
136
|
+
Coyne]
|
137
|
+
|
138
|
+
2014-12-05: Allow generated property methods to validate the cardinality of
|
139
|
+
values [Justin Coyne]
|
140
|
+
|
141
|
+
2014-12-04: Interface to versions [Adam Wead]
|
142
|
+
|
143
|
+
2014-12-04: Fix typos [ci skip] [Justin Coyne]
|
144
|
+
|
145
|
+
2014-12-04: Bump ldp dependency to ~> 0.1.0 [Justin Coyne]
|
146
|
+
|
147
|
+
2014-12-04: point to FCRepo 3.x stable branch [Benjamin Armintor]
|
148
|
+
|
149
|
+
2014-12-04: Update to hydra-jetty 8.1.1 [Adam Wead]
|
150
|
+
|
151
|
+
2013-02-28: github issue 48 tests and YARD [Benjamin Armintor]
|
152
|
+
|
153
|
+
2014-12-04: Pin to hydra-jetty 8.1.0 [Adam Wead]
|
154
|
+
|
155
|
+
2014-12-03: Return array of version uris [Adam Wead]
|
156
|
+
|
157
|
+
2014-12-02: Automatically init the base path if it doesn't exist [Justin Coyne]
|
158
|
+
|
159
|
+
2014-12-02: Add ActiveFedora.fedora.init_base_path [Justin Coyne]
|
160
|
+
|
161
|
+
2014-12-02: Optimize string allocation [Justin Coyne]
|
162
|
+
|
163
|
+
2014-12-02: Ensure that documents loaded from solr have contained file stubs
|
164
|
+
[Justin Coyne]
|
165
|
+
|
166
|
+
2014-12-02: Optimize the IndexingService [Justin Coyne]
|
167
|
+
|
168
|
+
2014-12-02: Increase Jetty's heap size [Justin Coyne]
|
169
|
+
|
170
|
+
2014-11-15: Describing bugs with pending tests [Adam Wead]
|
171
|
+
|
172
|
+
2014-12-02: Adds fix for content-lenght value missing for files uploaded via
|
173
|
+
ActionDispatch:Http::UploadedFile [Hector Correa]
|
174
|
+
|
175
|
+
2014-12-01: Switch to using the Fcrepo predicate for has_model [Justin Coyne]
|
176
|
+
|
177
|
+
2014-12-01: Removed unused property predicates [Justin Coyne]
|
178
|
+
|
179
|
+
2014-11-19: add RDF::Vocabulary subclasses for Fcrepo and ProjectHydra Cherry
|
180
|
+
picked out of #616 [Justin Coyne]
|
181
|
+
|
182
|
+
2014-12-01: Don't use predicate uri as a solr key, colins and slashes are not
|
183
|
+
supported [Justin Coyne]
|
184
|
+
|
185
|
+
2014-11-15: Extract query building and result processing from SolrService
|
186
|
+
[Justin Coyne]
|
187
|
+
|
188
|
+
2014-11-15: Refactor the lookup of solr fields for a predicate Now all of the
|
189
|
+
mapping from predicate to solr_field is consolidated in the Reflection.
|
190
|
+
Previously this logic was in two different places. [Justin Coyne]
|
191
|
+
|
192
|
+
2014-11-25: Preparing for 9.0.0.beta2 release [Adam Wead]
|
193
|
+
|
194
|
+
2014-11-19: add RDF::Vocabulary subclasses for Fcrepo and ProjectHydra [Benjamin
|
195
|
+
Armintor]
|
196
|
+
|
197
|
+
2014-11-24: rename ActiveFedora::Rdf to ActiveFedora::RDF [Benjamin Armintor]
|
198
|
+
|
199
|
+
2014-11-24: Exclude auto-snapshot versions [Adam Wead]
|
200
|
+
|
201
|
+
2014-11-21: Adding optional yml paramters as comments so people know they exist
|
202
|
+
[Carolyn Cole]
|
203
|
+
|
204
|
+
2014-11-18: Makes sure all values are handled as arrays [Hector Correa]
|
205
|
+
|
206
|
+
2014-11-14: Remove counte_cache and touch options from belongs_to association
|
207
|
+
[Justin Coyne]
|
208
|
+
|
209
|
+
2014-11-14: Remove deprecated rspec should_receive [Justin Coyne]
|
210
|
+
|
211
|
+
2014-11-14: Translate property to predicate in Builder::Association Fixes #597
|
212
|
+
[Justin Coyne]
|
213
|
+
|
214
|
+
2014-11-14: Consistent use of RDF constant [Adam Wead]
|
215
|
+
|
216
|
+
2014-11-14: Removed deprecated method from tests [Justin Coyne]
|
217
|
+
|
218
|
+
2014-11-14: Objects loaded from Solr should be read-only. Fixes #555 [Justin
|
219
|
+
Coyne]
|
220
|
+
|
221
|
+
2014-11-14: Query File for RDF.type fixes #599 [Adam Wead]
|
222
|
+
|
223
|
+
2014-11-14: Extract errors to their own file. Add documentation [Justin Coyne]
|
224
|
+
|
225
|
+
2014-11-13: Deprecate property, require predicate on associations. Fixes #483
|
226
|
+
[Justin Coyne]
|
227
|
+
|
228
|
+
2014-11-13: Use hydra-jetty fedora-4/master [Adam Wead]
|
229
|
+
|
230
|
+
2014-11-13: Clean up after the test is over [Justin Coyne]
|
231
|
+
|
232
|
+
2014-11-13: Removed a hash rocket [Justin Coyne]
|
233
|
+
|
234
|
+
2014-11-13: Implements Versionable.has_versions? Updated to use HTTP HEAD
|
235
|
+
instead HTTP GET [Hector Correa]
|
236
|
+
|
237
|
+
2014-11-13: add_file_datastream should check for a reflection. Fixes #594
|
238
|
+
[Justin Coyne]
|
239
|
+
|
240
|
+
2014-11-13: FilesHash should behave like a HashWithIndifferentAccess [Justin
|
241
|
+
Coyne]
|
242
|
+
|
243
|
+
2014-11-13: ActiveFedora::Base.new should yield a block. Fixes #589 [Justin
|
244
|
+
Coyne]
|
245
|
+
|
246
|
+
2014-11-12: Deprecate File.new taking a Base as an argument [Justin Coyne]
|
247
|
+
|
248
|
+
2014-11-06: Move the 'contains' logic into an association [Justin Coyne]
|
249
|
+
|
250
|
+
2014-11-12: Remove Solrizer-Fedora integration [Justin Coyne]
|
251
|
+
|
252
|
+
2014-11-12: Fetch digest uri from a resource [Adam Wead]
|
253
|
+
|
254
|
+
2014-11-12: Support fixity calls to Fedora [Adam Wead]
|
255
|
+
|
256
|
+
2014-11-11: Added File.metadata to define metadata properties This writes the
|
257
|
+
properties to ./fcr:metadata relative to the files URI Fixes #499 [Justin Coyne]
|
258
|
+
|
259
|
+
2014-11-12: Separate the indexing concerns out of the Persistence module [Justin
|
260
|
+
Coyne]
|
261
|
+
|
262
|
+
2014-11-11: Create an IndexingService responsible for indexing resources [Justin
|
263
|
+
Coyne]
|
264
|
+
|
265
|
+
2014-11-11: Added test for change tracking on properties [Justin Coyne]
|
266
|
+
|
267
|
+
2014-11-11: Renamed name_for_dsid to method_name_for_path [Justin Coyne]
|
268
|
+
|
269
|
+
2014-11-11: Add File#described_by [Justin Coyne]
|
270
|
+
|
271
|
+
2014-11-11: Refactor SparqlInsert [Justin Coyne]
|
272
|
+
|
273
|
+
2014-11-11: Deprecate calling .find with hash [Adam Wead]
|
274
|
+
|
275
|
+
2014-11-11: Refactor ActiveFedora::Cleaner [Justin Coyne]
|
276
|
+
|
277
|
+
2014-11-10: Removed workaround for fcrepo4/fcrepo4#442 Also removed the skipped
|
278
|
+
concurrent write spec because we are now doing SPARQL insert which doesn't have
|
279
|
+
the version conflict problem. [Justin Coyne]
|
280
|
+
|
281
|
+
2014-11-11: Change deprecation horizon to 10.0 [Adam Wead]
|
282
|
+
|
283
|
+
2014-11-10: Don't get the HEAD of a non-existant resource [Justin Coyne]
|
284
|
+
|
285
|
+
2014-11-10: Factor out the Ldp::Orm class [Justin Coyne]
|
286
|
+
|
287
|
+
2014-11-10: Switch to fcrepo 4 beta 4 [Justin Coyne]
|
288
|
+
|
289
|
+
2014-11-10: Use the headers to get Content-Disposition Previously Fedora-4
|
290
|
+
didn't return Content-Disposition on the HEAD, but it does now. [Justin Coyne]
|
291
|
+
|
292
|
+
2014-11-10: Allow size to be nil if there is no content This matches the API of
|
293
|
+
ActiveFedora 7. [Justin Coyne]
|
294
|
+
|
295
|
+
2014-11-06: Files should be independent of the ActiveFedora::Base object. This
|
296
|
+
enables files to be created and saved without a container. [Justin Coyne]
|
297
|
+
|
298
|
+
2014-11-06: Remove alias_method_chain [Justin Coyne]
|
299
|
+
|
300
|
+
2014-11-06: Changed ActiveFedora::File#persisted_size to simply return 0 if
|
301
|
+
we're looking at a new record, rather than attempt a head request on the
|
302
|
+
Ldp::Resource::BinarySource object. [Andrew Myers]
|
303
|
+
|
304
|
+
2014-11-05: Revert "clarified a comment" [Adam Wead]
|
305
|
+
|
306
|
+
2014-11-04: Refactors ActiveFedora::File#size to use two new methods,
|
307
|
+
ActiveFedora::File#persisted_size and ActiveFedora::File#dirty_size. This fixes
|
308
|
+
#560 where has_content? was returning false when there was unpersisted content,
|
309
|
+
b/c it was only checking the size of persisted content. [Andrew Myers]
|
310
|
+
|
311
|
+
2014-11-04: clarified a comment [Brian Maddy]
|
312
|
+
|
313
|
+
2014-11-04: ActiveTriples properties should know that they are multiple. Fixes
|
314
|
+
#547 [Justin Coyne]
|
315
|
+
|
316
|
+
2014-11-04: Separate the SPARQL deletes so if one doesn't match the others still
|
317
|
+
work. Fixes #564 [Justin Coyne]
|
318
|
+
|
319
|
+
2014-11-04: Shifting onto a HABTM should immediately set the ids [Justin Coyne]
|
320
|
+
|
321
|
+
2014-11-04: Should be able to call first on an attribute for a document loaded
|
322
|
+
from Solr [Justin Coyne]
|
323
|
+
|
324
|
+
2014-11-03: Removed changed? from AF::File#inspect [Justin Coyne]
|
325
|
+
|
326
|
+
2014-11-03: Adds tests for ActiveFedora::Attributes::ClassMethods.multiple?
|
327
|
+
Raises an ActiveFedora::UnknwonAttributeError when attribute does not exist.
|
328
|
+
[Andrew Myers]
|
329
|
+
|
330
|
+
2014-11-03: Deprecate SolrService#construct_query_for_pids [Justin Coyne]
|
331
|
+
|
332
|
+
2014-11-03: Make resource_class a class method to avoid multiple declarations of
|
333
|
+
GeneratedResourceSchema [Justin Coyne]
|
334
|
+
|
335
|
+
2014-11-03: load_instance_from_solr should be able to handle object associations
|
336
|
+
Fixes #542 [Justin Coyne]
|
337
|
+
|
338
|
+
2014-10-31: Deprecates usage of #pid in favor of #id. The method is defined in
|
339
|
+
ActiveFedora::FedoraAttributes and includedin ActiveFedora::Base. Replaces
|
340
|
+
references to "pid" in other method names and comments with "id". [Andrew Myers]
|
341
|
+
|
342
|
+
2014-11-03: Convenience methods from Rubydora [Adam Wead]
|
343
|
+
|
344
|
+
2014-11-03: Refactor the associations to follow developments in ActiveRecord
|
345
|
+
[Justin Coyne]
|
346
|
+
|
347
|
+
2014-11-03: Create a separate resource class for each ActiveFedora::Base
|
348
|
+
subclass This ensures that the schemas from different AF::Base subclasses don't
|
349
|
+
end up merged onto the ActiveTriples::Resource class [Justin Coyne]
|
350
|
+
|
351
|
+
2014-11-01: Raise error unless orm.new? fixes #409 [Adam Wead]
|
352
|
+
|
353
|
+
2014-11-01: Use a string for class property keys [Adam Wead]
|
354
|
+
|
355
|
+
2014-10-31: Remove FedoraLens dependency [Justin Coyne]
|
356
|
+
|
357
|
+
2014-10-31: When cleaning, handle the case where the base_path is 410 [Justin
|
358
|
+
Coyne]
|
359
|
+
|
360
|
+
2014-10-02: Remove ObjectResource from RdfDatastream [Tom Johnson]
|
361
|
+
|
362
|
+
2014-09-22: Factors out behavior from ActiveFedora::Rdf::ObjectResource to mixin
|
363
|
+
ActiveFedora::Rdf::Persistence. [Tom Johnson]
|
364
|
+
|
365
|
+
2014-10-30: Use .eradiate for tombstones [Adam Wead]
|
366
|
+
|
367
|
+
2014-10-30: Bump test grid to rails 4.2.0.beta4 [Justin Coyne]
|
368
|
+
|
369
|
+
2014-10-30: The contains method can now be called with a single argument (name)
|
370
|
+
[Justin Coyne]
|
371
|
+
|
372
|
+
2014-10-30: Use the namespaced (root) File model in solr config generator
|
373
|
+
[Justin Coyne]
|
374
|
+
|
375
|
+
2014-10-30: Use the namespaced (root) File module for the model generator
|
376
|
+
[Justin Coyne]
|
377
|
+
|
378
|
+
2014-10-30: Rely on autosave associations when setting nested attributes This
|
379
|
+
brings us closer to parity with ActiveRecord and fixes a problem present in
|
380
|
+
https://github.com/projecthydra/hydra-head/pull/211 [Justin Coyne]
|
381
|
+
|
382
|
+
2014-10-30: Use attached_files rather than the deprecated datastreams method
|
383
|
+
[Justin Coyne]
|
384
|
+
|
385
|
+
2014-10-29: Rename Datastream to File. Fixes #518 [Justin Coyne]
|
386
|
+
|
387
|
+
2014-10-30: On a SPARQL insert each predicate should have its own independent
|
388
|
+
variable [Justin Coyne]
|
389
|
+
|
390
|
+
2014-10-30: Grab the file name from the HEAD request now that fcrepo is fixed
|
391
|
+
[Justin Coyne]
|
392
|
+
|
393
|
+
2014-10-29: Use reflections for storing information about child resources
|
394
|
+
[Justin Coyne]
|
395
|
+
|
396
|
+
2014-10-29: Consolidate has_metadata and has_file_datastream into contains.
|
397
|
+
Fixes #508 [Justin Coyne]
|
398
|
+
|
399
|
+
2014-10-29: Updates to Versionable [Adam Wead]
|
400
|
+
|
401
|
+
2014-10-29: Extract cleanup logic from spec_helper into ActiveFedora::Cleaner
|
402
|
+
[Justin Coyne]
|
403
|
+
|
404
|
+
2014-10-29: Removed unused ActiveTriples predicates [Justin Coyne]
|
405
|
+
|
406
|
+
2014-10-29: Mark failing versionable tests as pending [Justin Coyne]
|
407
|
+
|
408
|
+
2014-10-29: Removed unused method SingularAssociation#check_record [Justin
|
409
|
+
Coyne]
|
410
|
+
|
411
|
+
2014-10-29: Exclude the spec/ directory from coverage [Justin Coyne]
|
412
|
+
|
413
|
+
2014-10-29: Add Coveralls badge [ci skip] [Justin Coyne]
|
414
|
+
|
415
|
+
2014-10-29: Added Coveralls. Fixes #511 [Justin Coyne]
|
416
|
+
|
417
|
+
2014-10-29: Pin activesupport to >= 4.1 [Justin Coyne]
|
418
|
+
|
419
|
+
2014-10-28: Replaces ActiveFedora::Base.url_from_sitemap_index with
|
420
|
+
ActiveFedora::Base.get_descendent_uris. This was necessary because the
|
421
|
+
'/sitemap' resource has gone away, and there is no longer a sitemap to compile a
|
422
|
+
list of urls. [Andrew Myers]
|
423
|
+
|
424
|
+
2014-10-28: Refactor CollectionAssociation#build [Justin Coyne]
|
425
|
+
|
426
|
+
2014-10-28: Get rid of
|
427
|
+
CollectionAssociation#add_record_to_target_with_callbacks. Fixes #510 [Justin
|
428
|
+
Coyne]
|
429
|
+
|
430
|
+
2014-10-28: Rename defined_attributes to delegated_attributes. Fixes #513
|
431
|
+
[Justin Coyne]
|
432
|
+
|
433
|
+
2014-10-28: Remove Persistence#reload_managed_properties, it was dangerous
|
434
|
+
[Justin Coyne]
|
435
|
+
|
436
|
+
2014-10-28: Do dirty tracking on attributes and update using SPARQL [Justin
|
437
|
+
Coyne]
|
438
|
+
|
439
|
+
2014-10-28: A 410 Gone resource should still have an ActiveTriples resource
|
440
|
+
[Justin Coyne]
|
441
|
+
|
442
|
+
2014-10-28: Trap for Ldp::Gone when loading association [Justin Coyne]
|
443
|
+
|
444
|
+
2014-10-28: Set inverse as an array if the inverse is a HABTM [Justin Coyne]
|
445
|
+
|
446
|
+
2014-10-28: Remove ReloadOnSave because we always reload now. [Justin Coyne]
|
447
|
+
|
448
|
+
2014-10-28: Only run specs in random order on CI [Justin Coyne]
|
449
|
+
|
450
|
+
2014-10-27: Adjust a unit test expectation [Justin Coyne]
|
451
|
+
|
452
|
+
2014-10-27: Adjust expectation in a unit test [Justin Coyne]
|
453
|
+
|
454
|
+
2014-10-27: Ensure the modified_date is changed after update [Justin Coyne]
|
455
|
+
|
456
|
+
2014-10-27: Exists should rescue Ldp::Gone [Justin Coyne]
|
457
|
+
|
458
|
+
2014-10-27: Rework associations [Justin Coyne]
|
459
|
+
|
460
|
+
2014-10-27: Base.find_each should rescue Ldp::Gone and not
|
461
|
+
ActiveFedora::ObjectNotFoundError [Justin Coyne]
|
462
|
+
|
463
|
+
2014-10-27: Don't attempt reloading managed properties if the node is destroyed
|
464
|
+
[Justin Coyne]
|
465
|
+
|
466
|
+
2014-10-27: Give a better message when trying to reload a destroyed object
|
467
|
+
[Justin Coyne]
|
468
|
+
|
469
|
+
2014-10-27: Upgrade to LDP to a version that raises Ldp::Gone [Justin Coyne]
|
470
|
+
|
471
|
+
2014-10-27: Reload managed properties after removing record from a HABTM
|
472
|
+
association [Justin Coyne]
|
473
|
+
|
474
|
+
2014-10-27: Reload managed properties after removing record from an association
|
475
|
+
[Justin Coyne]
|
476
|
+
|
477
|
+
2014-10-27: Reload the lastModified after an implicit save via
|
478
|
+
HasManyAssociation#concat Fixes an error like this: RuntimeError:
|
479
|
+
ERR STATUS: 409 Could not remove triple containing predicate
|
480
|
+
http://fedora.info/definitions/v4/repository#lastModified to node
|
481
|
+
/test/1a/de/75/90/1ade7590-02aa-4e63-8c60-e5c34e11c170... when
|
482
|
+
updating
|
483
|
+
http://localhost:8983/fedora/rest/test/1a/de/75/90/1ade7590-02aa-4e63-8c60-e5c34e11c170.
|
484
|
+
[Justin Coyne]
|
485
|
+
|
486
|
+
2014-10-27: Remove Datastream#query_metadata_node as it isn't being used [Justin
|
487
|
+
Coyne]
|
488
|
+
|
489
|
+
2014-10-25: Remove cruft from Datastream#metadata_resource [Justin Coyne]
|
490
|
+
|
491
|
+
2014-10-25: Don't clean fedora both before and after tests. Before is sufficient
|
492
|
+
[Justin Coyne]
|
493
|
+
|
494
|
+
2014-10-25: Revert changes that removed the resources link to a datastream
|
495
|
+
[Justin Coyne]
|
496
|
+
|
497
|
+
2014-10-25: Don't use container_resource inside Datastream#stream [Justin Coyne]
|
498
|
+
|
499
|
+
2014-10-25: For testing, use a URI on our server. Fix rspec deprecations.
|
500
|
+
[Justin Coyne]
|
501
|
+
|
502
|
+
2014-10-25: Adjust expectations broken after refactoring [Justin Coyne]
|
503
|
+
|
504
|
+
2014-10-25: Remove Datastream.has_content? [Justin Coyne]
|
505
|
+
|
506
|
+
2014-10-25: Fetch original file name from headers [Justin Coyne]
|
507
|
+
|
508
|
+
2014-10-25: Get datastream length from the response headers [Justin Coyne]
|
509
|
+
|
510
|
+
2014-10-23: Remove the ContainerResource from Datastream. Monkeypatch
|
511
|
+
RDF::DateTime to support nanoseconds. [Justin Coyne]
|
512
|
+
|
513
|
+
2014-10-02: Remove ObjectResource from RdfDatastream [Tom Johnson]
|
514
|
+
|
515
|
+
2014-10-22: fcr:content has gone away [Adam Wead]
|
516
|
+
|
517
|
+
2014-10-22: Cleanout Fedora before and after tests [Adam Wead]
|
518
|
+
|
519
|
+
2014-10-21: Pointing to hydra-jetty/fedora-4/edge [Adam Wead]
|
520
|
+
|
521
|
+
2014-10-21: Correction to comment example [Joe Atzberger]
|
522
|
+
|
523
|
+
2014-10-13: Attribute_names should be available via an instance method [Justin
|
524
|
+
Coyne]
|
525
|
+
|
526
|
+
2014-10-13: Enable create on an association to take attributes [Justin Coyne]
|
527
|
+
|
528
|
+
2014-10-10: Allow polymorphic has_many associations [Justin Coyne]
|
529
|
+
|
530
|
+
2014-10-10: Remove duplicate code (set_belongs_to_association_for) [Justin
|
531
|
+
Coyne]
|
532
|
+
|
533
|
+
2014-10-09: Put the ldp dependency in the gemspec [Justin Coyne]
|
534
|
+
|
535
|
+
2014-10-09: Provide a sensible default for base_path This ensures that we don't
|
536
|
+
encounter `no implicit conversion of nil into String` if the value is not set in
|
537
|
+
the fedora.yml [Justin Coyne]
|
538
|
+
|
539
|
+
2014-10-09: Waiting on fixes in ActiveTriples [Adam Wead]
|
540
|
+
|
541
|
+
2014-10-07: Bug #479: Typo in XSD filename value stuck in config generator
|
542
|
+
templates [Joe Atzberger]
|
543
|
+
|
544
|
+
2014-09-30: Reimplement load_instance_from_solr [Justin Coyne]
|
545
|
+
|
546
|
+
2014-09-22: Factors out behavior from ActiveFedora::Rdf::ObjectResource to mixin
|
547
|
+
ActiveFedora::Rdf::Persistence. [David Chandek-Stark]
|
548
|
+
|
549
|
+
2014-09-16: RdfDatastream#deserialize should always return an RDF::Graph. Fixes
|
550
|
+
#471 [Justin Coyne]
|
551
|
+
|
552
|
+
2014-09-11: RSpec 3.1 defaults [Adam Wead]
|
553
|
+
|
554
|
+
2014-09-10: Restore versions [Adam Wead]
|
555
|
+
|
556
|
+
2014-09-04: Use the fedora-4/master branch of hydra-jetty. This includes this
|
557
|
+
commit:
|
558
|
+
https://github.com/fcrepo4/fcrepo4/commit/d1c2a852922787e952e4d02caadb417908ef1c9f
|
559
|
+
which was made post-beta-3 [Justin Coyne]
|
560
|
+
|
561
|
+
2014-09-04: Upgrade to fedora4 beta 3 [Justin Coyne]
|
562
|
+
|
563
|
+
2014-08-23: Use the LDP capabilities better [Justin Coyne]
|
564
|
+
|
565
|
+
2014-08-21: Index the properties defined on the object [Justin Coyne]
|
566
|
+
|
567
|
+
2014-08-21: Assert the content model on init, not save [Justin Coyne]
|
568
|
+
|
569
|
+
2014-08-20: create_date and modified_date should be singular [Justin Coyne]
|
570
|
+
|
571
|
+
2014-08-20: Ensure the properties stick when assign_pid is used [Justin Coyne]
|
572
|
+
|
573
|
+
2014-08-20: OM backed datastreams should be versionable too [Justin Coyne]
|
574
|
+
|
575
|
+
2014-08-20: Ensure that the relationship is clear before the object is frozen
|
576
|
+
and destroyed [Justin Coyne]
|
577
|
+
|
578
|
+
2014-08-20: Use the official ActiveTriples branch [Justin Coyne]
|
579
|
+
|
580
|
+
2014-08-19: Use ActiveTriples for registering properties [Justin Coyne]
|
581
|
+
|
582
|
+
2014-08-18: WIP Add an association for RDF id properties [ci skip] [Justin
|
583
|
+
Coyne]
|
584
|
+
|
585
|
+
2014-08-18: WIP don't set attributes until after datastreams are initialized [ci
|
586
|
+
skip] [Justin Coyne]
|
587
|
+
|
588
|
+
2014-08-15: Set default mimeType for NtriplesRDFDatastream to
|
589
|
+
'application/n-triples' per W3C recommendation.
|
590
|
+
http://www.w3.org/TR/n-triples/#n-triples-mediatype Fixes #464 [David
|
591
|
+
Chandek-Stark]
|
592
|
+
|
593
|
+
2014-08-14: WIP Got versions working. [ci skip] [Justin Coyne]
|
594
|
+
|
595
|
+
2014-08-14: WIP Now able to fetch datastreams. [ci skip] [Justin Coyne]
|
596
|
+
|
597
|
+
2014-08-14: WIP Further work towards activetriples [ci skip] [Justin Coyne]
|
598
|
+
|
599
|
+
2014-08-13: WIP replaced fedora_lens with ActiveTriples [ci skip] [Justin Coyne]
|
600
|
+
|
601
|
+
2014-08-13: Added translate_id_to_uri and translate_uri_to_id configuration
|
602
|
+
parameters [Justin Coyne]
|
603
|
+
|
604
|
+
2014-08-13: RdfDatastream should use the parent's url as the subject, not
|
605
|
+
derived from a pid [Justin Coyne]
|
606
|
+
|
607
|
+
2014-08-12: Only use subclassed versions of uri_to_id [Justin Coyne]
|
608
|
+
|
609
|
+
2014-08-12: Belongs to should use the reflection class for uri_to_id [Justin
|
610
|
+
Coyne]
|
611
|
+
|
612
|
+
2014-08-12: Use id_to_uri on the passed in pid [Justin Coyne]
|
613
|
+
|
614
|
+
2014-08-04: RDFDatastream#content= patched to accept IO, matching
|
615
|
+
Rubydora::Datastream API Fixes #461 [David Chandek-Stark]
|
616
|
+
|
617
|
+
2014-08-01: Don't assign a pid if one already exists [Justin Coyne]
|
618
|
+
|
619
|
+
2014-08-01: Allow pids to be set by overriding assign_pid [Justin Coyne]
|
620
|
+
|
621
|
+
2014-08-01: Datastream should consider Tempfile to behave_like_io? [Justin
|
622
|
+
Coyne]
|
623
|
+
|
624
|
+
2014-07-31: Use the uri_to_id method to set relationships [Justin Coyne]
|
625
|
+
|
626
|
+
2014-07-31: Removed autoload for SolrInstanceLoader, which doesn't exist anymore
|
627
|
+
[Justin Coyne]
|
628
|
+
|
629
|
+
2014-07-30: Allow id_to_uri and uri_to_id to be overridden on a per class basis
|
630
|
+
[Justin Coyne]
|
631
|
+
|
632
|
+
2014-07-30: belongs_to associations should not be invertable [Justin Coyne]
|
633
|
+
|
634
|
+
2014-07-30: Only set ds content in #create_datastream for managed and inline
|
635
|
+
[David Chandek-Stark]
|
636
|
+
|
637
|
+
2014-07-30: RDF datastream should use the base object uri rather than compute a
|
638
|
+
new uri from the id [Justin Coyne]
|
639
|
+
|
640
|
+
2014-07-30: Change the erasure to save so that Versionable works with objects
|
641
|
+
and datastreams [Justin Coyne]
|
642
|
+
|
643
|
+
2014-07-29: Remove unneeded include [Justin Coyne]
|
644
|
+
|
645
|
+
2014-07-29: Use FedoraLens::Core in Datastream too [Justin Coyne]
|
646
|
+
|
647
|
+
2014-07-29: Use FedoraLens::Core [Justin Coyne]
|
648
|
+
|
649
|
+
2014-07-29: A datastream that hasn't been persisted shouldn't have versions
|
650
|
+
[Justin Coyne]
|
651
|
+
|
652
|
+
2014-07-29: Remove a duplicate test [Justin Coyne]
|
653
|
+
|
654
|
+
2014-07-29: Use the uri method internal to the Datastream class [Justin Coyne]
|
655
|
+
|
656
|
+
2014-07-29: Save the versionable property on a datastream [Justin Coyne]
|
657
|
+
|
658
|
+
2014-07-28: Ensure the versionable predicate is set on versionable datastreams
|
659
|
+
[Justin Coyne]
|
660
|
+
|
661
|
+
2014-07-28: Datastreams should be versionable [Justin Coyne]
|
662
|
+
|
663
|
+
2014-07-28: Added versions [Justin Coyne]
|
664
|
+
|
665
|
+
2014-07-24: Passed softCommit as parameter to delete_by_query in the proper way
|
666
|
+
[Justin Coyne]
|
667
|
+
|
668
|
+
2014-07-24: Avoid an unnecessary call to Solr [Justin Coyne]
|
669
|
+
|
670
|
+
2014-07-24: Ensure that when the model_field retreived from solr is nil, it
|
671
|
+
won't cause an NPE [Justin Coyne]
|
672
|
+
|
673
|
+
2014-07-24: Set the stale_state for HABTM associations [Justin Coyne]
|
674
|
+
|
675
|
+
2014-07-24: Give a couple of spec files more appropriate names [Justin Coyne]
|
676
|
+
|
677
|
+
2014-07-24: If a has_and_belongs_to_many assertion is missing the accessor
|
678
|
+
should return [] [Justin Coyne]
|
679
|
+
|
680
|
+
2014-07-24: The inverse of a has_many association should never be another
|
681
|
+
has_many association [Justin Coyne]
|
682
|
+
|
683
|
+
2014-07-24: Allow using has_and_belongs_to_many properties besides :is_part_of
|
684
|
+
[Justin Coyne]
|
685
|
+
|
686
|
+
2014-07-23: Handle case when has_model assertion is blank [Justin Coyne]
|
687
|
+
|
688
|
+
2014-07-23: Add debug for Hydra-head 8 [Justin Coyne]
|
689
|
+
|
690
|
+
2014-07-23: Add debug for Hydra-head 8 [Justin Coyne]
|
691
|
+
|
692
|
+
2014-07-23: Upgrade to rspec 3 [Justin Coyne]
|
693
|
+
|
694
|
+
2014-07-23: Fix expectation for streaming response [Justin Coyne]
|
695
|
+
|
696
|
+
2014-07-23: Fix test expectation for streaming [Justin Coyne]
|
697
|
+
|
698
|
+
2014-07-23: Store the file name by setting Content-Disposition [Justin Coyne]
|
699
|
+
|
700
|
+
2014-07-23: Add range request. Fixes #456 [Justin Coyne]
|
701
|
+
|
702
|
+
2014-07-23: Add Datastream#original_name accessor [Justin Coyne]
|
703
|
+
|
704
|
+
2014-07-23: Set the mime_type even when the deprecated mimeType is passed to
|
705
|
+
add_file_datastream [Justin Coyne]
|
706
|
+
|
707
|
+
2014-07-23: Deprecate the mimeType option for add_file_datastream [Justin Coyne]
|
708
|
+
|
709
|
+
2014-07-23: Added Datastream#stream [Justin Coyne]
|
710
|
+
|
711
|
+
2014-07-22: remove the fedora generator [Justin Coyne]
|
712
|
+
|
713
|
+
2014-07-22: Get rid of fedora 3 config templates [Justin Coyne]
|
714
|
+
|
715
|
+
2014-07-22: Fix change tracking on datastream [Justin Coyne]
|
716
|
+
|
717
|
+
2014-07-22: Adjust test expectation of underlying API [Justin Coyne]
|
718
|
+
|
719
|
+
2014-07-22: Adjust expectation to match exising code [Justin Coyne]
|
720
|
+
|
721
|
+
2014-07-21: DatastreamHash doesn't need an object reference [Justin Coyne]
|
722
|
+
|
723
|
+
2014-07-21: Allow setting a base_path for working with a subgraph in Fedora
|
724
|
+
[Justin Coyne]
|
725
|
+
|
726
|
+
2014-07-21: Move Base#to_key to ActiveFedora::Attributes::PrimaryKey [Justin
|
727
|
+
Coyne]
|
728
|
+
|
729
|
+
2014-07-21: Fix bugs that cropped up in rebase [Justin Coyne]
|
730
|
+
|
731
|
+
2014-07-17: Return nil for deleted content. [Justin Coyne]
|
732
|
+
|
733
|
+
2014-06-19: Allow setting many values for a HABTM [Justin Coyne]
|
734
|
+
|
735
|
+
2014-06-19: Handle inheritance for class_name on belongs_to associations [Justin
|
736
|
+
Coyne]
|
737
|
+
|
738
|
+
2014-06-19: Update tests to set multiple/single values. Initialize should accept
|
739
|
+
a hash [Justin Coyne]
|
740
|
+
|
741
|
+
2014-06-18: Fix spec broken in ed13e88 [Justin Coyne]
|
742
|
+
|
743
|
+
2014-06-18: Fix the class filter of the belongs_to relationship [Justin Coyne]
|
744
|
+
|
745
|
+
2014-06-18: Auxillary gemfiles should include the main gemfile [Justin Coyne]
|
746
|
+
|
747
|
+
2014-06-18: Association ids are now regular attributes [Justin Coyne]
|
748
|
+
|
749
|
+
2014-05-30: Fixed occasional failures in property_spec.rb [Justin Coyne]
|
750
|
+
|
751
|
+
2014-05-30: Added cleanup to fix occasional failures. [Justin Coyne]
|
752
|
+
|
753
|
+
2014-05-30: Previous assigning of config wasn't working. [Justin Coyne]
|
754
|
+
|
755
|
+
2014-05-30: Clear out FooHistory definitions, was interfering. [Justin Coyne]
|
756
|
+
|
757
|
+
2014-05-29: Fix up test namespacing. [Justin Coyne]
|
758
|
+
|
759
|
+
2014-05-29: Namespaced all tests into /test in Fedora. [Justin Coyne]
|
760
|
+
|
761
|
+
2014-06-18: Use the beta release of fedora [Justin Coyne]
|
762
|
+
|
763
|
+
2014-05-27: Don't cast AF items if explicitly told not to. [Justin Coyne]
|
764
|
+
|
765
|
+
2014-05-27: Fix rdfxml specs using old URI. [Justin Coyne]
|
766
|
+
|
767
|
+
2014-05-06: fix relationship indexing [Justin Coyne]
|
768
|
+
|
769
|
+
2014-04-28: Set inverse relationship on a has_many when it is a belongs_to or a
|
770
|
+
habtm. [Justin Coyne]
|
771
|
+
|
772
|
+
2014-04-28: Fixed stubs in indexing test [Justin Coyne]
|
773
|
+
|
774
|
+
2014-04-28: Move callbacks so that before_save occurs before saving the node
|
775
|
+
properties. This enables autosave associations to work [Justin Coyne]
|
776
|
+
|
777
|
+
2014-04-28: Set has_many polymorphic foreign keys for belongs_to or HABTM
|
778
|
+
[Justin Coyne]
|
779
|
+
|
780
|
+
2014-04-28: Fixed primary_solr_name lookup [Justin Coyne]
|
781
|
+
|
782
|
+
2014-04-28: Fixed initializing datastreams from solr_digital_object [Justin
|
783
|
+
Coyne]
|
784
|
+
|
785
|
+
2014-04-28: Remove require of byebug [Justin Coyne]
|
786
|
+
|
787
|
+
2014-04-28: Freeze relationships when the object is frozen [Justin Coyne]
|
788
|
+
|
789
|
+
2014-04-28: Removed tests for sharded config [Justin Coyne]
|
790
|
+
|
791
|
+
2014-04-28: Ensure that the datastreams resource gets updated when the parent
|
792
|
+
object is saved [Justin Coyne]
|
793
|
+
|
794
|
+
2014-04-25: Adding a has_content? [Justin Coyne]
|
795
|
+
|
796
|
+
2014-04-25: Get the datastreams mime_type an size from the correct graph node
|
797
|
+
[Justin Coyne]
|
798
|
+
|
799
|
+
2014-04-25: Set a proper URI for datastreams [Justin Coyne]
|
800
|
+
|
801
|
+
2014-04-24: Fixed query spec [Justin Coyne]
|
802
|
+
|
803
|
+
2014-04-24: Fixed json serialization spec [Justin Coyne]
|
804
|
+
|
805
|
+
2014-04-24: Rewrote ActiveFedora::Indexing.reindex_everything (fixes #401) Added
|
806
|
+
ActiveFedora::Indexing.ids_from_sitemap_index [Justin Coyne]
|
807
|
+
|
808
|
+
2014-04-24: Fix polymorphic has_many to HABTM association writer [Justin Coyne]
|
809
|
+
|
810
|
+
2014-04-24: Moved fedora_lens to projecthydra-labs [Justin Coyne]
|
811
|
+
|
812
|
+
2014-04-23: Removed invalid pid from spec [Justin Coyne]
|
813
|
+
|
814
|
+
2014-04-23: Don't save when removing HABTM associations on a deleted record
|
815
|
+
[Justin Coyne]
|
816
|
+
|
817
|
+
2014-04-23: Use delegated attributes only if there isn't a registered RDF
|
818
|
+
predicate [Justin Coyne]
|
819
|
+
|
820
|
+
2014-04-23: Fix subject uri for complex rdf datastream spec [Justin Coyne]
|
821
|
+
|
822
|
+
2014-04-23: Reenable delegated attributes [Justin Coyne]
|
823
|
+
|
824
|
+
2014-04-23: Fixed inspect to show relationship fields [Justin Coyne]
|
825
|
+
|
826
|
+
2014-04-23: Test the size attribute is set [Justin Coyne]
|
827
|
+
|
828
|
+
2014-04-23: Removed colin from test pid. It causes a 400 error in Fedora [Justin
|
829
|
+
Coyne]
|
830
|
+
|
831
|
+
2014-04-23: Update expectations for saving [Justin Coyne]
|
832
|
+
|
833
|
+
2014-04-23: Fixed test to exclude expectation of RELS-EXT [Justin Coyne]
|
834
|
+
|
835
|
+
2014-04-23: Strip leading slash from to_key [Justin Coyne]
|
836
|
+
|
837
|
+
2014-04-23: Fixed expecation in test for indexing relationships [Justin Coyne]
|
838
|
+
|
839
|
+
2014-04-23: Fixed test for indexing datastreams [Justin Coyne]
|
840
|
+
|
841
|
+
2014-04-23: Don't require byebug [Justin Coyne]
|
842
|
+
|
843
|
+
2014-04-22: Use URIs for ntriples datastream spec [Justin Coyne]
|
844
|
+
|
845
|
+
2014-04-22: Remove RDFXMLWriter [Justin Coyne]
|
846
|
+
|
847
|
+
2014-04-22: Set RDF datastream subject to be the id of the parent resource
|
848
|
+
[Justin Coyne]
|
849
|
+
|
850
|
+
2014-04-22: Removed DatastreamCollections [Justin Coyne]
|
851
|
+
|
852
|
+
2014-04-22: remove external resources from datastream collections spec [Justin
|
853
|
+
Coyne]
|
854
|
+
|
855
|
+
2014-04-22: If a model isn't asserted, then use ActiveFedora::Base [Justin
|
856
|
+
Coyne]
|
857
|
+
|
858
|
+
2014-04-22: Load datastreams that are in the repository, but not declared
|
859
|
+
[Justin Coyne]
|
860
|
+
|
861
|
+
2014-04-22: Stub should be a :put [Justin Coyne]
|
862
|
+
|
863
|
+
2014-04-22: Use the changed_attribute method to avoid a NPE [Justin Coyne]
|
864
|
+
|
865
|
+
2014-04-22: A datastreams dsid will never be nil [Justin Coyne]
|
866
|
+
|
867
|
+
2014-04-22: Remove test about OmDatastream#term_values, which isn't used anymore
|
868
|
+
[Justin Coyne]
|
869
|
+
|
870
|
+
2014-04-22: Fixed test for to_class_uri [Justin Coyne]
|
871
|
+
|
872
|
+
2014-04-22: has_model should just store the class name, no need to make it look
|
873
|
+
like a uri [Justin Coyne]
|
874
|
+
|
875
|
+
2014-04-22: Updating all info:fedora namespaces to use HTTP URIs [Justin Coyne]
|
876
|
+
|
877
|
+
2014-04-20: Point hydra-jetty at the version with fedora 4.0.0-alpha-5 [Justin
|
878
|
+
Coyne]
|
879
|
+
|
880
|
+
2014-04-19: Fix test Solr query, and remove test for the DC datastream [Justin
|
881
|
+
Coyne]
|
882
|
+
|
883
|
+
2014-04-18: If a file is set for a datastream, read it before saving [Justin
|
884
|
+
Coyne]
|
885
|
+
|
886
|
+
2014-04-18: Use save! in test to expose exceptions [Justin Coyne]
|
887
|
+
|
888
|
+
2014-04-18: Cast models when doing AF::Base.find() [Justin Coyne]
|
889
|
+
|
890
|
+
2014-04-18: removed generated uri with namespace spec [Justin Coyne]
|
891
|
+
|
892
|
+
2014-04-18: Changed the Datastream#inspect [Justin Coyne]
|
893
|
+
|
894
|
+
2014-04-18: Fix change tracking on datastreams [Justin Coyne]
|
895
|
+
|
896
|
+
2014-04-18: Don't call inner_object in specs [Justin Coyne]
|
897
|
+
|
898
|
+
2014-04-18: Fix base_extra_spec [Justin Coyne]
|
899
|
+
|
900
|
+
2014-04-18: Fixed callback spec [Justin Coyne]
|
901
|
+
|
902
|
+
2014-04-18: Fixed base uri for RDF datastreams [Justin Coyne]
|
903
|
+
|
904
|
+
2014-04-18: Clean up rakefile [Justin Coyne]
|
905
|
+
|
906
|
+
2014-04-17: When doing new with a string, it is an id. Thus it needs to be
|
907
|
+
transformed to a URL before calling super [Justin Coyne]
|
908
|
+
|
909
|
+
2014-04-17: Add a TODO about delete requests [Justin Coyne]
|
910
|
+
|
911
|
+
2014-04-17: Don't cast class unless the class exists [Justin Coyne]
|
912
|
+
|
913
|
+
2014-04-17: Added SolrService.delete(pid) [Justin Coyne]
|
914
|
+
|
915
|
+
2014-04-16: Filter belongs_to associations by class name [Justin Coyne]
|
916
|
+
|
917
|
+
2014-04-16: Fixed test for inverse of HABTM relationship [Justin Coyne]
|
918
|
+
|
919
|
+
2014-04-16: remove the last remaining calls to add_relationship [Justin Coyne]
|
920
|
+
|
921
|
+
2014-04-16: Change the stubs to reflect current behavior in
|
922
|
+
has_and_belongs_to_many_collection_spec [Justin Coyne]
|
923
|
+
|
924
|
+
2014-04-16: Fix unit test for has_many [Justin Coyne]
|
925
|
+
|
926
|
+
2014-04-16: Removed references to nonexistant method internal_uri [Justin Coyne]
|
927
|
+
|
928
|
+
2014-04-16: Remove references to nonexistant method: remove_relationship [Justin
|
929
|
+
Coyne]
|
930
|
+
|
931
|
+
2014-04-16: In has_many_collection_spec, don't pass pid as a parameter to
|
932
|
+
Base#new [Justin Coyne]
|
933
|
+
|
934
|
+
2014-04-16: Stub parent object correctly in RdfDatastreamSpec [Justin Coyne]
|
935
|
+
|
936
|
+
2014-04-16: Don't use pid as an attribute to ActiveFedora::Base.new [Justin
|
937
|
+
Coyne]
|
938
|
+
|
939
|
+
2014-04-16: Handle initializing with an Ldp::Resource or a hash of attributes
|
940
|
+
[Justin Coyne]
|
941
|
+
|
942
|
+
2014-04-16: Fix test so it doesn't rely on removed method [Justin Coyne]
|
943
|
+
|
944
|
+
2014-04-16: has_many associations should set id rather than URL. [Justin Coyne]
|
945
|
+
|
946
|
+
2014-04-16: Fix associations to set ids (not url) [Justin Coyne]
|
947
|
+
|
948
|
+
2014-04-15: Saving a datastream should use PUT instead of POST [Justin Coyne]
|
949
|
+
|
950
|
+
2014-04-15: Index has_model [Justin Coyne]
|
951
|
+
|
952
|
+
2014-04-15: Use the literals_to_strings lens for multiple associations [Justin
|
953
|
+
Coyne]
|
954
|
+
|
955
|
+
2014-04-15: Use the []= method to remove belongs_to methods [Justin Coyne]
|
956
|
+
|
957
|
+
2014-04-15: Store belongs_to relation as literals for the time being [Justin
|
958
|
+
Coyne]
|
959
|
+
|
960
|
+
2014-04-15: Fix stubs in complex_rdf_datastream_spec [Justin Coyne]
|
961
|
+
|
962
|
+
2014-04-15: Cast objects to their correct types [Justin Coyne]
|
963
|
+
|
964
|
+
2014-04-15: Remove clone and clone_into [Justin Coyne]
|
965
|
+
|
966
|
+
2014-04-15: Added size attribute to datastream [Justin Coyne]
|
967
|
+
|
968
|
+
2014-04-15: Correct expectations of parent object on RDF nested attributes spec
|
969
|
+
[Justin Coyne]
|
970
|
+
|
971
|
+
2014-04-15: Fixed delegated property setter [Justin Coyne]
|
972
|
+
|
973
|
+
2014-04-14: RdfResourceDatastream spec should use a resolvable class name
|
974
|
+
[Justin Coyne]
|
975
|
+
|
976
|
+
2014-04-14: Only solrize relationships [Justin Coyne]
|
977
|
+
|
978
|
+
2014-04-14: Dates should be single values [Justin Coyne]
|
979
|
+
|
980
|
+
2014-04-14: Allow a 200 return value for datastream content [Justin Coyne]
|
981
|
+
|
982
|
+
2014-04-14: Associations using RDF attributes [Justin Coyne]
|
983
|
+
|
984
|
+
2014-04-14: Use the attributes coming from FedoraLens [Justin Coyne]
|
985
|
+
|
986
|
+
2014-04-14: Removed mimeType from datastream [Justin Coyne]
|
987
|
+
|
988
|
+
2014-04-14: removed RelationshipGraph [Justin Coyne]
|
989
|
+
|
990
|
+
2014-04-14: Remove tests for nonexistant features [Justin Coyne]
|
991
|
+
|
992
|
+
2014-04-14: Get rid of ContentModel [Justin Coyne]
|
993
|
+
|
994
|
+
2014-04-14: Removed references to dsLabel [Justin Coyne]
|
995
|
+
|
996
|
+
2014-04-14: removed versionable attribute from datastreams [Justin Coyne]
|
997
|
+
|
998
|
+
2014-04-14: Fix datastream spec to ignore label and mimeType [Justin Coyne]
|
999
|
+
|
1000
|
+
2014-04-14: Remove inner_object from solr_config_option_spec [Justin Coyne]
|
1001
|
+
|
1002
|
+
2014-04-14: Remove owner_id accessor [Justin Coyne]
|
1003
|
+
|
1004
|
+
2014-04-14: removed #reify [Justin Coyne]
|
1005
|
+
|
1006
|
+
2014-04-14: removed #init_with [Justin Coyne]
|
1007
|
+
|
1008
|
+
2014-04-14: Removed load_instance_from_solr [Justin Coyne]
|
1009
|
+
|
1010
|
+
2014-04-14: Remove Auditable. Its functions are specifcally for FC3 [Justin
|
1011
|
+
Coyne]
|
1012
|
+
|
1013
|
+
2014-04-14: Removed DigitalObject. Removed #adapt_to [Justin Coyne]
|
1014
|
+
|
1015
|
+
2014-04-14: Simplify the Travis matrix [Justin Coyne]
|
1016
|
+
|
1017
|
+
2014-04-14: Use the fedora 4 version of hydra-jetty [Justin Coyne]
|
1018
|
+
|
1019
|
+
2014-03-31: remove sharding [Justin Coyne]
|
1020
|
+
|
1021
|
+
2014-03-28: Update expectation to have the datastream node in the path [Justin
|
1022
|
+
Coyne]
|
1023
|
+
|
1024
|
+
2014-03-27: Remove mimeType from datastream spec [Justin Coyne]
|
1025
|
+
|
1026
|
+
2014-03-27: Remove SemanticNode [Justin Coyne]
|
1027
|
+
|
1028
|
+
2014-03-27: Remove from_xml [Justin Coyne]
|
1029
|
+
|
1030
|
+
2014-03-27: Allow a 404 response from datastream_content [Justin Coyne]
|
1031
|
+
|
1032
|
+
2014-03-27: Save datastreams after save [Justin Coyne]
|
1033
|
+
|
1034
|
+
2014-03-27: WIP checkpoint [Justin Coyne]
|
1035
|
+
|
1036
|
+
2014-03-20: WIP based on LDP [Justin Coyne]
|
1037
|
+
|
1038
|
+
2014-03-19: Remove deprecated method escape_uri_for_query [Justin Coyne]
|
1039
|
+
|
1040
|
+
2014-03-19: remove deprecated method SolrDigitalObject#new? [Justin Coyne]
|
1041
|
+
|
1042
|
+
2014-03-19: Removed deprecated method pids_from_uris [Justin Coyne]
|
1043
|
+
|
1044
|
+
2014-03-19: Removed deprecated prefix methods from Rdf::Indexing [Justin Coyne]
|
1045
|
+
|
1046
|
+
2014-03-19: Removed deprecated method quote_for_solr [Justin Coyne]
|
1047
|
+
|
1048
|
+
2014-03-19: Removed deprecated methods Base#new? and Base#new_object? [Justin
|
1049
|
+
Coyne]
|
1050
|
+
|
1051
|
+
2014-03-19: Removed deprecated method rdf_type [Justin Coyne]
|
1052
|
+
|
1053
|
+
2014-03-19: Solr fields are now prefixed by the dsid by default [Justin Coyne]
|
1054
|
+
|
1
1055
|
v7.1.0
|
2
1056
|
|
3
1057
|
2014-07-17: Update Om and Rubydora depencencies [Justin Coyne]
|