pact-support 1.21.3 → 1.21.4
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 +13 -0
- data/lib/pact/consumer_contract/consumer_contract.rb +1 -4
- data/lib/pact/matchers/list_diff_formatter.rb +2 -2
- data/lib/pact/support/version.rb +1 -1
- metadata +6 -6
checksums.yaml
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
---
|
2
2
|
SHA256:
|
3
|
-
metadata.gz:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 4a542ab85fc99185471baae79fb45c37208ce7ecb5fcb8ed1cfaac7eb6ee9138
|
4
|
+
data.tar.gz: cb61fde91430b40f0105ca9b80bf1596fba8d4af6118fe5efe8b86d8e15b8a0d
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 7e9ce244fdb98b2c235874732a3c24f8417484d9922e3f5880d71a950b181a1a0a11c617ce47a2b126a317ac121458b6173b4ff2b98b47b4d3d5f40c8e89871a
|
7
|
+
data.tar.gz: 961f5a43022ac3984e2cda8f40295269e7daa1bd05ef600f87cb94ebe4516f3f997c8a6e93df945d85064ecd6d428987606f25f2317b041c60372d0dd94a6774
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,16 @@
|
|
1
|
+
<a name="v1.21.4"></a>
|
2
|
+
### v1.21.4 (2025-10-03)
|
3
|
+
|
4
|
+
#### Bug Fixes
|
5
|
+
|
6
|
+
* **deps**
|
7
|
+
* Replace awesome_print with amazing_print #122 (#123) ([e894445](/../../commit/e894445))
|
8
|
+
|
9
|
+
* **spec**
|
10
|
+
* workaround for diff formatted errors in ruby 3.4 ([5627237](/../../commit/5627237))
|
11
|
+
|
12
|
+
* json load diff regression downstream ([1ed2ce7](/../../commit/1ed2ce7))
|
13
|
+
|
1
14
|
<a name="v1.21.3"></a>
|
2
15
|
### v1.21.3 (2025-06-26)
|
3
16
|
|
@@ -48,10 +48,7 @@ module Pact
|
|
48
48
|
end
|
49
49
|
|
50
50
|
def self.from_json string
|
51
|
-
deserialised_object = JSON.
|
52
|
-
maintain_backwards_compatiblity_with_producer_keys(string),
|
53
|
-
nil, { create_additions: false }
|
54
|
-
)
|
51
|
+
deserialised_object = JSON.unsafe_load(maintain_backwards_compatiblity_with_producer_keys(string))
|
55
52
|
from_hash(deserialised_object)
|
56
53
|
end
|
57
54
|
|
data/lib/pact/support/version.rb
CHANGED
metadata
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
--- !ruby/object:Gem::Specification
|
2
2
|
name: pact-support
|
3
3
|
version: !ruby/object:Gem::Version
|
4
|
-
version: 1.21.
|
4
|
+
version: 1.21.4
|
5
5
|
platform: ruby
|
6
6
|
authors:
|
7
7
|
- James Fraser
|
@@ -28,19 +28,19 @@ dependencies:
|
|
28
28
|
- !ruby/object:Gem::Version
|
29
29
|
version: 3.1.1
|
30
30
|
- !ruby/object:Gem::Dependency
|
31
|
-
name:
|
31
|
+
name: amazing_print
|
32
32
|
requirement: !ruby/object:Gem::Requirement
|
33
33
|
requirements:
|
34
34
|
- - "~>"
|
35
35
|
- !ruby/object:Gem::Version
|
36
|
-
version: '1.
|
36
|
+
version: '1.8'
|
37
37
|
type: :runtime
|
38
38
|
prerelease: false
|
39
39
|
version_requirements: !ruby/object:Gem::Requirement
|
40
40
|
requirements:
|
41
41
|
- - "~>"
|
42
42
|
- !ruby/object:Gem::Version
|
43
|
-
version: '1.
|
43
|
+
version: '1.8'
|
44
44
|
- !ruby/object:Gem::Dependency
|
45
45
|
name: diff-lcs
|
46
46
|
requirement: !ruby/object:Gem::Requirement
|
@@ -405,14 +405,14 @@ required_ruby_version: !ruby/object:Gem::Requirement
|
|
405
405
|
requirements:
|
406
406
|
- - ">="
|
407
407
|
- !ruby/object:Gem::Version
|
408
|
-
version:
|
408
|
+
version: 3.1.0
|
409
409
|
required_rubygems_version: !ruby/object:Gem::Requirement
|
410
410
|
requirements:
|
411
411
|
- - ">="
|
412
412
|
- !ruby/object:Gem::Version
|
413
413
|
version: '0'
|
414
414
|
requirements: []
|
415
|
-
rubygems_version: 3.
|
415
|
+
rubygems_version: 3.7.2
|
416
416
|
specification_version: 4
|
417
417
|
summary: Shared code for Pact gems
|
418
418
|
test_files: []
|