ldp 1.0.2 → 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: db21a1bac397bd2aebca07c57331dcbe7ab895642f2505728b543aa4ef5a1cdd
4
- data.tar.gz: 6f4e2a5195c5ceb69b60b7f6d4b3f471e224b7c80dfb647342c422234a9bc615
3
+ metadata.gz: 07302d4ea3cfb46440729b6b2a0560944b3617bf44e8a95c72d301b2f0308e35
4
+ data.tar.gz: 65edd6ba276a5b0090bb2bda020de89ac8418c13a1ef59f2c7d4e8d2193c1072
5
5
  SHA512:
6
- metadata.gz: de19de70dba6611052910192d18f2f3f28d5d4821bbe402385e2e26a8bfeddfa64559727f572b81dffb5f2fc7dd14ab3e7f2b12f0968734ec3a8d97f2933b1b9
7
- data.tar.gz: c77a9e35d78be05782fb958740d5615ad51b9f8a42b311327d8f9c2db0a710fb42e58533ebe5d9b830800238da53e49277afa9cadb252c13b87cf9f907732244
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.2](https://github.com/samvera/ldp/tree/1.0.1) (2021-05-14)
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
@@ -1,3 +1,3 @@
1
1
  module Ldp
2
- VERSION = "1.0.2"
2
+ VERSION = "1.0.3"
3
3
  end
metadata CHANGED
@@ -1,7 +1,7 @@
1
1
  --- !ruby/object:Gem::Specification
2
2
  name: ldp
3
3
  version: !ruby/object:Gem::Version
4
- version: 1.0.2
4
+ version: 1.0.3
5
5
  platform: ruby
6
6
  authors:
7
7
  - Chris Beer