ldp 1.0.2 → 1.0.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- checksums.yaml +4 -4
- data/CHANGELOG.md +12 -1
- data/lib/ldp/resource/rdf_source.rb +0 -6
- data/lib/ldp/version.rb +1 -1
- metadata +1 -1
checksums.yaml
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
---
|
|
2
2
|
SHA256:
|
|
3
|
-
metadata.gz:
|
|
4
|
-
data.tar.gz:
|
|
3
|
+
metadata.gz: 07302d4ea3cfb46440729b6b2a0560944b3617bf44e8a95c72d301b2f0308e35
|
|
4
|
+
data.tar.gz: 65edd6ba276a5b0090bb2bda020de89ac8418c13a1ef59f2c7d4e8d2193c1072
|
|
5
5
|
SHA512:
|
|
6
|
-
metadata.gz:
|
|
7
|
-
data.tar.gz:
|
|
6
|
+
metadata.gz: af7729aad60c6bbd31e98c2dd99930a2acdbef3bab8a11a14a300bcfc3089eb729e15cf041f60b112338c36445e102ec33feeb06f29d616d5535085e1a68f592
|
|
7
|
+
data.tar.gz: 45604e810f67b04ac822936e9e67d7dbc56db403ca5f4f7e5fa7f44d003595b63862838abf4a69ea2f63feebecc5c652b7dd14690cb54cae193af58ce42901fd
|
data/CHANGELOG.md
CHANGED
|
@@ -1,6 +1,17 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
-
## [1.0.
|
|
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)
|
|
4
15
|
|
|
5
16
|
[Full Changelog](https://github.com/samvera/ldp/compare/v1.0.1...1.0.2)
|
|
6
17
|
|
|
@@ -77,12 +77,6 @@ module Ldp
|
|
|
77
77
|
# @param [Faraday::Response] graph query response
|
|
78
78
|
# @return [RDF::Graph]
|
|
79
79
|
def response_as_graph(resp)
|
|
80
|
-
if graph_class == RDF::Graph
|
|
81
|
-
resp.graph
|
|
82
|
-
else
|
|
83
|
-
graph_class.new(data: resp.graph.data)
|
|
84
|
-
end
|
|
85
|
-
rescue ArgumentError
|
|
86
80
|
build_empty_graph << resp.graph
|
|
87
81
|
end
|
|
88
82
|
|
data/lib/ldp/version.rb
CHANGED