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 CHANGED
@@ -1,7 +1,7 @@
1
1
  ---
2
2
  SHA256:
3
- metadata.gz: 7dee1859981813b1f776434d48109636bf85c1fb2a607788e147707cf9cd4949
4
- data.tar.gz: 2195c59342837dd4772c063f27af1dcdb568bb6bbe7134d69ccf0cce5aeb9658
3
+ metadata.gz: 1a2120e270825f1bb0434d26f0b4eb42a445b7cb8df9fff01d7b1e71e1e76d91
4
+ data.tar.gz: 031e64513bfb83c80fcbc6bef5e426eadc1a24e11cf7ba0d69c04253a25e0447
5
5
  SHA512:
6
- metadata.gz: 3c21cda9e2af95df25dc7c38e3c019114de566d27a2c9b8a3d29229f45455ffd8da9ea94939bc9531a78d4d8dc9317bdc8780e27fd4500c237438cb1fdd0197d
7
- data.tar.gz: 4fa5bbe0e7b9fad851269e0be826909e052e66808d8e9c4525ae73328b00d9932c5842dd0a6f392aee041d9e0b970b8a35af5e3b69473314d68e8253e03d5397
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
@@ -33,7 +33,11 @@ module Contentful
33
33
  end
34
34
 
35
35
  def handle_details(details)
36
- details.to_s
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?
@@ -1,5 +1,5 @@
1
1
  # Contentful Namespace
2
2
  module Contentful
3
3
  # Gem Version
4
- VERSION = '2.17.1'
4
+ VERSION = '2.17.2'
5
5
  end
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.1
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: 2024-03-29 00:00:00.000000000 Z
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.2.3
303
- signing_key:
300
+ rubygems_version: 3.6.7
304
301
  specification_version: 4
305
302
  summary: contentful
306
303
  test_files: []