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