ldp 0.7.0 → 1.0.2

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
- SHA1:
3
- metadata.gz: f2edbca8909c350df3c7cd926b2e6883758dca0d
4
- data.tar.gz: fd62a1e0f8a9cf283da1d8b7e3e2ed0ed70aaf13
2
+ SHA256:
3
+ metadata.gz: db21a1bac397bd2aebca07c57331dcbe7ab895642f2505728b543aa4ef5a1cdd
4
+ data.tar.gz: 6f4e2a5195c5ceb69b60b7f6d4b3f471e224b7c80dfb647342c422234a9bc615
5
5
  SHA512:
6
- metadata.gz: f93b786c175a70ed809b172c91109902387d2113e0f4254048724417e63e2a0fa3802f530a7738c9ddfbb37d1b86c2bd8adbe07ef1bdf8762a015ba2673255ae
7
- data.tar.gz: a3a06bd9aab2f518eb5cd3ab37eae4e9ed7042eb7b88eea5a6f1aba08c118b08bffcb1fb4f71dc9268f73bd0aa3eebf0a496f403501dcb12f8626655aac57abc
6
+ metadata.gz: de19de70dba6611052910192d18f2f3f28d5d4821bbe402385e2e26a8bfeddfa64559727f572b81dffb5f2fc7dd14ab3e7f2b12f0968734ec3a8d97f2933b1b9
7
+ data.tar.gz: c77a9e35d78be05782fb958740d5615ad51b9f8a42b311327d8f9c2db0a710fb42e58533ebe5d9b830800238da53e49277afa9cadb252c13b87cf9f907732244
@@ -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,328 @@
1
+ # Changelog
2
+
3
+ ## [1.0.2](https://github.com/samvera/ldp/tree/1.0.1) (2021-05-14)
4
+
5
+ [Full Changelog](https://github.com/samvera/ldp/compare/v1.0.1...1.0.2)
6
+
7
+ This release includes major performance improvements and memory optimizations.
8
+
9
+ These optimizations replace linear complexity data access operations with
10
+ constant-time equivalents. They also prevent repeated wholesale copying of
11
+ (potentially large) RDF graphs in-memory when deserializing LDP responses.
12
+
13
+ This should result in broad performance improvements in all cases. The biggest
14
+ impact will be on RDF Sources with many `ldp:contains` relationships.
15
+
16
+ **Merged pull requests:**
17
+
18
+ - don't loop over statements manually; use the library [#118](https://github.com/samvera/ldp/pull/118)
19
+ - optimize subject filtering [#119](https://github.com/samvera/ldp/pull/119)
20
+ - Adding CONTRIBUTING.md This was uploaded via automation. [#116](https://github.com/samvera/ldp/pull/116)
21
+ - fix a regression in handling for custom graph classes in `RDFSource` [#120](https://github.com/samvera/ldp/pull/120)
22
+
23
+ ## [1.0.1](https://github.com/samvera/ldp/tree/1.0.1) (2020-06-12)
24
+
25
+ [Full Changelog](https://github.com/samvera/ldp/compare/v1.0.1-beta1...1.0.1)
26
+
27
+ **Closed issues:**
28
+
29
+ - Add support for Ruby 2.7.z releases [\#111](https://github.com/samvera/ldp/issues/111)
30
+ - 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)
31
+ - Add contact/mailing list info [\#97](https://github.com/samvera/ldp/issues/97)
32
+ - Update contribution guidelines for Samvera changes [\#96](https://github.com/samvera/ldp/issues/96)
33
+ - Review/remove comment about Fedora Commons 4 alpha [\#95](https://github.com/samvera/ldp/issues/95)
34
+ - Remove Gemnasium from README [\#94](https://github.com/samvera/ldp/issues/94)
35
+ - Confirm copyright statement/years [\#93](https://github.com/samvera/ldp/issues/93)
36
+ - Test using Ruby releases 2.5.1 and 2.4.4 [\#92](https://github.com/samvera/ldp/issues/92)
37
+ - Request for LDP Point Release [\#73](https://github.com/samvera/ldp/issues/73)
38
+
39
+ **Merged pull requests:**
40
+
41
+ - Adding Bixby/Rubocop and configuring upstream style checks [\#114](https://github.com/samvera/ldp/pull/114) ([randalldfloyd](https://github.com/randalldfloyd))
42
+ - 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))
43
+ - Update CircleCI Ruby and Rails versions [\#110](https://github.com/samvera/ldp/pull/110) ([botimer](https://github.com/botimer))
44
+ - 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))
45
+ - Use released circleci orb. [\#107](https://github.com/samvera/ldp/pull/107) ([tpendragon](https://github.com/tpendragon))
46
+ - Switch to CircleCI [\#106](https://github.com/samvera/ldp/pull/106) ([tpendragon](https://github.com/tpendragon))
47
+ - Updating the product owner to randalldfloyd [\#105](https://github.com/samvera/ldp/pull/105) ([jrgriffiniii](https://github.com/jrgriffiniii))
48
+ - update LICENSE.txt to conform to Samvera recommendation [\#103](https://github.com/samvera/ldp/pull/103) ([barmintor](https://github.com/barmintor))
49
+ - Resolve \#96; Update docs to use templates [\#102](https://github.com/samvera/ldp/pull/102) ([botimer](https://github.com/botimer))
50
+ - 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))
51
+ - Clean up README problems [\#100](https://github.com/samvera/ldp/pull/100) ([botimer](https://github.com/botimer))
52
+ - show uri when Ldp::Conflict is incountered [\#98](https://github.com/samvera/ldp/pull/98) ([elrayle](https://github.com/elrayle))
53
+
54
+ ## [v1.0.1-beta1](https://github.com/samvera/ldp/tree/v1.0.1-beta1) (2018-03-14)
55
+
56
+ [Full Changelog](https://github.com/samvera/ldp/compare/v1.0.0...v1.0.1-beta1)
57
+
58
+ **Merged pull requests:**
59
+
60
+ - Conditional in BinarySource should check for LDP::Response [\#85](https://github.com/samvera/ldp/pull/85) ([jcoyne](https://github.com/jcoyne))
61
+
62
+ ## [v1.0.0](https://github.com/samvera/ldp/tree/v1.0.0) (2018-03-14)
63
+
64
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.7.2...v1.0.0)
65
+
66
+ ## [v0.7.2](https://github.com/samvera/ldp/tree/v0.7.2) (2018-03-14)
67
+
68
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.7.1...v0.7.2)
69
+
70
+ **Merged pull requests:**
71
+
72
+ - Fix parsing of empty content-disposition filename subfield [\#90](https://github.com/samvera/ldp/pull/90) ([mbklein](https://github.com/mbklein))
73
+
74
+ ## [v0.7.1](https://github.com/samvera/ldp/tree/v0.7.1) (2018-03-13)
75
+
76
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.7.0...v0.7.1)
77
+
78
+ **Merged pull requests:**
79
+
80
+ - Support different forms of the Content-Disposition header [\#89](https://github.com/samvera/ldp/pull/89) ([mbklein](https://github.com/mbklein))
81
+ - Update README.md for Samvera [\#87](https://github.com/samvera/ldp/pull/87) ([no-reply](https://github.com/no-reply))
82
+ - Update the build matrix [\#86](https://github.com/samvera/ldp/pull/86) ([no-reply](https://github.com/no-reply))
83
+
84
+ ## [v0.7.0](https://github.com/samvera/ldp/tree/v0.7.0) (2017-06-12)
85
+
86
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.4...v0.7.0)
87
+
88
+ **Merged pull requests:**
89
+
90
+ - Response.for requires the third argument. [\#82](https://github.com/samvera/ldp/pull/82) ([jcoyne](https://github.com/jcoyne))
91
+ - 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))
92
+ - Update travis build matrix [\#80](https://github.com/samvera/ldp/pull/80) ([cbeer](https://github.com/cbeer))
93
+ - Remove the body method [\#79](https://github.com/samvera/ldp/pull/79) ([jcoyne](https://github.com/jcoyne))
94
+ - Add standard badges [\#78](https://github.com/samvera/ldp/pull/78) ([cjcolvar](https://github.com/cjcolvar))
95
+
96
+ ## [v0.6.4](https://github.com/samvera/ldp/tree/v0.6.4) (2017-02-13)
97
+
98
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.3...v0.6.4)
99
+
100
+ **Merged pull requests:**
101
+
102
+ - Raise Ldp::Conflict when creating existing resource [\#77](https://github.com/samvera/ldp/pull/77) ([jcoyne](https://github.com/jcoyne))
103
+
104
+ ## [v0.6.3](https://github.com/samvera/ldp/tree/v0.6.3) (2017-01-13)
105
+
106
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.2...v0.6.3)
107
+
108
+ **Merged pull requests:**
109
+
110
+ - Bump tested ruby versions [\#76](https://github.com/samvera/ldp/pull/76) ([jcoyne](https://github.com/jcoyne))
111
+ - Avoid an instantiation if subject is already a RDF::URI [\#75](https://github.com/samvera/ldp/pull/75) ([jcoyne](https://github.com/jcoyne))
112
+ - 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))
113
+
114
+ ## [v0.6.2](https://github.com/samvera/ldp/tree/v0.6.2) (2016-12-01)
115
+
116
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.1...v0.6.2)
117
+
118
+ **Closed issues:**
119
+
120
+ - Resource should not send weak ETag in If-Match for delete or update [\#64](https://github.com/samvera/ldp/issues/64)
121
+
122
+ **Merged pull requests:**
123
+
124
+ - 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))
125
+ - Handling 307 redirects [\#71](https://github.com/samvera/ldp/pull/71) ([escowles](https://github.com/escowles))
126
+
127
+ ## [v0.6.1](https://github.com/samvera/ldp/tree/v0.6.1) (2016-08-18)
128
+
129
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.6.0...v0.6.1)
130
+
131
+ **Merged pull requests:**
132
+
133
+ - Update rspec configuration with new default settings [\#68](https://github.com/samvera/ldp/pull/68) ([cbeer](https://github.com/cbeer))
134
+ - Remove unnecessary require [\#67](https://github.com/samvera/ldp/pull/67) ([jcoyne](https://github.com/jcoyne))
135
+
136
+ ## [v0.6.0](https://github.com/samvera/ldp/tree/v0.6.0) (2016-08-11)
137
+
138
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.5.0...v0.6.0)
139
+
140
+ **Closed issues:**
141
+
142
+ - Rename ETagMismatch error class [\#63](https://github.com/samvera/ldp/issues/63)
143
+ - Ldp::HttpError \(STATUS: 401 [\#36](https://github.com/samvera/ldp/issues/36)
144
+
145
+ **Merged pull requests:**
146
+
147
+ - Precondition failed [\#66](https://github.com/samvera/ldp/pull/66) ([no-reply](https://github.com/no-reply))
148
+ - Bring dependencies up to date [\#65](https://github.com/samvera/ldp/pull/65) ([no-reply](https://github.com/no-reply))
149
+
150
+ ## [v0.5.0](https://github.com/samvera/ldp/tree/v0.5.0) (2016-03-08)
151
+
152
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.4.1...v0.5.0)
153
+
154
+ **Merged pull requests:**
155
+
156
+ - Factor Ldp::Response to wrap the raw http client responses [\#62](https://github.com/samvera/ldp/pull/62) ([cbeer](https://github.com/cbeer))
157
+ - Refactoring [\#61](https://github.com/samvera/ldp/pull/61) ([cbeer](https://github.com/cbeer))
158
+ - Update the build matrix [\#60](https://github.com/samvera/ldp/pull/60) ([jcoyne](https://github.com/jcoyne))
159
+ - Don't require a space between types. [\#56](https://github.com/samvera/ldp/pull/56) ([tpendragon](https://github.com/tpendragon))
160
+
161
+ ## [v0.4.1](https://github.com/samvera/ldp/tree/v0.4.1) (2015-09-28)
162
+
163
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.4.0...v0.4.1)
164
+
165
+ **Merged pull requests:**
166
+
167
+ - 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))
168
+
169
+ ## [v0.4.0](https://github.com/samvera/ldp/tree/v0.4.0) (2015-09-18)
170
+
171
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.3.1...v0.4.0)
172
+
173
+ **Merged pull requests:**
174
+
175
+ - Add a Ldp::Conflict error type for 409 errors [\#54](https://github.com/samvera/ldp/pull/54) ([jcoyne](https://github.com/jcoyne))
176
+ - Instrument HTTP requests [\#53](https://github.com/samvera/ldp/pull/53) ([jcoyne](https://github.com/jcoyne))
177
+
178
+ ## [v0.3.1](https://github.com/samvera/ldp/tree/v0.3.1) (2015-05-12)
179
+
180
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.3.0...v0.3.1)
181
+
182
+ **Closed issues:**
183
+
184
+ - Getting graph from an existing RDFResource fails [\#47](https://github.com/samvera/ldp/issues/47)
185
+
186
+ **Merged pull requests:**
187
+
188
+ - Loosen restrictions from RDF::Graph [\#51](https://github.com/samvera/ldp/pull/51) ([tpendragon](https://github.com/tpendragon))
189
+
190
+ ## [v0.3.0](https://github.com/samvera/ldp/tree/v0.3.0) (2015-04-03)
191
+
192
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.2.3...v0.3.0)
193
+
194
+ **Closed issues:**
195
+
196
+ - Can't add implementation-specific omit/prefer headers. [\#49](https://github.com/samvera/ldp/issues/49)
197
+
198
+ **Merged pull requests:**
199
+
200
+ - Extract a value object to handle prefer headers. [\#50](https://github.com/samvera/ldp/pull/50) ([tpendragon](https://github.com/tpendragon))
201
+ - Ldp 47 [\#48](https://github.com/samvera/ldp/pull/48) ([barmintor](https://github.com/barmintor))
202
+
203
+ ## [v0.2.3](https://github.com/samvera/ldp/tree/v0.2.3) (2015-02-24)
204
+
205
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.2.2...v0.2.3)
206
+
207
+ **Merged pull requests:**
208
+
209
+ - Update README for Hydra [\#45](https://github.com/samvera/ldp/pull/45) ([awead](https://github.com/awead))
210
+ - Use the Apache 2.0 license for distribution [\#44](https://github.com/samvera/ldp/pull/44) ([awead](https://github.com/awead))
211
+ - fix overwrite of HTTP headers [\#38](https://github.com/samvera/ldp/pull/38) ([lasse-aagren](https://github.com/lasse-aagren))
212
+
213
+ ## [v0.2.2](https://github.com/samvera/ldp/tree/v0.2.2) (2015-01-27)
214
+
215
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.2.1...v0.2.2)
216
+
217
+ **Merged pull requests:**
218
+
219
+ - Don't attempt to remove a non-existant variable [\#43](https://github.com/samvera/ldp/pull/43) ([jcoyne](https://github.com/jcoyne))
220
+ - Minimize string allocations [\#42](https://github.com/samvera/ldp/pull/42) ([jcoyne](https://github.com/jcoyne))
221
+
222
+ ## [v0.2.1](https://github.com/samvera/ldp/tree/v0.2.1) (2015-01-23)
223
+
224
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.2.0...v0.2.1)
225
+
226
+ **Closed issues:**
227
+
228
+ - Calling .dup on a wrapped Faraday::Response, doesn't add the wrapped methods [\#39](https://github.com/samvera/ldp/issues/39)
229
+ - .new? and ActiveFedora .exist? are broken with misplaced 400 errors. [\#33](https://github.com/samvera/ldp/issues/33)
230
+ - save! always raises a GraphDifferenceException [\#22](https://github.com/samvera/ldp/issues/22)
231
+ - Round trip \(load-save\) causes a 500 error. [\#21](https://github.com/samvera/ldp/issues/21)
232
+ - orm.save with an rdf:type doesn't work with Fedora 4.0.0-alpha-3 [\#2](https://github.com/samvera/ldp/issues/2)
233
+
234
+ **Merged pull requests:**
235
+
236
+ - Allow \#dup of Ldp::Response. Fixes \#39 [\#40](https://github.com/samvera/ldp/pull/40) ([jcoyne](https://github.com/jcoyne))
237
+ - Binary should not inspect its content [\#35](https://github.com/samvera/ldp/pull/35) ([jcoyne](https://github.com/jcoyne))
238
+
239
+ ## [v0.2.0](https://github.com/samvera/ldp/tree/v0.2.0) (2014-12-11)
240
+
241
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.1.0...v0.2.0)
242
+
243
+ **Merged pull requests:**
244
+
245
+ - Cache 404 responses on HEAD requests [\#34](https://github.com/samvera/ldp/pull/34) ([jcoyne](https://github.com/jcoyne))
246
+ - Adds handling of HTTP 400 errors \(BadRequest\) [\#32](https://github.com/samvera/ldp/pull/32) ([flyingzumwalt](https://github.com/flyingzumwalt))
247
+
248
+ ## [v0.1.0](https://github.com/samvera/ldp/tree/v0.1.0) (2014-12-04)
249
+
250
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.10...v0.1.0)
251
+
252
+ ## [v0.0.10](https://github.com/samvera/ldp/tree/v0.0.10) (2014-11-06)
253
+
254
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.9...v0.0.10)
255
+
256
+ ## [v0.0.9](https://github.com/samvera/ldp/tree/v0.0.9) (2014-10-31)
257
+
258
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.8...v0.0.9)
259
+
260
+ ## [v0.0.8](https://github.com/samvera/ldp/tree/v0.0.8) (2014-10-09)
261
+
262
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.7...v0.0.8)
263
+
264
+ ## [v0.0.7](https://github.com/samvera/ldp/tree/v0.0.7) (2014-08-04)
265
+
266
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.6...v0.0.7)
267
+
268
+ ## [v0.0.6](https://github.com/samvera/ldp/tree/v0.0.6) (2014-07-22)
269
+
270
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.5...v0.0.6)
271
+
272
+ **Merged pull requests:**
273
+
274
+ - Changes to support RSpec 3 [\#31](https://github.com/samvera/ldp/pull/31) ([tpendragon](https://github.com/tpendragon))
275
+ - Adds requirements for Fedora's alpha-6 implementation of LDP. [\#30](https://github.com/samvera/ldp/pull/30) ([tpendragon](https://github.com/tpendragon))
276
+ - Adding Github as homepage [\#29](https://github.com/samvera/ldp/pull/29) ([jeremyf](https://github.com/jeremyf))
277
+
278
+ ## [v0.0.5](https://github.com/samvera/ldp/tree/v0.0.5) (2014-04-24)
279
+
280
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.4...v0.0.5)
281
+
282
+ ## [v0.0.4](https://github.com/samvera/ldp/tree/v0.0.4) (2014-04-20)
283
+
284
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.3...v0.0.4)
285
+
286
+ **Closed issues:**
287
+
288
+ - NPE calling Orm\#value on a new resource. [\#25](https://github.com/samvera/ldp/issues/25)
289
+ - Catch URI::InvalidURIError [\#10](https://github.com/samvera/ldp/issues/10)
290
+ - Handle object not found [\#6](https://github.com/samvera/ldp/issues/6)
291
+ - What are save and save! supposed to return? [\#5](https://github.com/samvera/ldp/issues/5)
292
+
293
+ **Merged pull requests:**
294
+
295
+ - Better save [\#26](https://github.com/samvera/ldp/pull/26) ([cbeer](https://github.com/cbeer))
296
+ - 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))
297
+ - Head etag [\#20](https://github.com/samvera/ldp/pull/20) ([cbeer](https://github.com/cbeer))
298
+ - add instrumentation for LDP operations [\#19](https://github.com/samvera/ldp/pull/19) ([cbeer](https://github.com/cbeer))
299
+ - 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))
300
+ - Show the error message within the SaveException [\#17](https://github.com/samvera/ldp/pull/17) ([jcoyne](https://github.com/jcoyne))
301
+ - Add bin/ldp for issuing simple commands to an LDP endpoint [\#16](https://github.com/samvera/ldp/pull/16) ([cbeer](https://github.com/cbeer))
302
+ - Explain HttpErrors in the exception message [\#15](https://github.com/samvera/ldp/pull/15) ([jcoyne](https://github.com/jcoyne))
303
+ - Orm\#create should return a new Orm object [\#12](https://github.com/samvera/ldp/pull/12) ([jcoyne](https://github.com/jcoyne))
304
+ - check for HTTP status codes within Ldp::Client operations [\#11](https://github.com/samvera/ldp/pull/11) ([cbeer](https://github.com/cbeer))
305
+ - Ldp update [\#9](https://github.com/samvera/ldp/pull/9) ([cbeer](https://github.com/cbeer))
306
+
307
+ ## [v0.0.3](https://github.com/samvera/ldp/tree/v0.0.3) (2014-04-16)
308
+
309
+ [Full Changelog](https://github.com/samvera/ldp/compare/v0.0.2...v0.0.3)
310
+
311
+ ## [v0.0.2](https://github.com/samvera/ldp/tree/v0.0.2) (2014-03-21)
312
+
313
+ [Full Changelog](https://github.com/samvera/ldp/compare/b365fe0d8843b638f840db49bb8eac02b7194539...v0.0.2)
314
+
315
+ **Closed issues:**
316
+
317
+ - Can't load resources from Fedora 4 [\#1](https://github.com/samvera/ldp/issues/1)
318
+
319
+ **Merged pull requests:**
320
+
321
+ - Set arbitrary headers on a POST request [\#8](https://github.com/samvera/ldp/pull/8) ([jcoyne](https://github.com/jcoyne))
322
+ - Raise a NotFound error if the status is 404 [\#7](https://github.com/samvera/ldp/pull/7) ([jcoyne](https://github.com/jcoyne))
323
+ - 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))
324
+ - update readme.md [\#3](https://github.com/samvera/ldp/pull/3) ([bmaddy](https://github.com/bmaddy))
325
+
326
+
327
+
328
+ \* *This Changelog was automatically generated by [github_changelog_generator](https://github.com/github-changelog-generator/github-changelog-generator)*