ldp 0.7.1 → 1.0.3

Sign up to get free protection for your applications and to get access to all the features.
checksums.yaml CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 25f60476bce9b0fdb0d082e3d202c3ad8e367edc08b8e8f8aa270f49055c74b0
4
- data.tar.gz: 155cd50f61a3f90e2cb5c67da8403ff6df6db88daa8d50bc7aa7c8d52a025173
3
+ metadata.gz: 07302d4ea3cfb46440729b6b2a0560944b3617bf44e8a95c72d301b2f0308e35
4
+ data.tar.gz: 65edd6ba276a5b0090bb2bda020de89ac8418c13a1ef59f2c7d4e8d2193c1072
5
5
  SHA512:
6
- metadata.gz: 30a830279a5739a019a4e219cc5437eed319a1cd38cbfcffe9a8485ae2fc7a14a244114d2b8836df7b76153b86bcfbff2e17ad6f1d8db4b2b7fec6a01cad76d9
7
- data.tar.gz: cb414d1085f92f3e1e8737d52c75c9ad1051cba4d3a19f4c040a744d7ab16ae2f91d5bc0cdebcd921024f40944196f323f1c40fb324b9094c6ed7b71170f009b
6
+ metadata.gz: af7729aad60c6bbd31e98c2dd99930a2acdbef3bab8a11a14a300bcfc3089eb729e15cf041f60b112338c36445e102ec33feeb06f29d616d5535085e1a68f592
7
+ data.tar.gz: 45604e810f67b04ac822936e9e67d7dbc56db403ca5f4f7e5fa7f44d003595b63862838abf4a69ea2f63feebecc5c652b7dd14690cb54cae193af58ce42901fd
@@ -0,0 +1,84 @@
1
+ version: 2.1
2
+ orbs:
3
+ samvera: samvera/circleci-orb@0
4
+ jobs:
5
+ bundle_and_test:
6
+ parameters:
7
+ ruby_version:
8
+ type: string
9
+ rails_version:
10
+ type: string
11
+ bundler_version:
12
+ type: string
13
+ default: 2.0.1
14
+ ruby_type:
15
+ type: string
16
+ default: ruby
17
+ executor:
18
+ name: 'samvera/ruby'
19
+ ruby_version: << parameters.ruby_version >>
20
+ ruby_type: << parameters.ruby_type >>
21
+ environment:
22
+ RAILS_VERSION: << parameters.rails_version >>
23
+ working_directory: ~/project
24
+ steps:
25
+ - run: sudo apt-get update && sudo apt-get install libgmp-dev
26
+
27
+ - samvera/cached_checkout
28
+
29
+ - samvera/bundle_for_gem:
30
+ ruby_version: << parameters.ruby_version >>
31
+ bundler_version: << parameters.bundler_version >>
32
+ project: ldp
33
+
34
+ - samvera/rubocop
35
+
36
+ - samvera/parallel_rspec
37
+
38
+ workflows:
39
+ ci:
40
+ jobs:
41
+ - bundle_and_test:
42
+ name: ruby2-7_rails6-0
43
+ ruby_version: 2.7.0
44
+ rails_version: 6.0.2
45
+ - bundle_and_test:
46
+ name: ruby2-6_rails6-0
47
+ ruby_version: 2.6.5
48
+ rails_version: 6.0.2
49
+ - bundle_and_test:
50
+ name: ruby2-5_rails6-0
51
+ ruby_version: 2.5.7
52
+ rails_version: 6.0.2
53
+ - bundle_and_test:
54
+ name: ruby2-7_rails5-2
55
+ ruby_version: 2.7.0
56
+ rails_version: 5.2.4
57
+ - bundle_and_test:
58
+ name: ruby2-6_rails5-2
59
+ ruby_version: 2.6.5
60
+ rails_version: 5.2.4
61
+ - bundle_and_test:
62
+ name: ruby2-5_rails5-2
63
+ ruby_version: 2.5.7
64
+ rails_version: 5.2.4
65
+ - bundle_and_test:
66
+ name: ruby2-4_rails5-2
67
+ ruby_version: 2.4.6
68
+ rails_version: 5.2.4
69
+ - bundle_and_test:
70
+ name: ruby2-7_rails5-1
71
+ ruby_version: 2.7.0
72
+ rails_version: 5.1.7
73
+ - bundle_and_test:
74
+ name: ruby2-6_rails5-1
75
+ ruby_version: 2.6.5
76
+ rails_version: 5.1.7
77
+ - bundle_and_test:
78
+ name: ruby2-5_rails5-1
79
+ ruby_version: 2.5.7
80
+ rails_version: 5.1.7
81
+ - bundle_and_test:
82
+ name: ruby2-4_rails5-1
83
+ ruby_version: 2.4.6
84
+ rails_version: 5.1.7
@@ -0,0 +1,2 @@
1
+ unreleased=true
2
+ future-release=1.0.1
data/.rubocop.yml ADDED
@@ -0,0 +1,34 @@
1
+ inherit_gem:
2
+ bixby: bixby_default.yml
3
+
4
+ inherit_from: .rubocop_todo.yml
5
+
6
+ AllCops:
7
+ TargetRubyVersion: 2.6
8
+ Exclude:
9
+ - 'spec/**/*.rb'
10
+ - 'bin/**/*'
11
+ - 'vendor/**/*'
12
+
13
+ Bundler/DuplicatedGem:
14
+ Exclude:
15
+ - 'Gemfile'
16
+
17
+ Metrics/BlockLength:
18
+ Exclude:
19
+ - ldp.gemspec
20
+
21
+ Naming/FileName:
22
+ Exclude:
23
+ - 'Gemfile'
24
+
25
+ RSpec/DescribeClass:
26
+ Exclude:
27
+ - 'spec/lib/integration/integration_spec.rb'
28
+
29
+ Style/Documentation:
30
+ Enabled: false
31
+
32
+ Naming/PredicateName:
33
+ Exclude:
34
+ - '**/*.rb'
data/.rubocop_todo.yml ADDED
@@ -0,0 +1,264 @@
1
+ # This configuration was generated by
2
+ # `rubocop --auto-gen-config`
3
+ # on 2020-06-12 12:56:30 -0400 using RuboCop version 0.85.1.
4
+ # The point is for the user to remove these configuration records
5
+ # one by one as the offenses are removed from the code base.
6
+ # Note that changes in the inspected code, or installation of new
7
+ # versions of RuboCop, may require this file to be generated again.
8
+
9
+ # Offense count: 1
10
+ # Cop supports --auto-correct.
11
+ # Configuration parameters: TreatCommentsAsGroupSeparators, Include.
12
+ # Include: **/*.gemfile, **/Gemfile, **/gems.rb
13
+ Bundler/OrderedGems:
14
+ Exclude:
15
+ - 'Gemfile'
16
+
17
+ # Offense count: 2
18
+ # Cop supports --auto-correct.
19
+ # Configuration parameters: AllowForAlignment, AllowBeforeTrailingComments, ForceEqualSignAlignment.
20
+ Layout/ExtraSpacing:
21
+ Exclude:
22
+ - 'ldp.gemspec'
23
+
24
+ # Offense count: 3
25
+ # Cop supports --auto-correct.
26
+ Lint/AmbiguousOperator:
27
+ Exclude:
28
+ - 'lib/ldp.rb'
29
+ - 'lib/ldp/client/methods.rb'
30
+ - 'lib/ldp/orm.rb'
31
+
32
+ # Offense count: 1
33
+ Lint/DuplicateMethods:
34
+ Exclude:
35
+ - 'lib/ldp/resource/binary_source.rb'
36
+
37
+ # Offense count: 2
38
+ # Configuration parameters: AllowComments.
39
+ Lint/EmptyWhen:
40
+ Exclude:
41
+ - 'lib/ldp/container.rb'
42
+ - 'lib/ldp/resource/binary_source.rb'
43
+
44
+ # Offense count: 1
45
+ Lint/ShadowingOuterLocalVariable:
46
+ Exclude:
47
+ - 'lib/ldp/client/methods.rb'
48
+
49
+ # Offense count: 2
50
+ # Cop supports --auto-correct.
51
+ # Configuration parameters: IgnoreEmptyBlocks, AllowUnusedKeywordArguments.
52
+ Lint/UnusedBlockArgument:
53
+ Exclude:
54
+ - 'bin/ldp'
55
+ - 'lib/ldp/container/basic.rb'
56
+
57
+ # Offense count: 1
58
+ # Cop supports --auto-correct.
59
+ # Configuration parameters: AllowUnusedKeywordArguments, IgnoreEmptyMethods, IgnoreNotImplementedMethods.
60
+ Lint/UnusedMethodArgument:
61
+ Exclude:
62
+ - 'lib/ldp/resource.rb'
63
+
64
+ # Offense count: 1
65
+ # Configuration parameters: CountComments, ExcludedMethods.
66
+ # ExcludedMethods: refine
67
+ Metrics/BlockLength:
68
+ Max: 79
69
+
70
+ # Offense count: 1
71
+ # Configuration parameters: CountComments.
72
+ Metrics/ClassLength:
73
+ Max: 150
74
+
75
+ # Offense count: 1
76
+ # Configuration parameters: IgnoredMethods.
77
+ Metrics/CyclomaticComplexity:
78
+ Max: 8
79
+
80
+ # Offense count: 3
81
+ # Configuration parameters: CountComments, ExcludedMethods.
82
+ Metrics/MethodLength:
83
+ Max: 22
84
+
85
+ # Offense count: 1
86
+ # Configuration parameters: CountComments.
87
+ Metrics/ModuleLength:
88
+ Max: 127
89
+
90
+ # Offense count: 1
91
+ # Cop supports --auto-correct.
92
+ Performance/StringReplacement:
93
+ Exclude:
94
+ - 'lib/ldp/client/prefer_headers.rb'
95
+
96
+ # Offense count: 4
97
+ # Cop supports --auto-correct.
98
+ # Configuration parameters: EnforceForPrefixed.
99
+ Rails/Delegate:
100
+ Exclude:
101
+ - 'lib/ldp/client/prefer_headers.rb'
102
+ - 'lib/ldp/orm.rb'
103
+ - 'lib/ldp/response.rb'
104
+
105
+ # Offense count: 4
106
+ # Cop supports --auto-correct.
107
+ # Configuration parameters: EnforcedStyle.
108
+ # SupportedStyles: always, conditionals
109
+ Style/AndOr:
110
+ Exclude:
111
+ - 'lib/ldp/client/methods.rb'
112
+ - 'lib/ldp/resource.rb'
113
+
114
+ # Offense count: 1
115
+ # Cop supports --auto-correct.
116
+ # Configuration parameters: EnforcedStyle, SingleLineConditionsOnly, IncludeTernaryExpressions.
117
+ # SupportedStyles: assign_to_condition, assign_inside_condition
118
+ Style/ConditionalAssignment:
119
+ Exclude:
120
+ - 'lib/ldp/client/methods.rb'
121
+
122
+ # Offense count: 1
123
+ # Cop supports --auto-correct.
124
+ Style/EachWithObject:
125
+ Exclude:
126
+ - 'lib/ldp/response.rb'
127
+
128
+ # Offense count: 3
129
+ # Cop supports --auto-correct.
130
+ Style/EmptyCaseCondition:
131
+ Exclude:
132
+ - 'lib/ldp/container.rb'
133
+ - 'lib/ldp/resource.rb'
134
+
135
+ # Offense count: 20
136
+ # Cop supports --auto-correct.
137
+ # Configuration parameters: EnforcedStyle.
138
+ # SupportedStyles: always, always_true, never
139
+ Style/FrozenStringLiteralComment:
140
+ Enabled: false
141
+
142
+ # Offense count: 3
143
+ # Cop supports --auto-correct.
144
+ # Configuration parameters: EnforcedStyle, UseHashRocketsWithSymbolValues, PreferHashRocketsForNonAlnumEndingSymbols.
145
+ # SupportedStyles: ruby19, hash_rockets, no_mixed_keys, ruby19_no_mixed_keys
146
+ Style/HashSyntax:
147
+ Exclude:
148
+ - 'Rakefile'
149
+ - 'lib/ldp/orm.rb'
150
+
151
+ # Offense count: 7
152
+ # Cop supports --auto-correct.
153
+ Style/IfUnlessModifier:
154
+ Exclude:
155
+ - 'lib/ldp/client/prefer_headers.rb'
156
+ - 'lib/ldp/orm.rb'
157
+ - 'lib/ldp/resource.rb'
158
+ - 'lib/ldp/resource/rdf_source.rb'
159
+ - 'lib/ldp/response.rb'
160
+
161
+ # Offense count: 24
162
+ # Cop supports --auto-correct.
163
+ # Configuration parameters: EnforcedStyle.
164
+ # SupportedStyles: require_parentheses, require_no_parentheses, require_no_parentheses_except_multiline
165
+ Style/MethodDefParentheses:
166
+ Exclude:
167
+ - 'lib/ldp.rb'
168
+ - 'lib/ldp/client/methods.rb'
169
+ - 'lib/ldp/container.rb'
170
+ - 'lib/ldp/error.rb'
171
+ - 'lib/ldp/orm.rb'
172
+ - 'lib/ldp/resource.rb'
173
+ - 'lib/ldp/resource/binary_source.rb'
174
+ - 'lib/ldp/resource/rdf_source.rb'
175
+ - 'lib/ldp/response.rb'
176
+ - 'lib/ldp/uri.rb'
177
+
178
+ # Offense count: 1
179
+ # Cop supports --auto-correct.
180
+ # Configuration parameters: EnforcedStyle.
181
+ # SupportedStyles: literals, strict
182
+ Style/MutableConstant:
183
+ Exclude:
184
+ - 'lib/ldp/version.rb'
185
+
186
+ # Offense count: 1
187
+ # Cop supports --auto-correct.
188
+ # Configuration parameters: AutoCorrect, EnforcedStyle, IgnoredMethods.
189
+ # SupportedStyles: predicate, comparison
190
+ Style/NumericPredicate:
191
+ Exclude:
192
+ - 'spec/**/*'
193
+ - 'lib/ldp/container.rb'
194
+
195
+ # Offense count: 1
196
+ # Cop supports --auto-correct.
197
+ # Configuration parameters: PreferredDelimiters.
198
+ Style/PercentLiteralDelimiters:
199
+ Exclude:
200
+ - 'ldp.gemspec'
201
+
202
+ # Offense count: 1
203
+ # Cop supports --auto-correct.
204
+ Style/RedundantPercentQ:
205
+ Exclude:
206
+ - 'ldp.gemspec'
207
+
208
+ # Offense count: 4
209
+ # Cop supports --auto-correct.
210
+ Style/RedundantSelf:
211
+ Exclude:
212
+ - 'lib/ldp/client/prefer_headers.rb'
213
+ - 'lib/ldp/resource/binary_source.rb'
214
+
215
+ # Offense count: 1
216
+ # Cop supports --auto-correct.
217
+ Style/RescueModifier:
218
+ Exclude:
219
+ - 'lib/ldp/client/methods.rb'
220
+
221
+ # Offense count: 1
222
+ # Cop supports --auto-correct.
223
+ # Configuration parameters: ConvertCodeThatCanStartToReturnNil, AllowedMethods.
224
+ # AllowedMethods: present?, blank?, presence, try, try!
225
+ Style/SafeNavigation:
226
+ Exclude:
227
+ - 'lib/ldp/resource/rdf_source.rb'
228
+
229
+ # Offense count: 1
230
+ # Cop supports --auto-correct.
231
+ Style/SelfAssignment:
232
+ Exclude:
233
+ - 'lib/ldp/response.rb'
234
+
235
+ # Offense count: 1
236
+ # Cop supports --auto-correct.
237
+ # Configuration parameters: EnforcedStyle.
238
+ # SupportedStyles: use_perl_names, use_english_names
239
+ Style/SpecialGlobalVars:
240
+ Exclude:
241
+ - 'ldp.gemspec'
242
+
243
+ # Offense count: 2
244
+ # Cop supports --auto-correct.
245
+ # Configuration parameters: EnforcedStyle.
246
+ # SupportedStyles: single_quotes, double_quotes
247
+ Style/StringLiteralsInInterpolation:
248
+ Exclude:
249
+ - 'lib/ldp/client/prefer_headers.rb'
250
+
251
+ # Offense count: 2
252
+ # Cop supports --auto-correct.
253
+ # Configuration parameters: IgnoredMethods.
254
+ # IgnoredMethods: respond_to, define_method
255
+ Style/SymbolProc:
256
+ Exclude:
257
+ - 'lib/ldp/orm.rb'
258
+ - 'lib/ldp/resource/rdf_source.rb'
259
+
260
+ # Offense count: 1
261
+ # Cop supports --auto-correct.
262
+ Style/ZeroLengthPredicate:
263
+ Exclude:
264
+ - 'lib/ldp/container.rb'
data/CHANGELOG.md ADDED
@@ -0,0 +1,339 @@
1
+ # Changelog
2
+
3
+ ## [1.0.3](https://github.com/samvera/ldp/tree/1.0.3) (2021-05-14)
4
+
5
+ [Full Changelog](https://github.com/samvera/ldp/compare/v1.0.1...1.0.3)
6
+
7
+ Walks back a small portion of the optimizations in 1.0.2 to support a frequently
8
+ used extend-and-override pattern.
9
+
10
+ **Merged pull requests:**
11
+
12
+ - yield to ActiveFedora's intrusive overrides [#122](https://github.com/samvera/ldp/pull/122)
13
+
14
+ ## [1.0.2](https://github.com/samvera/ldp/tree/1.0.2) (2021-05-14)
15
+
16
+ [Full Changelog](https://github.com/samvera/ldp/compare/v1.0.1...1.0.2)
17
+
18
+ This release includes major performance improvements and memory optimizations.
19
+
20
+ These optimizations replace linear complexity data access operations with
21
+ constant-time equivalents. They also prevent repeated wholesale copying of
22
+ (potentially large) RDF graphs in-memory when deserializing LDP responses.
23
+
24
+ This should result in broad performance improvements in all cases. The biggest
25
+ impact will be on RDF Sources with many `ldp:contains` relationships.
26
+
27
+ **Merged pull requests:**
28
+
29
+ - don't loop over statements manually; use the library [#118](https://github.com/samvera/ldp/pull/118)
30
+ - optimize subject filtering [#119](https://github.com/samvera/ldp/pull/119)
31
+ - Adding CONTRIBUTING.md This was uploaded via automation. [#116](https://github.com/samvera/ldp/pull/116)
32
+ - fix a regression in handling for custom graph classes in `RDFSource` [#120](https://github.com/samvera/ldp/pull/120)
33
+
34
+ ## [1.0.1](https://github.com/samvera/ldp/tree/1.0.1) (2020-06-12)
35
+
36
+ [Full Changelog](https://github.com/samvera/ldp/compare/v1.0.1-beta1...1.0.1)
37
+
38
+ **Closed issues:**
39
+
40
+ - Add support for Ruby 2.7.z releases [\#111](https://github.com/samvera/ldp/issues/111)
41
+ - Test against Rails release 5.1.7 and Ruby releases 2.6.3, 2.5.5, and 2.4.6 [\#108](https://github.com/samvera/ldp/issues/108)
42
+ - Add contact/mailing list info [\#97](https://github.com/samvera/ldp/issues/97)
43
+ - Update contribution guidelines for Samvera changes [\#96](https://github.com/samvera/ldp/issues/96)
44
+ - Review/remove comment about Fedora Commons 4 alpha [\#95](https://github.com/samvera/ldp/issues/95)
45
+ - Remove Gemnasium from README [\#94](https://github.com/samvera/ldp/issues/94)
46
+ - Confirm copyright statement/years [\#93](https://github.com/samvera/ldp/issues/93)
47
+ - Test using Ruby releases 2.5.1 and 2.4.4 [\#92](https://github.com/samvera/ldp/issues/92)
48
+ - Request for LDP Point Release [\#73](https://github.com/samvera/ldp/issues/73)
49
+
50
+ **Merged pull requests:**
51
+
52
+ - Adding Bixby/Rubocop and configuring upstream style checks [\#114](https://github.com/samvera/ldp/pull/114) ([randalldfloyd](https://github.com/randalldfloyd))
53
+ - Adding Ruby 2.7.z and Rails 6.y.z releases to the CircleCI build configuration [\#113](https://github.com/samvera/ldp/pull/113) ([jrgriffiniii](https://github.com/jrgriffiniii))
54
+ - Update CircleCI Ruby and Rails versions [\#110](https://github.com/samvera/ldp/pull/110) ([botimer](https://github.com/botimer))
55
+ - Updates the CircleCI configuration to test against Rails release 5.1.7 and Ruby releases 2.6.3, 2.5.5, and 2.4.6 [\#109](https://github.com/samvera/ldp/pull/109) ([jrgriffiniii](https://github.com/jrgriffiniii))
56
+ - Use released circleci orb. [\#107](https://github.com/samvera/ldp/pull/107) ([tpendragon](https://github.com/tpendragon))
57
+ - Switch to CircleCI [\#106](https://github.com/samvera/ldp/pull/106) ([tpendragon](https://github.com/tpendragon))
58
+ - Updating the product owner to randalldfloyd [\#105](https://github.com/samvera/ldp/pull/105) ([jrgriffiniii](https://github.com/jrgriffiniii))
59
+ - update LICENSE.txt to conform to Samvera recommendation [\#103](https://github.com/samvera/ldp/pull/103) ([barmintor](https://github.com/barmintor))
60
+ - Resolve \#96; Update docs to use templates [\#102](https://github.com/samvera/ldp/pull/102) ([botimer](https://github.com/botimer))
61
+ - Upgrades the Travis CI build matrix to use later Ruby/JRuby releases [\#101](https://github.com/samvera/ldp/pull/101) ([jrgriffiniii](https://github.com/jrgriffiniii))
62
+ - Clean up README problems [\#100](https://github.com/samvera/ldp/pull/100) ([botimer](https://github.com/botimer))
63
+ - show uri when Ldp::Conflict is incountered [\#98](https://github.com/samvera/ldp/pull/98) ([elrayle](https://github.com/elrayle))
64
+
65
+ ## [v1.0.1-beta1](https://github.com/samvera/ldp/tree/v1.0.1-beta1) (2018-03-14)
66
+
67
+ [Full Changelog](https://github.com/samvera/ldp/compare/v1.0.0...v1.0.1-beta1)
68
+
69
+ **Merged pull requests:**
70
+
71
+ - Conditional in BinarySource should check for LDP::Response [\#85](https://github.com/samvera/ldp/pull/85) ([jcoyne](https://github.com/jcoyne))
72
+
73
+ ## [v1.0.0](https://github.com/samvera/ldp/tree/v1.0.0) (2018-03-14)
74
+
75
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.7.2...v1.0.0)
76
+
77
+ ## [v0.7.2](https://github.com/samvera/ldp/tree/v0.7.2) (2018-03-14)
78
+
79
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.7.1...v0.7.2)
80
+
81
+ **Merged pull requests:**
82
+
83
+ - Fix parsing of empty content-disposition filename subfield [\#90](https://github.com/samvera/ldp/pull/90) ([mbklein](https://github.com/mbklein))
84
+
85
+ ## [v0.7.1](https://github.com/samvera/ldp/tree/v0.7.1) (2018-03-13)
86
+
87
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.7.0...v0.7.1)
88
+
89
+ **Merged pull requests:**
90
+
91
+ - Support different forms of the Content-Disposition header [\#89](https://github.com/samvera/ldp/pull/89) ([mbklein](https://github.com/mbklein))
92
+ - Update README.md for Samvera [\#87](https://github.com/samvera/ldp/pull/87) ([no-reply](https://github.com/no-reply))
93
+ - Update the build matrix [\#86](https://github.com/samvera/ldp/pull/86) ([no-reply](https://github.com/no-reply))
94
+
95
+ ## [v0.7.0](https://github.com/samvera/ldp/tree/v0.7.0) (2017-06-12)
96
+
97
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.4...v0.7.0)
98
+
99
+ **Merged pull requests:**
100
+
101
+ - Response.for requires the third argument. [\#82](https://github.com/samvera/ldp/pull/82) ([jcoyne](https://github.com/jcoyne))
102
+ - Don't bother doing a HEAD request to see if the object is new [\#81](https://github.com/samvera/ldp/pull/81) ([jcoyne](https://github.com/jcoyne))
103
+ - Update travis build matrix [\#80](https://github.com/samvera/ldp/pull/80) ([cbeer](https://github.com/cbeer))
104
+ - Remove the body method [\#79](https://github.com/samvera/ldp/pull/79) ([jcoyne](https://github.com/jcoyne))
105
+ - Add standard badges [\#78](https://github.com/samvera/ldp/pull/78) ([cjcolvar](https://github.com/cjcolvar))
106
+
107
+ ## [v0.6.4](https://github.com/samvera/ldp/tree/v0.6.4) (2017-02-13)
108
+
109
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.3...v0.6.4)
110
+
111
+ **Merged pull requests:**
112
+
113
+ - Raise Ldp::Conflict when creating existing resource [\#77](https://github.com/samvera/ldp/pull/77) ([jcoyne](https://github.com/jcoyne))
114
+
115
+ ## [v0.6.3](https://github.com/samvera/ldp/tree/v0.6.3) (2017-01-13)
116
+
117
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.2...v0.6.3)
118
+
119
+ **Merged pull requests:**
120
+
121
+ - Bump tested ruby versions [\#76](https://github.com/samvera/ldp/pull/76) ([jcoyne](https://github.com/jcoyne))
122
+ - Avoid an instantiation if subject is already a RDF::URI [\#75](https://github.com/samvera/ldp/pull/75) ([jcoyne](https://github.com/jcoyne))
123
+ - bump version, nothing in readme file needs to change related to version [\#74](https://github.com/samvera/ldp/pull/74) ([carrickr](https://github.com/carrickr))
124
+
125
+ ## [v0.6.2](https://github.com/samvera/ldp/tree/v0.6.2) (2016-12-01)
126
+
127
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.1...v0.6.2)
128
+
129
+ **Closed issues:**
130
+
131
+ - Resource should not send weak ETag in If-Match for delete or update [\#64](https://github.com/samvera/ldp/issues/64)
132
+
133
+ **Merged pull requests:**
134
+
135
+ - Use If-Unmodified-Since header instead of If-Match due to issue with strong vs. weak etags [\#72](https://github.com/samvera/ldp/pull/72) ([cjcolvar](https://github.com/cjcolvar))
136
+ - Handling 307 redirects [\#71](https://github.com/samvera/ldp/pull/71) ([escowles](https://github.com/escowles))
137
+
138
+ ## [v0.6.1](https://github.com/samvera/ldp/tree/v0.6.1) (2016-08-18)
139
+
140
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.0...v0.6.1)
141
+
142
+ **Merged pull requests:**
143
+
144
+ - Update rspec configuration with new default settings [\#68](https://github.com/samvera/ldp/pull/68) ([cbeer](https://github.com/cbeer))
145
+ - Remove unnecessary require [\#67](https://github.com/samvera/ldp/pull/67) ([jcoyne](https://github.com/jcoyne))
146
+
147
+ ## [v0.6.0](https://github.com/samvera/ldp/tree/v0.6.0) (2016-08-11)
148
+
149
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.5.0...v0.6.0)
150
+
151
+ **Closed issues:**
152
+
153
+ - Rename ETagMismatch error class [\#63](https://github.com/samvera/ldp/issues/63)
154
+ - Ldp::HttpError \(STATUS: 401 [\#36](https://github.com/samvera/ldp/issues/36)
155
+
156
+ **Merged pull requests:**
157
+
158
+ - Precondition failed [\#66](https://github.com/samvera/ldp/pull/66) ([no-reply](https://github.com/no-reply))
159
+ - Bring dependencies up to date [\#65](https://github.com/samvera/ldp/pull/65) ([no-reply](https://github.com/no-reply))
160
+
161
+ ## [v0.5.0](https://github.com/samvera/ldp/tree/v0.5.0) (2016-03-08)
162
+
163
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.4.1...v0.5.0)
164
+
165
+ **Merged pull requests:**
166
+
167
+ - Factor Ldp::Response to wrap the raw http client responses [\#62](https://github.com/samvera/ldp/pull/62) ([cbeer](https://github.com/cbeer))
168
+ - Refactoring [\#61](https://github.com/samvera/ldp/pull/61) ([cbeer](https://github.com/cbeer))
169
+ - Update the build matrix [\#60](https://github.com/samvera/ldp/pull/60) ([jcoyne](https://github.com/jcoyne))
170
+ - Don't require a space between types. [\#56](https://github.com/samvera/ldp/pull/56) ([tpendragon](https://github.com/tpendragon))
171
+
172
+ ## [v0.4.1](https://github.com/samvera/ldp/tree/v0.4.1) (2015-09-28)
173
+
174
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.4.0...v0.4.1)
175
+
176
+ **Merged pull requests:**
177
+
178
+ - Ensure RDF is encoded as UTF-8 before sending it to the Turtle parser [\#55](https://github.com/samvera/ldp/pull/55) ([jcoyne](https://github.com/jcoyne))
179
+
180
+ ## [v0.4.0](https://github.com/samvera/ldp/tree/v0.4.0) (2015-09-18)
181
+
182
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.3.1...v0.4.0)
183
+
184
+ **Merged pull requests:**
185
+
186
+ - Add a Ldp::Conflict error type for 409 errors [\#54](https://github.com/samvera/ldp/pull/54) ([jcoyne](https://github.com/jcoyne))
187
+ - Instrument HTTP requests [\#53](https://github.com/samvera/ldp/pull/53) ([jcoyne](https://github.com/jcoyne))
188
+
189
+ ## [v0.3.1](https://github.com/samvera/ldp/tree/v0.3.1) (2015-05-12)
190
+
191
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.3.0...v0.3.1)
192
+
193
+ **Closed issues:**
194
+
195
+ - Getting graph from an existing RDFResource fails [\#47](https://github.com/samvera/ldp/issues/47)
196
+
197
+ **Merged pull requests:**
198
+
199
+ - Loosen restrictions from RDF::Graph [\#51](https://github.com/samvera/ldp/pull/51) ([tpendragon](https://github.com/tpendragon))
200
+
201
+ ## [v0.3.0](https://github.com/samvera/ldp/tree/v0.3.0) (2015-04-03)
202
+
203
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.2.3...v0.3.0)
204
+
205
+ **Closed issues:**
206
+
207
+ - Can't add implementation-specific omit/prefer headers. [\#49](https://github.com/samvera/ldp/issues/49)
208
+
209
+ **Merged pull requests:**
210
+
211
+ - Extract a value object to handle prefer headers. [\#50](https://github.com/samvera/ldp/pull/50) ([tpendragon](https://github.com/tpendragon))
212
+ - Ldp 47 [\#48](https://github.com/samvera/ldp/pull/48) ([barmintor](https://github.com/barmintor))
213
+
214
+ ## [v0.2.3](https://github.com/samvera/ldp/tree/v0.2.3) (2015-02-24)
215
+
216
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.2.2...v0.2.3)
217
+
218
+ **Merged pull requests:**
219
+
220
+ - Update README for Hydra [\#45](https://github.com/samvera/ldp/pull/45) ([awead](https://github.com/awead))
221
+ - Use the Apache 2.0 license for distribution [\#44](https://github.com/samvera/ldp/pull/44) ([awead](https://github.com/awead))
222
+ - fix overwrite of HTTP headers [\#38](https://github.com/samvera/ldp/pull/38) ([lasse-aagren](https://github.com/lasse-aagren))
223
+
224
+ ## [v0.2.2](https://github.com/samvera/ldp/tree/v0.2.2) (2015-01-27)
225
+
226
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.2.1...v0.2.2)
227
+
228
+ **Merged pull requests:**
229
+
230
+ - Don't attempt to remove a non-existant variable [\#43](https://github.com/samvera/ldp/pull/43) ([jcoyne](https://github.com/jcoyne))
231
+ - Minimize string allocations [\#42](https://github.com/samvera/ldp/pull/42) ([jcoyne](https://github.com/jcoyne))
232
+
233
+ ## [v0.2.1](https://github.com/samvera/ldp/tree/v0.2.1) (2015-01-23)
234
+
235
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.2.0...v0.2.1)
236
+
237
+ **Closed issues:**
238
+
239
+ - Calling .dup on a wrapped Faraday::Response, doesn't add the wrapped methods [\#39](https://github.com/samvera/ldp/issues/39)
240
+ - .new? and ActiveFedora .exist? are broken with misplaced 400 errors. [\#33](https://github.com/samvera/ldp/issues/33)
241
+ - save! always raises a GraphDifferenceException [\#22](https://github.com/samvera/ldp/issues/22)
242
+ - Round trip \(load-save\) causes a 500 error. [\#21](https://github.com/samvera/ldp/issues/21)
243
+ - orm.save with an rdf:type doesn't work with Fedora 4.0.0-alpha-3 [\#2](https://github.com/samvera/ldp/issues/2)
244
+
245
+ **Merged pull requests:**
246
+
247
+ - Allow \#dup of Ldp::Response. Fixes \#39 [\#40](https://github.com/samvera/ldp/pull/40) ([jcoyne](https://github.com/jcoyne))
248
+ - Binary should not inspect its content [\#35](https://github.com/samvera/ldp/pull/35) ([jcoyne](https://github.com/jcoyne))
249
+
250
+ ## [v0.2.0](https://github.com/samvera/ldp/tree/v0.2.0) (2014-12-11)
251
+
252
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.1.0...v0.2.0)
253
+
254
+ **Merged pull requests:**
255
+
256
+ - Cache 404 responses on HEAD requests [\#34](https://github.com/samvera/ldp/pull/34) ([jcoyne](https://github.com/jcoyne))
257
+ - Adds handling of HTTP 400 errors \(BadRequest\) [\#32](https://github.com/samvera/ldp/pull/32) ([flyingzumwalt](https://github.com/flyingzumwalt))
258
+
259
+ ## [v0.1.0](https://github.com/samvera/ldp/tree/v0.1.0) (2014-12-04)
260
+
261
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.10...v0.1.0)
262
+
263
+ ## [v0.0.10](https://github.com/samvera/ldp/tree/v0.0.10) (2014-11-06)
264
+
265
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.9...v0.0.10)
266
+
267
+ ## [v0.0.9](https://github.com/samvera/ldp/tree/v0.0.9) (2014-10-31)
268
+
269
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.8...v0.0.9)
270
+
271
+ ## [v0.0.8](https://github.com/samvera/ldp/tree/v0.0.8) (2014-10-09)
272
+
273
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.7...v0.0.8)
274
+
275
+ ## [v0.0.7](https://github.com/samvera/ldp/tree/v0.0.7) (2014-08-04)
276
+
277
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.6...v0.0.7)
278
+
279
+ ## [v0.0.6](https://github.com/samvera/ldp/tree/v0.0.6) (2014-07-22)
280
+
281
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.5...v0.0.6)
282
+
283
+ **Merged pull requests:**
284
+
285
+ - Changes to support RSpec 3 [\#31](https://github.com/samvera/ldp/pull/31) ([tpendragon](https://github.com/tpendragon))
286
+ - Adds requirements for Fedora's alpha-6 implementation of LDP. [\#30](https://github.com/samvera/ldp/pull/30) ([tpendragon](https://github.com/tpendragon))
287
+ - Adding Github as homepage [\#29](https://github.com/samvera/ldp/pull/29) ([jeremyf](https://github.com/jeremyf))
288
+
289
+ ## [v0.0.5](https://github.com/samvera/ldp/tree/v0.0.5) (2014-04-24)
290
+
291
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.4...v0.0.5)
292
+
293
+ ## [v0.0.4](https://github.com/samvera/ldp/tree/v0.0.4) (2014-04-20)
294
+
295
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.3...v0.0.4)
296
+
297
+ **Closed issues:**
298
+
299
+ - NPE calling Orm\#value on a new resource. [\#25](https://github.com/samvera/ldp/issues/25)
300
+ - Catch URI::InvalidURIError [\#10](https://github.com/samvera/ldp/issues/10)
301
+ - Handle object not found [\#6](https://github.com/samvera/ldp/issues/6)
302
+ - What are save and save! supposed to return? [\#5](https://github.com/samvera/ldp/issues/5)
303
+
304
+ **Merged pull requests:**
305
+
306
+ - Better save [\#26](https://github.com/samvera/ldp/pull/26) ([cbeer](https://github.com/cbeer))
307
+ - if we've already retrieved the body, we don't need to send another HEAD ... [\#24](https://github.com/samvera/ldp/pull/24) ([cbeer](https://github.com/cbeer))
308
+ - Head etag [\#20](https://github.com/samvera/ldp/pull/20) ([cbeer](https://github.com/cbeer))
309
+ - add instrumentation for LDP operations [\#19](https://github.com/samvera/ldp/pull/19) ([cbeer](https://github.com/cbeer))
310
+ - LDP::Resource\#create should accept a subject that is an existing absolut... [\#18](https://github.com/samvera/ldp/pull/18) ([cbeer](https://github.com/cbeer))
311
+ - Show the error message within the SaveException [\#17](https://github.com/samvera/ldp/pull/17) ([jcoyne](https://github.com/jcoyne))
312
+ - Add bin/ldp for issuing simple commands to an LDP endpoint [\#16](https://github.com/samvera/ldp/pull/16) ([cbeer](https://github.com/cbeer))
313
+ - Explain HttpErrors in the exception message [\#15](https://github.com/samvera/ldp/pull/15) ([jcoyne](https://github.com/jcoyne))
314
+ - Orm\#create should return a new Orm object [\#12](https://github.com/samvera/ldp/pull/12) ([jcoyne](https://github.com/jcoyne))
315
+ - check for HTTP status codes within Ldp::Client operations [\#11](https://github.com/samvera/ldp/pull/11) ([cbeer](https://github.com/cbeer))
316
+ - Ldp update [\#9](https://github.com/samvera/ldp/pull/9) ([cbeer](https://github.com/cbeer))
317
+
318
+ ## [v0.0.3](https://github.com/samvera/ldp/tree/v0.0.3) (2014-04-16)
319
+
320
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.2...v0.0.3)
321
+
322
+ ## [v0.0.2](https://github.com/samvera/ldp/tree/v0.0.2) (2014-03-21)
323
+
324
+ [Full Changelog](https://github.com/samvera/ldp/compare/b365fe0d8843b638f840db49bb8eac02b7194539...v0.0.2)
325
+
326
+ **Closed issues:**
327
+
328
+ - Can't load resources from Fedora 4 [\#1](https://github.com/samvera/ldp/issues/1)
329
+
330
+ **Merged pull requests:**
331
+
332
+ - Set arbitrary headers on a POST request [\#8](https://github.com/samvera/ldp/pull/8) ([jcoyne](https://github.com/jcoyne))
333
+ - Raise a NotFound error if the status is 404 [\#7](https://github.com/samvera/ldp/pull/7) ([jcoyne](https://github.com/jcoyne))
334
+ - added and fixed some tests, made it raise an exception on failed updates [\#4](https://github.com/samvera/ldp/pull/4) ([bmaddy](https://github.com/bmaddy))
335
+ - update readme.md [\#3](https://github.com/samvera/ldp/pull/3) ([bmaddy](https://github.com/bmaddy))
336
+
337
+
338
+
339
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*