contentful 2.17.1 → 2.17.2
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 +9 -0
- data/lib/contentful/error.rb +5 -1
- data/lib/contentful/version.rb +1 -1
- metadata +5 -8
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 1a2120e270825f1bb0434d26f0b4eb42a445b7cb8df9fff01d7b1e71e1e76d91
|
4
|
+
data.tar.gz: 031e64513bfb83c80fcbc6bef5e426eadc1a24e11cf7ba0d69c04253a25e0447
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 94d85b10674c340396c1c8bb3605135645422d7f9ffda1ca25223850d84df20c5c0a598029a1cc6775ccd46c7b43477ba7d9139dbcfbdd3ea672cc4762bdfa1a
|
7
|
+
data.tar.gz: 4b671bee29520ebd6413e021a278278be4bba1b24813d6baff4b4053b5ed6ca42d1b76b8dccb7ce0fc3987065e63638e480d4448b3a89c147f0adc9380f8e3ae
|
data/CHANGELOG.md
CHANGED
@@ -2,6 +2,15 @@
|
|
2
2
|
|
3
3
|
## Unreleased
|
4
4
|
|
5
|
+
## 2.17.2
|
6
|
+
|
7
|
+
### Fixed
|
8
|
+
* Fixed test output visibility in response spec for unparsable JSON errors
|
9
|
+
* Fixed hash string representation in error messages for Ruby 3.4 compatibility
|
10
|
+
|
11
|
+
### Updated
|
12
|
+
* Updated CircleCI configuration to use Ruby 3.4
|
13
|
+
|
5
14
|
## 2.17.1
|
6
15
|
|
7
16
|
### Fixed
|
data/lib/contentful/error.rb
CHANGED
@@ -33,7 +33,11 @@ module Contentful
|
|
33
33
|
end
|
34
34
|
|
35
35
|
def handle_details(details)
|
36
|
-
details.
|
36
|
+
if details.is_a?(Hash)
|
37
|
+
details.map { |k, v| "#{k.inspect}=>#{v.inspect}" }.join(', ').then { |s| "{#{s}}" }
|
38
|
+
else
|
39
|
+
details.to_s
|
40
|
+
end
|
37
41
|
end
|
38
42
|
|
39
43
|
def additional_info?
|
data/lib/contentful/version.rb
CHANGED
metadata
CHANGED
@@ -1,16 +1,15 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: contentful
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 2.17.
|
4
|
+
version: 2.17.2
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- Contentful GmbH (Jan Lelis)
|
8
8
|
- Contentful GmbH (Andreas Tiefenthaler)
|
9
9
|
- Contentful GmbH (David Litvak Bruno)
|
10
|
-
autorequire:
|
11
10
|
bindir: bin
|
12
11
|
cert_chain: []
|
13
|
-
date:
|
12
|
+
date: 1980-01-02 00:00:00.000000000 Z
|
14
13
|
dependencies:
|
15
14
|
- !ruby/object:Gem::Dependency
|
16
15
|
name: http
|
@@ -38,14 +37,14 @@ dependencies:
|
|
38
37
|
requirements:
|
39
38
|
- - "~>"
|
40
39
|
- !ruby/object:Gem::Version
|
41
|
-
version: '1'
|
40
|
+
version: '1.15'
|
42
41
|
type: :runtime
|
43
42
|
prerelease: false
|
44
43
|
version_requirements: !ruby/object:Gem::Requirement
|
45
44
|
requirements:
|
46
45
|
- - "~>"
|
47
46
|
- !ruby/object:Gem::Version
|
48
|
-
version: '1'
|
47
|
+
version: '1.15'
|
49
48
|
- !ruby/object:Gem::Dependency
|
50
49
|
name: bundler
|
51
50
|
requirement: !ruby/object:Gem::Requirement
|
@@ -284,7 +283,6 @@ homepage: https://github.com/contentful/contentful.rb
|
|
284
283
|
licenses:
|
285
284
|
- MIT
|
286
285
|
metadata: {}
|
287
|
-
post_install_message:
|
288
286
|
rdoc_options: []
|
289
287
|
require_paths:
|
290
288
|
- lib
|
@@ -299,8 +297,7 @@ required_rubygems_version: !ruby/object:Gem::Requirement
|
|
299
297
|
- !ruby/object:Gem::Version
|
300
298
|
version: '0'
|
301
299
|
requirements: []
|
302
|
-
rubygems_version: 3.
|
303
|
-
signing_key:
|
300
|
+
rubygems_version: 3.6.7
|
304
301
|
specification_version: 4
|
305
302
|
summary: contentful
|
306
303
|
test_files: []
|