@pact-foundation/pact-core 20.1.0 → 20.1.1

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.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,11 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
4
4
 
5
+ ## [20.1.1](https://github.com/pact-foundation/pact-js-core/compare/v20.1.0...v20.1.1) (2026-09-07)
6
+
7
+ ### Fixes and Improvements
8
+
9
+ * surface errors from pactffiPluginInteractionContents (rebuild) ([#956](https://github.com/pact-foundation/pact-js-core/issues/956)) ([b51bc7f](https://github.com/pact-foundation/pact-js-core/commit/b51bc7f245f98e0725fa43ce62547699fddc170e))
5
10
  ## [20.1.0](https://github.com/pact-foundation/pact-js-core/compare/v20.0.0...v20.1.0) (2026-08-05)
6
11
 
7
12
  ### Features
@@ -6,12 +6,37 @@ const types_1 = require("../ffi/types");
6
6
  const logger_1 = require("../logger");
7
7
  const checkErrors_1 = require("./checkErrors");
8
8
  const internals_1 = require("./internals");
9
+ const PLUGIN_INTERACTION_CONTENTS_ERRORS = {
10
+ 1: 'a general panic was caught',
11
+ 2: 'the mock server has already been started',
12
+ 3: 'the interaction handle is invalid',
13
+ 4: 'the content type is not valid',
14
+ 5: 'the contents are not valid JSON',
15
+ 6: 'the plugin returned an error',
16
+ };
17
+ /**
18
+ * Configures part of an interaction via a plugin, throwing if the FFI reports a
19
+ * failure.
20
+ *
21
+ * `pactffiPluginInteractionContents` returns zero on success and a positive
22
+ * status code on failure, with the detail in LAST_ERROR. Previously the result
23
+ * was discarded, so a plugin rejecting the supplied configuration produced a
24
+ * silently mis-recorded interaction (a part with no body) and a passing test.
25
+ */
26
+ const setPluginInteractionContents = (ffi, interactionPtr, part, contentType, contents) => {
27
+ const code = ffi.pactffiPluginInteractionContents(interactionPtr, part, contentType, contents);
28
+ if (code !== 0) {
29
+ const detail = ffi.pactffiGetErrorMessage();
30
+ const reason = PLUGIN_INTERACTION_CONTENTS_ERRORS[code] ?? `unknown error (${code})`;
31
+ (0, logger_1.logErrorAndThrow)(`Failed to set plugin interaction contents for content type '${contentType}': ${reason}${detail ? `: ${detail}` : ''}`);
32
+ }
33
+ return true;
34
+ };
9
35
  const asyncMessage = (ffi, interactionPtr, pactPtr, messageCount, index) => ({
10
36
  // todo count the number of messages (and ref them?)
11
37
  // Required to get contents
12
38
  withPluginRequestInteractionContents: (contentType, contents) => {
13
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
14
- return true;
39
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
15
40
  },
16
41
  expectsToReceive: (description) => ffi.pactffiMessageExpectsToReceive(interactionPtr, description),
17
42
  given: (state) => ffi.pactffiMessageGiven(interactionPtr, state),
@@ -110,16 +135,13 @@ const makeConsumerPact = (consumer, provider, version = 3, logLevel = (0, logger
110
135
  messageCount += 1;
111
136
  return {
112
137
  withPluginRequestInteractionContents: (contentType, contents) => {
113
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
114
- return true;
138
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
115
139
  },
116
140
  withPluginResponseInteractionContents: (contentType, contents) => {
117
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_RESPONSE, contentType, contents);
118
- return true;
141
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_RESPONSE, contentType, contents);
119
142
  },
120
143
  withPluginRequestResponseInteractionContents: (contentType, contents) => {
121
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
122
- return true;
144
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
123
145
  },
124
146
  given: (state) => ffi.pactffiGiven(interactionPtr, state),
125
147
  givenWithParam: (state, name, value) => ffi.pactffiGivenWithParam(interactionPtr, state, name, value),
@@ -179,16 +201,13 @@ const makeConsumerPact = (consumer, provider, version = 3, logLevel = (0, logger
179
201
  },
180
202
  withStatus: (status) => ffi.pactffiResponseStatus(interactionPtr, JSON.stringify(status)),
181
203
  withPluginRequestInteractionContents: (contentType, contents) => {
182
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
183
- return true;
204
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
184
205
  },
185
206
  withPluginRequestResponseInteractionContents: (contentType, contents) => {
186
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
187
- return true;
207
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
188
208
  },
189
209
  withPluginResponseInteractionContents: (contentType, contents) => {
190
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_RESPONSE, contentType, contents);
191
- return true;
210
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_RESPONSE, contentType, contents);
192
211
  },
193
212
  });
194
213
  },
@@ -241,16 +260,13 @@ const makeConsumerMessagePact = (consumer, provider, version = 4, logLevel = (0,
241
260
  const interactionPtr = ffi.pactffiNewSyncMessage(pactPtr, description);
242
261
  return {
243
262
  withPluginRequestInteractionContents: (contentType, contents) => {
244
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
245
- return true;
263
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
246
264
  },
247
265
  withPluginResponseInteractionContents: (contentType, contents) => {
248
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_RESPONSE, contentType, contents);
249
- return true;
266
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_RESPONSE, contentType, contents);
250
267
  },
251
268
  withPluginRequestResponseInteractionContents: (contentType, contents) => {
252
- ffi.pactffiPluginInteractionContents(interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
253
- return true;
269
+ return setPluginInteractionContents(ffi, interactionPtr, types_1.INTERACTION_PART_REQUEST, contentType, contents);
254
270
  },
255
271
  given: (state) => ffi.pactffiGiven(interactionPtr, state),
256
272
  givenWithParam: (state, name, value) => ffi.pactffiGivenWithParam(interactionPtr, state, name, value),
@@ -1 +1 @@
1
- {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/consumer/index.ts"],"names":[],"mappings":"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"}
1
+ {"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/consumer/index.ts"],"names":[],"mappings":"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"}
@@ -1,6 +1,6 @@
1
1
  import type { LogLevel } from '../logger/types';
2
2
  import { type Ffi } from './types';
3
- export declare const PACT_FFI_VERSION = "0.5.6";
3
+ export declare const PACT_FFI_VERSION = "0.5.7";
4
4
  declare let ffiLib: Ffi;
5
5
  declare let ffi: typeof ffiLib;
6
6
  export declare const getFfiLib: (logLevel?: LogLevel, logFile?: string | undefined) => typeof ffi;
package/dist/ffi/index.js CHANGED
@@ -42,7 +42,7 @@ const detect_libc_1 = require("detect-libc");
42
42
  const logger_1 = __importStar(require("../logger"));
43
43
  const types_1 = require("./types");
44
44
  const bindings = require('node-gyp-build');
45
- exports.PACT_FFI_VERSION = '0.5.6';
45
+ exports.PACT_FFI_VERSION = '0.5.7';
46
46
  /**
47
47
  * Returns the library path which is located inside `node_modules`
48
48
  * The naming convention is @pact-foundation/pact-core-${os}-${arch}<-${libc}>
@@ -116,7 +116,16 @@ export type FfiConsumerFunctions = {
116
116
  pactffiUsingPluginWithDelay(handle: FfiPactHandle, name: string, version: string, completionDelay: number): FfiConfigurePluginResponse;
117
117
  pactffiSetTestRunId(testRunId: string): void;
118
118
  pactffiCleanupPlugins(handle: FfiPactHandle): void;
119
- pactffiPluginInteractionContents(handle: FfiInteractionHandle, part: FfiInteractionPart, contentType: string, contents: string): void;
119
+ /**
120
+ * Configures a part of an interaction via a plugin.
121
+ *
122
+ * Returns a status code: zero on success, a positive value on failure (`6`
123
+ * meaning the plugin itself returned an error). Call `pactffiGetErrorMessage`
124
+ * for the detail.
125
+ */
126
+ pactffiPluginInteractionContents(handle: FfiInteractionHandle, part: FfiInteractionPart, contentType: string, contents: string): number;
127
+ /** The most recent FFI error message, or an empty string if there is none. */
128
+ pactffiGetErrorMessage(): string;
120
129
  pactffiNewAsyncMessage(handle: FfiPactHandle, description: string): FfiMessageHandle;
121
130
  pactffiNewSyncMessage(handle: FfiPactHandle, description: string): FfiInteractionHandle;
122
131
  pactffiMessageExpectsToReceive(handle: FfiMessageHandle, description: string): void;
package/junit.xml CHANGED
@@ -1,104 +1,118 @@
1
1
  <?xml version="1.0" encoding="UTF-8" ?>
2
- <testsuites name="vitest tests" tests="90" failures="0" errors="0" time="4.201438561">
3
- <testsuite name="src/index.spec.ts" timestamp="2026-08-05T15:25:33.700Z" hostname="runnervmvrwv9" tests="1" failures="0" errors="0" skipped="0" time="0.002882655">
4
- <testcase classname="src/index.spec.ts" name="Index Spec &gt; Typescript import should work" time="0.001490651">
2
+ <testsuites name="vitest tests" tests="92" failures="0" errors="0" time="4.399135016">
3
+ <testsuite name="src/index.spec.ts" timestamp="2026-09-07T06:17:17.738Z" hostname="runnervmejwal" tests="1" failures="0" errors="0" skipped="0" time="0.004115602">
4
+ <testcase classname="src/index.spec.ts" name="Index Spec &gt; Typescript import should work" time="0.00218111">
5
5
  </testcase>
6
6
  </testsuite>
7
- <testsuite name="src/pact.spec.ts" timestamp="2026-08-05T15:25:33.700Z" hostname="runnervmvrwv9" tests="5" failures="0" errors="0" skipped="0" time="0.005619265">
8
- <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;trace&apos;" time="0.001311928">
7
+ <testsuite name="src/pact.spec.ts" timestamp="2026-09-07T06:17:17.739Z" hostname="runnervmejwal" tests="5" failures="0" errors="0" skipped="0" time="0.007777727">
8
+ <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;trace&apos;" time="0.001746232">
9
9
  </testcase>
10
- <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;debug&apos;" time="0.000311133">
10
+ <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;debug&apos;" time="0.000410713">
11
11
  </testcase>
12
- <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;info&apos;" time="0.000250764">
12
+ <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;info&apos;" time="0.000407556">
13
13
  </testcase>
14
- <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;warn&apos;" time="0.00032782">
14
+ <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;warn&apos;" time="0.000320314">
15
15
  </testcase>
16
- <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;error&apos;" time="0.000242243">
16
+ <testcase classname="src/pact.spec.ts" name="Pact Spec &gt; Set Log Level &gt; when setting a log level &gt; should be able to set log level &apos;error&apos;" time="0.00047057">
17
17
  </testcase>
18
18
  </testsuite>
19
- <testsuite name="test/consumer.integration.spec.ts" timestamp="2026-08-05T15:25:33.701Z" hostname="runnervmvrwv9" tests="10" failures="0" errors="0" skipped="1" time="0.712742983">
20
- <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with matching rules &gt; generates a pact with success" time="0.04570236">
19
+ <testsuite name="test/consumer.integration.spec.ts" timestamp="2026-09-07T06:17:17.740Z" hostname="runnervmejwal" tests="12" failures="0" errors="0" skipped="1" time="0.855479442">
20
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with matching rules &gt; generates a pact with success" time="0.057306047">
21
21
  <system-out>
22
- [15:25:31.492] [32mINFO[39m (2643): [36m0.5.6: pact native library successfully found, and the correct version[39m
22
+ [06:17:15.301] [32mINFO[39m (2852): [36m0.5.7: pact native library successfully found, and the correct version[39m
23
23
 
24
24
 
25
25
  []
26
26
 
27
27
  </system-out>
28
28
  </testcase>
29
- <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with JSON data &gt; generates a pact with success" time="0.006152173">
29
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with JSON data &gt; generates a pact with success" time="0.006945796">
30
30
  </testcase>
31
- <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with JSON data &gt; generates a pact with failure" time="0.00644934">
31
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with JSON data &gt; generates a pact with failure" time="0.007397104">
32
32
  </testcase>
33
33
  <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with a TLS mock server &gt; serves requests over TLS using the exposed CA certificate" time="0">
34
34
  <skipped/>
35
35
  </testcase>
36
- <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with an interaction key &gt; writes the interaction key to the pact file" time="0.002818971">
36
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with an interaction key &gt; writes the interaction key to the pact file" time="0.004052083">
37
37
  </testcase>
38
- <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with a pending interaction &gt; writes pending state to the pact file" time="0.003286604">
38
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with a pending interaction &gt; writes pending state to the pact file" time="0.004177506">
39
39
  </testcase>
40
- <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with interaction comments and test name &gt; writes comments and interaction test name to the pact file" time="0.002677164">
40
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with interaction comments and test name &gt; writes comments and interaction test name to the pact file" time="0.00288705">
41
41
  </testcase>
42
- <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with binary data &gt; generates a pact with success" time="0.013817572">
42
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with binary data &gt; generates a pact with success" time="0.00911848">
43
43
  </testcase>
44
- <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; using a plugin (protobufs) &gt; generates a pact with success" time="0.596492848">
44
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; using a plugin (protobufs) &gt; generates a pact with success" time="0.699678919">
45
45
  </testcase>
46
- <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with multipart data &gt; generates a pact with success" time="0.032649258">
46
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; when setting plugin interaction contents fails &gt; throws when the contents are not valid JSON" time="0.002853578">
47
+ <system-out>
48
+ [06:17:16.088] [31mERROR[39m (2852): [36mFailed to set plugin interaction contents for content type &apos;application/json&apos;: the contents are not valid JSON: Contents is not a valid JSON - expected ident at line 1 column 2[39m
49
+
50
+
51
+ </system-out>
52
+ </testcase>
53
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; when setting plugin interaction contents fails &gt; throws when the content type is not valid" time="0.001677525">
54
+ <system-out>
55
+ [06:17:16.090] [31mERROR[39m (2852): [36mFailed to set plugin interaction contents for content type &apos;not a content type&apos;: the content type is not valid: &apos;not a content type&apos; is not a valid content type - Failed to parse &apos;not a content type&apos; as a content type: mime parse error: an invalid token was encountered, 20 at position 3[39m
56
+
57
+
58
+ </system-out>
59
+ </testcase>
60
+ <testcase classname="test/consumer.integration.spec.ts" name="FFI integration test for the HTTP Consumer API &gt; with multipart data &gt; generates a pact with success" time="0.054947403">
47
61
  <system-out>
48
62
  []
49
63
 
50
64
  </system-out>
51
65
  </testcase>
52
66
  </testsuite>
53
- <testsuite name="test/matt.consumer.integration.spec.ts" timestamp="2026-08-05T15:25:33.703Z" hostname="runnervmvrwv9" tests="2" failures="0" errors="0" skipped="0" time="1.103748352">
54
- <testcase classname="test/matt.consumer.integration.spec.ts" name="MATT protocol test &gt; HTTP test &gt; returns a valid MATT message over HTTP" time="0.571763217">
67
+ <testsuite name="test/matt.consumer.integration.spec.ts" timestamp="2026-09-07T06:17:17.744Z" hostname="runnervmejwal" tests="2" failures="0" errors="0" skipped="0" time="1.123117425">
68
+ <testcase classname="test/matt.consumer.integration.spec.ts" name="MATT protocol test &gt; HTTP test &gt; returns a valid MATT message over HTTP" time="0.585032384">
55
69
  <system-out>
56
- [15:25:32.479] [32mINFO[39m (2779): [36m0.5.6: pact native library successfully found, and the correct version[39m
70
+ [06:17:16.465] [32mINFO[39m (2987): [36m0.5.7: pact native library successfully found, and the correct version[39m
57
71
 
58
72
 
59
73
  </system-out>
60
74
  </testcase>
61
- <testcase classname="test/matt.consumer.integration.spec.ts" name="MATT protocol test &gt; TCP Messages &gt; with MATT protocol &gt; generates a pact with success" time="0.529462124">
75
+ <testcase classname="test/matt.consumer.integration.spec.ts" name="MATT protocol test &gt; TCP Messages &gt; with MATT protocol &gt; generates a pact with success" time="0.535754698">
62
76
  </testcase>
63
77
  </testsuite>
64
- <testsuite name="test/matt.provider.integration.spec.ts" timestamp="2026-08-05T15:25:33.704Z" hostname="runnervmvrwv9" tests="1" failures="0" errors="0" skipped="0" time="0.137345146">
65
- <testcase classname="test/matt.provider.integration.spec.ts" name="MATT protocol test &gt; HTTP and TCP Provider &gt; returns a valid MATT message over HTTP and TCP" time="0.135528247">
78
+ <testsuite name="test/matt.provider.integration.spec.ts" timestamp="2026-09-07T06:17:17.745Z" hostname="runnervmejwal" tests="1" failures="0" errors="0" skipped="0" time="0.133656674">
79
+ <testcase classname="test/matt.provider.integration.spec.ts" name="MATT protocol test &gt; HTTP and TCP Provider &gt; returns a valid MATT message over HTTP and TCP" time="0.131431682">
66
80
  <system-out>
67
- [15:25:33.021] [32mINFO[39m (2896): [36mpact-core@20.0.0: Verifying Pact Files[39m
81
+ [06:17:17.182] [32mINFO[39m (3111): [36mpact-core@20.1.0: Verifying Pact Files[39m
68
82
 
69
- [15:25:33.027] [32mINFO[39m (2896): [36m0.5.6: pact native library successfully found, and the correct version[39m
83
+ [06:17:17.189] [32mINFO[39m (3111): [36m0.5.7: pact native library successfully found, and the correct version[39m
70
84
 
71
85
 
72
- [15:25:33.145] [32mINFO[39m (2896): [36mpact-core@20.0.0: Verification successful[39m
86
+ [06:17:17.300] [32mINFO[39m (3111): [36mpact-core@20.1.0: Verification successful[39m
73
87
 
74
88
 
75
89
  </system-out>
76
90
  </testcase>
77
91
  </testsuite>
78
- <testsuite name="test/message.integration.spec.ts" timestamp="2026-08-05T15:25:33.704Z" hostname="runnervmvrwv9" tests="8" failures="0" errors="0" skipped="0" time="0.647704201">
79
- <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Asynchronous Messages &gt; with JSON data &gt; generates a pact with success" time="0.005772432">
92
+ <testsuite name="test/message.integration.spec.ts" timestamp="2026-09-07T06:17:17.745Z" hostname="runnervmejwal" tests="8" failures="0" errors="0" skipped="0" time="0.69929154">
93
+ <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Asynchronous Messages &gt; with JSON data &gt; generates a pact with success" time="0.007255702">
80
94
  </testcase>
81
- <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Asynchronous Messages &gt; with JSON data &gt; writes pending state to the pact file" time="0.001180927">
95
+ <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Asynchronous Messages &gt; with JSON data &gt; writes pending state to the pact file" time="0.001279025">
82
96
  </testcase>
83
- <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Asynchronous Messages &gt; with JSON data &gt; writes comments and interaction test name for async message" time="0.001245099">
97
+ <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Asynchronous Messages &gt; with JSON data &gt; writes comments and interaction test name for async message" time="0.001466513">
84
98
  </testcase>
85
- <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Asynchronous Messages &gt; with binary data &gt; generates a pact with success" time="0.001019065">
99
+ <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Asynchronous Messages &gt; with binary data &gt; generates a pact with success" time="0.00115242">
86
100
  </testcase>
87
- <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Synchronous Messages &gt; with JSON data &gt; generates a pact with success" time="0.005568713">
101
+ <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Synchronous Messages &gt; with JSON data &gt; generates a pact with success" time="0.007210577">
88
102
  </testcase>
89
- <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Synchronous Messages &gt; with JSON data &gt; writes pending state to the pact file" time="0.000900209">
103
+ <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Synchronous Messages &gt; with JSON data &gt; writes pending state to the pact file" time="0.001073643">
90
104
  </testcase>
91
- <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Synchronous Messages &gt; with JSON data &gt; writes comments and interaction test name for sync message" time="0.001172708">
105
+ <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Synchronous Messages &gt; with JSON data &gt; writes comments and interaction test name for sync message" time="0.001573221">
92
106
  </testcase>
93
- <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Synchronous Messages &gt; with plugin contents (gRPC) &gt; generates a pact with success" time="0.621482925">
107
+ <testcase classname="test/message.integration.spec.ts" name="FFI integration test for the Message Consumer API &gt; Synchronous Messages &gt; with plugin contents (gRPC) &gt; generates a pact with success" time="0.666093302">
94
108
  </testcase>
95
109
  </testsuite>
96
- <testsuite name="test/plugin-verifier.integration.spec.ts" timestamp="2026-08-05T15:25:33.705Z" hostname="runnervmvrwv9" tests="2" failures="0" errors="0" skipped="0" time="0.190274334">
97
- <testcase classname="test/plugin-verifier.integration.spec.ts" name="Plugin Verifier Integration Spec &gt; plugin tests &gt; grpc interaction &gt; should verify the gRPC interactions" time="0.1449503">
110
+ <testsuite name="test/plugin-verifier.integration.spec.ts" timestamp="2026-09-07T06:17:17.747Z" hostname="runnervmejwal" tests="2" failures="0" errors="0" skipped="0" time="0.215317589">
111
+ <testcase classname="test/plugin-verifier.integration.spec.ts" name="Plugin Verifier Integration Spec &gt; plugin tests &gt; grpc interaction &gt; should verify the gRPC interactions" time="0.158222891">
98
112
  <system-out>
99
- [15:25:32.588] [32mINFO[39m (2792): [36mpact-core@20.0.0: Verifying Pact Files[39m
113
+ [06:17:16.650] [32mINFO[39m (3005): [36mpact-core@20.1.0: Verifying Pact Files[39m
100
114
 
101
- [15:25:32.592] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: binding path #0: : attempting to load native module from:
115
+ [06:17:16.654] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: binding path #0: : attempting to load native module from:
102
116
 
103
117
  - /home/runner/work/pact-js-core/pact-js-core/prebuilds/linux-x64
104
118
  source: pact-js-core binding lookup
@@ -106,7 +120,7 @@
106
120
  - You can override via PACT_PREBUILD_LOCATION
107
121
  [39m
108
122
 
109
- [15:25:32.593] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: binding path #1: : attempting to load native module from:
123
+ [06:17:16.655] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: binding path #1: : attempting to load native module from:
110
124
 
111
125
  - /home/runner/work/pact-js-core/pact-js-core/@pact-foundation/pact-core-linux-x64-glibc/prebuilds/linux-x64
112
126
  source: pact-js-core binding lookup
@@ -114,55 +128,55 @@
114
128
  - You can override via PACT_PREBUILD_LOCATION
115
129
  [39m
116
130
 
117
- [15:25:32.595] [32mINFO[39m (2792): [36m0.5.6: pact native library successfully found, and the correct version[39m
131
+ [06:17:16.657] [32mINFO[39m (3005): [36m0.5.7: pact native library successfully found, and the correct version[39m
118
132
 
119
- [15:25:32.595] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: Initialising native core at log level &apos;debug&apos;[39m
133
+ [06:17:16.657] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: Initialising native core at log level &apos;debug&apos;[39m
120
134
 
121
- [15:25:32.596] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetFilterInfo&apos; was not executed as it had non-fatal validation errors: None of PACT_DESCRIPTION, PACT_PROVIDER_STATE or PACT_PROVIDER_NO_STATE were set in the environment[39m
135
+ [06:17:16.658] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetFilterInfo&apos; was not executed as it had non-fatal validation errors: None of PACT_DESCRIPTION, PACT_PROVIDER_STATE or PACT_PROVIDER_NO_STATE were set in the environment[39m
122
136
 
123
- [15:25:32.596] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetProviderState&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
137
+ [06:17:16.658] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetProviderState&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
124
138
 
125
- [15:25:32.599] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetPublishOptions&apos; was not executed as it had non-fatal validation errors: No publishVerificationResult option / PACT_BROKER_PUBLISH_VERIFICATION_RESULTS set, or no providerVersion option[39m
139
+ [06:17:16.659] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetPublishOptions&apos; was not executed as it had non-fatal validation errors: No publishVerificationResult option / PACT_BROKER_PUBLISH_VERIFICATION_RESULTS set, or no providerVersion option[39m
126
140
 
127
- [15:25:32.600] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetConsumerFilters&apos; was not executed as it had non-fatal validation errors: Either no consumerFilters option provided, or the array was empty[39m
141
+ [06:17:16.659] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetConsumerFilters&apos; was not executed as it had non-fatal validation errors: Either no consumerFilters option provided, or the array was empty[39m
128
142
 
129
- [15:25:32.600] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetFailIfNoPactsFound&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
143
+ [06:17:16.661] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetFailIfNoPactsFound&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
130
144
 
131
- [15:25:32.600] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetFollowRedirects&apos; was not executed as it had non-fatal validation errors: No followRedirects option provided[39m
145
+ [06:17:16.662] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetFollowRedirects&apos; was not executed as it had non-fatal validation errors: No followRedirects option provided[39m
132
146
 
133
- [15:25:32.600] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierAddCustomHeader&apos; was not executed as it had non-fatal validation errors: No customProviderHeaders option provided[39m
147
+ [06:17:16.662] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierAddCustomHeader&apos; was not executed as it had non-fatal validation errors: No customProviderHeaders option provided[39m
134
148
 
135
- [15:25:32.601] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: checking source type of given pactUrl: /home/runner/work/pact-js-core/pact-js-core/test/integration/grpc/grpc.json[39m
149
+ [06:17:16.662] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: checking source type of given pactUrl: /home/runner/work/pact-js-core/pact-js-core/test/integration/grpc/grpc.json[39m
136
150
 
137
- [15:25:32.601] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: adding /home/runner/work/pact-js-core/pact-js-core/test/integration/grpc/grpc.json as File source[39m
151
+ [06:17:16.663] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: adding /home/runner/work/pact-js-core/pact-js-core/test/integration/grpc/grpc.json as File source[39m
138
152
 
139
- [15:25:32.601] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierBrokerSourceWithSelectors&apos; was not executed as it had non-fatal validation errors: No pactBrokerUrl option / PACT_BROKER_BASE_URL set, or no provider option set[39m
153
+ [06:17:16.663] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierBrokerSourceWithSelectors&apos; was not executed as it had non-fatal validation errors: No pactBrokerUrl option / PACT_BROKER_BASE_URL set, or no provider option set[39m
140
154
 
141
155
 
142
156
  Server running at http://127.0.0.1:50052
143
157
 
144
- [15:25:32.729] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: shutting down verifier with handle 0[39m
158
+ [06:17:16.805] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: shutting down verifier with handle 0[39m
145
159
 
146
- [15:25:32.730] [34mDEBUG[39m (2792): [36mpact-core@20.0.0: response from verifier: null, 0[39m
160
+ [06:17:16.805] [34mDEBUG[39m (3005): [36mpact-core@20.1.0: response from verifier: null, 0[39m
147
161
 
148
- [15:25:32.730] [32mINFO[39m (2792): [36mpact-core@20.0.0: Verification successful[39m
162
+ [06:17:16.805] [32mINFO[39m (3005): [36mpact-core@20.1.0: Verification successful[39m
149
163
 
150
164
 
151
165
  </system-out>
152
166
  </testcase>
153
- <testcase classname="test/plugin-verifier.integration.spec.ts" name="Plugin Verifier Integration Spec &gt; plugin tests &gt; grpc interaction &gt; runs the grpc client" time="0.022019174">
167
+ <testcase classname="test/plugin-verifier.integration.spec.ts" name="Plugin Verifier Integration Spec &gt; plugin tests &gt; grpc interaction &gt; runs the grpc client" time="0.025540881">
154
168
  <system-out>
155
169
  { name: [32m&apos;A place&apos;[39m }
156
170
 
157
171
  </system-out>
158
172
  </testcase>
159
173
  </testsuite>
160
- <testsuite name="test/verifier.integration.spec.ts" timestamp="2026-08-05T15:25:33.706Z" hostname="runnervmvrwv9" tests="17" failures="0" errors="0" skipped="0" time="1.363236927">
161
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with spaces in the file path &gt; should return a successful promise" time="0.118036044">
174
+ <testsuite name="test/verifier.integration.spec.ts" timestamp="2026-09-07T06:17:17.748Z" hostname="runnervmejwal" tests="17" failures="0" errors="0" skipped="0" time="1.30469951">
175
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with spaces in the file path &gt; should return a successful promise" time="0.082337249">
162
176
  <system-out>
163
- [15:25:31.666] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
177
+ [06:17:15.510] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
164
178
 
165
- [15:25:31.669] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: binding path #0: : attempting to load native module from:
179
+ [06:17:15.513] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: binding path #0: : attempting to load native module from:
166
180
 
167
181
  - /home/runner/work/pact-js-core/pact-js-core/prebuilds/linux-x64
168
182
  source: pact-js-core binding lookup
@@ -170,7 +184,7 @@ Server running at http://127.0.0.1:50052
170
184
  - You can override via PACT_PREBUILD_LOCATION
171
185
  [39m
172
186
 
173
- [15:25:31.670] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: binding path #1: : attempting to load native module from:
187
+ [06:17:15.514] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: binding path #1: : attempting to load native module from:
174
188
 
175
189
  - /home/runner/work/pact-js-core/pact-js-core/@pact-foundation/pact-core-linux-x64-glibc/prebuilds/linux-x64
176
190
  source: pact-js-core binding lookup
@@ -178,364 +192,364 @@ Server running at http://127.0.0.1:50052
178
192
  - You can override via PACT_PREBUILD_LOCATION
179
193
  [39m
180
194
 
181
- [15:25:31.672] [32mINFO[39m (2666): [36m0.5.6: pact native library successfully found, and the correct version[39m
195
+ [06:17:15.517] [32mINFO[39m (2875): [36m0.5.7: pact native library successfully found, and the correct version[39m
182
196
 
183
- [15:25:31.672] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: Initialising native core at log level &apos;debug&apos;[39m
197
+ [06:17:15.517] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: Initialising native core at log level &apos;debug&apos;[39m
184
198
 
185
- [15:25:31.673] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetFilterInfo&apos; was not executed as it had non-fatal validation errors: None of PACT_DESCRIPTION, PACT_PROVIDER_STATE or PACT_PROVIDER_NO_STATE were set in the environment[39m
199
+ [06:17:15.518] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetFilterInfo&apos; was not executed as it had non-fatal validation errors: None of PACT_DESCRIPTION, PACT_PROVIDER_STATE or PACT_PROVIDER_NO_STATE were set in the environment[39m
186
200
 
187
- [15:25:31.673] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetProviderState&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
201
+ [06:17:15.518] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetProviderState&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
188
202
 
189
- [15:25:31.673] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetPublishOptions&apos; was not executed as it had non-fatal validation errors: No publishVerificationResult option / PACT_BROKER_PUBLISH_VERIFICATION_RESULTS set, or no providerVersion option[39m
203
+ [06:17:15.518] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetPublishOptions&apos; was not executed as it had non-fatal validation errors: No publishVerificationResult option / PACT_BROKER_PUBLISH_VERIFICATION_RESULTS set, or no providerVersion option[39m
190
204
 
191
- [15:25:31.673] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetConsumerFilters&apos; was not executed as it had non-fatal validation errors: Either no consumerFilters option provided, or the array was empty[39m
205
+ [06:17:15.518] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetConsumerFilters&apos; was not executed as it had non-fatal validation errors: Either no consumerFilters option provided, or the array was empty[39m
192
206
 
193
- [15:25:31.673] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetFailIfNoPactsFound&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
207
+ [06:17:15.519] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetFailIfNoPactsFound&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
194
208
 
195
- [15:25:31.674] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetFollowRedirects&apos; was not executed as it had non-fatal validation errors: No followRedirects option provided[39m
209
+ [06:17:15.519] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetFollowRedirects&apos; was not executed as it had non-fatal validation errors: No followRedirects option provided[39m
196
210
 
197
- [15:25:31.674] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierAddCustomHeader&apos; was not executed as it had non-fatal validation errors: No customProviderHeaders option provided[39m
211
+ [06:17:15.519] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierAddCustomHeader&apos; was not executed as it had non-fatal validation errors: No customProviderHeaders option provided[39m
198
212
 
199
- [15:25:31.674] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: checking source type of given pactUrl: /home/runner/work/pact-js-core/pact-js-core/test/integration/me-they-weird path-success.json[39m
213
+ [06:17:15.519] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: checking source type of given pactUrl: /home/runner/work/pact-js-core/pact-js-core/test/integration/me-they-weird path-success.json[39m
200
214
 
201
- [15:25:31.674] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: adding /home/runner/work/pact-js-core/pact-js-core/test/integration/me-they-weird path-success.json as File source[39m
215
+ [06:17:15.520] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: adding /home/runner/work/pact-js-core/pact-js-core/test/integration/me-they-weird path-success.json as File source[39m
202
216
 
203
- [15:25:31.675] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierBrokerSourceWithSelectors&apos; was not executed as it had non-fatal validation errors: No pactBrokerUrl option / PACT_BROKER_BASE_URL set, or no provider option set[39m
217
+ [06:17:15.520] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierBrokerSourceWithSelectors&apos; was not executed as it had non-fatal validation errors: No pactBrokerUrl option / PACT_BROKER_BASE_URL set, or no provider option set[39m
204
218
 
205
- [15:25:31.675] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierAddProviderTransport&apos; was not executed as it had non-fatal validation errors: No additional provider transports provided[39m
219
+ [06:17:15.520] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierAddProviderTransport&apos; was not executed as it had non-fatal validation errors: No additional provider transports provided[39m
206
220
 
207
221
 
208
- [15:25:31.781] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: shutting down verifier with handle 0[39m
222
+ [06:17:15.589] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: shutting down verifier with handle 0[39m
209
223
 
210
- [15:25:31.781] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: response from verifier: null, 0[39m
224
+ [06:17:15.589] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: response from verifier: null, 0[39m
211
225
 
212
- [15:25:31.782] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
226
+ [06:17:15.589] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
213
227
 
214
228
 
215
229
  </system-out>
216
230
  </testcase>
217
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with spaces in the file path &gt; with some broker args but no broker URL &gt; should return a successful promise" time="0.066392726">
231
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with spaces in the file path &gt; with some broker args but no broker URL &gt; should return a successful promise" time="0.059887934">
218
232
  <system-out>
219
- [15:25:31.783] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
233
+ [06:17:15.591] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
220
234
 
221
- [15:25:31.784] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetFilterInfo&apos; was not executed as it had non-fatal validation errors: None of PACT_DESCRIPTION, PACT_PROVIDER_STATE or PACT_PROVIDER_NO_STATE were set in the environment[39m
235
+ [06:17:15.592] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetFilterInfo&apos; was not executed as it had non-fatal validation errors: None of PACT_DESCRIPTION, PACT_PROVIDER_STATE or PACT_PROVIDER_NO_STATE were set in the environment[39m
222
236
 
223
- [15:25:31.784] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetProviderState&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
237
+ [06:17:15.592] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetProviderState&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
224
238
 
225
- [15:25:31.784] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetConsumerFilters&apos; was not executed as it had non-fatal validation errors: Either no consumerFilters option provided, or the array was empty[39m
239
+ [06:17:15.592] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetConsumerFilters&apos; was not executed as it had non-fatal validation errors: Either no consumerFilters option provided, or the array was empty[39m
226
240
 
227
- [15:25:31.784] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetFailIfNoPactsFound&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
241
+ [06:17:15.592] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetFailIfNoPactsFound&apos; was not executed as it had non-fatal validation errors: No failIfNoPactsFound option provided[39m
228
242
 
229
- [15:25:31.784] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierSetFollowRedirects&apos; was not executed as it had non-fatal validation errors: No followRedirects option provided[39m
243
+ [06:17:15.592] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierSetFollowRedirects&apos; was not executed as it had non-fatal validation errors: No followRedirects option provided[39m
230
244
 
231
- [15:25:31.784] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierAddCustomHeader&apos; was not executed as it had non-fatal validation errors: No customProviderHeaders option provided[39m
245
+ [06:17:15.592] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierAddCustomHeader&apos; was not executed as it had non-fatal validation errors: No customProviderHeaders option provided[39m
232
246
 
233
- [15:25:31.784] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: checking source type of given pactUrl: /home/runner/work/pact-js-core/pact-js-core/test/integration/me-they-weird path-success.json[39m
247
+ [06:17:15.592] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: checking source type of given pactUrl: /home/runner/work/pact-js-core/pact-js-core/test/integration/me-they-weird path-success.json[39m
234
248
 
235
- [15:25:31.785] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: adding /home/runner/work/pact-js-core/pact-js-core/test/integration/me-they-weird path-success.json as File source[39m
249
+ [06:17:15.592] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: adding /home/runner/work/pact-js-core/pact-js-core/test/integration/me-they-weird path-success.json as File source[39m
236
250
 
237
- [15:25:31.785] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierBrokerSourceWithSelectors&apos; was not executed as it had non-fatal validation errors: No pactBrokerUrl option / PACT_BROKER_BASE_URL set, or no provider option set[39m
251
+ [06:17:15.593] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierBrokerSourceWithSelectors&apos; was not executed as it had non-fatal validation errors: No pactBrokerUrl option / PACT_BROKER_BASE_URL set, or no provider option set[39m
238
252
 
239
- [15:25:31.785] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: the optional ffi function &apos;pactffiVerifierAddProviderTransport&apos; was not executed as it had non-fatal validation errors: No additional provider transports provided[39m
253
+ [06:17:15.593] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: the optional ffi function &apos;pactffiVerifierAddProviderTransport&apos; was not executed as it had non-fatal validation errors: No additional provider transports provided[39m
240
254
 
241
255
 
242
- [15:25:31.848] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: shutting down verifier with handle 1[39m
256
+ [06:17:15.649] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: shutting down verifier with handle 1[39m
243
257
 
244
- [15:25:31.848] [34mDEBUG[39m (2666): [36mpact-core@20.0.0: response from verifier: null, 0[39m
258
+ [06:17:15.650] [34mDEBUG[39m (2875): [36mpact-core@20.1.0: response from verifier: null, 0[39m
245
259
 
246
- [15:25:31.848] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
260
+ [06:17:15.650] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
247
261
 
248
262
 
249
263
  </system-out>
250
264
  </testcase>
251
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; without provider states &gt; should return a successful promise with detailed JSON results" time="0.063762845">
265
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; without provider states &gt; should return a successful promise with detailed JSON results" time="0.057720239">
252
266
  <system-out>
253
- [15:25:31.849] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
267
+ [06:17:15.651] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
254
268
 
255
269
 
256
- [15:25:31.911] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
270
+ [06:17:15.706] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
257
271
 
258
272
 
259
273
  </system-out>
260
274
  </testcase>
261
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with Provider States &gt; should return a successful promise with detailed JSON results" time="0.080749074">
275
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with Provider States &gt; should return a successful promise with detailed JSON results" time="0.072758123">
262
276
  <system-out>
263
- [15:25:31.913] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
277
+ [06:17:15.709] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
264
278
 
265
279
 
266
- [15:25:31.993] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
280
+ [06:17:15.780] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
267
281
 
268
282
 
269
283
  </system-out>
270
284
  </testcase>
271
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with POST data &gt; should return a successful promise" time="0.065009838">
285
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with POST data &gt; should return a successful promise" time="0.052709843">
272
286
  <system-out>
273
- [15:25:31.994] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
287
+ [06:17:15.782] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
274
288
 
275
289
 
276
- [15:25:32.059] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
290
+ [06:17:15.834] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
277
291
 
278
292
 
279
293
  </system-out>
280
294
  </testcase>
281
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with POST data and regex validation &gt; should return a successful promise" time="0.060489847">
295
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with POST data and regex validation &gt; should return a successful promise" time="0.055863097">
282
296
  <system-out>
283
- [15:25:32.059] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
297
+ [06:17:15.834] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
284
298
 
285
299
 
286
- [15:25:32.119] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
300
+ [06:17:15.890] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
287
301
 
288
302
 
289
303
  </system-out>
290
304
  </testcase>
291
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with monkeypatch file specified &gt; should return a successful promise" time="0.071924248">
305
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a successful contract &gt; with monkeypatch file specified &gt; should return a successful promise" time="0.05969185">
292
306
  <system-out>
293
- [15:25:32.120] [33mWARN[39m (2666): [36mpact-core@20.0.0: monkeypatch is deprecated and no longer has any effect[39m
307
+ [06:17:15.891] [33mWARN[39m (2875): [36mpact-core@20.1.0: monkeypatch is deprecated and no longer has any effect[39m
294
308
 
295
- [15:25:32.120] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
309
+ [06:17:15.891] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
296
310
 
297
311
 
298
- [15:25:32.191] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
312
+ [06:17:15.949] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
299
313
 
300
314
 
301
315
  </system-out>
302
316
  </testcase>
303
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a failing contract &gt; should return a rejected promise with detailed JSON results in the error message" time="0.072103554">
317
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given a failing contract &gt; should return a rejected promise with detailed JSON results in the error message" time="0.080397277">
304
318
  <system-out>
305
- [15:25:32.192] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
319
+ [06:17:15.950] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
306
320
 
307
321
 
308
- [15:25:32.263] [31mERROR[39m (2666): [36mpact-core@20.0.0: Verification unsuccessful[39m
322
+ [06:17:16.030] [31mERROR[39m (2875): [36mpact-core@20.1.0: Verification unsuccessful[39m
309
323
 
310
324
 
311
325
  </system-out>
312
326
  </testcase>
313
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple successful API calls in a contract &gt; should return a successful promise" time="0.088698943">
327
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple successful API calls in a contract &gt; should return a successful promise" time="0.091846364">
314
328
  <system-out>
315
- [15:25:32.264] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
329
+ [06:17:16.031] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
316
330
 
317
331
 
318
- [15:25:32.352] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
332
+ [06:17:16.122] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
319
333
 
320
334
 
321
335
  </system-out>
322
336
  </testcase>
323
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a local file &gt; should return a successful promise" time="0.112955905">
337
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a local file &gt; should return a successful promise" time="0.107291142">
324
338
  <system-out>
325
- [15:25:32.353] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
339
+ [06:17:16.123] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
326
340
 
327
341
 
328
- [15:25:32.465] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
342
+ [06:17:16.229] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
329
343
 
330
344
 
331
345
  </system-out>
332
346
  </testcase>
333
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a Pact Broker &gt; without authentication &gt; should return a successful promise" time="0.107453748">
347
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a Pact Broker &gt; without authentication &gt; should return a successful promise" time="0.118044539">
334
348
  <system-out>
335
- [15:25:32.466] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
349
+ [06:17:16.230] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
336
350
 
337
351
 
338
- [15:25:32.573] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
352
+ [06:17:16.347] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
339
353
 
340
354
 
341
355
  </system-out>
342
356
  </testcase>
343
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a Pact Broker &gt; with authentication &gt; and a valid user/password &gt; should return a successful promise" time="0.096011651">
357
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a Pact Broker &gt; with authentication &gt; and a valid user/password &gt; should return a successful promise" time="0.125648896">
344
358
  <system-out>
345
- [15:25:32.574] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
359
+ [06:17:16.349] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
346
360
 
347
361
 
348
- [15:25:32.669] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
362
+ [06:17:16.473] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
349
363
 
350
364
 
351
365
  </system-out>
352
366
  </testcase>
353
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a Pact Broker &gt; with authentication &gt; and an invalid user/password &gt; should return a rejected promise" time="0.065305341">
367
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a Pact Broker &gt; with authentication &gt; and an invalid user/password &gt; should return a rejected promise" time="0.074201616">
354
368
  <system-out>
355
- [15:25:32.670] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
369
+ [06:17:16.474] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
356
370
 
357
371
 
358
- [15:25:32.734] [31mERROR[39m (2666): [36mpact-core@20.0.0: Verification unsuccessful[39m
372
+ [06:17:16.547] [31mERROR[39m (2875): [36mpact-core@20.1.0: Verification unsuccessful[39m
359
373
 
360
374
 
361
375
  </system-out>
362
376
  </testcase>
363
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a Pact Broker &gt; with authentication &gt; and an invalid user/password &gt; should return the verifier error output in the returned promise" time="0.063277867">
377
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when given multiple contracts &gt; from a Pact Broker &gt; with authentication &gt; and an invalid user/password &gt; should return the verifier error output in the returned promise" time="0.063112961">
364
378
  <system-out>
365
- [15:25:32.735] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
379
+ [06:17:16.548] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
366
380
 
367
381
 
368
- [15:25:32.798] [31mERROR[39m (2666): [36mpact-core@20.0.0: Verification unsuccessful[39m
382
+ [06:17:16.611] [31mERROR[39m (2875): [36mpact-core@20.1.0: Verification unsuccessful[39m
369
383
 
370
384
 
371
385
  </system-out>
372
386
  </testcase>
373
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when publishing verification results to a Pact Broker &gt; and there is a valid Pact file with spaces in the path &gt; should return a successful promise" time="0.072656604">
387
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when publishing verification results to a Pact Broker &gt; and there is a valid Pact file with spaces in the path &gt; should return a successful promise" time="0.064217276">
374
388
  <system-out>
375
- [15:25:32.799] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
389
+ [06:17:16.612] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
376
390
 
377
391
 
378
- [15:25:32.871] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
392
+ [06:17:16.675] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
379
393
 
380
394
 
381
395
  </system-out>
382
396
  </testcase>
383
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when publishing verification results to a Pact Broker &gt; and there is a valid verification HAL link in the Pact file &gt; should return a successful promise" time="0.068596461">
397
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when publishing verification results to a Pact Broker &gt; and there is a valid verification HAL link in the Pact file &gt; should return a successful promise" time="0.063258229">
384
398
  <system-out>
385
- [15:25:32.872] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
399
+ [06:17:16.676] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
386
400
 
387
401
 
388
- [15:25:32.940] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
402
+ [06:17:16.739] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
389
403
 
390
404
 
391
405
  </system-out>
392
406
  </testcase>
393
- <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when publishing verification results to a Pact Broker &gt; and there is an invalid verification HAL link in the Pact file &gt; should fail with an error" time="0.075050413">
407
+ <testcase classname="test/verifier.integration.spec.ts" name="Verifier Integration Spec &gt; when publishing verification results to a Pact Broker &gt; and there is an invalid verification HAL link in the Pact file &gt; should fail with an error" time="0.060170217">
394
408
  <system-out>
395
- [15:25:32.940] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verifying Pact Files[39m
409
+ [06:17:16.739] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verifying Pact Files[39m
396
410
 
397
411
 
398
- [15:25:33.015] [32mINFO[39m (2666): [36mpact-core@20.0.0: Verification successful[39m
412
+ [06:17:16.799] [32mINFO[39m (2875): [36mpact-core@20.1.0: Verification successful[39m
399
413
 
400
414
 
401
415
  </system-out>
402
416
  </testcase>
403
417
  </testsuite>
404
- <testsuite name="src/consumer/checkErrors.spec.ts" timestamp="2026-08-05T15:25:33.711Z" hostname="runnervmvrwv9" tests="2" failures="0" errors="0" skipped="0" time="0.005084138">
405
- <testcase classname="src/consumer/checkErrors.spec.ts" name="checkErrors &gt; treats numeric status code 0 as success" time="0.002836434">
418
+ <testsuite name="src/consumer/checkErrors.spec.ts" timestamp="2026-09-07T06:17:17.756Z" hostname="runnervmejwal" tests="2" failures="0" errors="0" skipped="0" time="0.005058051">
419
+ <testcase classname="src/consumer/checkErrors.spec.ts" name="checkErrors &gt; treats numeric status code 0 as success" time="0.002683532">
406
420
  </testcase>
407
- <testcase classname="src/consumer/checkErrors.spec.ts" name="checkErrors &gt; treats non-zero numeric status as failure" time="0.000288411">
421
+ <testcase classname="src/consumer/checkErrors.spec.ts" name="checkErrors &gt; treats non-zero numeric status as failure" time="0.000337997">
408
422
  </testcase>
409
423
  </testsuite>
410
- <testsuite name="src/verifier/validateOptions.spec.ts" timestamp="2026-08-05T15:25:33.711Z" hostname="runnervmvrwv9" tests="42" failures="0" errors="0" skipped="0" time="0.03280056">
411
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when automatically finding pacts from a broker &gt; when not given --pact-urls and only --pact-broker-url &gt; should fail with an error because provider is missing" time="0.007535491">
424
+ <testsuite name="src/verifier/validateOptions.spec.ts" timestamp="2026-09-07T06:17:17.757Z" hostname="runnervmejwal" tests="42" failures="0" errors="0" skipped="0" time="0.050621456">
425
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when automatically finding pacts from a broker &gt; when not given --pact-urls and only --pact-broker-url &gt; should fail with an error because provider is missing" time="0.013223301">
412
426
  <system-out>
413
- [15:25:31.320] [31mERROR[39m (2644): [36mpactBrokerUrl requires the following properties: provider[39m
427
+ [06:17:15.057] [31mERROR[39m (2853): [36mpactBrokerUrl requires the following properties: provider[39m
414
428
 
415
429
 
416
430
  </system-out>
417
431
  </testcase>
418
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when automatically finding pacts from a broker &gt; when given valid arguments &gt; should return a Verifier object" time="0.00114508">
432
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when automatically finding pacts from a broker &gt; when given valid arguments &gt; should return a Verifier object" time="0.001629555">
419
433
  </testcase>
420
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when automatically finding pacts from a broker &gt; when given an unknown array argument &gt; should return a Verifier object" time="0.000433276">
434
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when automatically finding pacts from a broker &gt; when given an unknown array argument &gt; should return a Verifier object" time="0.000475783">
421
435
  </testcase>
422
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when not given --pact-urls or --provider-base-url &gt; should fail with an error" time="0.000274023">
436
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when not given --pact-urls or --provider-base-url &gt; should fail with an error" time="0.000741486">
423
437
  </testcase>
424
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given an invalid timeout &gt; should fail with an error" time="0.00032247">
438
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given an invalid timeout &gt; should fail with an error" time="0.000546966">
425
439
  </testcase>
426
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given remote Pact URLs that don&apos;t exist &gt; should pass through to the Pact Verifier regardless" time="0.000266019">
440
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given remote Pact URLs that don&apos;t exist &gt; should pass through to the Pact Verifier regardless" time="0.000410523">
427
441
  </testcase>
428
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given local Pact URLs that do exist &gt; should not fail" time="0.000222293">
442
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given local Pact URLs that do exist &gt; should not fail" time="0.00047942">
429
443
  </testcase>
430
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when requested to publish verification results to a Pact Broker &gt; and specifies a provider version &gt; should pass through to the Pact Verifier" time="0.000276726">
444
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when requested to publish verification results to a Pact Broker &gt; and specifies a provider version &gt; should pass through to the Pact Verifier" time="0.000461446">
431
445
  </testcase>
432
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when requested to publish verification results to a Pact Broker &gt; and does not specify provider version &gt; should fail with an error" time="0.001972297">
446
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when requested to publish verification results to a Pact Broker &gt; and does not specify provider version &gt; should fail with an error" time="0.001720144">
433
447
  <system-out>
434
- [15:25:31.328] [31mERROR[39m (2644): [36mpublishVerificationResult requires the following properties: providerVersion[39m
448
+ [06:17:15.070] [31mERROR[39m (2853): [36mpublishVerificationResult requires the following properties: providerVersion[39m
435
449
 
436
450
 
437
451
  </system-out>
438
452
  </testcase>
439
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given the correct arguments &gt; should return a Verifier object" time="0.000214001">
453
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given the correct arguments &gt; should return a Verifier object" time="0.000316688">
440
454
  </testcase>
441
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using includeWipPactsSince &gt; should accept a non-empty string" time="0.000139691">
455
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using includeWipPactsSince &gt; should accept a non-empty string" time="0.000299036">
442
456
  </testcase>
443
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using includeWipPactsSince &gt; should not accept an empty string" time="0.000181504">
457
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using includeWipPactsSince &gt; should not accept an empty string" time="0.000352314">
444
458
  </testcase>
445
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using followRedirects &gt; should accept a boolean" time="0.000684357">
459
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using followRedirects &gt; should accept a boolean" time="0.000868021">
446
460
  </testcase>
447
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using followRedirects &gt; should not accept a non-boolean" time="0.00025239">
461
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using followRedirects &gt; should not accept a non-boolean" time="0.000476665">
448
462
  </testcase>
449
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when an using format option &gt; should work with either &apos;json&apos; or &apos;xml&apos;" time="0.001095231">
463
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when an using format option &gt; should work with either &apos;json&apos; or &apos;xml&apos;" time="0.001946564">
450
464
  <system-out>
451
- [15:25:31.332] [33mWARN[39m (2644): [36mpact-core@20.0.0: format is deprecated and no longer has any effect[39m
465
+ [06:17:15.075] [33mWARN[39m (2853): [36mpact-core@20.1.0: format is deprecated and no longer has any effect[39m
452
466
 
453
- [15:25:31.332] [33mWARN[39m (2644): [36mpact-core@20.0.0: format is deprecated and no longer has any effect[39m
467
+ [06:17:15.075] [33mWARN[39m (2853): [36mpact-core@20.1.0: format is deprecated and no longer has any effect[39m
454
468
 
455
- [15:25:31.332] [33mWARN[39m (2644): [36mpact-core@20.0.0: format is deprecated and no longer has any effect[39m
469
+ [06:17:15.076] [33mWARN[39m (2853): [36mpact-core@20.1.0: format is deprecated and no longer has any effect[39m
456
470
 
457
471
 
458
472
  </system-out>
459
473
  </testcase>
460
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when an using format option &gt; should work with a case insensitive string" time="0.000532189">
474
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when an using format option &gt; should work with a case insensitive string" time="0.000567263">
461
475
  <system-out>
462
- [15:25:31.333] [33mWARN[39m (2644): [36mpact-core@20.0.0: format is deprecated and no longer has any effect[39m
476
+ [06:17:15.076] [33mWARN[39m (2853): [36mpact-core@20.1.0: format is deprecated and no longer has any effect[39m
463
477
 
464
478
 
465
479
  </system-out>
466
480
  </testcase>
467
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when pactBrokerUrl is not provided &gt; should not fail" time="0.000289688">
481
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when pactBrokerUrl is not provided &gt; should not fail" time="0.000576681">
468
482
  </testcase>
469
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when pactBrokerUrl is provided &gt; should not fail" time="0.000323908">
483
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when pactBrokerUrl is provided &gt; should not fail" time="0.000397187">
470
484
  </testcase>
471
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when consumerVersionTags is not provided &gt; should not fail" time="0.000254151">
485
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when consumerVersionTags is not provided &gt; should not fail" time="0.000296351">
472
486
  </testcase>
473
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when consumerVersionTags is provided as an array &gt; should not fail" time="0.000578635">
487
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when consumerVersionTags is provided as an array &gt; should not fail" time="0.000602509">
474
488
  </testcase>
475
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when providerVersionTags is not provided &gt; should not fail" time="0.000240213">
489
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when providerVersionTags is not provided &gt; should not fail" time="0.000297051">
476
490
  </testcase>
477
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when providerVersionTags is provided as an array &gt; should not fail" time="0.000200816">
491
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when providerVersionTags is provided as an array &gt; should not fail" time="0.000283647">
478
492
  </testcase>
479
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using a bearer token &gt; and specifies a username or password &gt; should fail with an error" time="0.000595392">
493
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using a bearer token &gt; and specifies a username or password &gt; should fail with an error" time="0.000999827">
480
494
  <system-out>
481
- [15:25:31.336] [31mERROR[39m (2644): [36mpactBrokerToken is incompatible with the following properties: pactBrokerUsername,pactBrokerPassword[39m
495
+ [06:17:15.080] [31mERROR[39m (2853): [36mpactBrokerToken is incompatible with the following properties: pactBrokerUsername,pactBrokerPassword[39m
482
496
 
483
497
 
484
498
  </system-out>
485
499
  </testcase>
486
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using a bearer token &gt; should not fail" time="0.000235963">
500
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when using a bearer token &gt; should not fail" time="0.000298243">
487
501
  </testcase>
488
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when providing consumerVersionSelectors &gt; and an unsupported selector is specified &gt; should log out a warning that the selector is unknown" time="0.003062273">
502
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when providing consumerVersionSelectors &gt; and an unsupported selector is specified &gt; should log out a warning that the selector is unknown" time="0.003956326">
489
503
  <system-out>
490
- [15:25:31.339] [33mWARN[39m (2644): [36mpact-core@20.0.0: The consumer version selector &apos;unsupportedFlag&apos; is unknown but will be sent through to the validation. Allowed properties are tag, latest, consumer, deployedOrReleased, deployed, released, environment, fallbackTag, branch, mainBranch, matchingBranch)[39m
504
+ [06:17:15.084] [33mWARN[39m (2853): [36mpact-core@20.1.0: The consumer version selector &apos;unsupportedFlag&apos; is unknown but will be sent through to the validation. Allowed properties are tag, latest, consumer, deployedOrReleased, deployed, released, environment, fallbackTag, branch, mainBranch, matchingBranch)[39m
491
505
 
492
506
 
493
507
  </system-out>
494
508
  </testcase>
495
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and the tag of &quot;latest&quot; is specified &gt; should log out a warning that using this selector is not recommended" time="0.00269742">
509
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and the tag of &quot;latest&quot; is specified &gt; should log out a warning that using this selector is not recommended" time="0.002831617">
496
510
  <system-out>
497
- [15:25:31.340] [33mWARN[39m (2644): [36mpact-core@20.0.0: Using the tag &apos;latest&apos; is not recommended and probably does not do what you intended.[39m
511
+ [06:17:15.086] [33mWARN[39m (2853): [36mpact-core@20.1.0: Using the tag &apos;latest&apos; is not recommended and probably does not do what you intended.[39m
498
512
 
499
- [15:25:31.341] [33mWARN[39m (2644): [36mpact-core@20.0.0: See https://docs.pact.io/pact_broker/tags/#latest-pacts[39m
513
+ [06:17:15.086] [33mWARN[39m (2853): [36mpact-core@20.1.0: See https://docs.pact.io/pact_broker/tags/#latest-pacts[39m
500
514
 
501
- [15:25:31.341] [33mWARN[39m (2644): [36mpact-core@20.0.0: If you need to specify latest, try:[39m
515
+ [06:17:15.087] [33mWARN[39m (2853): [36mpact-core@20.1.0: If you need to specify latest, try:[39m
502
516
 
503
- [15:25:31.341] [33mWARN[39m (2644): [36mpact-core@20.0.0: consumerVersionSelectors: [{ lastest: true }][39m
517
+ [06:17:15.087] [33mWARN[39m (2853): [36mpact-core@20.1.0: consumerVersionSelectors: [{ lastest: true }][39m
504
518
 
505
519
 
506
520
  </system-out>
507
521
  </testcase>
508
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;tag&quot;:&quot;a-tag&quot;}" time="0.000265036">
522
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;tag&quot;:&quot;a-tag&quot;}" time="0.000480092">
509
523
  </testcase>
510
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;latest&quot;:true}" time="0.000132216">
524
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;latest&quot;:true}" time="0.000223254">
511
525
  </testcase>
512
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;consumer&quot;:&quot;the-consumer&quot;}" time="0.000138375">
526
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;consumer&quot;:&quot;the-consumer&quot;}" time="0.000262477">
513
527
  </testcase>
514
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;deployedOrReleased&quot;:true}" time="0.000119063">
528
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;deployedOrReleased&quot;:true}" time="0.000242971">
515
529
  </testcase>
516
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;deployed&quot;:true}" time="0.000106689">
530
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;deployed&quot;:true}" time="0.00021561">
517
531
  </testcase>
518
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;released&quot;:true}" time="0.00008812">
532
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;released&quot;:true}" time="0.000217533">
519
533
  </testcase>
520
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;environment&quot;:&quot;an-environment&quot;}" time="0.000088161">
534
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;environment&quot;:&quot;an-environment&quot;}" time="0.000272266">
521
535
  </testcase>
522
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;fallbackTag&quot;:&quot;a-fallback-tag&quot;}" time="0.002609967">
536
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;fallbackTag&quot;:&quot;a-fallback-tag&quot;}" time="0.004253958">
523
537
  </testcase>
524
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;branch&quot;:&quot;the-branch&quot;}" time="0.000205095">
538
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;branch&quot;:&quot;the-branch&quot;}" time="0.000314834">
525
539
  </testcase>
526
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;mainBranch&quot;:false}" time="0.000115941">
540
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;mainBranch&quot;:false}" time="0.000254081">
527
541
  </testcase>
528
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;matchingBranch&quot;:true}" time="0.000115038">
542
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; and valid selectors are specified &gt; should not fail when consumerVersionSelectors is {&quot;matchingBranch&quot;:true}" time="0.000218075">
529
543
  </testcase>
530
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given customProviderHeaders &gt; using the object notation &gt; should pass through to the Pact Verifier" time="0.000494584">
544
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given customProviderHeaders &gt; using the object notation &gt; should pass through to the Pact Verifier" time="0.00071134">
531
545
  </testcase>
532
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given customProviderHeaders &gt; using the legacy array notation &gt; should pass through to the Pact Verifier" time="0.000264063">
546
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given customProviderHeaders &gt; using the legacy array notation &gt; should pass through to the Pact Verifier" time="0.000372131">
533
547
  </testcase>
534
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given customProviderHeaders &gt; using the legacy array notation &gt; and the format is incorrect &gt; should throw an error" time="0.000224948">
548
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given customProviderHeaders &gt; using the legacy array notation &gt; and the format is incorrect &gt; should throw an error" time="0.000371149">
535
549
  </testcase>
536
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given providerBranch &gt; should not throw an error" time="0.000182969">
550
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given providerBranch &gt; should not throw an error" time="0.001162959">
537
551
  </testcase>
538
- <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given unknown properties &gt; should ignore them and not throw an error" time="0.000205233">
552
+ <testcase classname="src/verifier/validateOptions.spec.ts" name="Verifier argument validator &gt; when given unknown properties &gt; should ignore them and not throw an error" time="0.00032841">
539
553
  </testcase>
540
554
  </testsuite>
541
555
  </testsuites>
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pact-foundation/pact-core",
3
- "version": "20.1.0",
3
+ "version": "20.1.1",
4
4
  "description": "Core of @pact-foundation/pact. You almost certainly don't want to depend on this directly.",
5
5
  "main": "dist/index.js",
6
6
  "homepage": "https://github.com/pact-foundation/pact-js-core#readme",
@@ -51,10 +51,10 @@
51
51
  "underscore": "1.13.8"
52
52
  },
53
53
  "devDependencies": {
54
- "@biomejs/biome": "2.5.6",
54
+ "@biomejs/biome": "2.5.12",
55
55
  "@grpc/grpc-js": "1.14.4",
56
56
  "@grpc/proto-loader": "0.8.1",
57
- "@tsconfig/node22": "22.0.5",
57
+ "@tsconfig/node22": "22.0.6",
58
58
  "@types/basic-auth": "1.1.8",
59
59
  "@types/check-types": "11.2.2",
60
60
  "@types/cors": "2.8.19",
@@ -68,8 +68,8 @@
68
68
  "@types/underscore": "1.13.0",
69
69
  "@types/unixify": "1.0.2",
70
70
  "@types/url-join": "5.0.0",
71
- "@vitest/coverage-v8": "4.1.10",
72
- "axios": "1.19.0",
71
+ "@vitest/coverage-v8": "4.1.11",
72
+ "axios": "1.20.0",
73
73
  "basic-auth": "2.0.1",
74
74
  "body-parser": "2.3.0",
75
75
  "commit-and-tag-version": "13.1.2",
@@ -78,13 +78,13 @@
78
78
  "express": "5.2.1",
79
79
  "form-data": "4.0.6",
80
80
  "grpc-promise": "1.4.0",
81
- "node-addon-api": "8.9.1",
81
+ "node-addon-api": "8.9.2",
82
82
  "nodemon": "3.1.14",
83
- "protobufjs": "8.7.1",
83
+ "protobufjs": "8.8.0",
84
84
  "rimraf": "6.1.3",
85
85
  "sinon": "22.1.0",
86
86
  "typescript": "7.0.2",
87
- "vitest": "4.1.10"
87
+ "vitest": "4.1.11"
88
88
  },
89
89
  "overrides": {
90
90
  "semver": "7.8.5"
@@ -144,12 +144,12 @@
144
144
  ]
145
145
  },
146
146
  "optionalDependencies": {
147
- "@pact-foundation/pact-core-darwin-arm64": "20.1.0",
148
- "@pact-foundation/pact-core-darwin-x64": "20.1.0",
149
- "@pact-foundation/pact-core-linux-arm64-glibc": "20.1.0",
150
- "@pact-foundation/pact-core-linux-arm64-musl": "20.1.0",
151
- "@pact-foundation/pact-core-linux-x64-glibc": "20.1.0",
152
- "@pact-foundation/pact-core-linux-x64-musl": "20.1.0",
153
- "@pact-foundation/pact-core-windows-x64": "20.1.0"
147
+ "@pact-foundation/pact-core-darwin-arm64": "20.1.1",
148
+ "@pact-foundation/pact-core-darwin-x64": "20.1.1",
149
+ "@pact-foundation/pact-core-linux-arm64-glibc": "20.1.1",
150
+ "@pact-foundation/pact-core-linux-arm64-musl": "20.1.1",
151
+ "@pact-foundation/pact-core-linux-x64-glibc": "20.1.1",
152
+ "@pact-foundation/pact-core-linux-x64-musl": "20.1.1",
153
+ "@pact-foundation/pact-core-windows-x64": "20.1.1"
154
154
  }
155
155
  }