pact_broker-client 1.47.0 → 1.47.1
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:
|
4
|
-
data.tar.gz:
|
3
|
+
metadata.gz: 2eb00eeeb34ad8ea24b55dc13a08d0d1a6fbb05262fd5fa7c820c048286d269d
|
4
|
+
data.tar.gz: 1e717ee7580afa14b6e6f6820d2e6ac97204e8d0dcd7d26119528d475c06c2c9
|
5
5
|
SHA512:
|
6
|
-
metadata.gz:
|
7
|
-
data.tar.gz:
|
6
|
+
metadata.gz: 33480fa75ef16eff02037e720966b7fd5cb4eb5df5dfdb413b2f8b9c8177c91ea78891244ccbf10776c64b89b1ec97509a7c5fc1c799f35f5aead37468a4e81a
|
7
|
+
data.tar.gz: bddc3501a161089d555d540700b55042506cb43fea9c4169e78cdd102dc1118e41384a39b14497e28b15665edc3ac56cf94bfd0243283cb4d63c81a9bdfd1332
|
data/CHANGELOG.md
CHANGED
@@ -1,3 +1,11 @@
|
|
1
|
+
<a name="v1.47.1"></a>
|
2
|
+
### v1.47.1 (2021-07-20)
|
3
|
+
|
4
|
+
#### Bug Fixes
|
5
|
+
|
6
|
+
* **verification-required**
|
7
|
+
* require a verification when either of the specified versions does not exist ([031d232](/../../commit/031d232))
|
8
|
+
|
1
9
|
<a name="v1.47.0"></a>
|
2
10
|
### v1.47.0 (2021-07-09)
|
3
11
|
|
@@ -17,7 +17,9 @@ module PactBroker
|
|
17
17
|
|
18
18
|
def create_result(matrix)
|
19
19
|
matrix_and_notices = format_matrix(matrix) + "\n\n" + remove_warnings(Term::ANSIColor.uncolor(notice_or_reason(matrix, :white)))
|
20
|
-
|
20
|
+
# If the specified version numbers do not exist, then all the counts come back 0. Can't just check for unknown to be 0.
|
21
|
+
# This command needs to handle "I screwed up the query"
|
22
|
+
if matrix.no_results?
|
21
23
|
Result.new(true, matrix_and_notices + "\n\nVerification is required.")
|
22
24
|
else
|
23
25
|
Result.new(false, matrix_and_notices + "\n\nNo verification is required.")
|