@pact-foundation/pact 10.0.0-beta.9 → 10.0.0

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.
Files changed (285) hide show
  1. package/CHANGELOG.md +2451 -1
  2. package/CODE_OF_CONDUCT.md +1 -1
  3. package/CONTRIBUTING.md +49 -12
  4. package/MIGRATION.md +77 -0
  5. package/README.md +180 -1274
  6. package/RELEASING.md +63 -59
  7. package/package.json +96 -98
  8. package/src/common/jsonTypes.d.ts +5 -0
  9. package/src/common/jsonTypes.js +3 -0
  10. package/src/common/jsonTypes.js.map +1 -0
  11. package/src/common/logger.d.ts +10 -0
  12. package/src/common/logger.js +32 -0
  13. package/src/common/logger.js.map +1 -0
  14. package/src/common/net.d.ts +9 -0
  15. package/src/common/net.js +82 -0
  16. package/src/common/net.js.map +1 -0
  17. package/{common → src/common}/net.spec.d.ts +0 -0
  18. package/src/common/net.spec.js +69 -0
  19. package/src/common/net.spec.js.map +1 -0
  20. package/src/common/request.d.ts +21 -0
  21. package/src/common/request.js +110 -0
  22. package/src/common/request.js.map +1 -0
  23. package/{common → src/common}/request.spec.d.ts +0 -0
  24. package/src/common/request.spec.js +69 -0
  25. package/src/common/request.spec.js.map +1 -0
  26. package/src/common/spec.d.ts +2 -0
  27. package/src/common/spec.js +22 -0
  28. package/src/common/spec.js.map +1 -0
  29. package/{dsl → src/dsl}/apolloGraphql.d.ts +1 -1
  30. package/{dsl → src/dsl}/apolloGraphql.js +4 -1
  31. package/src/dsl/apolloGraphql.js.map +1 -0
  32. package/{dsl → src/dsl}/apolloGraphql.spec.d.ts +0 -0
  33. package/src/dsl/apolloGraphql.spec.js +74 -0
  34. package/src/dsl/apolloGraphql.spec.js.map +1 -0
  35. package/{dsl → src/dsl}/graphql.d.ts +19 -8
  36. package/{dsl → src/dsl}/graphql.js +59 -31
  37. package/src/dsl/graphql.js.map +1 -0
  38. package/{dsl → src/dsl}/graphql.spec.d.ts +0 -0
  39. package/src/dsl/graphql.spec.js +229 -0
  40. package/src/dsl/graphql.spec.js.map +1 -0
  41. package/{dsl → src/dsl}/interaction.d.ts +22 -20
  42. package/src/dsl/interaction.js +144 -0
  43. package/src/dsl/interaction.js.map +1 -0
  44. package/{dsl → src/dsl}/interaction.spec.d.ts +0 -0
  45. package/src/dsl/interaction.spec.js +214 -0
  46. package/src/dsl/interaction.spec.js.map +1 -0
  47. package/src/dsl/matchers.d.ts +143 -0
  48. package/{dsl → src/dsl}/matchers.js +92 -93
  49. package/src/dsl/matchers.js.map +1 -0
  50. package/{dsl → src/dsl}/matchers.spec.d.ts +0 -0
  51. package/src/dsl/matchers.spec.js +668 -0
  52. package/src/dsl/matchers.spec.js.map +1 -0
  53. package/{dsl → src/dsl}/message.d.ts +32 -12
  54. package/{dsl → src/dsl}/message.js +0 -0
  55. package/{dsl → src/dsl}/message.js.map +1 -1
  56. package/src/dsl/mockService.d.ts +13 -0
  57. package/src/dsl/mockService.js +3 -0
  58. package/src/dsl/mockService.js.map +1 -0
  59. package/{dsl → src/dsl}/options.d.ts +7 -6
  60. package/{dsl → src/dsl}/options.js +0 -0
  61. package/{dsl → src/dsl}/options.js.map +1 -1
  62. package/src/dsl/verifier/index.d.ts +1 -0
  63. package/src/dsl/verifier/index.js +18 -0
  64. package/src/dsl/verifier/index.js.map +1 -0
  65. package/src/dsl/verifier/proxy/hooks.d.ts +4 -0
  66. package/src/dsl/verifier/proxy/hooks.js +109 -0
  67. package/src/dsl/verifier/proxy/hooks.js.map +1 -0
  68. package/src/dsl/verifier/proxy/index.d.ts +1 -0
  69. package/src/dsl/verifier/proxy/index.js +18 -0
  70. package/src/dsl/verifier/proxy/index.js.map +1 -0
  71. package/src/dsl/verifier/proxy/parseBody.d.ts +7 -0
  72. package/src/dsl/verifier/proxy/parseBody.js +22 -0
  73. package/src/dsl/verifier/proxy/parseBody.js.map +1 -0
  74. package/{dsl/mockService.spec.d.ts → src/dsl/verifier/proxy/parseBody.spec.d.ts} +0 -0
  75. package/src/dsl/verifier/proxy/parseBody.spec.js +118 -0
  76. package/src/dsl/verifier/proxy/parseBody.spec.js.map +1 -0
  77. package/src/dsl/verifier/proxy/proxy.d.ts +4 -0
  78. package/src/dsl/verifier/proxy/proxy.js +92 -0
  79. package/src/dsl/verifier/proxy/proxy.js.map +1 -0
  80. package/{dsl/publisher.spec.d.ts → src/dsl/verifier/proxy/proxy.spec.d.ts} +0 -0
  81. package/src/dsl/verifier/proxy/proxy.spec.js +33 -0
  82. package/src/dsl/verifier/proxy/proxy.spec.js.map +1 -0
  83. package/src/dsl/verifier/proxy/stateHandler/index.d.ts +1 -0
  84. package/src/dsl/verifier/proxy/stateHandler/index.js +18 -0
  85. package/src/dsl/verifier/proxy/stateHandler/index.js.map +1 -0
  86. package/src/dsl/verifier/proxy/stateHandler/setupStates.d.ts +3 -0
  87. package/src/dsl/verifier/proxy/stateHandler/setupStates.js +48 -0
  88. package/src/dsl/verifier/proxy/stateHandler/setupStates.js.map +1 -0
  89. package/{dsl/verifier.spec.d.ts → src/dsl/verifier/proxy/stateHandler/setupStates.spec.d.ts} +0 -0
  90. package/src/dsl/verifier/proxy/stateHandler/setupStates.spec.js +191 -0
  91. package/src/dsl/verifier/proxy/stateHandler/setupStates.spec.js.map +1 -0
  92. package/src/dsl/verifier/proxy/stateHandler/stateHandler.d.ts +3 -0
  93. package/src/dsl/verifier/proxy/stateHandler/stateHandler.js +14 -0
  94. package/src/dsl/verifier/proxy/stateHandler/stateHandler.js.map +1 -0
  95. package/{httpPact.spec.d.ts → src/dsl/verifier/proxy/stateHandler/stateHandler.spec.d.ts} +0 -0
  96. package/src/dsl/verifier/proxy/stateHandler/stateHandler.spec.js +130 -0
  97. package/src/dsl/verifier/proxy/stateHandler/stateHandler.spec.js.map +1 -0
  98. package/src/dsl/verifier/proxy/tracer.d.ts +3 -0
  99. package/src/dsl/verifier/proxy/tracer.js +52 -0
  100. package/src/dsl/verifier/proxy/tracer.js.map +1 -0
  101. package/src/dsl/verifier/proxy/types.d.ts +48 -0
  102. package/src/dsl/verifier/proxy/types.js +3 -0
  103. package/src/dsl/verifier/proxy/types.js.map +1 -0
  104. package/src/dsl/verifier/types.d.ts +3 -0
  105. package/src/dsl/verifier/types.js +3 -0
  106. package/src/dsl/verifier/types.js.map +1 -0
  107. package/src/dsl/verifier/verifier.d.ts +16 -0
  108. package/src/dsl/verifier/verifier.js +129 -0
  109. package/src/dsl/verifier/verifier.js.map +1 -0
  110. package/{messageConsumerPact.spec.d.ts → src/dsl/verifier/verifier.spec.d.ts} +0 -0
  111. package/src/dsl/verifier/verifier.spec.js +172 -0
  112. package/src/dsl/verifier/verifier.spec.js.map +1 -0
  113. package/{errors → src/errors}/configurationError.d.ts +0 -0
  114. package/{errors → src/errors}/configurationError.js +3 -1
  115. package/src/errors/configurationError.js.map +1 -0
  116. package/{errors → src/errors}/graphQLQueryError.d.ts +0 -0
  117. package/{errors → src/errors}/graphQLQueryError.js +3 -1
  118. package/src/errors/graphQLQueryError.js.map +1 -0
  119. package/{errors → src/errors}/matcherError.d.ts +0 -0
  120. package/{errors → src/errors}/matcherError.js +3 -1
  121. package/src/errors/matcherError.js.map +1 -0
  122. package/{errors → src/errors}/verificationError.d.ts +0 -0
  123. package/{errors → src/errors}/verificationError.js +3 -1
  124. package/src/errors/verificationError.js.map +1 -0
  125. package/src/httpPact/ffi.d.ts +15 -0
  126. package/src/httpPact/ffi.js +91 -0
  127. package/src/httpPact/ffi.js.map +1 -0
  128. package/{messageProviderPact.spec.d.ts → src/httpPact/ffi.spec.d.ts} +0 -0
  129. package/src/httpPact/ffi.spec.js +81 -0
  130. package/src/httpPact/ffi.spec.js.map +1 -0
  131. package/{httpPact.d.ts → src/httpPact/index.d.ts} +12 -12
  132. package/src/httpPact/index.js +311 -0
  133. package/src/httpPact/index.js.map +1 -0
  134. package/{pact-web.spec.d.ts → src/httpPact/index.spec.d.ts} +0 -0
  135. package/src/httpPact/index.spec.js +238 -0
  136. package/src/httpPact/index.spec.js.map +1 -0
  137. package/src/httpPact/tracing.d.ts +1 -0
  138. package/src/httpPact/tracing.js +53 -0
  139. package/src/httpPact/tracing.js.map +1 -0
  140. package/{pact.d.ts → src/index.d.ts} +22 -21
  141. package/src/index.js +107 -0
  142. package/src/index.js.map +1 -0
  143. package/src/messageConsumerPact.d.ts +86 -0
  144. package/src/messageConsumerPact.js +222 -0
  145. package/src/messageConsumerPact.js.map +1 -0
  146. package/src/messageConsumerPact.spec.d.ts +1 -0
  147. package/src/messageConsumerPact.spec.js +117 -0
  148. package/src/messageConsumerPact.spec.js.map +1 -0
  149. package/{messageProviderPact.d.ts → src/messageProviderPact.d.ts} +7 -4
  150. package/src/messageProviderPact.js +190 -0
  151. package/src/messageProviderPact.js.map +1 -0
  152. package/src/messageProviderPact.spec.d.ts +1 -0
  153. package/src/messageProviderPact.spec.js +183 -0
  154. package/src/messageProviderPact.spec.js.map +1 -0
  155. package/{pact.integration.spec.d.ts → src/pact.integration.spec.d.ts} +0 -0
  156. package/{pact.integration.spec.js → src/pact.integration.spec.js} +0 -0
  157. package/src/pact.integration.spec.js.map +1 -0
  158. package/src/v3/display.d.ts +6 -0
  159. package/src/v3/display.js +83 -0
  160. package/src/v3/display.js.map +1 -0
  161. package/src/v3/index.d.ts +17 -0
  162. package/src/v3/index.js +47 -0
  163. package/src/v3/index.js.map +1 -0
  164. package/src/v3/matchers.d.ts +182 -0
  165. package/src/v3/matchers.js +443 -0
  166. package/src/v3/matchers.js.map +1 -0
  167. package/src/v3/matchers.spec.d.ts +1 -0
  168. package/src/v3/matchers.spec.js +461 -0
  169. package/src/v3/matchers.spec.js.map +1 -0
  170. package/src/v3/pact.d.ts +21 -0
  171. package/src/v3/pact.js +240 -0
  172. package/src/v3/pact.js.map +1 -0
  173. package/src/v3/types.d.ts +81 -0
  174. package/src/v3/types.js +11 -0
  175. package/src/v3/types.js.map +1 -0
  176. package/{v3 → src/v3}/xml/xmlBuilder.d.ts +2 -2
  177. package/{v3 → src/v3}/xml/xmlBuilder.js +2 -1
  178. package/src/v3/xml/xmlBuilder.js.map +1 -0
  179. package/src/v3/xml/xmlElement.d.ts +27 -0
  180. package/{v3 → src/v3}/xml/xmlElement.js +21 -15
  181. package/src/v3/xml/xmlElement.js.map +1 -0
  182. package/src/v3/xml/xmlElement.spec.d.ts +1 -0
  183. package/src/v3/xml/xmlElement.spec.js +102 -0
  184. package/src/v3/xml/xmlElement.spec.js.map +1 -0
  185. package/{v3 → src/v3}/xml/xmlNode.d.ts +0 -0
  186. package/{v3 → src/v3}/xml/xmlNode.js +1 -0
  187. package/src/v3/xml/xmlNode.js.map +1 -0
  188. package/src/v3/xml/xmlText.d.ts +7 -0
  189. package/{v3 → src/v3}/xml/xmlText.js +4 -1
  190. package/src/v3/xml/xmlText.js.map +1 -0
  191. package/test/helper.d.ts +1 -0
  192. package/test/helper.js +37 -0
  193. package/test/helper.js.map +1 -0
  194. package/ROADMAP.md +0 -20
  195. package/common/logger.d.ts +0 -7
  196. package/common/logger.js +0 -56
  197. package/common/logger.js.map +0 -1
  198. package/common/metadata.d.ts +0 -0
  199. package/common/metadata.js +0 -2
  200. package/common/metadata.js.map +0 -1
  201. package/common/net.d.ts +0 -9
  202. package/common/net.js +0 -48
  203. package/common/net.js.map +0 -1
  204. package/common/net.spec.js +0 -67
  205. package/common/net.spec.js.map +0 -1
  206. package/common/request.d.ts +0 -14
  207. package/common/request.js +0 -47
  208. package/common/request.js.map +0 -1
  209. package/common/request.spec.js +0 -71
  210. package/common/request.spec.js.map +0 -1
  211. package/common/utils.d.ts +0 -2
  212. package/common/utils.js +0 -10
  213. package/common/utils.js.map +0 -1
  214. package/dsl/apolloGraphql.js.map +0 -1
  215. package/dsl/apolloGraphql.spec.js +0 -47
  216. package/dsl/apolloGraphql.spec.js.map +0 -1
  217. package/dsl/graphql.js.map +0 -1
  218. package/dsl/graphql.spec.js +0 -150
  219. package/dsl/graphql.spec.js.map +0 -1
  220. package/dsl/interaction.js +0 -112
  221. package/dsl/interaction.js.map +0 -1
  222. package/dsl/interaction.spec.js +0 -217
  223. package/dsl/interaction.spec.js.map +0 -1
  224. package/dsl/matchers.d.ts +0 -269
  225. package/dsl/matchers.js.map +0 -1
  226. package/dsl/matchers.spec.js +0 -563
  227. package/dsl/matchers.spec.js.map +0 -1
  228. package/dsl/mockService.d.ts +0 -58
  229. package/dsl/mockService.js +0 -74
  230. package/dsl/mockService.js.map +0 -1
  231. package/dsl/mockService.spec.js +0 -126
  232. package/dsl/mockService.spec.js.map +0 -1
  233. package/dsl/publisher.d.ts +0 -6
  234. package/dsl/publisher.js +0 -19
  235. package/dsl/publisher.js.map +0 -1
  236. package/dsl/publisher.spec.js +0 -21
  237. package/dsl/publisher.spec.js.map +0 -1
  238. package/dsl/verifier.d.ts +0 -39
  239. package/dsl/verifier.js +0 -173
  240. package/dsl/verifier.js.map +0 -1
  241. package/dsl/verifier.spec.js +0 -299
  242. package/dsl/verifier.spec.js.map +0 -1
  243. package/errors/configurationError.js.map +0 -1
  244. package/errors/graphQLQueryError.js.map +0 -1
  245. package/errors/matcherError.js.map +0 -1
  246. package/errors/verificationError.js.map +0 -1
  247. package/httpPact.js +0 -206
  248. package/httpPact.js.map +0 -1
  249. package/httpPact.spec.js +0 -337
  250. package/httpPact.spec.js.map +0 -1
  251. package/messageConsumerPact.d.ts +0 -67
  252. package/messageConsumerPact.js +0 -161
  253. package/messageConsumerPact.js.map +0 -1
  254. package/messageConsumerPact.spec.js +0 -161
  255. package/messageConsumerPact.spec.js.map +0 -1
  256. package/messageProviderPact.js +0 -139
  257. package/messageProviderPact.js.map +0 -1
  258. package/messageProviderPact.spec.js +0 -143
  259. package/messageProviderPact.spec.js.map +0 -1
  260. package/pact-web.d.ts +0 -100
  261. package/pact-web.js +0 -151
  262. package/pact-web.js.map +0 -1
  263. package/pact-web.spec.js +0 -191
  264. package/pact-web.spec.js.map +0 -1
  265. package/pact.integration.spec.js.map +0 -1
  266. package/pact.js +0 -74
  267. package/pact.js.map +0 -1
  268. package/v3/index.d.ts +0 -23
  269. package/v3/index.js +0 -33
  270. package/v3/index.js.map +0 -1
  271. package/v3/matchers.d.ts +0 -199
  272. package/v3/matchers.js +0 -305
  273. package/v3/matchers.js.map +0 -1
  274. package/v3/pact.d.ts +0 -47
  275. package/v3/pact.js +0 -101
  276. package/v3/pact.js.map +0 -1
  277. package/v3/verifier.d.ts +0 -27
  278. package/v3/verifier.js +0 -46
  279. package/v3/verifier.js.map +0 -1
  280. package/v3/xml/xmlBuilder.js.map +0 -1
  281. package/v3/xml/xmlElement.d.ts +0 -34
  282. package/v3/xml/xmlElement.js.map +0 -1
  283. package/v3/xml/xmlNode.js.map +0 -1
  284. package/v3/xml/xmlText.d.ts +0 -6
  285. package/v3/xml/xmlText.js.map +0 -1
package/CHANGELOG.md CHANGED
@@ -2,6 +2,2447 @@
2
2
 
3
3
  All notable changes to this project will be documented in this file. See [standard-version](https://github.com/conventional-changelog/standard-version) for commit guidelines.
4
4
 
5
+ ## [10.0.0](https://github.com/pact-foundation/pact-js/compare/v10.1.0-beta.0...v10.0.0) (2022-07-28)
6
+
7
+
8
+ ### Features
9
+
10
+ * release 10.x.x ([b5dd539](https://github.com/pact-foundation/pact-js/commit/b5dd539b4b4eb9bf1a743beb0406e17dd0731dd5))
11
+
12
+ ## [10.1.0-beta.0](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.62...v10.1.0-beta.0) (2022-07-28)
13
+
14
+
15
+ ### Fixes and Improvements
16
+
17
+ * package.json & package-lock.json to reduce vulnerabilities ([108223f](https://github.com/pact-foundation/pact-js/commit/108223ff6d7df29527e86eeba1358eaf3004b111))
18
+
19
+ ### [9.18.1](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.60...v9.18.1) (2022-06-28)
20
+
21
+
22
+ ### Fixes and Improvements
23
+
24
+ * package.json & package-lock.json to reduce vulnerabilities ([#879](https://github.com/pact-foundation/pact-js/issues/879)) ([5005463](https://github.com/pact-foundation/pact-js/commit/50054638342171d8f9972350b2bf601e99b404b3))
25
+
26
+ ## [9.18.0](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.59...v9.18.0) (2022-06-26)
27
+
28
+
29
+ ### Features
30
+
31
+ * drop support for pact web incl. karma examples ([d45f898](https://github.com/pact-foundation/pact-js/commit/d45f898b29a62aa77cecff499a46ce365fd2c79a))
32
+ * modify request body inside of verifer ([#873](https://github.com/pact-foundation/pact-js/issues/873)) ([be8ed15](https://github.com/pact-foundation/pact-js/commit/be8ed151c607b69bcf07670df211156887adb29e))
33
+
34
+
35
+ ### Fixes and Improvements
36
+
37
+ * nestjs example should use branches in workflow ([a7adf07](https://github.com/pact-foundation/pact-js/commit/a7adf07d5563cf7ad92d2054b6913c890ef21220))
38
+ * webpack on node 16 ([903cf44](https://github.com/pact-foundation/pact-js/commit/903cf44dd15f19f6132b6d7bf5f89f0cccc70d41))
39
+
40
+ ### [9.17.3](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.58...v9.17.3) (2022-03-16)
41
+
42
+
43
+ ### Fixes and Improvements
44
+
45
+ * remove rust from v3 release build ([2a5f65b](https://github.com/pact-foundation/pact-js/commit/2a5f65bc7e8a48c7ee786905f78207cba7837110))
46
+ * The table on README.md is corrupted and unreadable ([#832](https://github.com/pact-foundation/pact-js/issues/832)) ([b73fa05](https://github.com/pact-foundation/pact-js/commit/b73fa05a7f92ed81d225f6c68349d322d388656d))
47
+ * throw an error when pact spec version is not set to 2 ([4186c22](https://github.com/pact-foundation/pact-js/commit/4186c22030cc3a7f2abb99c096d480c66f17f2a4))
48
+ * upgrade to latest pact-node ([0d9b127](https://github.com/pact-foundation/pact-js/commit/0d9b1270d4dc03e761941ae060b2a75db0bab24d))
49
+ * verifier req/res logging on debug ([#835](https://github.com/pact-foundation/pact-js/issues/835)) ([3edc5a0](https://github.com/pact-foundation/pact-js/commit/3edc5a035170fb28f74be6b908091e37093cad98))
50
+
51
+ ## [10.0.0-beta.62](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.61...v10.0.0-beta.62) (2022-07-27)
52
+
53
+
54
+ ### Fixes and Improvements
55
+
56
+ * states not added when using PactV3.addInteraction ([cb4bd1a](https://github.com/pact-foundation/pact-js/commit/cb4bd1a0540261cfe4c8fb9c716a3541cdeae600))
57
+
58
+ ## [10.0.0-beta.61](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.60...v10.0.0-beta.61) (2022-07-26)
59
+
60
+
61
+ ### Features
62
+
63
+ * migrate message pact to new js core ([156886f](https://github.com/pact-foundation/pact-js/commit/156886fde85d2a1fa217a68db69fd876d3a76001))
64
+ * remove deprecated VerifierV3 from beta interface. BREAKING CHANGE ([25dc07e](https://github.com/pact-foundation/pact-js/commit/25dc07e3f3f710b77526d8be315ef7ee772ff747))
65
+ * replace ruby core with rust core in stable pact http package ([7b7d415](https://github.com/pact-foundation/pact-js/commit/7b7d415f0f9910de19061e1e4bdbe8b1acc7b6ef))
66
+ * support JSON addInteraction function for PactV3 ([903fd36](https://github.com/pact-foundation/pact-js/commit/903fd36a13805b80afa2ff4967a161a43cdfed09))
67
+ * support user defined port/host in v3 consumer tests ([8aaafe6](https://github.com/pact-foundation/pact-js/commit/8aaafe6e919e1935d033e1b904b5131af084af1e))
68
+
69
+
70
+ ### Fixes and Improvements
71
+
72
+ * Add support for state params to MessageProviderPact ([#372](https://github.com/pact-foundation/pact-js/issues/372)) ([#882](https://github.com/pact-foundation/pact-js/issues/882)) ([33c145a](https://github.com/pact-foundation/pact-js/commit/33c145a908916ac3a83f0eec30f15b782b3a2e71))
73
+ * make 'dir' optional in PactV3 interface and default to ./pacts dir ([0b12160](https://github.com/pact-foundation/pact-js/commit/0b121601787895a3c551be6f0e17da4ea819e738))
74
+
75
+ ## [10.0.0-beta.60](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.59...v10.0.0-beta.60) (2022-06-26)
76
+
77
+
78
+ ### Features
79
+
80
+ * modify request body inside of verifier v3 ([#875](https://github.com/pact-foundation/pact-js/issues/875)) ([0fd1a34](https://github.com/pact-foundation/pact-js/commit/0fd1a349dbcc596543d7872c89e6171b9b1cabde))
81
+ * remove pact-web and karma ([2c57330](https://github.com/pact-foundation/pact-js/commit/2c57330f5779cd345ff6213fcd468dd34126823e))
82
+ * support customising the proxy host ([d281d4f](https://github.com/pact-foundation/pact-js/commit/d281d4f7d94b45a98c27ed5fd5f06a5c7649b710))
83
+
84
+ ## [10.0.0-beta.59](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.58...v10.0.0-beta.59) (2022-04-01)
85
+
86
+
87
+ ### Fixes and Improvements
88
+
89
+ * content type detection now considers matchers ([069da08](https://github.com/pact-foundation/pact-js/commit/069da08b22c748cc0dd929ea28e2cfac564b9a8f))
90
+ * e2e tests were verifying the wrong pacts ([1999f2d](https://github.com/pact-foundation/pact-js/commit/1999f2d0f243861c802b886bfb50b8e94f6d7915))
91
+ * infer content type from headers, prevent non JSON-able state parameters ([2a6acf3](https://github.com/pact-foundation/pact-js/commit/2a6acf3674707982cfe41318ebe87201064241ad))
92
+ * update to latest core ([51c4c52](https://github.com/pact-foundation/pact-js/commit/51c4c52c95e55c0eca812386a0c3390bf40d3dc2))
93
+
94
+ ## [10.0.0-beta.58](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.57...v10.0.0-beta.58) (2022-02-23)
95
+
96
+
97
+ ### Fixes and Improvements
98
+
99
+ * pin to latest beta version of core in examples ([d92c793](https://github.com/pact-foundation/pact-js/commit/d92c793fca7bf354ca8e275bf3b936111bd4eaad))
100
+
101
+ ## [10.0.0-beta.57](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.56...v10.0.0-beta.57) (2022-02-23)
102
+
103
+
104
+ ### Fixes and Improvements
105
+
106
+ * core now supports env vars if option not explicitly set ([bf69903](https://github.com/pact-foundation/pact-js/commit/bf699033e176ce5f67917cf12317a95e09e9b41c))
107
+ * formatting ([9c5bdf1](https://github.com/pact-foundation/pact-js/commit/9c5bdf184194dab60b0f82a415cc01c04666bfd1))
108
+ * new verifier doesn't support env vars ([dfc01b6](https://github.com/pact-foundation/pact-js/commit/dfc01b65ff8571e6598e5b24651aa42d9d29d2fd))
109
+ * node gyp not working on windows ([a6b1d88](https://github.com/pact-foundation/pact-js/commit/a6b1d8874be41967bdb2150bdb6e28034881dc00))
110
+ * remove deprecated v3 beta property ([75fc76c](https://github.com/pact-foundation/pact-js/commit/75fc76c3d48ccaa9be61934dbedd122219f21ef4))
111
+ * update to latest beta core ([fff279f](https://github.com/pact-foundation/pact-js/commit/fff279f347ba3a0152108520316364d7517b2726))
112
+ * update to latest beta core ([7a82ad9](https://github.com/pact-foundation/pact-js/commit/7a82ad90675ccd338f12aea69606e90fecf43ca4))
113
+ * update to latest beta core ([cbb4b07](https://github.com/pact-foundation/pact-js/commit/cbb4b0736e8fedd8dfed5d68ce30b59106b6e187))
114
+
115
+ ## [10.0.0-beta.56](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.55...v10.0.0-beta.56) (2022-02-16)
116
+
117
+
118
+ ### Fixes and Improvements
119
+
120
+ * bump version of core, remove rust from builds ([157d14b](https://github.com/pact-foundation/pact-js/commit/157d14b859fe630db4a5e65890e2c68c5c12aab6))
121
+
122
+ ## [10.0.0-beta.55](https://github.com/pact-foundation/pact-js/compare/v9.17.2...v10.0.0-beta.55) (2022-02-16)
123
+
124
+
125
+ ### Fixes and Improvements
126
+
127
+ * Bump pact-core dependency to 13.4.1 ([a3a11ec](https://github.com/pact-foundation/pact-js/commit/a3a11ec9487fc103233cc8915f1f5e15429ae4ed))
128
+
129
+ ## [10.0.0-beta.54](https://github.com/pact-foundation/pact-js/compare/v9.16.5...v10.0.0-beta.54) (2021-10-29)
130
+
131
+
132
+ ### Fixes and Improvements
133
+
134
+ * Bump version of pact-core to 13.3.0 ([97cc2ec](https://github.com/pact-foundation/pact-js/commit/97cc2ec797d6ccde62ad7d35e00dd634043b61c1))
135
+
136
+ ## [10.0.0-beta.53](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.52...v10.0.0-beta.53) (2021-10-19)
137
+
138
+
139
+ ### Fixes and Improvements
140
+
141
+ * Bump version of pact-core to fix regression in publisher API ([db434a5](https://github.com/pact-foundation/pact-js/commit/db434a5bf0acd726070c1db8a357cd68e81f6714))
142
+
143
+ ## [10.0.0-beta.52](https://github.com/pact-foundation/pact-js/compare/v9.16.4...v10.0.0-beta.52) (2021-10-16)
144
+
145
+
146
+ ### Fixes and Improvements
147
+
148
+ * Bump version of pact-core to fix [#760](https://github.com/pact-foundation/pact-js/issues/760) ([0cf7206](https://github.com/pact-foundation/pact-js/commit/0cf7206b8ae8e65e52e0e91fa8384278ccc78555))
149
+
150
+ ## [10.0.0-beta.51](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.50...v10.0.0-beta.51) (2021-09-22)
151
+
152
+
153
+ ### Fixes and Improvements
154
+
155
+ * Bump version of pact-core to obtain fix for a regression in VerifierOptions where the option was set to undefined ([b424136](https://github.com/pact-foundation/pact-js/commit/b4241363276d26ef5947f3b3637e52ce09a4e8e3))
156
+
157
+ ## [10.0.0-beta.50](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.49...v10.0.0-beta.50) (2021-09-21)
158
+
159
+
160
+ ### Fixes and Improvements
161
+
162
+ * Don't generate random numbers when the example given to V3 integer or decimal matchers is 0 ([#742](https://github.com/pact-foundation/pact-js/issues/742)) ([e5a443c](https://github.com/pact-foundation/pact-js/commit/e5a443c55a98c3e3011580d04f639260522e18db))
163
+
164
+ ## [10.0.0-beta.49](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.48...v10.0.0-beta.49) (2021-09-15)
165
+
166
+
167
+ ### Fixes and Improvements
168
+
169
+ * give up on node 16 musl until we can remove neon ([c8e5275](https://github.com/pact-foundation/pact-js/commit/c8e5275af5215f1259e524a2d6ce52270f261a2d))
170
+ * update or remove all packages that caused dependency warnings ([e1bb6ec](https://github.com/pact-foundation/pact-js/commit/e1bb6ecb31874ff07be603bde6683d9113a4dc30))
171
+
172
+ ## [10.0.0-beta.48](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.47...v10.0.0-beta.48) (2021-09-15)
173
+
174
+
175
+ ### Fixes and Improvements
176
+
177
+ * upgrade neon to (finally) support Node 16 (hopefully) ([6734a52](https://github.com/pact-foundation/pact-js/commit/6734a52f60a1a3881396c7b5f63b7b4745550f94))
178
+
179
+ ## [10.0.0-beta.47](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.46...v10.0.0-beta.47) (2021-09-15)
180
+
181
+
182
+ ### ⚠ BREAKING CHANGES
183
+
184
+ * **matchers:** `Matchers.rfc3339Timestamp()` has been renamed to `Matchers.rfc1123Timestamp()`. The behaviour is unchanged - it was always RFC1123, and never did match RFC3339 timestamps.
185
+
186
+ ### Features
187
+
188
+ * support node 16 with native build ([5c5753e](https://github.com/pact-foundation/pact-js/commit/5c5753e3a8ac2ac93bc6c3ce68e9439388b8b639))
189
+
190
+
191
+ ### Fixes and Improvements
192
+
193
+ * add support for request-mismatch error types ([fa63933](https://github.com/pact-foundation/pact-js/commit/fa639330f7bd535d597b765983216bbaed662742))
194
+ * Bump version of pact-core to obtain fix for Verifier not accepting broker token correctly ([#738](https://github.com/pact-foundation/pact-js/issues/738)) ([79d9930](https://github.com/pact-foundation/pact-js/commit/79d993016f907a6859a2cdeb950bc42ec9096a8f))
195
+ * **matchers:** Rename rfc3339Timestamp to rfc1123Timestamp ([#451](https://github.com/pact-foundation/pact-js/issues/451)) ([8e9c378](https://github.com/pact-foundation/pact-js/commit/8e9c378459c2de0f95ee1b91a7bb8dfaa1d9a60b))
196
+
197
+ ## [10.0.0-beta.46](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.45...v10.0.0-beta.46) (2021-09-13)
198
+
199
+
200
+ ### Features
201
+
202
+ * Support node 16 with native build ([79d43ff](https://github.com/pact-foundation/pact-js/commit/79d43ff695ae64137d083e9651c62482691cf1b8))
203
+
204
+ ## [10.0.0-beta.45](https://github.com/pact-foundation/pact-js/compare/v9.16.1...v10.0.0-beta.45) (2021-09-10)
205
+
206
+
207
+ ### ⚠ BREAKING CHANGES
208
+
209
+ * There are several changes to the `VerifierOptions`. To migrate:
210
+
211
+ * Replace `verbose` with `logLevel: "DEBUG"` (logLevels of `DEBUG` and below now imply `verbose` where appropriate)
212
+ * Replace `consumerVersionTag` with the `consumerVersionTags` array
213
+ * Replace `providerVersionTag` with the `providerVersionTags` array
214
+ * Replace `tags` with `consumerVersionTags` or `providerVersionTags` as appropriate.
215
+ * Some `VerifierOptions` have been removed entirely:
216
+ * `customProviderHeaders` has been removed. If you need this functionality, set an
217
+ appropriate request filter with the `requestFilters` option instead.
218
+ * All logging and reporting is now on standard out (this was the default before).
219
+ This means `logDir` / `format` / `out` have all been removed. If your ecosystem needs
220
+ the ability to customise logging and reporting, please let us know by opening an issue.
221
+ * The undocumented option `monkeypatch` has been removed. The use cases for this
222
+ feature are mostly covered by other options.
223
+ * **logging:** 'fatal' log level has been removed. Nothing was logged at fatal, and the underlying core doesn't support it.
224
+
225
+ ### Features
226
+
227
+ * Actually send message metadata during verification ([c373144](https://github.com/pact-foundation/pact-js/commit/c373144e040c78babaf48d5b14575dfe33233b88))
228
+ * Add ability to specify metadata in provider tests with ([824e49b](https://github.com/pact-foundation/pact-js/commit/824e49b5f7f6cfc9555fb988430dceb0a4ab875b))
229
+ * State handlers respect promises for all pact file formats ([72bfc0b](https://github.com/pact-foundation/pact-js/commit/72bfc0b78df471e1a37fd3c93658199493bb066f))
230
+
231
+
232
+ * **logging:** Improve trace logging and use clearer types ([060daa9](https://github.com/pact-foundation/pact-js/commit/060daa964e7b57a5e4ada634702de21c1e434921))
233
+ * update verifier options ([6df54b0](https://github.com/pact-foundation/pact-js/commit/6df54b01a68057e88cabee18743048a69db7c28e))
234
+
235
+
236
+ ### Fixes and Improvements
237
+
238
+ * correct VerfierV3Options so that it doesn't clobber VeriferOptions ([5796fde](https://github.com/pact-foundation/pact-js/commit/5796fdeb96c354316fe9606f0a9a7fc0c3d43532))
239
+ * You no longer need to import the verifier from /v3, it can be imported directly from @pact-foundation/pact ([c268497](https://github.com/pact-foundation/pact-js/commit/c268497e1fd848d3423d379a2671361ea56c9b53))
240
+
241
+ ## [10.0.0-beta.44](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.43...v10.0.0-beta.44) (2021-07-22)
242
+
243
+
244
+ ### Fixes and Improvements
245
+
246
+ * broken pact provider test not consistent with types ([29af342](https://github.com/pact-foundation/pact-js/commit/29af34250cdc308a5298553f5ee9bbb9daf182cb))
247
+ * consumerVersionTags were overwritten with empty array ([#714](https://github.com/pact-foundation/pact-js/issues/714)) ([838d1cb](https://github.com/pact-foundation/pact-js/commit/838d1cbc8730592518abff16733a9a703437abb7))
248
+ * using relative import. fixes problems with intellisense in vscode ([35de1c5](https://github.com/pact-foundation/pact-js/commit/35de1c57d744d5bc747e6af114c8d272b2a8cec4))
249
+
250
+ ## [10.0.0-beta.43](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.42...v10.0.0-beta.43) (2021-07-18)
251
+
252
+
253
+ ### Fixes and Improvements
254
+
255
+ * return correct data type in fromProviderState ([#710](https://github.com/pact-foundation/pact-js/issues/710)) ([ec9192f](https://github.com/pact-foundation/pact-js/commit/ec9192fb44986b001634b8c44c877a8e3dd29c64)), closes [#633](https://github.com/pact-foundation/pact-js/issues/633)
256
+
257
+ ## [10.0.0-beta.42](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.41...v10.0.0-beta.42) (2021-06-29)
258
+
259
+
260
+ ### Features
261
+
262
+ * reset consumer test state to enable re-use of PactV3 class ([0134ea8](https://github.com/pact-foundation/pact-js/commit/0134ea8252b49a1639fdd78be4fe16283e1a7d70))
263
+
264
+ ## [10.0.0-beta.41](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.40...v10.0.0-beta.41) (2021-06-26)
265
+
266
+
267
+ ### ⚠ BREAKING CHANGES
268
+
269
+ * the signature of state handlers has been updated to
270
+ accept either a single function with parameters, or an object that
271
+ can specify optional teardown and setup functions that run on the
272
+ different state phases.
273
+ * callbackTimeout is now timeout
274
+
275
+ ### Features
276
+
277
+ * support promises in filters + state handlers ([456567c](https://github.com/pact-foundation/pact-js/commit/456567c83a5f155381eebb7dd3f6b60d3bc0060b))
278
+
279
+
280
+ ### Fixes and Improvements
281
+
282
+ * Make request tracer log in debug instead of trace ([24742e4](https://github.com/pact-foundation/pact-js/commit/24742e4c3d314de346e7fe430da2078cb475d7b1))
283
+
284
+ ## [10.0.0-beta.40](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.39...v10.0.0-beta.40) (2021-06-24)
285
+
286
+
287
+ ### Fixes and Improvements
288
+
289
+ * make fromProviderState Matcher compatible ([b608094](https://github.com/pact-foundation/pact-js/commit/b6080942f60c659c3947ecdd99e711eba088c5e8))
290
+
291
+ ## [10.0.0-beta.39](https://github.com/pact-foundation/pact-js/compare/v9.16.0...v10.0.0-beta.39) (2021-06-23)
292
+
293
+
294
+ ### Fixes and Improvements
295
+
296
+ * fromProviderState should accept any valid JSON. Fixes [#696](https://github.com/pact-foundation/pact-js/issues/696) ([1b03b2d](https://github.com/pact-foundation/pact-js/commit/1b03b2d35752529f1d77ce418ad2bb9c73e4b915))
297
+
298
+ ## [10.0.0-beta.38](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.37...v10.0.0-beta.38) (2021-06-21)
299
+
300
+
301
+ ### Fixes and Improvements
302
+
303
+ * Add InterfaceToTemplate<> generic type to address compile errors if users are using interfaces with matchers ([982c4d2](https://github.com/pact-foundation/pact-js/commit/982c4d2ccd47254e4a8466a38e07b35a7d066a5c))
304
+ * **verifier:** added StateHandler type and improved JSDocs ([4cad265](https://github.com/pact-foundation/pact-js/commit/4cad265e48a05539b7e99770852f7eaeba0bbd67))
305
+
306
+ ## [10.0.0-beta.37](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.36...v10.0.0-beta.37) (2021-06-06)
307
+
308
+
309
+ ### Features
310
+
311
+ * add consumer version selectors to v3 pact verifier ([3fe65ad](https://github.com/pact-foundation/pact-js/commit/3fe65ade2a478929309392e2fab030676373c4b4))
312
+
313
+
314
+ ### Fixes and Improvements
315
+
316
+ * append text only works with Matchers ([ef56513](https://github.com/pact-foundation/pact-js/commit/ef56513b96d046a36ec1ff068a1a707591f986a9)), closes [/github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a#diff-254dbea027a5c57e2b14fb8ff30edc28fea1d39ff2392d95731f7a16f60d5782R70](https://github.com/pact-foundation//github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a/issues/diff-254dbea027a5c57e2b14fb8ff30edc28fea1d39ff2392d95731f7a16f60d5782R70)
317
+
318
+ ## [10.0.0-beta.36](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.35...v10.0.0-beta.36) (2021-05-31)
319
+
320
+
321
+ ### Features
322
+
323
+ * filter verification by description & state ([2eb529a](https://github.com/pact-foundation/pact-js/commit/2eb529a6ee5d56bc8a40d280e238c36405bb8f58))
324
+
325
+
326
+ ### Fixes and Improvements
327
+
328
+ * **build:** restore to files from git before build ([dfb9b08](https://github.com/pact-foundation/pact-js/commit/dfb9b08693522557e509c508d90e2a97f370ec4c))
329
+ * Error message with no pactBrokerUrl and no pactUrls ([3f6b036](https://github.com/pact-foundation/pact-js/commit/3f6b036779382f826f3449999855931abd12174f))
330
+ * internal error in Neon module: called `Option::unwrap()` on a `None` value ([7cb6822](https://github.com/pact-foundation/pact-js/commit/7cb6822d35c0447bead4a9ddcf863dacc7562ee8))
331
+ * linting ([3b1d394](https://github.com/pact-foundation/pact-js/commit/3b1d3945516ad924c47b47ffa70f8f33550a1136))
332
+ * process body intermediate format when the content type is not JSON [#633](https://github.com/pact-foundation/pact-js/issues/633) ([2683224](https://github.com/pact-foundation/pact-js/commit/26832240ab4977897a77a87f5f6f32e9af9da975))
333
+ * rename pact-node to pact-core ([553c525](https://github.com/pact-foundation/pact-js/commit/553c525a73e244d00726e933aa000ca4b81cf137))
334
+ * windows tests ([c56db1b](https://github.com/pact-foundation/pact-js/commit/c56db1b4b9477288f041063ca4b6c44b742b1b6f))
335
+ * windows tests ([1ef2f7c](https://github.com/pact-foundation/pact-js/commit/1ef2f7cd5869d0f4778e22a92c60f0aeabb785e2))
336
+ * XMLBuilder needs to return intermediate format ([002d6bc](https://github.com/pact-foundation/pact-js/commit/002d6bcba1ec495e82d10ba3367d91831d02e62b))
337
+
338
+ ## [10.0.0-beta.35](https://github.com/pact-foundation/pact-js/compare/v9.15.5...v10.0.0-beta.35) (2021-05-21)
339
+
340
+
341
+ ### ⚠ BREAKING CHANGES
342
+
343
+ * Pact-js no longer officially supports node less than 10 (10 is only supported by nodejs for another few months anyway, so I doubt this will affect many users)
344
+ * Since some of the interface of pact-core is exposed, there are some breaking changes:
345
+ * In `VerifierOptions`: replace use of `tags`, `consumerVersionTag` and `providerVersionTag` with the appropriate `consumerVersionTags` or `providerVersionTags` option.
346
+ * The type for consumer version selectors in the verifier options has been corrected. This will affect typescript users who were using consumerVersionSelectors with the fields `pacticipant`, `all` or `version`. These fields never worked, and now will no longer compile in typescript. The correct type is:
347
+ ```
348
+ ConsumerVersionSelector {
349
+ tag?: string;
350
+ latest?: boolean;
351
+ consumer?: string;
352
+ fallbackTag?: string;
353
+ }
354
+ ```
355
+
356
+ * Drop support for node < 10 ([328de85](https://github.com/pact-foundation/pact-js/commit/328de859e0699f849cc515e8240f71d1fe296aec))
357
+ * Update pact-core to v11. ([9e5a67d](https://github.com/pact-foundation/pact-js/commit/9e5a67da37fbfbd3433c31760ec6c020ccb2527d))
358
+
359
+ ## [10.0.0-beta.34](https://github.com/pact-foundation/pact-js/compare/v9.15.4...v10.0.0-beta.34) (2021-04-07)
360
+
361
+
362
+ ### Features
363
+
364
+ * add support for ignoring keys via the eachKeyLike matcher ([2f59c9f](https://github.com/pact-foundation/pact-js/commit/2f59c9fd87aedfc37df8e746e695fe6c98f1773d))
365
+
366
+
367
+ ### Fixes and Improvements
368
+
369
+ * Correct types for interaction chaining in graphql ([5043cc0](https://github.com/pact-foundation/pact-js/commit/5043cc0ad5a72559e2508175fffa15e076e77bb3))
370
+ * **package-name:** Use the new name (pact-core) for pact-node ([a42fee2](https://github.com/pact-foundation/pact-js/commit/a42fee28a630becdef4a85e61f4a03133d6aba4f))
371
+ * Remove deprecated ability to provide options to Vverifier outside the constructor. Temporarily disable nestjs example accordingly ([a7a3c0e](https://github.com/pact-foundation/pact-js/commit/a7a3c0e97bb052ade32c13f174356c56172df522))
372
+ * **typescript:** accept string array as query value ([69f74ba](https://github.com/pact-foundation/pact-js/commit/69f74ba81a100c2dbbadb1448141f4e8a7afdb2a))
373
+
374
+ ## [10.0.0-beta.33](https://github.com/pact-foundation/pact-js/compare/v9.15.2...v10.0.0-beta.33) (2021-03-03)
375
+
376
+
377
+ ### Fixes and Improvements
378
+
379
+ * use example in datetime matcher instead of generator if provided. Fixes [#620](https://github.com/pact-foundation/pact-js/issues/620) ([c0ca78b](https://github.com/pact-foundation/pact-js/commit/c0ca78b6995354154ed387f18c1d896789acf778))
380
+
381
+ ## [10.0.0-beta.32](https://github.com/pact-foundation/pact-js/compare/v9.15.1...v10.0.0-beta.32) (2021-02-23)
382
+
383
+
384
+ ### Features
385
+
386
+ * add experimental 'allow missing' behind env var PACT_EXPERIMENTAL_FEATURE_ALLOW_MISSING_REQUESTS ([2d3a1fe](https://github.com/pact-foundation/pact-js/commit/2d3a1fec0c8989d58d0384bd39888cd8eb76d0a7))
387
+
388
+
389
+ ### Fixes and Improvements
390
+
391
+ * **pact-node:** Bump dependency on pact-node ([812e09e](https://github.com/pact-foundation/pact-js/commit/812e09e67a9789b8ab02c852fe689a7b39d092c0))
392
+
393
+ ## [10.0.0-beta.31](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.30...v10.0.0-beta.31) (2021-02-10)
394
+
395
+
396
+ ### Fixes and Improvements
397
+
398
+ * improve file locking behaviour ([0f73466](https://github.com/pact-foundation/pact-js/commit/0f7346663d3edd9ef36cdfa7f08adfbe8f4ab4d8))
399
+
400
+ ## [10.0.0-beta.30](https://github.com/pact-foundation/pact-js/compare/v9.15.0...v10.0.0-beta.30) (2021-02-08)
401
+
402
+
403
+ ### Features
404
+
405
+ * fix file locking, add 'overwrite' and 'callbackTimeout' flags ([e891fcc](https://github.com/pact-foundation/pact-js/commit/e891fccb5802491cf148f398c81406bf06ae43c8)), closes [#599](https://github.com/pact-foundation/pact-js/issues/599) [#600](https://github.com/pact-foundation/pact-js/issues/600)
406
+
407
+
408
+ ### Fixes and Improvements
409
+
410
+ * make the callback timeout configurable with a 5 sec default ([a0f0876](https://github.com/pact-foundation/pact-js/commit/a0f0876b93e728379a289a5bfa6e2e8613ec1768))
411
+
412
+ ## [10.0.0-beta.29](https://github.com/pact-foundation/pact-js/compare/v9.14.2...v10.0.0-beta.29) (2021-01-29)
413
+
414
+
415
+ ### Fixes and Improvements
416
+
417
+ * added export to V3 matcher interfaces ([8d11c1a](https://github.com/pact-foundation/pact-js/commit/8d11c1a6d6d8033ae96f471665245baec750ca51))
418
+ * don't strigify response that is already a string ([a867147](https://github.com/pact-foundation/pact-js/commit/a867147566b182e1f9244d72d96c29db59a51007))
419
+
420
+ ## [10.0.0-beta.26](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.25...v10.0.0-beta.26) (2021-01-27)
421
+
422
+
423
+ ### Features
424
+
425
+ * add uuid matcher function ([49c3da8](https://github.com/pact-foundation/pact-js/commit/49c3da8183ae729fe6063bd27e3eeba57750d853))
426
+
427
+
428
+ ### Fixes and Improvements
429
+
430
+ * don't JSON.stringify body if its already a string ([6d44059](https://github.com/pact-foundation/pact-js/commit/6d44059db1917c17e40f128a4b3eedfda16fd2c1))
431
+ * local pact URL ([1fd5fe4](https://github.com/pact-foundation/pact-js/commit/1fd5fe4806c62581be7c80504c806257a7b9020a))
432
+ * use correct id in consumer test ([3d7e9c0](https://github.com/pact-foundation/pact-js/commit/3d7e9c0fa1ccc36734d864bfa02eab220b054af1))
433
+
434
+ ## [10.0.0-beta.25](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.24...v10.0.0-beta.25) (2021-01-12)
435
+
436
+
437
+ ### Fixes and Improvements
438
+
439
+ * change the release trigger for native libs ([3f1bbfa](https://github.com/pact-foundation/pact-js/commit/3f1bbfa79a4eb11593bc26ad96d34cc852b82c9e))
440
+ * URLs were not being generated correctly when used with an array contains matcher ([4fccb8d](https://github.com/pact-foundation/pact-js/commit/4fccb8df1ac19fa858cd7c4f1ca2da68c068bd04))
441
+
442
+ ## [10.0.0-beta.24](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.23...v10.0.0-beta.24) (2021-01-12)
443
+
444
+
445
+ ### Fixes and Improvements
446
+
447
+ * exclude openssl from native build for musl versions ([3db75af](https://github.com/pact-foundation/pact-js/commit/3db75afe2e42da0747deabff946ade6afca30ba4))
448
+ * exclude the native lib from the NPM package ([208e750](https://github.com/pact-foundation/pact-js/commit/208e750c5d51968f7e643ed835a299c4bb48f00a))
449
+ * exclude the native lib from the NPM package ([69a6e5b](https://github.com/pact-foundation/pact-js/commit/69a6e5b5263750bbef84ae7cadbc20d95294ee1c))
450
+
451
+ ## [10.0.0-beta.23](https://github.com/pact-foundation/pact-js/compare/v9.14.0...v10.0.0-beta.23) (2021-01-11)
452
+
453
+
454
+ ### Features
455
+
456
+ * initial pacts for verification integration ([6428bbe](https://github.com/pact-foundation/pact-js/commit/6428bbef3c056b884c4225a1d05f9f3b7b2d1691))
457
+ * support for matchers on headers ([aa3d55e](https://github.com/pact-foundation/pact-js/commit/aa3d55e4bbc60a210cc4be568d1c9dab9b0998b7))
458
+ * Update URL matching functions to support mock server URL generation ([2733af9](https://github.com/pact-foundation/pact-js/commit/2733af9aa0f936928358ad6e40e2c17d3aeb48b5))
459
+
460
+
461
+ ### Fixes and Improvements
462
+
463
+ * correct V3 matcher spec ([6b6ac6c](https://github.com/pact-foundation/pact-js/commit/6b6ac6c71878e96ccaf3f19a81903ba620d16b5d))
464
+
465
+ ## [10.0.0-beta.22](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.21...v10.0.0-beta.22) (2020-11-17)
466
+
467
+
468
+ ### Features
469
+
470
+ * add example consumer test with provider state injected values [#516](https://github.com/pact-foundation/pact-js/issues/516) ([190f332](https://github.com/pact-foundation/pact-js/commit/190f332559fe0b1717054796614aa2624e81818c))
471
+ * added consumer for provider state injected example ([bdc333c](https://github.com/pact-foundation/pact-js/commit/bdc333c57107ac62f44abfac83ec62645470cc71))
472
+ * got provider state injected values working with provider test [#516](https://github.com/pact-foundation/pact-js/issues/516) ([5fdf7eb](https://github.com/pact-foundation/pact-js/commit/5fdf7eb8284d73030049e1abf19c34445981510b))
473
+ * implemented matching query parameters and provider state injected values (in consumer DSL) [#516](https://github.com/pact-foundation/pact-js/issues/516) ([f798c13](https://github.com/pact-foundation/pact-js/commit/f798c13494b690d9f5348c61d143855e7117de33))
474
+
475
+
476
+ ### Fixes and Improvements
477
+
478
+ * if query parameters are not supplied they will be null or undefined [#516](https://github.com/pact-foundation/pact-js/issues/516) ([17397be](https://github.com/pact-foundation/pact-js/commit/17397bea50f25d3ded1dc71739a935e39b1f9a52))
479
+
480
+ ## [10.0.0-beta.21](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.20...v10.0.0-beta.21) (2020-10-30)
481
+
482
+
483
+ ### Fixes and Improvements
484
+
485
+ * improve the test error to include the original stack trace ([c14cb97](https://github.com/pact-foundation/pact-js/commit/c14cb97492ad38f16d442bef5a6411999149501d))
486
+ * update to latest mock server crate, fixes [#520](https://github.com/pact-foundation/pact-js/issues/520) ([21774de](https://github.com/pact-foundation/pact-js/commit/21774de2cc83b62224cb5315e888fb9ccd09c20b))
487
+
488
+ ## [10.0.0-beta.20](https://github.com/pact-foundation/pact-js/compare/v9.13.0...v10.0.0-beta.20) (2020-10-29)
489
+
490
+
491
+ ### Fixes and Improvements
492
+
493
+ * can not use matrix expressions in uses: with GH actions ([d6942a4](https://github.com/pact-foundation/pact-js/commit/d6942a412a64d1edd11d4f0f4ce2836e020da1e5))
494
+ * support any values for provider state parameters ([df4df0b](https://github.com/pact-foundation/pact-js/commit/df4df0bcd944d18088c6f7241b925c66a83a2039))
495
+ * update the MUSL docker container for use with GH actions ([5647032](https://github.com/pact-foundation/pact-js/commit/564703202e6bb22443eb7d6b90a533d1f7a54a6e))
496
+
497
+ ## [10.0.0-beta.19](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.18...v10.0.0-beta.19) (2020-10-19)
498
+
499
+ ## [10.0.0-beta.18](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.17...v10.0.0-beta.18) (2020-10-16)
500
+
501
+
502
+ ### Features
503
+
504
+ * add support for array contains matcher ([57bcc79](https://github.com/pact-foundation/pact-js/commit/57bcc792037eb05d17a6e6268d14dcabe0262712))
505
+
506
+
507
+ ### Fixes and Improvements
508
+
509
+ * typo in comment ([7491383](https://github.com/pact-foundation/pact-js/commit/7491383ded889a4b25f3480c2601f715b4f49c69))
510
+ * update to latest matching lib ([23e1f39](https://github.com/pact-foundation/pact-js/commit/23e1f39bd690f2bbf80cf78cb2922939484c6838))
511
+
512
+ ## [10.0.0-beta.17](https://github.com/pact-foundation/pact-js/compare/v9.12.2...v10.0.0-beta.17) (2020-10-12)
513
+
514
+
515
+ ### Features
516
+
517
+ * improve the error messages for a failed test ([f01b57e](https://github.com/pact-foundation/pact-js/commit/f01b57e9b0606735669bc684517ceaac19269be1))
518
+
519
+
520
+ ### Fixes and Improvements
521
+
522
+ * allow the mock server port to be configured ([9c63d28](https://github.com/pact-foundation/pact-js/commit/9c63d28eb6d0c3d361b07b2053dcd3853649b160))
523
+ * correct the imports [#514](https://github.com/pact-foundation/pact-js/issues/514) ([6764a84](https://github.com/pact-foundation/pact-js/commit/6764a84e5b3004cd7f0f814a9ef694e606481ebe))
524
+
525
+ ## [10.0.0-beta.16](https://github.com/pact-foundation/pact-js/compare/v9.12.1...v10.0.0-beta.16) (2020-09-28)
526
+
527
+
528
+ ### Features
529
+
530
+ * add flag to enable handling CORS pre-flight requests ([0adb3fc](https://github.com/pact-foundation/pact-js/commit/0adb3fcab90bcf491f291c3874dd8bff93d3ac48))
531
+
532
+
533
+ ### Fixes and Improvements
534
+
535
+ * correct Rust code after upgrade to upstream libs ([aa6d803](https://github.com/pact-foundation/pact-js/commit/aa6d803bb611f7d89692abf4e4409c14e43e7cc9))
536
+ * need .mocharc.json after merge from master ([2525bf6](https://github.com/pact-foundation/pact-js/commit/2525bf6563e8cc93cd3522bcff8cdb9cb5931c4e))
537
+ * package.json after merge from master ([aef422b](https://github.com/pact-foundation/pact-js/commit/aef422b70d850032575bac8efc442bc6eecb0205))
538
+
539
+ ## [10.0.0-beta.15](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.14...v10.0.0-beta.15) (2020-08-05)
540
+
541
+
542
+ ### Fixes and Improvements
543
+
544
+ * correct matcher paths for text nodes in XML ([a217793](https://github.com/pact-foundation/pact-js/commit/a217793a5e538d9e9616ae1bab8cbd561fdd5377))
545
+
546
+ ## [10.0.0-beta.14](https://github.com/pact-foundation/pact-js/compare/v9.11.1...v10.0.0-beta.14) (2020-08-04)
547
+
548
+
549
+ ### Fixes and Improvements
550
+
551
+ * lint ([ae8397a](https://github.com/pact-foundation/pact-js/commit/ae8397af7a30af95fdcade718a6bd5c458da9e25))
552
+ * PactNative.init needs to be re-entrant ([16c22f6](https://github.com/pact-foundation/pact-js/commit/16c22f64e3b174b18f3a51cb1d157af66ea019ab))
553
+
554
+ ## [10.0.0-beta.13](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.12...v10.0.0-beta.13) (2020-06-27)
555
+
556
+
557
+ ### Features
558
+
559
+ * add some tests around the conusmer DSL matchers ([e6a153f](https://github.com/pact-foundation/pact-js/commit/e6a153fd62d48644b97018d69e5f23d1710e510f))
560
+ * handle XML matching with different types of child elements ([2143ca4](https://github.com/pact-foundation/pact-js/commit/2143ca4c968969e1c6218dd8e538097733ccfa56))
561
+ * implemented consumer DSL URL matcher ([f27a444](https://github.com/pact-foundation/pact-js/commit/f27a44409aed3ece1adbab6af9e853b7684c101c))
562
+
563
+
564
+ ### Fixes and Improvements
565
+
566
+ * after upgrading crates ([9a5a36d](https://github.com/pact-foundation/pact-js/commit/9a5a36db9d733bd13a1d68bb5b8d893720a915cb))
567
+ * import for metadata was wrong ([ba2a975](https://github.com/pact-foundation/pact-js/commit/ba2a9755aee672cbed73b236c44f68aab14939f0))
568
+ * lint ([78b4692](https://github.com/pact-foundation/pact-js/commit/78b46927bbeb96a4da6a924b7d8e86084ff6c355))
569
+
570
+ ## [10.0.0-beta.12](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.11...v10.0.0-beta.12) (2020-06-12)
571
+
572
+ ## [10.0.0-beta.11](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.10...v10.0.0-beta.11) (2020-06-12)
573
+
574
+ ## [10.0.0-beta.10](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.9...v10.0.0-beta.10) (2020-06-12)
575
+
576
+ ## [10.0.0-beta.9](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.8...v10.0.0-beta.9) (2020-06-11)
577
+
578
+ ## [10.0.0-beta.8](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.7...v10.0.0-beta.8) (2020-06-11)
579
+
580
+ ## [10.0.0-beta.7](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.6...v10.0.0-beta.7) (2020-06-11)
581
+
582
+ ## [10.0.0-beta.6](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.5...v10.0.0-beta.6) (2020-06-11)
583
+
584
+
585
+ ### Features
586
+
587
+ * enable publishing of verification results ([fcbdb3e](https://github.com/pact-foundation/pact-js/commit/fcbdb3e9729365039c30267996a7364e23ccdef1))
588
+ * release node 14 native binaries ([9ee832c](https://github.com/pact-foundation/pact-js/commit/9ee832c8dcfd896432ef34fb57595496bcac0077))
589
+
590
+ ## [10.0.0-beta.5](https://github.com/pact-foundation/pact-js/compare/v9.11.0...v10.0.0-beta.5) (2020-05-27)
591
+
592
+
593
+ ### Features
594
+
595
+ * support MIME multipart form posts with binary files ([d72a210](https://github.com/pact-foundation/pact-js/commit/d72a2103b4fb0d348d2601e88d9a34befc4f31a7))
596
+ * support regex matcher with a regexp object ([d92f6f5](https://github.com/pact-foundation/pact-js/commit/d92f6f5eee92667e5a3ce0ecdd44177d18a6b7ff))
597
+ * support text nodes configured from XML builder ([a2a7f55](https://github.com/pact-foundation/pact-js/commit/a2a7f55eff4a187cbe30a3e56917745ebc40e33d))
598
+ * support using matchers on XML text nodes ([b3b5e62](https://github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a))
599
+
600
+
601
+ ### Fixes and Improvements
602
+
603
+ * correct the version of the pact_mock_server crate ([a17f2bb](https://github.com/pact-foundation/pact-js/commit/a17f2bb26d2964ac45b19704d91019ab2e7cdc4d))
604
+ * date/time matchers were being skipped due to defect in upstream matching lib ([dcc3a7f](https://github.com/pact-foundation/pact-js/commit/dcc3a7fbf212cfce02c7d3dcf50bdb8f47baf45e))
605
+ * travis matrix was doubled up ([fe08a70](https://github.com/pact-foundation/pact-js/commit/fe08a70769dbf7b3525b074f93731fb8d9ab3916))
606
+ * travis was not running the E2E tests after merge from master ([73257dc](https://github.com/pact-foundation/pact-js/commit/73257dc3f43e229103aca119b3369d5d3ec228eb))
607
+
608
+ ## [10.0.0-beta.4](https://github.com/pact-foundation/pact-js/compare/v9.10.0...v10.0.0-beta.4) (2020-05-20)
609
+
610
+
611
+ ### Features
612
+
613
+ * add support for binary payloads ([658ffa0](https://github.com/pact-foundation/pact-js/commit/658ffa0ee17adfe380b7cb1c68e10c48078c9cb6))
614
+
615
+
616
+ ### Fixes and Improvements
617
+
618
+ * accidentially commited development paths in cargo manefest ([03cc16f](https://github.com/pact-foundation/pact-js/commit/03cc16f71d5f6a6cd646cdb6cf5421a134cb159e))
619
+ * format the error messages in a better way ([0a15772](https://github.com/pact-foundation/pact-js/commit/0a15772a710d3d159648672470084a1c99b45cc8))
620
+ * handle error when pact file cannot be written ([82832a8](https://github.com/pact-foundation/pact-js/commit/82832a81c115d06ef2d9c1fadd18c54f6f629e59))
621
+ * throw an exception when a request is configured but no interaction defined ([b317da7](https://github.com/pact-foundation/pact-js/commit/b317da79f28dce45102a55bcdcbc415d3fbdb9ab))
622
+ * throw an exception when a response is configured but no interaction defined ([6feacbe](https://github.com/pact-foundation/pact-js/commit/6feacbeef513420eddd9cbaed36abea80344de13))
623
+
624
+ ## [10.0.0-beta.3](https://github.com/pact-foundation/pact-js/compare/v9.9.2...v10.0.0-beta.3) (2020-04-08)
625
+
626
+
627
+ ### Fixes and Improvements
628
+
629
+ * correct invalid logger import ([5d4ba5b](https://github.com/pact-foundation/pact-js/commit/5d4ba5be629693b6608ea5f671b116a2ec3dad14))
630
+ * don't bundle the native lib in the NPM package ([24f43f3](https://github.com/pact-foundation/pact-js/commit/24f43f36f78269aef935381999dfe1e5802ea185))
631
+ * guard against panics in background thread ([b35aecd](https://github.com/pact-foundation/pact-js/commit/b35aecd2e907f4cb80ac4ba8ec3d99c9801f8c15))
632
+ * integer, decimal and number parameters are optional ([69f3983](https://github.com/pact-foundation/pact-js/commit/69f398333a10b649be4bf5a929234620d13d68d8))
633
+ * throw a JS error if there are no pacts to verify ([3bfd9da](https://github.com/pact-foundation/pact-js/commit/3bfd9dac007320e3ff14e476851d2f0aabef7ca0))
634
+ * try get the cause of any Rust panic ([f1f3d4a](https://github.com/pact-foundation/pact-js/commit/f1f3d4a4e287ec2c78a5b8f8eacfda459540dd5a))
635
+ * typo ([5d8dd37](https://github.com/pact-foundation/pact-js/commit/5d8dd37cf338478cc2a16532b9f2664e301294bf))
636
+ * update pact matching crate to 0.5.10 to fix invalid path matcher format ([ecce929](https://github.com/pact-foundation/pact-js/commit/ecce929af3d9aa51c3163d58e119924137a15195))
637
+
638
+ ## [10.0.0-beta.2](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.1...v10.0.0-beta.2) (2020-03-18)
639
+
640
+
641
+ ### Fixes and Improvements
642
+
643
+ * correct the path to the native lib in the NPM package ([300d915](https://github.com/pact-foundation/pact-js/commit/300d91516afebeefe979039566b02162e09992c0))
644
+
645
+ ## [10.0.0-beta.1](https://github.com/pact-foundation/pact-js/compare/v9.8.1...v10.0.0-beta.1) (2020-03-17)
646
+
647
+
648
+ ### Features
649
+
650
+ * got E2E consumer test passing ([904ed0b](https://github.com/pact-foundation/pact-js/commit/904ed0ba1115c81a07229e6a27c9e2d103c2dc36))
651
+ * got request filters working. Yay! ([de16880](https://github.com/pact-foundation/pact-js/commit/de16880171ee76fdb134593a7fc78725c81158ec))
652
+ * got the example V3 test working ([9ab43cc](https://github.com/pact-foundation/pact-js/commit/9ab43cc3541600653195c701b770dbdf1f44d5b0))
653
+ * handle the parameters and results from provider state callbacks [#372](https://github.com/pact-foundation/pact-js/issues/372) ([d3f73e5](https://github.com/pact-foundation/pact-js/commit/d3f73e5845023aa5168647daf711829a2d90f9ce))
654
+ * implement provider state parameters in consumer tests [#372](https://github.com/pact-foundation/pact-js/issues/372) ([af8bf32](https://github.com/pact-foundation/pact-js/commit/af8bf32f15551a7b86dc73682272074347143ffc))
655
+ * implemented provider state callbacks with parameters [#372](https://github.com/pact-foundation/pact-js/issues/372) ([50e4e61](https://github.com/pact-foundation/pact-js/commit/50e4e6199b6d9ce37cca8f10bdcd0d403cc1ad5d))
656
+ * Introduce an authenticated state [#372](https://github.com/pact-foundation/pact-js/issues/372) ([debebd7](https://github.com/pact-foundation/pact-js/commit/debebd73cce92a3988f99afbccc4d0091af4a3c9))
657
+
658
+
659
+ ### Fixes and Improvements
660
+
661
+ * changes needed for the E2E consumer test ([6022f8b](https://github.com/pact-foundation/pact-js/commit/6022f8b33fce1cea1f60ba1cf62625f557a00572))
662
+ * correct the paths for the attribute matchers ([7629c92](https://github.com/pact-foundation/pact-js/commit/7629c9232308e1e51730f1567a2e6010ce852aac))
663
+ * correct the v3-todo example tests ([de205c7](https://github.com/pact-foundation/pact-js/commit/de205c7e5ca7c1922b187e29a6d44f0010afb27b))
664
+ * datetime matchers now generate a value if one is not given ([a910840](https://github.com/pact-foundation/pact-js/commit/a910840001f0e86201e82b2ca5759841392c9cca))
665
+ * fucking lint ([cdb72db](https://github.com/pact-foundation/pact-js/commit/cdb72db91eb1283423d21e3841ed3329a128a0af))
666
+ * Gah! Lint Nazis ([79082fd](https://github.com/pact-foundation/pact-js/commit/79082fddafbb7e76293103a3457292b02b8dfc95))
667
+ * got eachlike with number of examples working ([88c9a72](https://github.com/pact-foundation/pact-js/commit/88c9a72a8e11456d0afe94bbfc6ce212bd22153e))
668
+ * lint ([772224d](https://github.com/pact-foundation/pact-js/commit/772224d4d7eeaa7beafe27b55816e441a5d1ddb4))
669
+ * lint ([9717b47](https://github.com/pact-foundation/pact-js/commit/9717b47e2bc06087f0d8eafdeb86f73bdca46683))
670
+ * neon build should point to native directory ([fdea3eb](https://github.com/pact-foundation/pact-js/commit/fdea3eb6619f9281a377300b39d281b342ab588d))
671
+ * neon build should point to native directory ([16957a2](https://github.com/pact-foundation/pact-js/commit/16957a2dff8a7669ad848437591a02f306038dca))
672
+ * neon requires a C++ compiler ([bb8731f](https://github.com/pact-foundation/pact-js/commit/bb8731fae1dcf8797bbfa1ecfd0ad3a95a7ef3d5))
673
+ * removed node 6 and 7 because ancient ([2b45cfc](https://github.com/pact-foundation/pact-js/commit/2b45cfcca9adc92834cdfe74bf1dda5550f4d0ec))
674
+ * rustup: Unable to run interactively. Run with -y to accept defaults ([abfa9c9](https://github.com/pact-foundation/pact-js/commit/abfa9c9151eb27c3b5c503131bda4907a809c677))
675
+ * travis build needs the Rust source in dist ([e64402e](https://github.com/pact-foundation/pact-js/commit/e64402eae49ed2d5e290686860b357f1b4748812))
676
+ * travis build needs the Rust source in dist ([519fee5](https://github.com/pact-foundation/pact-js/commit/519fee59d6798771e6fc7aaf6fcde8babd340356))
677
+ * use 0.5.6 of matching lib to avoid dup rules ([d30d7b9](https://github.com/pact-foundation/pact-js/commit/d30d7b974bcdcf25cfd73fd93ade68fbcd73ecdb))
678
+
679
+ ## [10.0.0-beta.54](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.53...v10.0.0-beta.54) (2021-10-29)
680
+
681
+
682
+ ### Fixes and Improvements
683
+
684
+ * Bump version of pact-core to 13.3.0 ([97cc2ec](https://github.com/pact-foundation/pact-js/commit/97cc2ec797d6ccde62ad7d35e00dd634043b61c1))
685
+
686
+ ## [10.0.0-beta.53](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.52...v10.0.0-beta.53) (2021-10-19)
687
+
688
+
689
+ ### Fixes and Improvements
690
+
691
+ * Bump version of pact-core to fix regression in publisher API ([db434a5](https://github.com/pact-foundation/pact-js/commit/db434a5bf0acd726070c1db8a357cd68e81f6714))
692
+
693
+ ## [10.0.0-beta.52](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.51...v10.0.0-beta.52) (2021-10-16)
694
+
695
+
696
+ ### Fixes and Improvements
697
+
698
+ * Bump version of pact-core to fix [#760](https://github.com/pact-foundation/pact-js/issues/760) ([0cf7206](https://github.com/pact-foundation/pact-js/commit/0cf7206b8ae8e65e52e0e91fa8384278ccc78555))
699
+
700
+ ## [10.0.0-beta.51](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.50...v10.0.0-beta.51) (2021-09-22)
701
+
702
+
703
+ ### Fixes and Improvements
704
+
705
+ * Bump version of pact-core to obtain fix for a regression in VerifierOptions where the option was set to undefined ([b424136](https://github.com/pact-foundation/pact-js/commit/b4241363276d26ef5947f3b3637e52ce09a4e8e3))
706
+
707
+ ## [10.0.0-beta.50](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.49...v10.0.0-beta.50) (2021-09-21)
708
+
709
+
710
+ ### Fixes and Improvements
711
+
712
+ * Don't generate random numbers when the example given to V3 integer or decimal matchers is 0 ([#742](https://github.com/pact-foundation/pact-js/issues/742)) ([e5a443c](https://github.com/pact-foundation/pact-js/commit/e5a443c55a98c3e3011580d04f639260522e18db))
713
+
714
+ ## [10.0.0-beta.49](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.48...v10.0.0-beta.49) (2021-09-15)
715
+
716
+
717
+ ### Fixes and Improvements
718
+
719
+ * give up on node 16 musl until we can remove neon ([c8e5275](https://github.com/pact-foundation/pact-js/commit/c8e5275af5215f1259e524a2d6ce52270f261a2d))
720
+ * update or remove all packages that caused dependency warnings ([e1bb6ec](https://github.com/pact-foundation/pact-js/commit/e1bb6ecb31874ff07be603bde6683d9113a4dc30))
721
+
722
+ ## [10.0.0-beta.48](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.47...v10.0.0-beta.48) (2021-09-15)
723
+
724
+
725
+ ### Fixes and Improvements
726
+
727
+ * upgrade neon to (finally) support Node 16 (hopefully) ([6734a52](https://github.com/pact-foundation/pact-js/commit/6734a52f60a1a3881396c7b5f63b7b4745550f94))
728
+
729
+ ## [10.0.0-beta.47](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.46...v10.0.0-beta.47) (2021-09-15)
730
+
731
+
732
+ ### ⚠ BREAKING CHANGES
733
+
734
+ * **matchers:** `Matchers.rfc3339Timestamp()` has been renamed to `Matchers.rfc1123Timestamp()`. The behaviour is unchanged - it was always RFC1123, and never did match RFC3339 timestamps.
735
+
736
+ ### Features
737
+
738
+ * support node 16 with native build ([5c5753e](https://github.com/pact-foundation/pact-js/commit/5c5753e3a8ac2ac93bc6c3ce68e9439388b8b639))
739
+
740
+
741
+ ### Fixes and Improvements
742
+
743
+ * add support for request-mismatch error types ([fa63933](https://github.com/pact-foundation/pact-js/commit/fa639330f7bd535d597b765983216bbaed662742))
744
+ * Bump version of pact-core to obtain fix for Verifier not accepting broker token correctly ([#738](https://github.com/pact-foundation/pact-js/issues/738)) ([79d9930](https://github.com/pact-foundation/pact-js/commit/79d993016f907a6859a2cdeb950bc42ec9096a8f))
745
+ * **matchers:** Rename rfc3339Timestamp to rfc1123Timestamp ([#451](https://github.com/pact-foundation/pact-js/issues/451)) ([8e9c378](https://github.com/pact-foundation/pact-js/commit/8e9c378459c2de0f95ee1b91a7bb8dfaa1d9a60b))
746
+
747
+ ## [10.0.0-beta.46](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.45...v10.0.0-beta.46) (2021-09-13)
748
+
749
+
750
+ ### Features
751
+
752
+ * Support node 16 with native build ([79d43ff](https://github.com/pact-foundation/pact-js/commit/79d43ff695ae64137d083e9651c62482691cf1b8))
753
+
754
+ ## [10.0.0-beta.45](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.44...v10.0.0-beta.45) (2021-09-10)
755
+
756
+
757
+ ### ⚠ BREAKING CHANGES
758
+
759
+ * There are several changes to the `VerifierOptions`. To migrate:
760
+
761
+ * Replace `verbose` with `logLevel: "DEBUG"` (logLevels of `DEBUG` and below now imply `verbose` where appropriate)
762
+ * Replace `consumerVersionTag` with the `consumerVersionTags` array
763
+ * Replace `providerVersionTag` with the `providerVersionTags` array
764
+ * Replace `tags` with `consumerVersionTags` or `providerVersionTags` as appropriate.
765
+ * Some `VerifierOptions` have been removed entirely:
766
+ * `customProviderHeaders` has been removed. If you need this functionality, set an
767
+ appropriate request filter with the `requestFilters` option instead.
768
+ * All logging and reporting is now on standard out (this was the default before).
769
+ This means `logDir` / `format` / `out` have all been removed. If your ecosystem needs
770
+ the ability to customise logging and reporting, please let us know by opening an issue.
771
+ * The undocumented option `monkeypatch` has been removed. The use cases for this
772
+ feature are mostly covered by other options.
773
+ * **logging:** 'fatal' log level has been removed. Nothing was logged at fatal, and the underlying core doesn't support it.
774
+
775
+ ### Features
776
+
777
+ * Actually send message metadata during verification ([c373144](https://github.com/pact-foundation/pact-js/commit/c373144e040c78babaf48d5b14575dfe33233b88))
778
+ * Add ability to specify metadata in provider tests with ([824e49b](https://github.com/pact-foundation/pact-js/commit/824e49b5f7f6cfc9555fb988430dceb0a4ab875b))
779
+ * State handlers respect promises for all pact file formats ([72bfc0b](https://github.com/pact-foundation/pact-js/commit/72bfc0b78df471e1a37fd3c93658199493bb066f))
780
+
781
+
782
+ * **logging:** Improve trace logging and use clearer types ([060daa9](https://github.com/pact-foundation/pact-js/commit/060daa964e7b57a5e4ada634702de21c1e434921))
783
+ * update verifier options ([6df54b0](https://github.com/pact-foundation/pact-js/commit/6df54b01a68057e88cabee18743048a69db7c28e))
784
+
785
+
786
+ ### Fixes and Improvements
787
+
788
+ * broken pact provider test not consistent with types ([29af342](https://github.com/pact-foundation/pact-js/commit/29af34250cdc308a5298553f5ee9bbb9daf182cb))
789
+ * correct VerfierV3Options so that it doesn't clobber VeriferOptions ([5796fde](https://github.com/pact-foundation/pact-js/commit/5796fdeb96c354316fe9606f0a9a7fc0c3d43532))
790
+ * using relative import. fixes problems with intellisense in vscode ([35de1c5](https://github.com/pact-foundation/pact-js/commit/35de1c57d744d5bc747e6af114c8d272b2a8cec4))
791
+ * You no longer need to import the verifier from /v3, it can be imported directly from @pact-foundation/pact ([c268497](https://github.com/pact-foundation/pact-js/commit/c268497e1fd848d3423d379a2671361ea56c9b53))
792
+
793
+ ## [10.0.0-beta.44](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.43...v10.0.0-beta.44) (2021-07-22)
794
+
795
+
796
+ ### Fixes and Improvements
797
+
798
+ * consumerVersionTags were overwritten with empty array ([#714](https://github.com/pact-foundation/pact-js/issues/714)) ([838d1cb](https://github.com/pact-foundation/pact-js/commit/838d1cbc8730592518abff16733a9a703437abb7))
799
+
800
+ ## [10.0.0-beta.43](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.42...v10.0.0-beta.43) (2021-07-18)
801
+
802
+
803
+ ### Fixes and Improvements
804
+
805
+ * return correct data type in fromProviderState ([#710](https://github.com/pact-foundation/pact-js/issues/710)) ([ec9192f](https://github.com/pact-foundation/pact-js/commit/ec9192fb44986b001634b8c44c877a8e3dd29c64)), closes [#633](https://github.com/pact-foundation/pact-js/issues/633)
806
+
807
+ ## [10.0.0-beta.42](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.41...v10.0.0-beta.42) (2021-06-29)
808
+
809
+
810
+ ### Features
811
+
812
+ * reset consumer test state to enable re-use of PactV3 class ([0134ea8](https://github.com/pact-foundation/pact-js/commit/0134ea8252b49a1639fdd78be4fe16283e1a7d70))
813
+
814
+ ## [10.0.0-beta.41](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.40...v10.0.0-beta.41) (2021-06-26)
815
+
816
+
817
+ ### ⚠ BREAKING CHANGES
818
+
819
+ * the signature of state handlers has been updated to
820
+ accept either a single function with parameters, or an object that
821
+ can specify optional teardown and setup functions that run on the
822
+ different state phases.
823
+ * callbackTimeout is now timeout
824
+
825
+ ### Features
826
+
827
+ * support promises in filters + state handlers ([456567c](https://github.com/pact-foundation/pact-js/commit/456567c83a5f155381eebb7dd3f6b60d3bc0060b))
828
+
829
+
830
+ ### Fixes and Improvements
831
+
832
+ * Make request tracer log in debug instead of trace ([24742e4](https://github.com/pact-foundation/pact-js/commit/24742e4c3d314de346e7fe430da2078cb475d7b1))
833
+
834
+ ## [10.0.0-beta.40](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.39...v10.0.0-beta.40) (2021-06-24)
835
+
836
+
837
+ ### Fixes and Improvements
838
+
839
+ * make fromProviderState Matcher compatible ([b608094](https://github.com/pact-foundation/pact-js/commit/b6080942f60c659c3947ecdd99e711eba088c5e8))
840
+
841
+ ## [10.0.0-beta.39](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.38...v10.0.0-beta.39) (2021-06-23)
842
+
843
+
844
+ ### Fixes and Improvements
845
+
846
+ * fromProviderState should accept any valid JSON. Fixes [#696](https://github.com/pact-foundation/pact-js/issues/696) ([1b03b2d](https://github.com/pact-foundation/pact-js/commit/1b03b2d35752529f1d77ce418ad2bb9c73e4b915))
847
+
848
+ ## [10.0.0-beta.38](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.37...v10.0.0-beta.38) (2021-06-21)
849
+
850
+
851
+ ### Fixes and Improvements
852
+
853
+ * Add InterfaceToTemplate<> generic type to address compile errors if users are using interfaces with matchers ([982c4d2](https://github.com/pact-foundation/pact-js/commit/982c4d2ccd47254e4a8466a38e07b35a7d066a5c))
854
+ * **verifier:** added StateHandler type and improved JSDocs ([4cad265](https://github.com/pact-foundation/pact-js/commit/4cad265e48a05539b7e99770852f7eaeba0bbd67))
855
+
856
+ ## [10.0.0-beta.37](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.36...v10.0.0-beta.37) (2021-06-06)
857
+
858
+
859
+ ### Features
860
+
861
+ * add consumer version selectors to v3 pact verifier ([3fe65ad](https://github.com/pact-foundation/pact-js/commit/3fe65ade2a478929309392e2fab030676373c4b4))
862
+
863
+
864
+ ### Fixes and Improvements
865
+
866
+ * append text only works with Matchers ([ef56513](https://github.com/pact-foundation/pact-js/commit/ef56513b96d046a36ec1ff068a1a707591f986a9)), closes [/github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a#diff-254dbea027a5c57e2b14fb8ff30edc28fea1d39ff2392d95731f7a16f60d5782R70](https://github.com/pact-foundation//github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a/issues/diff-254dbea027a5c57e2b14fb8ff30edc28fea1d39ff2392d95731f7a16f60d5782R70)
867
+
868
+ ## [10.0.0-beta.36](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.35...v10.0.0-beta.36) (2021-05-31)
869
+
870
+
871
+ ### Features
872
+
873
+ * filter verification by description & state ([2eb529a](https://github.com/pact-foundation/pact-js/commit/2eb529a6ee5d56bc8a40d280e238c36405bb8f58))
874
+
875
+
876
+ ### Fixes and Improvements
877
+
878
+ * **build:** restore to files from git before build ([dfb9b08](https://github.com/pact-foundation/pact-js/commit/dfb9b08693522557e509c508d90e2a97f370ec4c))
879
+ * Error message with no pactBrokerUrl and no pactUrls ([3f6b036](https://github.com/pact-foundation/pact-js/commit/3f6b036779382f826f3449999855931abd12174f))
880
+ * internal error in Neon module: called `Option::unwrap()` on a `None` value ([7cb6822](https://github.com/pact-foundation/pact-js/commit/7cb6822d35c0447bead4a9ddcf863dacc7562ee8))
881
+ * linting ([3b1d394](https://github.com/pact-foundation/pact-js/commit/3b1d3945516ad924c47b47ffa70f8f33550a1136))
882
+ * process body intermediate format when the content type is not JSON [#633](https://github.com/pact-foundation/pact-js/issues/633) ([2683224](https://github.com/pact-foundation/pact-js/commit/26832240ab4977897a77a87f5f6f32e9af9da975))
883
+ * rename pact-node to pact-core ([553c525](https://github.com/pact-foundation/pact-js/commit/553c525a73e244d00726e933aa000ca4b81cf137))
884
+ * windows tests ([c56db1b](https://github.com/pact-foundation/pact-js/commit/c56db1b4b9477288f041063ca4b6c44b742b1b6f))
885
+ * windows tests ([1ef2f7c](https://github.com/pact-foundation/pact-js/commit/1ef2f7cd5869d0f4778e22a92c60f0aeabb785e2))
886
+ * XMLBuilder needs to return intermediate format ([002d6bc](https://github.com/pact-foundation/pact-js/commit/002d6bcba1ec495e82d10ba3367d91831d02e62b))
887
+
888
+ ## [10.0.0-beta.35](https://github.com/pact-foundation/pact-js/compare/v9.15.5...v10.0.0-beta.35) (2021-05-21)
889
+
890
+
891
+ ### ⚠ BREAKING CHANGES
892
+
893
+ * Pact-js no longer officially supports node less than 10 (10 is only supported by nodejs for another few months anyway, so I doubt this will affect many users)
894
+ * Since some of the interface of pact-core is exposed, there are some breaking changes:
895
+ * In `VerifierOptions`: replace use of `tags`, `consumerVersionTag` and `providerVersionTag` with the appropriate `consumerVersionTags` or `providerVersionTags` option.
896
+ * The type for consumer version selectors in the verifier options has been corrected. This will affect typescript users who were using consumerVersionSelectors with the fields `pacticipant`, `all` or `version`. These fields never worked, and now will no longer compile in typescript. The correct type is:
897
+ ```
898
+ ConsumerVersionSelector {
899
+ tag?: string;
900
+ latest?: boolean;
901
+ consumer?: string;
902
+ fallbackTag?: string;
903
+ }
904
+ ```
905
+
906
+ * Drop support for node < 10 ([328de85](https://github.com/pact-foundation/pact-js/commit/328de859e0699f849cc515e8240f71d1fe296aec))
907
+ * Update pact-core to v11. ([9e5a67d](https://github.com/pact-foundation/pact-js/commit/9e5a67da37fbfbd3433c31760ec6c020ccb2527d))
908
+
909
+ ## [10.0.0-beta.34](https://github.com/pact-foundation/pact-js/compare/v9.15.4...v10.0.0-beta.34) (2021-04-07)
910
+
911
+
912
+ ### Features
913
+
914
+ * add support for ignoring keys via the eachKeyLike matcher ([2f59c9f](https://github.com/pact-foundation/pact-js/commit/2f59c9fd87aedfc37df8e746e695fe6c98f1773d))
915
+
916
+
917
+ ### Fixes and Improvements
918
+
919
+ * Correct types for interaction chaining in graphql ([5043cc0](https://github.com/pact-foundation/pact-js/commit/5043cc0ad5a72559e2508175fffa15e076e77bb3))
920
+ * Remove deprecated ability to provide options to Vverifier outside the constructor. Temporarily disable nestjs example accordingly ([a7a3c0e](https://github.com/pact-foundation/pact-js/commit/a7a3c0e97bb052ade32c13f174356c56172df522))
921
+ * **package-name:** Use the new name (pact-core) for pact-node ([a42fee2](https://github.com/pact-foundation/pact-js/commit/a42fee28a630becdef4a85e61f4a03133d6aba4f))
922
+ * **typescript:** accept string array as query value ([69f74ba](https://github.com/pact-foundation/pact-js/commit/69f74ba81a100c2dbbadb1448141f4e8a7afdb2a))
923
+
924
+ ## [10.0.0-beta.33](https://github.com/pact-foundation/pact-js/compare/v9.15.2...v10.0.0-beta.33) (2021-03-03)
925
+
926
+
927
+ ### Fixes and Improvements
928
+
929
+ * use example in datetime matcher instead of generator if provided. Fixes [#620](https://github.com/pact-foundation/pact-js/issues/620) ([c0ca78b](https://github.com/pact-foundation/pact-js/commit/c0ca78b6995354154ed387f18c1d896789acf778))
930
+
931
+ ## [10.0.0-beta.32](https://github.com/pact-foundation/pact-js/compare/v9.15.1...v10.0.0-beta.32) (2021-02-23)
932
+
933
+
934
+ ### Features
935
+
936
+ * add experimental 'allow missing' behind env var PACT_EXPERIMENTAL_FEATURE_ALLOW_MISSING_REQUESTS ([2d3a1fe](https://github.com/pact-foundation/pact-js/commit/2d3a1fec0c8989d58d0384bd39888cd8eb76d0a7))
937
+
938
+
939
+ ### Fixes and Improvements
940
+
941
+ * **pact-node:** Bump dependency on pact-node ([812e09e](https://github.com/pact-foundation/pact-js/commit/812e09e67a9789b8ab02c852fe689a7b39d092c0))
942
+
943
+ ## [10.0.0-beta.31](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.30...v10.0.0-beta.31) (2021-02-10)
944
+
945
+
946
+ ### Fixes and Improvements
947
+
948
+ * improve file locking behaviour ([0f73466](https://github.com/pact-foundation/pact-js/commit/0f7346663d3edd9ef36cdfa7f08adfbe8f4ab4d8))
949
+
950
+ ## [10.0.0-beta.30](https://github.com/pact-foundation/pact-js/compare/v9.15.0...v10.0.0-beta.30) (2021-02-08)
951
+
952
+
953
+ ### Features
954
+
955
+ * fix file locking, add 'overwrite' and 'callbackTimeout' flags ([e891fcc](https://github.com/pact-foundation/pact-js/commit/e891fccb5802491cf148f398c81406bf06ae43c8)), closes [#599](https://github.com/pact-foundation/pact-js/issues/599) [#600](https://github.com/pact-foundation/pact-js/issues/600)
956
+
957
+
958
+ ### Fixes and Improvements
959
+
960
+ * make the callback timeout configurable with a 5 sec default ([a0f0876](https://github.com/pact-foundation/pact-js/commit/a0f0876b93e728379a289a5bfa6e2e8613ec1768))
961
+
962
+ ## [10.0.0-beta.29](https://github.com/pact-foundation/pact-js/compare/v9.14.2...v10.0.0-beta.29) (2021-01-29)
963
+
964
+
965
+ ### Fixes and Improvements
966
+
967
+ * added export to V3 matcher interfaces ([8d11c1a](https://github.com/pact-foundation/pact-js/commit/8d11c1a6d6d8033ae96f471665245baec750ca51))
968
+ * don't strigify response that is already a string ([a867147](https://github.com/pact-foundation/pact-js/commit/a867147566b182e1f9244d72d96c29db59a51007))
969
+
970
+ ## [10.0.0-beta.26](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.25...v10.0.0-beta.26) (2021-01-27)
971
+
972
+
973
+ ### Features
974
+
975
+ * add uuid matcher function ([49c3da8](https://github.com/pact-foundation/pact-js/commit/49c3da8183ae729fe6063bd27e3eeba57750d853))
976
+
977
+
978
+ ### Fixes and Improvements
979
+
980
+ * don't JSON.stringify body if its already a string ([6d44059](https://github.com/pact-foundation/pact-js/commit/6d44059db1917c17e40f128a4b3eedfda16fd2c1))
981
+ * local pact URL ([1fd5fe4](https://github.com/pact-foundation/pact-js/commit/1fd5fe4806c62581be7c80504c806257a7b9020a))
982
+ * use correct id in consumer test ([3d7e9c0](https://github.com/pact-foundation/pact-js/commit/3d7e9c0fa1ccc36734d864bfa02eab220b054af1))
983
+
984
+ ## [10.0.0-beta.25](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.24...v10.0.0-beta.25) (2021-01-12)
985
+
986
+
987
+ ### Fixes and Improvements
988
+
989
+ * change the release trigger for native libs ([3f1bbfa](https://github.com/pact-foundation/pact-js/commit/3f1bbfa79a4eb11593bc26ad96d34cc852b82c9e))
990
+ * URLs were not being generated correctly when used with an array contains matcher ([4fccb8d](https://github.com/pact-foundation/pact-js/commit/4fccb8df1ac19fa858cd7c4f1ca2da68c068bd04))
991
+
992
+ ## [10.0.0-beta.24](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.23...v10.0.0-beta.24) (2021-01-12)
993
+
994
+
995
+ ### Fixes and Improvements
996
+
997
+ * exclude openssl from native build for musl versions ([3db75af](https://github.com/pact-foundation/pact-js/commit/3db75afe2e42da0747deabff946ade6afca30ba4))
998
+ * exclude the native lib from the NPM package ([208e750](https://github.com/pact-foundation/pact-js/commit/208e750c5d51968f7e643ed835a299c4bb48f00a))
999
+ * exclude the native lib from the NPM package ([69a6e5b](https://github.com/pact-foundation/pact-js/commit/69a6e5b5263750bbef84ae7cadbc20d95294ee1c))
1000
+
1001
+ ## [10.0.0-beta.23](https://github.com/pact-foundation/pact-js/compare/v9.14.0...v10.0.0-beta.23) (2021-01-11)
1002
+
1003
+
1004
+ ### Features
1005
+
1006
+ * initial pacts for verification integration ([6428bbe](https://github.com/pact-foundation/pact-js/commit/6428bbef3c056b884c4225a1d05f9f3b7b2d1691))
1007
+ * support for matchers on headers ([aa3d55e](https://github.com/pact-foundation/pact-js/commit/aa3d55e4bbc60a210cc4be568d1c9dab9b0998b7))
1008
+ * Update URL matching functions to support mock server URL generation ([2733af9](https://github.com/pact-foundation/pact-js/commit/2733af9aa0f936928358ad6e40e2c17d3aeb48b5))
1009
+
1010
+
1011
+ ### Fixes and Improvements
1012
+
1013
+ * correct V3 matcher spec ([6b6ac6c](https://github.com/pact-foundation/pact-js/commit/6b6ac6c71878e96ccaf3f19a81903ba620d16b5d))
1014
+
1015
+ ## [10.0.0-beta.22](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.21...v10.0.0-beta.22) (2020-11-17)
1016
+
1017
+
1018
+ ### Features
1019
+
1020
+ * add example consumer test with provider state injected values [#516](https://github.com/pact-foundation/pact-js/issues/516) ([190f332](https://github.com/pact-foundation/pact-js/commit/190f332559fe0b1717054796614aa2624e81818c))
1021
+ * added consumer for provider state injected example ([bdc333c](https://github.com/pact-foundation/pact-js/commit/bdc333c57107ac62f44abfac83ec62645470cc71))
1022
+ * got provider state injected values working with provider test [#516](https://github.com/pact-foundation/pact-js/issues/516) ([5fdf7eb](https://github.com/pact-foundation/pact-js/commit/5fdf7eb8284d73030049e1abf19c34445981510b))
1023
+ * implemented matching query parameters and provider state injected values (in consumer DSL) [#516](https://github.com/pact-foundation/pact-js/issues/516) ([f798c13](https://github.com/pact-foundation/pact-js/commit/f798c13494b690d9f5348c61d143855e7117de33))
1024
+
1025
+
1026
+ ### Fixes and Improvements
1027
+
1028
+ * if query parameters are not supplied they will be null or undefined [#516](https://github.com/pact-foundation/pact-js/issues/516) ([17397be](https://github.com/pact-foundation/pact-js/commit/17397bea50f25d3ded1dc71739a935e39b1f9a52))
1029
+
1030
+ ## [10.0.0-beta.21](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.20...v10.0.0-beta.21) (2020-10-30)
1031
+
1032
+
1033
+ ### Fixes and Improvements
1034
+
1035
+ * improve the test error to include the original stack trace ([c14cb97](https://github.com/pact-foundation/pact-js/commit/c14cb97492ad38f16d442bef5a6411999149501d))
1036
+ * update to latest mock server crate, fixes [#520](https://github.com/pact-foundation/pact-js/issues/520) ([21774de](https://github.com/pact-foundation/pact-js/commit/21774de2cc83b62224cb5315e888fb9ccd09c20b))
1037
+
1038
+ ## [10.0.0-beta.20](https://github.com/pact-foundation/pact-js/compare/v9.13.0...v10.0.0-beta.20) (2020-10-29)
1039
+
1040
+
1041
+ ### Fixes and Improvements
1042
+
1043
+ * can not use matrix expressions in uses: with GH actions ([d6942a4](https://github.com/pact-foundation/pact-js/commit/d6942a412a64d1edd11d4f0f4ce2836e020da1e5))
1044
+ * support any values for provider state parameters ([df4df0b](https://github.com/pact-foundation/pact-js/commit/df4df0bcd944d18088c6f7241b925c66a83a2039))
1045
+ * update the MUSL docker container for use with GH actions ([5647032](https://github.com/pact-foundation/pact-js/commit/564703202e6bb22443eb7d6b90a533d1f7a54a6e))
1046
+
1047
+ ## [10.0.0-beta.19](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.18...v10.0.0-beta.19) (2020-10-19)
1048
+
1049
+ ## [10.0.0-beta.18](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.17...v10.0.0-beta.18) (2020-10-16)
1050
+
1051
+
1052
+ ### Features
1053
+
1054
+ * add support for array contains matcher ([57bcc79](https://github.com/pact-foundation/pact-js/commit/57bcc792037eb05d17a6e6268d14dcabe0262712))
1055
+
1056
+
1057
+ ### Fixes and Improvements
1058
+
1059
+ * typo in comment ([7491383](https://github.com/pact-foundation/pact-js/commit/7491383ded889a4b25f3480c2601f715b4f49c69))
1060
+ * update to latest matching lib ([23e1f39](https://github.com/pact-foundation/pact-js/commit/23e1f39bd690f2bbf80cf78cb2922939484c6838))
1061
+
1062
+ ## [10.0.0-beta.17](https://github.com/pact-foundation/pact-js/compare/v9.12.2...v10.0.0-beta.17) (2020-10-12)
1063
+
1064
+
1065
+ ### Features
1066
+
1067
+ * improve the error messages for a failed test ([f01b57e](https://github.com/pact-foundation/pact-js/commit/f01b57e9b0606735669bc684517ceaac19269be1))
1068
+
1069
+
1070
+ ### Fixes and Improvements
1071
+
1072
+ * allow the mock server port to be configured ([9c63d28](https://github.com/pact-foundation/pact-js/commit/9c63d28eb6d0c3d361b07b2053dcd3853649b160))
1073
+ * correct the imports [#514](https://github.com/pact-foundation/pact-js/issues/514) ([6764a84](https://github.com/pact-foundation/pact-js/commit/6764a84e5b3004cd7f0f814a9ef694e606481ebe))
1074
+
1075
+ ## [10.0.0-beta.16](https://github.com/pact-foundation/pact-js/compare/v9.12.1...v10.0.0-beta.16) (2020-09-28)
1076
+
1077
+
1078
+ ### Features
1079
+
1080
+ * add flag to enable handling CORS pre-flight requests ([0adb3fc](https://github.com/pact-foundation/pact-js/commit/0adb3fcab90bcf491f291c3874dd8bff93d3ac48))
1081
+
1082
+
1083
+ ### Fixes and Improvements
1084
+
1085
+ * correct Rust code after upgrade to upstream libs ([aa6d803](https://github.com/pact-foundation/pact-js/commit/aa6d803bb611f7d89692abf4e4409c14e43e7cc9))
1086
+ * need .mocharc.json after merge from master ([2525bf6](https://github.com/pact-foundation/pact-js/commit/2525bf6563e8cc93cd3522bcff8cdb9cb5931c4e))
1087
+ * package.json after merge from master ([aef422b](https://github.com/pact-foundation/pact-js/commit/aef422b70d850032575bac8efc442bc6eecb0205))
1088
+
1089
+ ## [10.0.0-beta.15](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.14...v10.0.0-beta.15) (2020-08-05)
1090
+
1091
+
1092
+ ### Fixes and Improvements
1093
+
1094
+ * correct matcher paths for text nodes in XML ([a217793](https://github.com/pact-foundation/pact-js/commit/a217793a5e538d9e9616ae1bab8cbd561fdd5377))
1095
+
1096
+ ## [10.0.0-beta.14](https://github.com/pact-foundation/pact-js/compare/v9.11.1...v10.0.0-beta.14) (2020-08-04)
1097
+
1098
+
1099
+ ### Fixes and Improvements
1100
+
1101
+ * lint ([ae8397a](https://github.com/pact-foundation/pact-js/commit/ae8397af7a30af95fdcade718a6bd5c458da9e25))
1102
+ * PactNative.init needs to be re-entrant ([16c22f6](https://github.com/pact-foundation/pact-js/commit/16c22f64e3b174b18f3a51cb1d157af66ea019ab))
1103
+
1104
+ ## [10.0.0-beta.13](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.12...v10.0.0-beta.13) (2020-06-27)
1105
+
1106
+
1107
+ ### Features
1108
+
1109
+ * add some tests around the conusmer DSL matchers ([e6a153f](https://github.com/pact-foundation/pact-js/commit/e6a153fd62d48644b97018d69e5f23d1710e510f))
1110
+ * handle XML matching with different types of child elements ([2143ca4](https://github.com/pact-foundation/pact-js/commit/2143ca4c968969e1c6218dd8e538097733ccfa56))
1111
+ * implemented consumer DSL URL matcher ([f27a444](https://github.com/pact-foundation/pact-js/commit/f27a44409aed3ece1adbab6af9e853b7684c101c))
1112
+
1113
+
1114
+ ### Fixes and Improvements
1115
+
1116
+ * after upgrading crates ([9a5a36d](https://github.com/pact-foundation/pact-js/commit/9a5a36db9d733bd13a1d68bb5b8d893720a915cb))
1117
+ * import for metadata was wrong ([ba2a975](https://github.com/pact-foundation/pact-js/commit/ba2a9755aee672cbed73b236c44f68aab14939f0))
1118
+ * lint ([78b4692](https://github.com/pact-foundation/pact-js/commit/78b46927bbeb96a4da6a924b7d8e86084ff6c355))
1119
+
1120
+ ## [10.0.0-beta.12](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.11...v10.0.0-beta.12) (2020-06-12)
1121
+
1122
+ ## [10.0.0-beta.11](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.10...v10.0.0-beta.11) (2020-06-12)
1123
+
1124
+ ## [10.0.0-beta.10](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.9...v10.0.0-beta.10) (2020-06-12)
1125
+
1126
+ ## [10.0.0-beta.9](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.8...v10.0.0-beta.9) (2020-06-11)
1127
+
1128
+ ## [10.0.0-beta.8](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.7...v10.0.0-beta.8) (2020-06-11)
1129
+
1130
+ ## [10.0.0-beta.7](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.6...v10.0.0-beta.7) (2020-06-11)
1131
+
1132
+ ## [10.0.0-beta.6](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.5...v10.0.0-beta.6) (2020-06-11)
1133
+
1134
+
1135
+ ### Features
1136
+
1137
+ * enable publishing of verification results ([fcbdb3e](https://github.com/pact-foundation/pact-js/commit/fcbdb3e9729365039c30267996a7364e23ccdef1))
1138
+ * release node 14 native binaries ([9ee832c](https://github.com/pact-foundation/pact-js/commit/9ee832c8dcfd896432ef34fb57595496bcac0077))
1139
+
1140
+ ## [10.0.0-beta.5](https://github.com/pact-foundation/pact-js/compare/v9.11.0...v10.0.0-beta.5) (2020-05-27)
1141
+
1142
+
1143
+ ### Features
1144
+
1145
+ * support MIME multipart form posts with binary files ([d72a210](https://github.com/pact-foundation/pact-js/commit/d72a2103b4fb0d348d2601e88d9a34befc4f31a7))
1146
+ * support regex matcher with a regexp object ([d92f6f5](https://github.com/pact-foundation/pact-js/commit/d92f6f5eee92667e5a3ce0ecdd44177d18a6b7ff))
1147
+ * support text nodes configured from XML builder ([a2a7f55](https://github.com/pact-foundation/pact-js/commit/a2a7f55eff4a187cbe30a3e56917745ebc40e33d))
1148
+ * support using matchers on XML text nodes ([b3b5e62](https://github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a))
1149
+
1150
+
1151
+ ### Fixes and Improvements
1152
+
1153
+ * correct the version of the pact_mock_server crate ([a17f2bb](https://github.com/pact-foundation/pact-js/commit/a17f2bb26d2964ac45b19704d91019ab2e7cdc4d))
1154
+ * date/time matchers were being skipped due to defect in upstream matching lib ([dcc3a7f](https://github.com/pact-foundation/pact-js/commit/dcc3a7fbf212cfce02c7d3dcf50bdb8f47baf45e))
1155
+ * travis matrix was doubled up ([fe08a70](https://github.com/pact-foundation/pact-js/commit/fe08a70769dbf7b3525b074f93731fb8d9ab3916))
1156
+ * travis was not running the E2E tests after merge from master ([73257dc](https://github.com/pact-foundation/pact-js/commit/73257dc3f43e229103aca119b3369d5d3ec228eb))
1157
+
1158
+ ## [10.0.0-beta.4](https://github.com/pact-foundation/pact-js/compare/v9.10.0...v10.0.0-beta.4) (2020-05-20)
1159
+
1160
+
1161
+ ### Features
1162
+
1163
+ * add support for binary payloads ([658ffa0](https://github.com/pact-foundation/pact-js/commit/658ffa0ee17adfe380b7cb1c68e10c48078c9cb6))
1164
+
1165
+
1166
+ ### Fixes and Improvements
1167
+
1168
+ * accidentially commited development paths in cargo manefest ([03cc16f](https://github.com/pact-foundation/pact-js/commit/03cc16f71d5f6a6cd646cdb6cf5421a134cb159e))
1169
+ * format the error messages in a better way ([0a15772](https://github.com/pact-foundation/pact-js/commit/0a15772a710d3d159648672470084a1c99b45cc8))
1170
+ * handle error when pact file cannot be written ([82832a8](https://github.com/pact-foundation/pact-js/commit/82832a81c115d06ef2d9c1fadd18c54f6f629e59))
1171
+ * throw an exception when a request is configured but no interaction defined ([b317da7](https://github.com/pact-foundation/pact-js/commit/b317da79f28dce45102a55bcdcbc415d3fbdb9ab))
1172
+ * throw an exception when a response is configured but no interaction defined ([6feacbe](https://github.com/pact-foundation/pact-js/commit/6feacbeef513420eddd9cbaed36abea80344de13))
1173
+
1174
+ ## [10.0.0-beta.3](https://github.com/pact-foundation/pact-js/compare/v9.9.2...v10.0.0-beta.3) (2020-04-08)
1175
+
1176
+
1177
+ ### Fixes and Improvements
1178
+
1179
+ * correct invalid logger import ([5d4ba5b](https://github.com/pact-foundation/pact-js/commit/5d4ba5be629693b6608ea5f671b116a2ec3dad14))
1180
+ * don't bundle the native lib in the NPM package ([24f43f3](https://github.com/pact-foundation/pact-js/commit/24f43f36f78269aef935381999dfe1e5802ea185))
1181
+ * guard against panics in background thread ([b35aecd](https://github.com/pact-foundation/pact-js/commit/b35aecd2e907f4cb80ac4ba8ec3d99c9801f8c15))
1182
+ * integer, decimal and number parameters are optional ([69f3983](https://github.com/pact-foundation/pact-js/commit/69f398333a10b649be4bf5a929234620d13d68d8))
1183
+ * throw a JS error if there are no pacts to verify ([3bfd9da](https://github.com/pact-foundation/pact-js/commit/3bfd9dac007320e3ff14e476851d2f0aabef7ca0))
1184
+ * try get the cause of any Rust panic ([f1f3d4a](https://github.com/pact-foundation/pact-js/commit/f1f3d4a4e287ec2c78a5b8f8eacfda459540dd5a))
1185
+ * typo ([5d8dd37](https://github.com/pact-foundation/pact-js/commit/5d8dd37cf338478cc2a16532b9f2664e301294bf))
1186
+ * update pact matching crate to 0.5.10 to fix invalid path matcher format ([ecce929](https://github.com/pact-foundation/pact-js/commit/ecce929af3d9aa51c3163d58e119924137a15195))
1187
+
1188
+ ## [10.0.0-beta.2](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.1...v10.0.0-beta.2) (2020-03-18)
1189
+
1190
+
1191
+ ### Fixes and Improvements
1192
+
1193
+ * correct the path to the native lib in the NPM package ([300d915](https://github.com/pact-foundation/pact-js/commit/300d91516afebeefe979039566b02162e09992c0))
1194
+
1195
+ ## [10.0.0-beta.1](https://github.com/pact-foundation/pact-js/compare/v9.8.1...v10.0.0-beta.1) (2020-03-17)
1196
+
1197
+
1198
+ ### Features
1199
+
1200
+ * got E2E consumer test passing ([904ed0b](https://github.com/pact-foundation/pact-js/commit/904ed0ba1115c81a07229e6a27c9e2d103c2dc36))
1201
+ * got request filters working. Yay! ([de16880](https://github.com/pact-foundation/pact-js/commit/de16880171ee76fdb134593a7fc78725c81158ec))
1202
+ * got the example V3 test working ([9ab43cc](https://github.com/pact-foundation/pact-js/commit/9ab43cc3541600653195c701b770dbdf1f44d5b0))
1203
+ * handle the parameters and results from provider state callbacks [#372](https://github.com/pact-foundation/pact-js/issues/372) ([d3f73e5](https://github.com/pact-foundation/pact-js/commit/d3f73e5845023aa5168647daf711829a2d90f9ce))
1204
+ * implement provider state parameters in consumer tests [#372](https://github.com/pact-foundation/pact-js/issues/372) ([af8bf32](https://github.com/pact-foundation/pact-js/commit/af8bf32f15551a7b86dc73682272074347143ffc))
1205
+ * implemented provider state callbacks with parameters [#372](https://github.com/pact-foundation/pact-js/issues/372) ([50e4e61](https://github.com/pact-foundation/pact-js/commit/50e4e6199b6d9ce37cca8f10bdcd0d403cc1ad5d))
1206
+ * Introduce an authenticated state [#372](https://github.com/pact-foundation/pact-js/issues/372) ([debebd7](https://github.com/pact-foundation/pact-js/commit/debebd73cce92a3988f99afbccc4d0091af4a3c9))
1207
+
1208
+
1209
+ ### Fixes and Improvements
1210
+
1211
+ * changes needed for the E2E consumer test ([6022f8b](https://github.com/pact-foundation/pact-js/commit/6022f8b33fce1cea1f60ba1cf62625f557a00572))
1212
+ * correct the paths for the attribute matchers ([7629c92](https://github.com/pact-foundation/pact-js/commit/7629c9232308e1e51730f1567a2e6010ce852aac))
1213
+ * correct the v3-todo example tests ([de205c7](https://github.com/pact-foundation/pact-js/commit/de205c7e5ca7c1922b187e29a6d44f0010afb27b))
1214
+ * datetime matchers now generate a value if one is not given ([a910840](https://github.com/pact-foundation/pact-js/commit/a910840001f0e86201e82b2ca5759841392c9cca))
1215
+ * fucking lint ([cdb72db](https://github.com/pact-foundation/pact-js/commit/cdb72db91eb1283423d21e3841ed3329a128a0af))
1216
+ * Gah! Lint Nazis ([79082fd](https://github.com/pact-foundation/pact-js/commit/79082fddafbb7e76293103a3457292b02b8dfc95))
1217
+ * got eachlike with number of examples working ([88c9a72](https://github.com/pact-foundation/pact-js/commit/88c9a72a8e11456d0afe94bbfc6ce212bd22153e))
1218
+ * lint ([772224d](https://github.com/pact-foundation/pact-js/commit/772224d4d7eeaa7beafe27b55816e441a5d1ddb4))
1219
+ * lint ([9717b47](https://github.com/pact-foundation/pact-js/commit/9717b47e2bc06087f0d8eafdeb86f73bdca46683))
1220
+ * neon build should point to native directory ([fdea3eb](https://github.com/pact-foundation/pact-js/commit/fdea3eb6619f9281a377300b39d281b342ab588d))
1221
+ * neon build should point to native directory ([16957a2](https://github.com/pact-foundation/pact-js/commit/16957a2dff8a7669ad848437591a02f306038dca))
1222
+ * neon requires a C++ compiler ([bb8731f](https://github.com/pact-foundation/pact-js/commit/bb8731fae1dcf8797bbfa1ecfd0ad3a95a7ef3d5))
1223
+ * removed node 6 and 7 because ancient ([2b45cfc](https://github.com/pact-foundation/pact-js/commit/2b45cfcca9adc92834cdfe74bf1dda5550f4d0ec))
1224
+ * rustup: Unable to run interactively. Run with -y to accept defaults ([abfa9c9](https://github.com/pact-foundation/pact-js/commit/abfa9c9151eb27c3b5c503131bda4907a809c677))
1225
+ * travis build needs the Rust source in dist ([e64402e](https://github.com/pact-foundation/pact-js/commit/e64402eae49ed2d5e290686860b357f1b4748812))
1226
+ * travis build needs the Rust source in dist ([519fee5](https://github.com/pact-foundation/pact-js/commit/519fee59d6798771e6fc7aaf6fcde8babd340356))
1227
+ * use 0.5.6 of matching lib to avoid dup rules ([d30d7b9](https://github.com/pact-foundation/pact-js/commit/d30d7b974bcdcf25cfd73fd93ade68fbcd73ecdb))
1228
+
1229
+ ## [10.0.0-beta.34](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.33...v10.0.0-beta.34) (2021-04-07)
1230
+
1231
+
1232
+ ### Features
1233
+
1234
+ * add support for ignoring keys via the eachKeyLike matcher ([2f59c9f](https://github.com/pact-foundation/pact-js/commit/2f59c9fd87aedfc37df8e746e695fe6c98f1773d))
1235
+
1236
+
1237
+ ### Fixes and Improvements
1238
+
1239
+ * Correct types for interaction chaining in graphql ([5043cc0](https://github.com/pact-foundation/pact-js/commit/5043cc0ad5a72559e2508175fffa15e076e77bb3))
1240
+ * Remove deprecated ability to provide options to Vverifier outside the constructor. Temporarily disable nestjs example accordingly ([a7a3c0e](https://github.com/pact-foundation/pact-js/commit/a7a3c0e97bb052ade32c13f174356c56172df522))
1241
+ * **package-name:** Use the new name (pact-core) for pact-node ([a42fee2](https://github.com/pact-foundation/pact-js/commit/a42fee28a630becdef4a85e61f4a03133d6aba4f))
1242
+ * **pact-web-types:** Fix issue where typescript types were not exposed in pact-web ([d529082](https://github.com/pact-foundation/pact-js/commit/d529082f0b1e7d969ebdedae091adc54ad4be464))
1243
+ * **typescript:** accept string array as query value ([69f74ba](https://github.com/pact-foundation/pact-js/commit/69f74ba81a100c2dbbadb1448141f4e8a7afdb2a))
1244
+
1245
+ ### [9.15.2](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.32...v9.15.2) (2021-02-28)
1246
+
1247
+
1248
+ ### Fixes and Improvements
1249
+
1250
+ <<<<<<< HEAD
1251
+ * **pact-node:** bump dependency on pact-node ([a200414](https://github.com/pact-foundation/pact-js/commit/a2004143782be418b59a8266834c6aa8e6d2a1ef))
1252
+
1253
+ ### [9.15.1](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.31...v9.15.1) (2021-02-23)
1254
+ * Bump pact-node version to get vulnerability fixes ([bc0e7f0](https://github.com/pact-foundation/pact-js/commit/bc0e7f019ef8585d4fc5c980575e0ec0a72f1b65))
1255
+
1256
+ ### [9.15.3](https://github.com/pact-foundation/pact-js/compare/v9.15.2...v9.15.3) (2021-03-10)
1257
+ <<<<<<< HEAD
1258
+ * package.json & package-lock.json to reduce vulnerabilities ([aa8036c](https://github.com/pact-foundation/pact-js/commit/aa8036c2dd424d351d2afab003c1e539e2bc6e85))
1259
+
1260
+ ## [9.15.0](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.29...v9.15.0) (2021-02-02)
1261
+
1262
+
1263
+ ### Features
1264
+
1265
+ * **provider-states:** Add beforeEach and afterEach hooks to provider verification ([#529](https://github.com/pact-foundation/pact-js/issues/529)) - Fixes [#526](https://github.com/pact-foundation/pact-js/issues/526) ([8147042](https://github.com/pact-foundation/pact-js/commit/8147042f8dcbc396e991331afaf6c23d6c362b10))
1266
+
1267
+ ### [9.14.2](https://github.com/pact-foundation/pact-js/compare/v9.14.1...v9.14.2) (2021-01-28)
1268
+
1269
+
1270
+ ### Fixes and Improvements
1271
+
1272
+ * **pact-node:** Bump dependency on pact-node to avoid regression in query string matching ([9c733ce](https://github.com/pact-foundation/pact-js/commit/9c733ce5bd72c25ad5b71bb8bec0ec1903c9bf52))
1273
+ * **pact-node:** bump dependency on pact-node to get verbose logging in verification [#583](https://github.com/pact-foundation/pact-js/issues/583) ([66e9dca](https://github.com/pact-foundation/pact-js/commit/66e9dcafd555b000de357b6dffa1b166cadb670e))
1274
+
1275
+ ### [9.14.1](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.26...v9.14.1) (2021-01-27)
1276
+
1277
+
1278
+ ### Fixes and Improvements
1279
+
1280
+ * set permissions for Ruby binaries on GH Actions ([8881ee7](https://github.com/pact-foundation/pact-js/commit/8881ee79bbd24a4ef3e98ad098dda0117e7c78f6))
1281
+ * set permissions for Ruby binaries on GH Actions ([5701c0f](https://github.com/pact-foundation/pact-js/commit/5701c0fbc290bddb97d1b9a035c615782b79f462))
1282
+ * **logger:** lowercase log level ([8388776](https://github.com/pact-foundation/pact-js/commit/8388776df0f576d3860cf11280cebb96e9cd5aab))
1283
+ * **logger:** replace bunyan with pino ([fe6dd30](https://github.com/pact-foundation/pact-js/commit/fe6dd302cc2de389d009eaf0136776d8366d0394))
1284
+ * **pact-node:** bump dependency on pact-node to get verbose logging in verification [#583](https://github.com/pact-foundation/pact-js/issues/583) ([8b26262](https://github.com/pact-foundation/pact-js/commit/8b26262c2cf970a7b86e76c68c12d89ee689f9a4))
1285
+
1286
+ ## [10.0.0-beta.33](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.32...v10.0.0-beta.33) (2021-03-03)
1287
+
1288
+
1289
+ ### Fixes and Improvements
1290
+
1291
+ * use example in datetime matcher instead of generator if provided. Fixes [#620](https://github.com/pact-foundation/pact-js/issues/620) ([c0ca78b](https://github.com/pact-foundation/pact-js/commit/c0ca78b6995354154ed387f18c1d896789acf778))
1292
+ * **pact-node:** Bump dependency on pact-node ([812e09e](https://github.com/pact-foundation/pact-js/commit/812e09e67a9789b8ab02c852fe689a7b39d092c0))
1293
+
1294
+ ## [10.0.0-beta.32](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.31...v10.0.0-beta.32) (2021-02-23)
1295
+
1296
+
1297
+ ### Features
1298
+
1299
+ * add experimental 'allow missing' behind env var PACT_EXPERIMENTAL_FEATURE_ALLOW_MISSING_REQUESTS ([2d3a1fe](https://github.com/pact-foundation/pact-js/commit/2d3a1fec0c8989d58d0384bd39888cd8eb76d0a7))
1300
+
1301
+ ## [10.0.0-beta.31](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.30...v10.0.0-beta.31) (2021-02-10)
1302
+ =======
1303
+ * **pact-web-types:** Fix issue where typescript types were not exposed in pact-web ([d529082](https://github.com/pact-foundation/pact-js/commit/d529082f0b1e7d969ebdedae091adc54ad4be464))
1304
+
1305
+ ### [9.15.2](https://github.com/pact-foundation/pact-js/compare/v9.15.1...v9.15.2) (2021-02-28)
1306
+
1307
+ ### Fixes and Improvements
1308
+
1309
+ * improve file locking behaviour ([0f73466](https://github.com/pact-foundation/pact-js/commit/0f7346663d3edd9ef36cdfa7f08adfbe8f4ab4d8))
1310
+
1311
+ ## [10.0.0-beta.30](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.29...v10.0.0-beta.30) (2021-02-08)
1312
+
1313
+
1314
+ ### Features
1315
+
1316
+ * fix file locking, add 'overwrite' and 'callbackTimeout' flags ([e891fcc](https://github.com/pact-foundation/pact-js/commit/e891fccb5802491cf148f398c81406bf06ae43c8)), closes [#599](https://github.com/pact-foundation/pact-js/issues/599) [#600](https://github.com/pact-foundation/pact-js/issues/600)
1317
+
1318
+
1319
+ ### Fixes and Improvements
1320
+
1321
+ * make the callback timeout configurable with a 5 sec default ([a0f0876](https://github.com/pact-foundation/pact-js/commit/a0f0876b93e728379a289a5bfa6e2e8613ec1768))
1322
+
1323
+ ## [10.0.0-beta.29](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.26...v10.0.0-beta.29) (2021-01-29)
1324
+
1325
+
1326
+ ### Fixes and Improvements
1327
+
1328
+ * added export to V3 matcher interfaces ([8d11c1a](https://github.com/pact-foundation/pact-js/commit/8d11c1a6d6d8033ae96f471665245baec750ca51))
1329
+ * don't strigify response that is already a string ([a867147](https://github.com/pact-foundation/pact-js/commit/a867147566b182e1f9244d72d96c29db59a51007))
1330
+
1331
+ ## [10.0.0-beta.26](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.25...v10.0.0-beta.26) (2021-01-27)
1332
+
1333
+
1334
+ ### Features
1335
+
1336
+ * add uuid matcher function ([49c3da8](https://github.com/pact-foundation/pact-js/commit/49c3da8183ae729fe6063bd27e3eeba57750d853))
1337
+
1338
+
1339
+ ### Fixes and Improvements
1340
+
1341
+ * don't JSON.stringify body if its already a string ([6d44059](https://github.com/pact-foundation/pact-js/commit/6d44059db1917c17e40f128a4b3eedfda16fd2c1))
1342
+ * increase provider test timeout ([f850859](https://github.com/pact-foundation/pact-js/commit/f850859f2cf47b741e070fd52665befc7f5e9b90))
1343
+ * local pact URL ([1fd5fe4](https://github.com/pact-foundation/pact-js/commit/1fd5fe4806c62581be7c80504c806257a7b9020a))
1344
+ * publish V3 was not kicking off the native libs release process ([23bd533](https://github.com/pact-foundation/pact-js/commit/23bd533c9f3e5e98c0326c3764d8113d63ddc5a4))
1345
+ * use correct id in consumer test ([3d7e9c0](https://github.com/pact-foundation/pact-js/commit/3d7e9c0fa1ccc36734d864bfa02eab220b054af1))
1346
+
1347
+ ## [10.0.0-beta.25](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.24...v10.0.0-beta.25) (2021-01-12)
1348
+
1349
+
1350
+ ### Fixes and Improvements
1351
+
1352
+ * change the release trigger for native libs ([3f1bbfa](https://github.com/pact-foundation/pact-js/commit/3f1bbfa79a4eb11593bc26ad96d34cc852b82c9e))
1353
+ * URLs were not being generated correctly when used with an array contains matcher ([4fccb8d](https://github.com/pact-foundation/pact-js/commit/4fccb8df1ac19fa858cd7c4f1ca2da68c068bd04))
1354
+
1355
+ ## [10.0.0-beta.24](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.23...v10.0.0-beta.24) (2021-01-12)
1356
+
1357
+
1358
+ ### Fixes and Improvements
1359
+
1360
+ * exclude openssl from native build for musl versions ([3db75af](https://github.com/pact-foundation/pact-js/commit/3db75afe2e42da0747deabff946ade6afca30ba4))
1361
+ * exclude the native lib from the NPM package ([208e750](https://github.com/pact-foundation/pact-js/commit/208e750c5d51968f7e643ed835a299c4bb48f00a))
1362
+ * exclude the native lib from the NPM package ([69a6e5b](https://github.com/pact-foundation/pact-js/commit/69a6e5b5263750bbef84ae7cadbc20d95294ee1c))
1363
+
1364
+ ## [10.0.0-beta.23](https://github.com/pact-foundation/pact-js/compare/v9.14.0...v10.0.0-beta.23) (2021-01-11)
1365
+
1366
+
1367
+ ### Features
1368
+
1369
+ * initial pacts for verification integration ([6428bbe](https://github.com/pact-foundation/pact-js/commit/6428bbef3c056b884c4225a1d05f9f3b7b2d1691))
1370
+ * support for matchers on headers ([aa3d55e](https://github.com/pact-foundation/pact-js/commit/aa3d55e4bbc60a210cc4be568d1c9dab9b0998b7))
1371
+ * Update URL matching functions to support mock server URL generation ([2733af9](https://github.com/pact-foundation/pact-js/commit/2733af9aa0f936928358ad6e40e2c17d3aeb48b5))
1372
+
1373
+
1374
+ ### Fixes and Improvements
1375
+
1376
+ * correct V3 matcher spec ([6b6ac6c](https://github.com/pact-foundation/pact-js/commit/6b6ac6c71878e96ccaf3f19a81903ba620d16b5d))
1377
+
1378
+ ## [10.0.0-beta.22](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.21...v10.0.0-beta.22) (2020-11-17)
1379
+
1380
+
1381
+ ### Features
1382
+
1383
+ * add example consumer test with provider state injected values [#516](https://github.com/pact-foundation/pact-js/issues/516) ([190f332](https://github.com/pact-foundation/pact-js/commit/190f332559fe0b1717054796614aa2624e81818c))
1384
+ * added consumer for provider state injected example ([bdc333c](https://github.com/pact-foundation/pact-js/commit/bdc333c57107ac62f44abfac83ec62645470cc71))
1385
+ * got provider state injected values working with provider test [#516](https://github.com/pact-foundation/pact-js/issues/516) ([5fdf7eb](https://github.com/pact-foundation/pact-js/commit/5fdf7eb8284d73030049e1abf19c34445981510b))
1386
+ * implemented matching query parameters and provider state injected values (in consumer DSL) [#516](https://github.com/pact-foundation/pact-js/issues/516) ([f798c13](https://github.com/pact-foundation/pact-js/commit/f798c13494b690d9f5348c61d143855e7117de33))
1387
+
1388
+
1389
+ ### Fixes and Improvements
1390
+
1391
+ * if query parameters are not supplied they will be null or undefined [#516](https://github.com/pact-foundation/pact-js/issues/516) ([17397be](https://github.com/pact-foundation/pact-js/commit/17397bea50f25d3ded1dc71739a935e39b1f9a52))
1392
+
1393
+ ## [10.0.0-beta.21](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.20...v10.0.0-beta.21) (2020-10-30)
1394
+
1395
+
1396
+ ### Fixes and Improvements
1397
+
1398
+ * improve the test error to include the original stack trace ([c14cb97](https://github.com/pact-foundation/pact-js/commit/c14cb97492ad38f16d442bef5a6411999149501d))
1399
+ * update to latest mock server crate, fixes [#520](https://github.com/pact-foundation/pact-js/issues/520) ([21774de](https://github.com/pact-foundation/pact-js/commit/21774de2cc83b62224cb5315e888fb9ccd09c20b))
1400
+
1401
+ ## [10.0.0-beta.20](https://github.com/pact-foundation/pact-js/compare/v9.13.0...v10.0.0-beta.20) (2020-10-29)
1402
+
1403
+
1404
+ ### Fixes and Improvements
1405
+
1406
+ * can not use matrix expressions in uses: with GH actions ([d6942a4](https://github.com/pact-foundation/pact-js/commit/d6942a412a64d1edd11d4f0f4ce2836e020da1e5))
1407
+ * support any values for provider state parameters ([df4df0b](https://github.com/pact-foundation/pact-js/commit/df4df0bcd944d18088c6f7241b925c66a83a2039))
1408
+ * update the MUSL docker container for use with GH actions ([5647032](https://github.com/pact-foundation/pact-js/commit/564703202e6bb22443eb7d6b90a533d1f7a54a6e))
1409
+
1410
+ ## [10.0.0-beta.19](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.18...v10.0.0-beta.19) (2020-10-19)
1411
+
1412
+ ## [10.0.0-beta.18](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.17...v10.0.0-beta.18) (2020-10-16)
1413
+
1414
+
1415
+ ### Features
1416
+
1417
+ * add support for array contains matcher ([57bcc79](https://github.com/pact-foundation/pact-js/commit/57bcc792037eb05d17a6e6268d14dcabe0262712))
1418
+
1419
+
1420
+ ### Fixes and Improvements
1421
+
1422
+ * typo in comment ([7491383](https://github.com/pact-foundation/pact-js/commit/7491383ded889a4b25f3480c2601f715b4f49c69))
1423
+ * update to latest matching lib ([23e1f39](https://github.com/pact-foundation/pact-js/commit/23e1f39bd690f2bbf80cf78cb2922939484c6838))
1424
+
1425
+ ## [10.0.0-beta.17](https://github.com/pact-foundation/pact-js/compare/v9.12.2...v10.0.0-beta.17) (2020-10-12)
1426
+
1427
+
1428
+ ### Features
1429
+
1430
+ * improve the error messages for a failed test ([f01b57e](https://github.com/pact-foundation/pact-js/commit/f01b57e9b0606735669bc684517ceaac19269be1))
1431
+
1432
+
1433
+ ### Fixes and Improvements
1434
+
1435
+ * allow the mock server port to be configured ([9c63d28](https://github.com/pact-foundation/pact-js/commit/9c63d28eb6d0c3d361b07b2053dcd3853649b160))
1436
+ * correct the imports [#514](https://github.com/pact-foundation/pact-js/issues/514) ([6764a84](https://github.com/pact-foundation/pact-js/commit/6764a84e5b3004cd7f0f814a9ef694e606481ebe))
1437
+
1438
+ ## [10.0.0-beta.16](https://github.com/pact-foundation/pact-js/compare/v9.12.1...v10.0.0-beta.16) (2020-09-28)
1439
+
1440
+
1441
+ ### Features
1442
+
1443
+ * add flag to enable handling CORS pre-flight requests ([0adb3fc](https://github.com/pact-foundation/pact-js/commit/0adb3fcab90bcf491f291c3874dd8bff93d3ac48))
1444
+
1445
+
1446
+ ### Fixes and Improvements
1447
+
1448
+ * correct Rust code after upgrade to upstream libs ([aa6d803](https://github.com/pact-foundation/pact-js/commit/aa6d803bb611f7d89692abf4e4409c14e43e7cc9))
1449
+ * need .mocharc.json after merge from master ([2525bf6](https://github.com/pact-foundation/pact-js/commit/2525bf6563e8cc93cd3522bcff8cdb9cb5931c4e))
1450
+ * package.json after merge from master ([aef422b](https://github.com/pact-foundation/pact-js/commit/aef422b70d850032575bac8efc442bc6eecb0205))
1451
+
1452
+ ## [10.0.0-beta.15](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.14...v10.0.0-beta.15) (2020-08-05)
1453
+
1454
+
1455
+ ### Fixes and Improvements
1456
+
1457
+ * correct matcher paths for text nodes in XML ([a217793](https://github.com/pact-foundation/pact-js/commit/a217793a5e538d9e9616ae1bab8cbd561fdd5377))
1458
+
1459
+ ## [10.0.0-beta.14](https://github.com/pact-foundation/pact-js/compare/v9.11.1...v10.0.0-beta.14) (2020-08-04)
1460
+
1461
+
1462
+ ### Fixes and Improvements
1463
+
1464
+ * lint ([ae8397a](https://github.com/pact-foundation/pact-js/commit/ae8397af7a30af95fdcade718a6bd5c458da9e25))
1465
+ * PactNative.init needs to be re-entrant ([16c22f6](https://github.com/pact-foundation/pact-js/commit/16c22f64e3b174b18f3a51cb1d157af66ea019ab))
1466
+
1467
+ ## [10.0.0-beta.13](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.12...v10.0.0-beta.13) (2020-06-27)
1468
+
1469
+
1470
+ ### Features
1471
+
1472
+ * add some tests around the conusmer DSL matchers ([e6a153f](https://github.com/pact-foundation/pact-js/commit/e6a153fd62d48644b97018d69e5f23d1710e510f))
1473
+ * handle XML matching with different types of child elements ([2143ca4](https://github.com/pact-foundation/pact-js/commit/2143ca4c968969e1c6218dd8e538097733ccfa56))
1474
+ * implemented consumer DSL URL matcher ([f27a444](https://github.com/pact-foundation/pact-js/commit/f27a44409aed3ece1adbab6af9e853b7684c101c))
1475
+
1476
+
1477
+ ### Fixes and Improvements
1478
+
1479
+ * after upgrading crates ([9a5a36d](https://github.com/pact-foundation/pact-js/commit/9a5a36db9d733bd13a1d68bb5b8d893720a915cb))
1480
+ * import for metadata was wrong ([ba2a975](https://github.com/pact-foundation/pact-js/commit/ba2a9755aee672cbed73b236c44f68aab14939f0))
1481
+ * lint ([78b4692](https://github.com/pact-foundation/pact-js/commit/78b46927bbeb96a4da6a924b7d8e86084ff6c355))
1482
+
1483
+ ## [10.0.0-beta.12](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.11...v10.0.0-beta.12) (2020-06-12)
1484
+
1485
+ ## [10.0.0-beta.11](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.10...v10.0.0-beta.11) (2020-06-12)
1486
+
1487
+ ## [10.0.0-beta.10](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.9...v10.0.0-beta.10) (2020-06-12)
1488
+
1489
+ ## [10.0.0-beta.9](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.8...v10.0.0-beta.9) (2020-06-11)
1490
+
1491
+ ## [10.0.0-beta.8](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.7...v10.0.0-beta.8) (2020-06-11)
1492
+
1493
+ ## [10.0.0-beta.7](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.6...v10.0.0-beta.7) (2020-06-11)
1494
+
1495
+ ## [10.0.0-beta.6](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.5...v10.0.0-beta.6) (2020-06-11)
1496
+
1497
+
1498
+ ### Features
1499
+
1500
+ * enable publishing of verification results ([fcbdb3e](https://github.com/pact-foundation/pact-js/commit/fcbdb3e9729365039c30267996a7364e23ccdef1))
1501
+ * release node 14 native binaries ([9ee832c](https://github.com/pact-foundation/pact-js/commit/9ee832c8dcfd896432ef34fb57595496bcac0077))
1502
+
1503
+ ## [10.0.0-beta.5](https://github.com/pact-foundation/pact-js/compare/v9.11.0...v10.0.0-beta.5) (2020-05-27)
1504
+
1505
+
1506
+ ### Features
1507
+
1508
+ * support MIME multipart form posts with binary files ([d72a210](https://github.com/pact-foundation/pact-js/commit/d72a2103b4fb0d348d2601e88d9a34befc4f31a7))
1509
+ * support regex matcher with a regexp object ([d92f6f5](https://github.com/pact-foundation/pact-js/commit/d92f6f5eee92667e5a3ce0ecdd44177d18a6b7ff))
1510
+ * support text nodes configured from XML builder ([a2a7f55](https://github.com/pact-foundation/pact-js/commit/a2a7f55eff4a187cbe30a3e56917745ebc40e33d))
1511
+ * support using matchers on XML text nodes ([b3b5e62](https://github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a))
1512
+
1513
+
1514
+ ### Fixes and Improvements
1515
+
1516
+ * correct the version of the pact_mock_server crate ([a17f2bb](https://github.com/pact-foundation/pact-js/commit/a17f2bb26d2964ac45b19704d91019ab2e7cdc4d))
1517
+ * date/time matchers were being skipped due to defect in upstream matching lib ([dcc3a7f](https://github.com/pact-foundation/pact-js/commit/dcc3a7fbf212cfce02c7d3dcf50bdb8f47baf45e))
1518
+ * travis matrix was doubled up ([fe08a70](https://github.com/pact-foundation/pact-js/commit/fe08a70769dbf7b3525b074f93731fb8d9ab3916))
1519
+ * travis was not running the E2E tests after merge from master ([73257dc](https://github.com/pact-foundation/pact-js/commit/73257dc3f43e229103aca119b3369d5d3ec228eb))
1520
+
1521
+ ## [10.0.0-beta.4](https://github.com/pact-foundation/pact-js/compare/v9.10.0...v10.0.0-beta.4) (2020-05-20)
1522
+
1523
+
1524
+ ### Features
1525
+
1526
+ * add support for binary payloads ([658ffa0](https://github.com/pact-foundation/pact-js/commit/658ffa0ee17adfe380b7cb1c68e10c48078c9cb6))
1527
+
1528
+
1529
+ ### Fixes and Improvements
1530
+
1531
+ * accidentially commited development paths in cargo manefest ([03cc16f](https://github.com/pact-foundation/pact-js/commit/03cc16f71d5f6a6cd646cdb6cf5421a134cb159e))
1532
+ * format the error messages in a better way ([0a15772](https://github.com/pact-foundation/pact-js/commit/0a15772a710d3d159648672470084a1c99b45cc8))
1533
+ * handle error when pact file cannot be written ([82832a8](https://github.com/pact-foundation/pact-js/commit/82832a81c115d06ef2d9c1fadd18c54f6f629e59))
1534
+ * throw an exception when a request is configured but no interaction defined ([b317da7](https://github.com/pact-foundation/pact-js/commit/b317da79f28dce45102a55bcdcbc415d3fbdb9ab))
1535
+ * throw an exception when a response is configured but no interaction defined ([6feacbe](https://github.com/pact-foundation/pact-js/commit/6feacbeef513420eddd9cbaed36abea80344de13))
1536
+
1537
+ ## [10.0.0-beta.3](https://github.com/pact-foundation/pact-js/compare/v9.9.2...v10.0.0-beta.3) (2020-04-08)
1538
+
1539
+
1540
+ ### Fixes and Improvements
1541
+
1542
+ * correct invalid logger import ([5d4ba5b](https://github.com/pact-foundation/pact-js/commit/5d4ba5be629693b6608ea5f671b116a2ec3dad14))
1543
+ * don't bundle the native lib in the NPM package ([24f43f3](https://github.com/pact-foundation/pact-js/commit/24f43f36f78269aef935381999dfe1e5802ea185))
1544
+ * guard against panics in background thread ([b35aecd](https://github.com/pact-foundation/pact-js/commit/b35aecd2e907f4cb80ac4ba8ec3d99c9801f8c15))
1545
+ * integer, decimal and number parameters are optional ([69f3983](https://github.com/pact-foundation/pact-js/commit/69f398333a10b649be4bf5a929234620d13d68d8))
1546
+ * throw a JS error if there are no pacts to verify ([3bfd9da](https://github.com/pact-foundation/pact-js/commit/3bfd9dac007320e3ff14e476851d2f0aabef7ca0))
1547
+ * try get the cause of any Rust panic ([f1f3d4a](https://github.com/pact-foundation/pact-js/commit/f1f3d4a4e287ec2c78a5b8f8eacfda459540dd5a))
1548
+ * typo ([5d8dd37](https://github.com/pact-foundation/pact-js/commit/5d8dd37cf338478cc2a16532b9f2664e301294bf))
1549
+ * update pact matching crate to 0.5.10 to fix invalid path matcher format ([ecce929](https://github.com/pact-foundation/pact-js/commit/ecce929af3d9aa51c3163d58e119924137a15195))
1550
+
1551
+ ## [10.0.0-beta.2](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.1...v10.0.0-beta.2) (2020-03-18)
1552
+
1553
+
1554
+ ### Fixes and Improvements
1555
+
1556
+ * correct the path to the native lib in the NPM package ([300d915](https://github.com/pact-foundation/pact-js/commit/300d91516afebeefe979039566b02162e09992c0))
1557
+
1558
+ ## [10.0.0-beta.1](https://github.com/pact-foundation/pact-js/compare/v9.8.1...v10.0.0-beta.1) (2020-03-17)
1559
+
1560
+
1561
+ ### Features
1562
+
1563
+ * got E2E consumer test passing ([904ed0b](https://github.com/pact-foundation/pact-js/commit/904ed0ba1115c81a07229e6a27c9e2d103c2dc36))
1564
+ * got request filters working. Yay! ([de16880](https://github.com/pact-foundation/pact-js/commit/de16880171ee76fdb134593a7fc78725c81158ec))
1565
+ * got the example V3 test working ([9ab43cc](https://github.com/pact-foundation/pact-js/commit/9ab43cc3541600653195c701b770dbdf1f44d5b0))
1566
+ * handle the parameters and results from provider state callbacks [#372](https://github.com/pact-foundation/pact-js/issues/372) ([d3f73e5](https://github.com/pact-foundation/pact-js/commit/d3f73e5845023aa5168647daf711829a2d90f9ce))
1567
+ * implement provider state parameters in consumer tests [#372](https://github.com/pact-foundation/pact-js/issues/372) ([af8bf32](https://github.com/pact-foundation/pact-js/commit/af8bf32f15551a7b86dc73682272074347143ffc))
1568
+ * implemented provider state callbacks with parameters [#372](https://github.com/pact-foundation/pact-js/issues/372) ([50e4e61](https://github.com/pact-foundation/pact-js/commit/50e4e6199b6d9ce37cca8f10bdcd0d403cc1ad5d))
1569
+ * Introduce an authenticated state [#372](https://github.com/pact-foundation/pact-js/issues/372) ([debebd7](https://github.com/pact-foundation/pact-js/commit/debebd73cce92a3988f99afbccc4d0091af4a3c9))
1570
+
1571
+
1572
+ ### Fixes and Improvements
1573
+
1574
+ * changes needed for the E2E consumer test ([6022f8b](https://github.com/pact-foundation/pact-js/commit/6022f8b33fce1cea1f60ba1cf62625f557a00572))
1575
+ * correct the paths for the attribute matchers ([7629c92](https://github.com/pact-foundation/pact-js/commit/7629c9232308e1e51730f1567a2e6010ce852aac))
1576
+ * correct the v3-todo example tests ([de205c7](https://github.com/pact-foundation/pact-js/commit/de205c7e5ca7c1922b187e29a6d44f0010afb27b))
1577
+ * datetime matchers now generate a value if one is not given ([a910840](https://github.com/pact-foundation/pact-js/commit/a910840001f0e86201e82b2ca5759841392c9cca))
1578
+ * fucking lint ([cdb72db](https://github.com/pact-foundation/pact-js/commit/cdb72db91eb1283423d21e3841ed3329a128a0af))
1579
+ * Gah! Lint Nazis ([79082fd](https://github.com/pact-foundation/pact-js/commit/79082fddafbb7e76293103a3457292b02b8dfc95))
1580
+ * got eachlike with number of examples working ([88c9a72](https://github.com/pact-foundation/pact-js/commit/88c9a72a8e11456d0afe94bbfc6ce212bd22153e))
1581
+ * lint ([772224d](https://github.com/pact-foundation/pact-js/commit/772224d4d7eeaa7beafe27b55816e441a5d1ddb4))
1582
+ * lint ([9717b47](https://github.com/pact-foundation/pact-js/commit/9717b47e2bc06087f0d8eafdeb86f73bdca46683))
1583
+ * neon build should point to native directory ([fdea3eb](https://github.com/pact-foundation/pact-js/commit/fdea3eb6619f9281a377300b39d281b342ab588d))
1584
+ * neon build should point to native directory ([16957a2](https://github.com/pact-foundation/pact-js/commit/16957a2dff8a7669ad848437591a02f306038dca))
1585
+ * neon requires a C++ compiler ([bb8731f](https://github.com/pact-foundation/pact-js/commit/bb8731fae1dcf8797bbfa1ecfd0ad3a95a7ef3d5))
1586
+ * removed node 6 and 7 because ancient ([2b45cfc](https://github.com/pact-foundation/pact-js/commit/2b45cfcca9adc92834cdfe74bf1dda5550f4d0ec))
1587
+ * rustup: Unable to run interactively. Run with -y to accept defaults ([abfa9c9](https://github.com/pact-foundation/pact-js/commit/abfa9c9151eb27c3b5c503131bda4907a809c677))
1588
+ * travis build needs the Rust source in dist ([e64402e](https://github.com/pact-foundation/pact-js/commit/e64402eae49ed2d5e290686860b357f1b4748812))
1589
+ * travis build needs the Rust source in dist ([519fee5](https://github.com/pact-foundation/pact-js/commit/519fee59d6798771e6fc7aaf6fcde8babd340356))
1590
+ * use 0.5.6 of matching lib to avoid dup rules ([d30d7b9](https://github.com/pact-foundation/pact-js/commit/d30d7b974bcdcf25cfd73fd93ade68fbcd73ecdb))
1591
+
1592
+ ## [10.0.0-beta.23](https://github.com/pact-foundation/pact-js/compare/v9.13.1...v10.0.0-beta.23) (2021-01-05)
1593
+
1594
+
1595
+ ### Features
1596
+
1597
+ * initial pacts for verification integration ([6428bbe](https://github.com/pact-foundation/pact-js/commit/6428bbef3c056b884c4225a1d05f9f3b7b2d1691))
1598
+ * support for matchers on headers ([aa3d55e](https://github.com/pact-foundation/pact-js/commit/aa3d55e4bbc60a210cc4be568d1c9dab9b0998b7))
1599
+ * Update URL matching functions to support mock server URL generation ([2733af9](https://github.com/pact-foundation/pact-js/commit/2733af9aa0f936928358ad6e40e2c17d3aeb48b5))
1600
+
1601
+ ## [9.14.0](https://github.com/pact-foundation/pact-js/compare/v9.13.2...v9.14.0) (2021-01-09)
1602
+
1603
+
1604
+ ### Features
1605
+
1606
+ * add request/response tracing ([37c3dc3](https://github.com/pact-foundation/pact-js/commit/37c3dc356c819d08bca114d7d76983ea606368fd))
1607
+
1608
+
1609
+ ### Fixes and Improvements
1610
+
1611
+ * **logger:** Message consumers now respect the specified log level ([98e601c](https://github.com/pact-foundation/pact-js/commit/98e601c7b5ee97b5f9d620abc1542f702cfe84b7))
1612
+ * **pact-web:** Pact-web is now built using webpack 4. Please let us know if there are any issues ([27fd1b5](https://github.com/pact-foundation/pact-js/commit/27fd1b5fb737f29a1c0b326ddd89ab9b2a21aaa6))
1613
+
1614
+ ### [9.13.2](https://github.com/pact-foundation/pact-js/compare/v9.13.1...v9.13.2) (2021-01-04)
1615
+
1616
+
1617
+ ### Bug Fixes
1618
+
1619
+ * **popsicle:** Increase maxBufferSize of requests to infinity ([8fd751a](https://github.com/pact-foundation/pact-js/commit/8fd751a9e73b7f9150eb938f4d083d2ab235d747))
1620
+ * small errors ([076549e](https://github.com/pact-foundation/pact-js/commit/076549e9cf5c9cb5798104bcda7d1cb97c1daf83))
1621
+
1622
+ ## [10.0.0-beta.22](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.21...v10.0.0-beta.22) (2020-11-17)
1623
+
1624
+
1625
+ ### Features
1626
+
1627
+ * add example consumer test with provider state injected values [#516](https://github.com/pact-foundation/pact-js/issues/516) ([190f332](https://github.com/pact-foundation/pact-js/commit/190f332559fe0b1717054796614aa2624e81818c))
1628
+ * added consumer for provider state injected example ([bdc333c](https://github.com/pact-foundation/pact-js/commit/bdc333c57107ac62f44abfac83ec62645470cc71))
1629
+ * got provider state injected values working with provider test [#516](https://github.com/pact-foundation/pact-js/issues/516) ([5fdf7eb](https://github.com/pact-foundation/pact-js/commit/5fdf7eb8284d73030049e1abf19c34445981510b))
1630
+ * implemented matching query parameters and provider state injected values (in consumer DSL) [#516](https://github.com/pact-foundation/pact-js/issues/516) ([f798c13](https://github.com/pact-foundation/pact-js/commit/f798c13494b690d9f5348c61d143855e7117de33))
1631
+
1632
+
1633
+ ### Bug Fixes
1634
+
1635
+ * if query parameters are not supplied they will be null or undefined [#516](https://github.com/pact-foundation/pact-js/issues/516) ([17397be](https://github.com/pact-foundation/pact-js/commit/17397bea50f25d3ded1dc71739a935e39b1f9a52))
1636
+
1637
+ ## [10.0.0-beta.21](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.20...v10.0.0-beta.21) (2020-10-30)
1638
+
1639
+
1640
+ ### Bug Fixes
1641
+
1642
+ * improve the test error to include the original stack trace ([c14cb97](https://github.com/pact-foundation/pact-js/commit/c14cb97492ad38f16d442bef5a6411999149501d))
1643
+ * update to latest mock server crate, fixes [#520](https://github.com/pact-foundation/pact-js/issues/520) ([21774de](https://github.com/pact-foundation/pact-js/commit/21774de2cc83b62224cb5315e888fb9ccd09c20b))
1644
+
1645
+ ## [10.0.0-beta.20](https://github.com/pact-foundation/pact-js/compare/v9.13.0...v10.0.0-beta.20) (2020-10-29)
1646
+
1647
+
1648
+ ### Bug Fixes
1649
+
1650
+ * can not use matrix expressions in uses: with GH actions ([d6942a4](https://github.com/pact-foundation/pact-js/commit/d6942a412a64d1edd11d4f0f4ce2836e020da1e5))
1651
+ * support any values for provider state parameters ([df4df0b](https://github.com/pact-foundation/pact-js/commit/df4df0bcd944d18088c6f7241b925c66a83a2039))
1652
+ * update the MUSL docker container for use with GH actions ([5647032](https://github.com/pact-foundation/pact-js/commit/564703202e6bb22443eb7d6b90a533d1f7a54a6e))
1653
+
1654
+ ## [10.0.0-beta.19](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.18...v10.0.0-beta.19) (2020-10-19)
1655
+
1656
+ ## [10.0.0-beta.18](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.17...v10.0.0-beta.18) (2020-10-16)
1657
+
1658
+
1659
+ ### Features
1660
+
1661
+ * add support for array contains matcher ([57bcc79](https://github.com/pact-foundation/pact-js/commit/57bcc792037eb05d17a6e6268d14dcabe0262712))
1662
+
1663
+
1664
+ ### Bug Fixes
1665
+
1666
+ * typo in comment ([7491383](https://github.com/pact-foundation/pact-js/commit/7491383ded889a4b25f3480c2601f715b4f49c69))
1667
+ * update to latest matching lib ([23e1f39](https://github.com/pact-foundation/pact-js/commit/23e1f39bd690f2bbf80cf78cb2922939484c6838))
1668
+
1669
+ ## [10.0.0-beta.17](https://github.com/pact-foundation/pact-js/compare/v9.12.2...v10.0.0-beta.17) (2020-10-12)
1670
+
1671
+
1672
+ ### Features
1673
+
1674
+ * improve the error messages for a failed test ([f01b57e](https://github.com/pact-foundation/pact-js/commit/f01b57e9b0606735669bc684517ceaac19269be1))
1675
+
1676
+
1677
+ ### Bug Fixes
1678
+
1679
+ * allow the mock server port to be configured ([9c63d28](https://github.com/pact-foundation/pact-js/commit/9c63d28eb6d0c3d361b07b2053dcd3853649b160))
1680
+ * correct the imports [#514](https://github.com/pact-foundation/pact-js/issues/514) ([6764a84](https://github.com/pact-foundation/pact-js/commit/6764a84e5b3004cd7f0f814a9ef694e606481ebe))
1681
+
1682
+ ## [10.0.0-beta.16](https://github.com/pact-foundation/pact-js/compare/v9.12.1...v10.0.0-beta.16) (2020-09-28)
1683
+
1684
+
1685
+ ### Features
1686
+
1687
+ * add flag to enable handling CORS pre-flight requests ([0adb3fc](https://github.com/pact-foundation/pact-js/commit/0adb3fcab90bcf491f291c3874dd8bff93d3ac48))
1688
+
1689
+
1690
+ ### Bug Fixes
1691
+
1692
+ * correct Rust code after upgrade to upstream libs ([aa6d803](https://github.com/pact-foundation/pact-js/commit/aa6d803bb611f7d89692abf4e4409c14e43e7cc9))
1693
+ * need .mocharc.json after merge from master ([2525bf6](https://github.com/pact-foundation/pact-js/commit/2525bf6563e8cc93cd3522bcff8cdb9cb5931c4e))
1694
+ * package.json after merge from master ([aef422b](https://github.com/pact-foundation/pact-js/commit/aef422b70d850032575bac8efc442bc6eecb0205))
1695
+
1696
+ ## [10.0.0-beta.15](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.14...v10.0.0-beta.15) (2020-08-05)
1697
+
1698
+
1699
+ ### Bug Fixes
1700
+
1701
+ * correct matcher paths for text nodes in XML ([a217793](https://github.com/pact-foundation/pact-js/commit/a217793a5e538d9e9616ae1bab8cbd561fdd5377))
1702
+
1703
+ ## [10.0.0-beta.14](https://github.com/pact-foundation/pact-js/compare/v9.11.1...v10.0.0-beta.14) (2020-08-04)
1704
+
1705
+
1706
+ ### Bug Fixes
1707
+
1708
+ * lint ([ae8397a](https://github.com/pact-foundation/pact-js/commit/ae8397af7a30af95fdcade718a6bd5c458da9e25))
1709
+ * PactNative.init needs to be re-entrant ([16c22f6](https://github.com/pact-foundation/pact-js/commit/16c22f64e3b174b18f3a51cb1d157af66ea019ab))
1710
+
1711
+ ## [10.0.0-beta.13](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.12...v10.0.0-beta.13) (2020-06-27)
1712
+
1713
+
1714
+ ### Features
1715
+
1716
+ * add some tests around the conusmer DSL matchers ([e6a153f](https://github.com/pact-foundation/pact-js/commit/e6a153fd62d48644b97018d69e5f23d1710e510f))
1717
+ * handle XML matching with different types of child elements ([2143ca4](https://github.com/pact-foundation/pact-js/commit/2143ca4c968969e1c6218dd8e538097733ccfa56))
1718
+ * implemented consumer DSL URL matcher ([f27a444](https://github.com/pact-foundation/pact-js/commit/f27a44409aed3ece1adbab6af9e853b7684c101c))
1719
+
1720
+
1721
+ ### Bug Fixes
1722
+
1723
+ * after upgrading crates ([9a5a36d](https://github.com/pact-foundation/pact-js/commit/9a5a36db9d733bd13a1d68bb5b8d893720a915cb))
1724
+ * import for metadata was wrong ([ba2a975](https://github.com/pact-foundation/pact-js/commit/ba2a9755aee672cbed73b236c44f68aab14939f0))
1725
+ * lint ([78b4692](https://github.com/pact-foundation/pact-js/commit/78b46927bbeb96a4da6a924b7d8e86084ff6c355))
1726
+
1727
+ ## [10.0.0-beta.12](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.11...v10.0.0-beta.12) (2020-06-12)
1728
+
1729
+ ## [10.0.0-beta.11](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.10...v10.0.0-beta.11) (2020-06-12)
1730
+
1731
+ ## [10.0.0-beta.10](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.9...v10.0.0-beta.10) (2020-06-12)
1732
+
1733
+ ## [10.0.0-beta.9](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.8...v10.0.0-beta.9) (2020-06-11)
1734
+
1735
+ ## [10.0.0-beta.8](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.7...v10.0.0-beta.8) (2020-06-11)
1736
+
1737
+ ## [10.0.0-beta.7](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.6...v10.0.0-beta.7) (2020-06-11)
1738
+
1739
+ ## [10.0.0-beta.6](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.5...v10.0.0-beta.6) (2020-06-11)
1740
+
1741
+
1742
+ ### Features
1743
+
1744
+ * enable publishing of verification results ([fcbdb3e](https://github.com/pact-foundation/pact-js/commit/fcbdb3e9729365039c30267996a7364e23ccdef1))
1745
+ * release node 14 native binaries ([9ee832c](https://github.com/pact-foundation/pact-js/commit/9ee832c8dcfd896432ef34fb57595496bcac0077))
1746
+
1747
+ ## [10.0.0-beta.5](https://github.com/pact-foundation/pact-js/compare/v9.11.0...v10.0.0-beta.5) (2020-05-27)
1748
+
1749
+
1750
+ ### Features
1751
+
1752
+ * support MIME multipart form posts with binary files ([d72a210](https://github.com/pact-foundation/pact-js/commit/d72a2103b4fb0d348d2601e88d9a34befc4f31a7))
1753
+ * support regex matcher with a regexp object ([d92f6f5](https://github.com/pact-foundation/pact-js/commit/d92f6f5eee92667e5a3ce0ecdd44177d18a6b7ff))
1754
+ * support text nodes configured from XML builder ([a2a7f55](https://github.com/pact-foundation/pact-js/commit/a2a7f55eff4a187cbe30a3e56917745ebc40e33d))
1755
+ * support using matchers on XML text nodes ([b3b5e62](https://github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a))
1756
+
1757
+
1758
+ ### Bug Fixes
1759
+
1760
+ * correct the version of the pact_mock_server crate ([a17f2bb](https://github.com/pact-foundation/pact-js/commit/a17f2bb26d2964ac45b19704d91019ab2e7cdc4d))
1761
+ * date/time matchers were being skipped due to defect in upstream matching lib ([dcc3a7f](https://github.com/pact-foundation/pact-js/commit/dcc3a7fbf212cfce02c7d3dcf50bdb8f47baf45e))
1762
+ * travis matrix was doubled up ([fe08a70](https://github.com/pact-foundation/pact-js/commit/fe08a70769dbf7b3525b074f93731fb8d9ab3916))
1763
+ * travis was not running the E2E tests after merge from master ([73257dc](https://github.com/pact-foundation/pact-js/commit/73257dc3f43e229103aca119b3369d5d3ec228eb))
1764
+
1765
+ ## [10.0.0-beta.4](https://github.com/pact-foundation/pact-js/compare/v9.10.0...v10.0.0-beta.4) (2020-05-20)
1766
+
1767
+
1768
+ ### Features
1769
+
1770
+ * add support for binary payloads ([658ffa0](https://github.com/pact-foundation/pact-js/commit/658ffa0ee17adfe380b7cb1c68e10c48078c9cb6))
1771
+
1772
+
1773
+ ### Bug Fixes
1774
+
1775
+ * accidentially commited development paths in cargo manefest ([03cc16f](https://github.com/pact-foundation/pact-js/commit/03cc16f71d5f6a6cd646cdb6cf5421a134cb159e))
1776
+ * format the error messages in a better way ([0a15772](https://github.com/pact-foundation/pact-js/commit/0a15772a710d3d159648672470084a1c99b45cc8))
1777
+ * handle error when pact file cannot be written ([82832a8](https://github.com/pact-foundation/pact-js/commit/82832a81c115d06ef2d9c1fadd18c54f6f629e59))
1778
+ * throw an exception when a request is configured but no interaction defined ([b317da7](https://github.com/pact-foundation/pact-js/commit/b317da79f28dce45102a55bcdcbc415d3fbdb9ab))
1779
+ * throw an exception when a response is configured but no interaction defined ([6feacbe](https://github.com/pact-foundation/pact-js/commit/6feacbeef513420eddd9cbaed36abea80344de13))
1780
+
1781
+ ## [10.0.0-beta.3](https://github.com/pact-foundation/pact-js/compare/v9.9.2...v10.0.0-beta.3) (2020-04-08)
1782
+
1783
+
1784
+ ### Bug Fixes
1785
+
1786
+ * correct invalid logger import ([5d4ba5b](https://github.com/pact-foundation/pact-js/commit/5d4ba5be629693b6608ea5f671b116a2ec3dad14))
1787
+ * don't bundle the native lib in the NPM package ([24f43f3](https://github.com/pact-foundation/pact-js/commit/24f43f36f78269aef935381999dfe1e5802ea185))
1788
+ * guard against panics in background thread ([b35aecd](https://github.com/pact-foundation/pact-js/commit/b35aecd2e907f4cb80ac4ba8ec3d99c9801f8c15))
1789
+ * integer, decimal and number parameters are optional ([69f3983](https://github.com/pact-foundation/pact-js/commit/69f398333a10b649be4bf5a929234620d13d68d8))
1790
+ * throw a JS error if there are no pacts to verify ([3bfd9da](https://github.com/pact-foundation/pact-js/commit/3bfd9dac007320e3ff14e476851d2f0aabef7ca0))
1791
+ * try get the cause of any Rust panic ([f1f3d4a](https://github.com/pact-foundation/pact-js/commit/f1f3d4a4e287ec2c78a5b8f8eacfda459540dd5a))
1792
+ * typo ([5d8dd37](https://github.com/pact-foundation/pact-js/commit/5d8dd37cf338478cc2a16532b9f2664e301294bf))
1793
+ * update pact matching crate to 0.5.10 to fix invalid path matcher format ([ecce929](https://github.com/pact-foundation/pact-js/commit/ecce929af3d9aa51c3163d58e119924137a15195))
1794
+
1795
+ ## [10.0.0-beta.2](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.1...v10.0.0-beta.2) (2020-03-18)
1796
+
1797
+
1798
+ ### Bug Fixes
1799
+
1800
+ * correct the path to the native lib in the NPM package ([300d915](https://github.com/pact-foundation/pact-js/commit/300d91516afebeefe979039566b02162e09992c0))
1801
+
1802
+ ## [10.0.0-beta.1](https://github.com/pact-foundation/pact-js/compare/v9.8.1...v10.0.0-beta.1) (2020-03-17)
1803
+
1804
+
1805
+ ### Features
1806
+
1807
+ * got E2E consumer test passing ([904ed0b](https://github.com/pact-foundation/pact-js/commit/904ed0ba1115c81a07229e6a27c9e2d103c2dc36))
1808
+ * got request filters working. Yay! ([de16880](https://github.com/pact-foundation/pact-js/commit/de16880171ee76fdb134593a7fc78725c81158ec))
1809
+ * got the example V3 test working ([9ab43cc](https://github.com/pact-foundation/pact-js/commit/9ab43cc3541600653195c701b770dbdf1f44d5b0))
1810
+ * handle the parameters and results from provider state callbacks [#372](https://github.com/pact-foundation/pact-js/issues/372) ([d3f73e5](https://github.com/pact-foundation/pact-js/commit/d3f73e5845023aa5168647daf711829a2d90f9ce))
1811
+ * implement provider state parameters in consumer tests [#372](https://github.com/pact-foundation/pact-js/issues/372) ([af8bf32](https://github.com/pact-foundation/pact-js/commit/af8bf32f15551a7b86dc73682272074347143ffc))
1812
+ * implemented provider state callbacks with parameters [#372](https://github.com/pact-foundation/pact-js/issues/372) ([50e4e61](https://github.com/pact-foundation/pact-js/commit/50e4e6199b6d9ce37cca8f10bdcd0d403cc1ad5d))
1813
+ * Introduce an authenticated state [#372](https://github.com/pact-foundation/pact-js/issues/372) ([debebd7](https://github.com/pact-foundation/pact-js/commit/debebd73cce92a3988f99afbccc4d0091af4a3c9))
1814
+
1815
+
1816
+ ### Bug Fixes
1817
+
1818
+ * changes needed for the E2E consumer test ([6022f8b](https://github.com/pact-foundation/pact-js/commit/6022f8b33fce1cea1f60ba1cf62625f557a00572))
1819
+ * correct the paths for the attribute matchers ([7629c92](https://github.com/pact-foundation/pact-js/commit/7629c9232308e1e51730f1567a2e6010ce852aac))
1820
+ * correct the v3-todo example tests ([de205c7](https://github.com/pact-foundation/pact-js/commit/de205c7e5ca7c1922b187e29a6d44f0010afb27b))
1821
+ * datetime matchers now generate a value if one is not given ([a910840](https://github.com/pact-foundation/pact-js/commit/a910840001f0e86201e82b2ca5759841392c9cca))
1822
+ * fucking lint ([cdb72db](https://github.com/pact-foundation/pact-js/commit/cdb72db91eb1283423d21e3841ed3329a128a0af))
1823
+ * Gah! Lint Nazis ([79082fd](https://github.com/pact-foundation/pact-js/commit/79082fddafbb7e76293103a3457292b02b8dfc95))
1824
+ * got eachlike with number of examples working ([88c9a72](https://github.com/pact-foundation/pact-js/commit/88c9a72a8e11456d0afe94bbfc6ce212bd22153e))
1825
+ * lint ([772224d](https://github.com/pact-foundation/pact-js/commit/772224d4d7eeaa7beafe27b55816e441a5d1ddb4))
1826
+ * lint ([9717b47](https://github.com/pact-foundation/pact-js/commit/9717b47e2bc06087f0d8eafdeb86f73bdca46683))
1827
+ * neon build should point to native directory ([fdea3eb](https://github.com/pact-foundation/pact-js/commit/fdea3eb6619f9281a377300b39d281b342ab588d))
1828
+ * neon build should point to native directory ([16957a2](https://github.com/pact-foundation/pact-js/commit/16957a2dff8a7669ad848437591a02f306038dca))
1829
+ * neon requires a C++ compiler ([bb8731f](https://github.com/pact-foundation/pact-js/commit/bb8731fae1dcf8797bbfa1ecfd0ad3a95a7ef3d5))
1830
+ * removed node 6 and 7 because ancient ([2b45cfc](https://github.com/pact-foundation/pact-js/commit/2b45cfcca9adc92834cdfe74bf1dda5550f4d0ec))
1831
+ * rustup: Unable to run interactively. Run with -y to accept defaults ([abfa9c9](https://github.com/pact-foundation/pact-js/commit/abfa9c9151eb27c3b5c503131bda4907a809c677))
1832
+ * travis build needs the Rust source in dist ([e64402e](https://github.com/pact-foundation/pact-js/commit/e64402eae49ed2d5e290686860b357f1b4748812))
1833
+ * travis build needs the Rust source in dist ([519fee5](https://github.com/pact-foundation/pact-js/commit/519fee59d6798771e6fc7aaf6fcde8babd340356))
1834
+ * use 0.5.6 of matching lib to avoid dup rules ([d30d7b9](https://github.com/pact-foundation/pact-js/commit/d30d7b974bcdcf25cfd73fd93ade68fbcd73ecdb))
1835
+
1836
+ ## [10.0.0-beta.22](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.21...v10.0.0-beta.22) (2020-11-17)
1837
+
1838
+
1839
+ ### Features
1840
+
1841
+ * add example consumer test with provider state injected values [#516](https://github.com/pact-foundation/pact-js/issues/516) ([190f332](https://github.com/pact-foundation/pact-js/commit/190f332559fe0b1717054796614aa2624e81818c))
1842
+ * added consumer for provider state injected example ([bdc333c](https://github.com/pact-foundation/pact-js/commit/bdc333c57107ac62f44abfac83ec62645470cc71))
1843
+ * got provider state injected values working with provider test [#516](https://github.com/pact-foundation/pact-js/issues/516) ([5fdf7eb](https://github.com/pact-foundation/pact-js/commit/5fdf7eb8284d73030049e1abf19c34445981510b))
1844
+ * implemented matching query parameters and provider state injected values (in consumer DSL) [#516](https://github.com/pact-foundation/pact-js/issues/516) ([f798c13](https://github.com/pact-foundation/pact-js/commit/f798c13494b690d9f5348c61d143855e7117de33))
1845
+
1846
+
1847
+ ### Bug Fixes
1848
+
1849
+ * if query parameters are not supplied they will be null or undefined [#516](https://github.com/pact-foundation/pact-js/issues/516) ([17397be](https://github.com/pact-foundation/pact-js/commit/17397bea50f25d3ded1dc71739a935e39b1f9a52))
1850
+
1851
+ ## [10.0.0-beta.21](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.20...v10.0.0-beta.21) (2020-10-30)
1852
+
1853
+
1854
+ ### Bug Fixes
1855
+
1856
+ * improve the test error to include the original stack trace ([c14cb97](https://github.com/pact-foundation/pact-js/commit/c14cb97492ad38f16d442bef5a6411999149501d))
1857
+ * update to latest mock server crate, fixes [#520](https://github.com/pact-foundation/pact-js/issues/520) ([21774de](https://github.com/pact-foundation/pact-js/commit/21774de2cc83b62224cb5315e888fb9ccd09c20b))
1858
+
1859
+ ## [10.0.0-beta.20](https://github.com/pact-foundation/pact-js/compare/v9.13.0...v10.0.0-beta.20) (2020-10-28)
1860
+
1861
+
1862
+ ### Bug Fixes
1863
+
1864
+ * support any values for provider state parameters ([df4df0b](https://github.com/pact-foundation/pact-js/commit/df4df0bcd944d18088c6f7241b925c66a83a2039))
1865
+
1866
+ ## [10.0.0-beta.19](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.18...v10.0.0-beta.19) (2020-10-19)
1867
+
1868
+ ## [10.0.0-beta.18](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.17...v10.0.0-beta.18) (2020-10-16)
1869
+
1870
+
1871
+ ### Features
1872
+
1873
+ * add support for array contains matcher ([57bcc79](https://github.com/pact-foundation/pact-js/commit/57bcc792037eb05d17a6e6268d14dcabe0262712))
1874
+
1875
+
1876
+ ### Bug Fixes
1877
+
1878
+ * typo in comment ([7491383](https://github.com/pact-foundation/pact-js/commit/7491383ded889a4b25f3480c2601f715b4f49c69))
1879
+ * update to latest matching lib ([23e1f39](https://github.com/pact-foundation/pact-js/commit/23e1f39bd690f2bbf80cf78cb2922939484c6838))
1880
+
1881
+ ## [10.0.0-beta.17](https://github.com/pact-foundation/pact-js/compare/v9.12.2...v10.0.0-beta.17) (2020-10-12)
1882
+
1883
+
1884
+ ### Features
1885
+
1886
+ * improve the error messages for a failed test ([f01b57e](https://github.com/pact-foundation/pact-js/commit/f01b57e9b0606735669bc684517ceaac19269be1))
1887
+
1888
+
1889
+ ### Bug Fixes
1890
+
1891
+ * allow the mock server port to be configured ([9c63d28](https://github.com/pact-foundation/pact-js/commit/9c63d28eb6d0c3d361b07b2053dcd3853649b160))
1892
+ * correct the imports [#514](https://github.com/pact-foundation/pact-js/issues/514) ([6764a84](https://github.com/pact-foundation/pact-js/commit/6764a84e5b3004cd7f0f814a9ef694e606481ebe))
1893
+
1894
+ ## [10.0.0-beta.16](https://github.com/pact-foundation/pact-js/compare/v9.12.1...v10.0.0-beta.16) (2020-09-28)
1895
+
1896
+
1897
+ ### Features
1898
+
1899
+ * add flag to enable handling CORS pre-flight requests ([0adb3fc](https://github.com/pact-foundation/pact-js/commit/0adb3fcab90bcf491f291c3874dd8bff93d3ac48))
1900
+
1901
+
1902
+ ### Bug Fixes
1903
+
1904
+ * correct Rust code after upgrade to upstream libs ([aa6d803](https://github.com/pact-foundation/pact-js/commit/aa6d803bb611f7d89692abf4e4409c14e43e7cc9))
1905
+ * need .mocharc.json after merge from master ([2525bf6](https://github.com/pact-foundation/pact-js/commit/2525bf6563e8cc93cd3522bcff8cdb9cb5931c4e))
1906
+ * package.json after merge from master ([aef422b](https://github.com/pact-foundation/pact-js/commit/aef422b70d850032575bac8efc442bc6eecb0205))
1907
+
1908
+ ## [10.0.0-beta.15](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.14...v10.0.0-beta.15) (2020-08-05)
1909
+
1910
+
1911
+ ### Bug Fixes
1912
+
1913
+ * correct matcher paths for text nodes in XML ([a217793](https://github.com/pact-foundation/pact-js/commit/a217793a5e538d9e9616ae1bab8cbd561fdd5377))
1914
+
1915
+ ## [10.0.0-beta.14](https://github.com/pact-foundation/pact-js/compare/v9.11.1...v10.0.0-beta.14) (2020-08-04)
1916
+
1917
+
1918
+ ### Bug Fixes
1919
+
1920
+ * lint ([ae8397a](https://github.com/pact-foundation/pact-js/commit/ae8397af7a30af95fdcade718a6bd5c458da9e25))
1921
+ * PactNative.init needs to be re-entrant ([16c22f6](https://github.com/pact-foundation/pact-js/commit/16c22f64e3b174b18f3a51cb1d157af66ea019ab))
1922
+
1923
+ ## [10.0.0-beta.13](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.12...v10.0.0-beta.13) (2020-06-27)
1924
+
1925
+
1926
+ ### Features
1927
+
1928
+ * add some tests around the conusmer DSL matchers ([e6a153f](https://github.com/pact-foundation/pact-js/commit/e6a153fd62d48644b97018d69e5f23d1710e510f))
1929
+ * handle XML matching with different types of child elements ([2143ca4](https://github.com/pact-foundation/pact-js/commit/2143ca4c968969e1c6218dd8e538097733ccfa56))
1930
+ * implemented consumer DSL URL matcher ([f27a444](https://github.com/pact-foundation/pact-js/commit/f27a44409aed3ece1adbab6af9e853b7684c101c))
1931
+
1932
+
1933
+ ### Bug Fixes
1934
+
1935
+ * after upgrading crates ([9a5a36d](https://github.com/pact-foundation/pact-js/commit/9a5a36db9d733bd13a1d68bb5b8d893720a915cb))
1936
+ * import for metadata was wrong ([ba2a975](https://github.com/pact-foundation/pact-js/commit/ba2a9755aee672cbed73b236c44f68aab14939f0))
1937
+ * lint ([78b4692](https://github.com/pact-foundation/pact-js/commit/78b46927bbeb96a4da6a924b7d8e86084ff6c355))
1938
+
1939
+ ## [10.0.0-beta.12](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.11...v10.0.0-beta.12) (2020-06-12)
1940
+
1941
+ ## [10.0.0-beta.11](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.10...v10.0.0-beta.11) (2020-06-12)
1942
+
1943
+ ## [10.0.0-beta.10](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.9...v10.0.0-beta.10) (2020-06-12)
1944
+
1945
+ ## [10.0.0-beta.9](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.8...v10.0.0-beta.9) (2020-06-11)
1946
+
1947
+ ## [10.0.0-beta.8](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.7...v10.0.0-beta.8) (2020-06-11)
1948
+
1949
+ ## [10.0.0-beta.7](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.6...v10.0.0-beta.7) (2020-06-11)
1950
+
1951
+ ## [10.0.0-beta.6](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.5...v10.0.0-beta.6) (2020-06-11)
1952
+
1953
+
1954
+ ### Features
1955
+
1956
+ * enable publishing of verification results ([fcbdb3e](https://github.com/pact-foundation/pact-js/commit/fcbdb3e9729365039c30267996a7364e23ccdef1))
1957
+ * release node 14 native binaries ([9ee832c](https://github.com/pact-foundation/pact-js/commit/9ee832c8dcfd896432ef34fb57595496bcac0077))
1958
+
1959
+ ## [10.0.0-beta.5](https://github.com/pact-foundation/pact-js/compare/v9.11.0...v10.0.0-beta.5) (2020-05-27)
1960
+
1961
+
1962
+ ### Features
1963
+
1964
+ * support MIME multipart form posts with binary files ([d72a210](https://github.com/pact-foundation/pact-js/commit/d72a2103b4fb0d348d2601e88d9a34befc4f31a7))
1965
+ * support regex matcher with a regexp object ([d92f6f5](https://github.com/pact-foundation/pact-js/commit/d92f6f5eee92667e5a3ce0ecdd44177d18a6b7ff))
1966
+ * support text nodes configured from XML builder ([a2a7f55](https://github.com/pact-foundation/pact-js/commit/a2a7f55eff4a187cbe30a3e56917745ebc40e33d))
1967
+ * support using matchers on XML text nodes ([b3b5e62](https://github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a))
1968
+
1969
+
1970
+ ### Bug Fixes
1971
+
1972
+ * correct the version of the pact_mock_server crate ([a17f2bb](https://github.com/pact-foundation/pact-js/commit/a17f2bb26d2964ac45b19704d91019ab2e7cdc4d))
1973
+ * date/time matchers were being skipped due to defect in upstream matching lib ([dcc3a7f](https://github.com/pact-foundation/pact-js/commit/dcc3a7fbf212cfce02c7d3dcf50bdb8f47baf45e))
1974
+ * travis matrix was doubled up ([fe08a70](https://github.com/pact-foundation/pact-js/commit/fe08a70769dbf7b3525b074f93731fb8d9ab3916))
1975
+ * travis was not running the E2E tests after merge from master ([73257dc](https://github.com/pact-foundation/pact-js/commit/73257dc3f43e229103aca119b3369d5d3ec228eb))
1976
+
1977
+ ## [10.0.0-beta.4](https://github.com/pact-foundation/pact-js/compare/v9.10.0...v10.0.0-beta.4) (2020-05-20)
1978
+
1979
+
1980
+ ### Features
1981
+
1982
+ * add support for binary payloads ([658ffa0](https://github.com/pact-foundation/pact-js/commit/658ffa0ee17adfe380b7cb1c68e10c48078c9cb6))
1983
+
1984
+
1985
+ ### Bug Fixes
1986
+
1987
+ * accidentially commited development paths in cargo manefest ([03cc16f](https://github.com/pact-foundation/pact-js/commit/03cc16f71d5f6a6cd646cdb6cf5421a134cb159e))
1988
+ * format the error messages in a better way ([0a15772](https://github.com/pact-foundation/pact-js/commit/0a15772a710d3d159648672470084a1c99b45cc8))
1989
+ * handle error when pact file cannot be written ([82832a8](https://github.com/pact-foundation/pact-js/commit/82832a81c115d06ef2d9c1fadd18c54f6f629e59))
1990
+ * throw an exception when a request is configured but no interaction defined ([b317da7](https://github.com/pact-foundation/pact-js/commit/b317da79f28dce45102a55bcdcbc415d3fbdb9ab))
1991
+ * throw an exception when a response is configured but no interaction defined ([6feacbe](https://github.com/pact-foundation/pact-js/commit/6feacbeef513420eddd9cbaed36abea80344de13))
1992
+
1993
+ ## [10.0.0-beta.3](https://github.com/pact-foundation/pact-js/compare/v9.9.2...v10.0.0-beta.3) (2020-04-08)
1994
+
1995
+
1996
+ ### Bug Fixes
1997
+
1998
+ * correct invalid logger import ([5d4ba5b](https://github.com/pact-foundation/pact-js/commit/5d4ba5be629693b6608ea5f671b116a2ec3dad14))
1999
+ * don't bundle the native lib in the NPM package ([24f43f3](https://github.com/pact-foundation/pact-js/commit/24f43f36f78269aef935381999dfe1e5802ea185))
2000
+ * guard against panics in background thread ([b35aecd](https://github.com/pact-foundation/pact-js/commit/b35aecd2e907f4cb80ac4ba8ec3d99c9801f8c15))
2001
+ * integer, decimal and number parameters are optional ([69f3983](https://github.com/pact-foundation/pact-js/commit/69f398333a10b649be4bf5a929234620d13d68d8))
2002
+ * throw a JS error if there are no pacts to verify ([3bfd9da](https://github.com/pact-foundation/pact-js/commit/3bfd9dac007320e3ff14e476851d2f0aabef7ca0))
2003
+ * try get the cause of any Rust panic ([f1f3d4a](https://github.com/pact-foundation/pact-js/commit/f1f3d4a4e287ec2c78a5b8f8eacfda459540dd5a))
2004
+ * typo ([5d8dd37](https://github.com/pact-foundation/pact-js/commit/5d8dd37cf338478cc2a16532b9f2664e301294bf))
2005
+ * update pact matching crate to 0.5.10 to fix invalid path matcher format ([ecce929](https://github.com/pact-foundation/pact-js/commit/ecce929af3d9aa51c3163d58e119924137a15195))
2006
+
2007
+ ## [10.0.0-beta.2](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.1...v10.0.0-beta.2) (2020-03-18)
2008
+
2009
+
2010
+ ### Bug Fixes
2011
+
2012
+ * correct the path to the native lib in the NPM package ([300d915](https://github.com/pact-foundation/pact-js/commit/300d91516afebeefe979039566b02162e09992c0))
2013
+
2014
+ ## [10.0.0-beta.1](https://github.com/pact-foundation/pact-js/compare/v9.8.1...v10.0.0-beta.1) (2020-03-17)
2015
+
2016
+
2017
+ ### Features
2018
+
2019
+ * got E2E consumer test passing ([904ed0b](https://github.com/pact-foundation/pact-js/commit/904ed0ba1115c81a07229e6a27c9e2d103c2dc36))
2020
+ * got request filters working. Yay! ([de16880](https://github.com/pact-foundation/pact-js/commit/de16880171ee76fdb134593a7fc78725c81158ec))
2021
+ * got the example V3 test working ([9ab43cc](https://github.com/pact-foundation/pact-js/commit/9ab43cc3541600653195c701b770dbdf1f44d5b0))
2022
+ * handle the parameters and results from provider state callbacks [#372](https://github.com/pact-foundation/pact-js/issues/372) ([d3f73e5](https://github.com/pact-foundation/pact-js/commit/d3f73e5845023aa5168647daf711829a2d90f9ce))
2023
+ * implement provider state parameters in consumer tests [#372](https://github.com/pact-foundation/pact-js/issues/372) ([af8bf32](https://github.com/pact-foundation/pact-js/commit/af8bf32f15551a7b86dc73682272074347143ffc))
2024
+ * implemented provider state callbacks with parameters [#372](https://github.com/pact-foundation/pact-js/issues/372) ([50e4e61](https://github.com/pact-foundation/pact-js/commit/50e4e6199b6d9ce37cca8f10bdcd0d403cc1ad5d))
2025
+ * Introduce an authenticated state [#372](https://github.com/pact-foundation/pact-js/issues/372) ([debebd7](https://github.com/pact-foundation/pact-js/commit/debebd73cce92a3988f99afbccc4d0091af4a3c9))
2026
+
2027
+
2028
+ ### Bug Fixes
2029
+
2030
+ * changes needed for the E2E consumer test ([6022f8b](https://github.com/pact-foundation/pact-js/commit/6022f8b33fce1cea1f60ba1cf62625f557a00572))
2031
+ * correct the paths for the attribute matchers ([7629c92](https://github.com/pact-foundation/pact-js/commit/7629c9232308e1e51730f1567a2e6010ce852aac))
2032
+ * correct the v3-todo example tests ([de205c7](https://github.com/pact-foundation/pact-js/commit/de205c7e5ca7c1922b187e29a6d44f0010afb27b))
2033
+ * datetime matchers now generate a value if one is not given ([a910840](https://github.com/pact-foundation/pact-js/commit/a910840001f0e86201e82b2ca5759841392c9cca))
2034
+ * fucking lint ([cdb72db](https://github.com/pact-foundation/pact-js/commit/cdb72db91eb1283423d21e3841ed3329a128a0af))
2035
+ * Gah! Lint Nazis ([79082fd](https://github.com/pact-foundation/pact-js/commit/79082fddafbb7e76293103a3457292b02b8dfc95))
2036
+ * got eachlike with number of examples working ([88c9a72](https://github.com/pact-foundation/pact-js/commit/88c9a72a8e11456d0afe94bbfc6ce212bd22153e))
2037
+ * lint ([772224d](https://github.com/pact-foundation/pact-js/commit/772224d4d7eeaa7beafe27b55816e441a5d1ddb4))
2038
+ * lint ([9717b47](https://github.com/pact-foundation/pact-js/commit/9717b47e2bc06087f0d8eafdeb86f73bdca46683))
2039
+ * neon build should point to native directory ([fdea3eb](https://github.com/pact-foundation/pact-js/commit/fdea3eb6619f9281a377300b39d281b342ab588d))
2040
+ * neon build should point to native directory ([16957a2](https://github.com/pact-foundation/pact-js/commit/16957a2dff8a7669ad848437591a02f306038dca))
2041
+ * neon requires a C++ compiler ([bb8731f](https://github.com/pact-foundation/pact-js/commit/bb8731fae1dcf8797bbfa1ecfd0ad3a95a7ef3d5))
2042
+ * removed node 6 and 7 because ancient ([2b45cfc](https://github.com/pact-foundation/pact-js/commit/2b45cfcca9adc92834cdfe74bf1dda5550f4d0ec))
2043
+ * rustup: Unable to run interactively. Run with -y to accept defaults ([abfa9c9](https://github.com/pact-foundation/pact-js/commit/abfa9c9151eb27c3b5c503131bda4907a809c677))
2044
+ * travis build needs the Rust source in dist ([e64402e](https://github.com/pact-foundation/pact-js/commit/e64402eae49ed2d5e290686860b357f1b4748812))
2045
+ * travis build needs the Rust source in dist ([519fee5](https://github.com/pact-foundation/pact-js/commit/519fee59d6798771e6fc7aaf6fcde8babd340356))
2046
+ * use 0.5.6 of matching lib to avoid dup rules ([d30d7b9](https://github.com/pact-foundation/pact-js/commit/d30d7b974bcdcf25cfd73fd93ade68fbcd73ecdb))
2047
+
2048
+ ## [10.0.0-beta.19](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.18...v10.0.0-beta.19) (2020-10-19)
2049
+
2050
+ ## [10.0.0-beta.18](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.17...v10.0.0-beta.18) (2020-10-16)
2051
+
2052
+
2053
+ ### Features
2054
+
2055
+ * add support for array contains matcher ([57bcc79](https://github.com/pact-foundation/pact-js/commit/57bcc792037eb05d17a6e6268d14dcabe0262712))
2056
+
2057
+
2058
+ ### Bug Fixes
2059
+
2060
+ * typo in comment ([7491383](https://github.com/pact-foundation/pact-js/commit/7491383ded889a4b25f3480c2601f715b4f49c69))
2061
+ * update to latest matching lib ([23e1f39](https://github.com/pact-foundation/pact-js/commit/23e1f39bd690f2bbf80cf78cb2922939484c6838))
2062
+
2063
+ ## [10.0.0-beta.17](https://github.com/pact-foundation/pact-js/compare/v9.12.2...v10.0.0-beta.17) (2020-10-12)
2064
+
2065
+
2066
+ ### Features
2067
+
2068
+ * improve the error messages for a failed test ([f01b57e](https://github.com/pact-foundation/pact-js/commit/f01b57e9b0606735669bc684517ceaac19269be1))
2069
+ * **web:** Use latest can-i-use database when producing distribution ([cae3ea2](https://github.com/pact-foundation/pact-js/commit/cae3ea28199e55397b74c56d5e99e2f0430a6c5d))
2070
+ * small errors ([076549e](https://github.com/pact-foundation/pact-js/commit/076549e9cf5c9cb5798104bcda7d1cb97c1daf83))
2071
+
2072
+ ### [9.13.1](https://github.com/pact-foundation/pact-js/compare/v9.13.0...v9.13.1) (2020-12-11)
2073
+
2074
+
2075
+ ### Bug Fixes
2076
+
2077
+ * allow the mock server port to be configured ([9c63d28](https://github.com/pact-foundation/pact-js/commit/9c63d28eb6d0c3d361b07b2053dcd3853649b160))
2078
+ * correct the imports [#514](https://github.com/pact-foundation/pact-js/issues/514) ([6764a84](https://github.com/pact-foundation/pact-js/commit/6764a84e5b3004cd7f0f814a9ef694e606481ebe))
2079
+
2080
+ ## [10.0.0-beta.16](https://github.com/pact-foundation/pact-js/compare/v9.12.1...v10.0.0-beta.16) (2020-09-28)
2081
+ * Expect at least one millisecond digit in iso8601DateTimeWithMillis ([4f48823](https://github.com/pact-foundation/pact-js/commit/4f48823586467fcdf3932b391cb961cfccb8d4eb))
2082
+
2083
+ ## [9.13.0](https://github.com/pact-foundation/pact-js/compare/v9.12.2...v9.13.0) (2020-10-23)
2084
+
2085
+
2086
+ ### Features
2087
+
2088
+ * add flag to enable handling CORS pre-flight requests ([0adb3fc](https://github.com/pact-foundation/pact-js/commit/0adb3fcab90bcf491f291c3874dd8bff93d3ac48))
2089
+
2090
+
2091
+ ### Bug Fixes
2092
+
2093
+ * correct Rust code after upgrade to upstream libs ([aa6d803](https://github.com/pact-foundation/pact-js/commit/aa6d803bb611f7d89692abf4e4409c14e43e7cc9))
2094
+ * need .mocharc.json after merge from master ([2525bf6](https://github.com/pact-foundation/pact-js/commit/2525bf6563e8cc93cd3522bcff8cdb9cb5931c4e))
2095
+ * package.json after merge from master ([aef422b](https://github.com/pact-foundation/pact-js/commit/aef422b70d850032575bac8efc442bc6eecb0205))
2096
+
2097
+ ## [10.0.0-beta.15](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.14...v10.0.0-beta.15) (2020-08-05)
2098
+
2099
+
2100
+ ### Bug Fixes
2101
+
2102
+ * correct matcher paths for text nodes in XML ([a217793](https://github.com/pact-foundation/pact-js/commit/a217793a5e538d9e9616ae1bab8cbd561fdd5377))
2103
+
2104
+ ## [10.0.0-beta.14](https://github.com/pact-foundation/pact-js/compare/v9.11.1...v10.0.0-beta.14) (2020-08-04)
2105
+
2106
+
2107
+ ### Bug Fixes
2108
+
2109
+ * lint ([ae8397a](https://github.com/pact-foundation/pact-js/commit/ae8397af7a30af95fdcade718a6bd5c458da9e25))
2110
+ * PactNative.init needs to be re-entrant ([16c22f6](https://github.com/pact-foundation/pact-js/commit/16c22f64e3b174b18f3a51cb1d157af66ea019ab))
2111
+
2112
+ ## [10.0.0-beta.13](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.12...v10.0.0-beta.13) (2020-06-27)
2113
+
2114
+
2115
+ ### Features
2116
+
2117
+ * add some tests around the conusmer DSL matchers ([e6a153f](https://github.com/pact-foundation/pact-js/commit/e6a153fd62d48644b97018d69e5f23d1710e510f))
2118
+ * handle XML matching with different types of child elements ([2143ca4](https://github.com/pact-foundation/pact-js/commit/2143ca4c968969e1c6218dd8e538097733ccfa56))
2119
+ * implemented consumer DSL URL matcher ([f27a444](https://github.com/pact-foundation/pact-js/commit/f27a44409aed3ece1adbab6af9e853b7684c101c))
2120
+
2121
+
2122
+ ### Bug Fixes
2123
+
2124
+ * after upgrading crates ([9a5a36d](https://github.com/pact-foundation/pact-js/commit/9a5a36db9d733bd13a1d68bb5b8d893720a915cb))
2125
+ * import for metadata was wrong ([ba2a975](https://github.com/pact-foundation/pact-js/commit/ba2a9755aee672cbed73b236c44f68aab14939f0))
2126
+ * lint ([78b4692](https://github.com/pact-foundation/pact-js/commit/78b46927bbeb96a4da6a924b7d8e86084ff6c355))
2127
+
2128
+ ## [10.0.0-beta.12](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.11...v10.0.0-beta.12) (2020-06-12)
2129
+
2130
+ ## [10.0.0-beta.11](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.10...v10.0.0-beta.11) (2020-06-12)
2131
+
2132
+ ## [10.0.0-beta.10](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.9...v10.0.0-beta.10) (2020-06-12)
2133
+
2134
+ ## [10.0.0-beta.9](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.8...v10.0.0-beta.9) (2020-06-11)
2135
+
2136
+ ## [10.0.0-beta.8](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.7...v10.0.0-beta.8) (2020-06-11)
2137
+
2138
+ ## [10.0.0-beta.7](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.6...v10.0.0-beta.7) (2020-06-11)
2139
+
2140
+ ## [10.0.0-beta.6](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.5...v10.0.0-beta.6) (2020-06-11)
2141
+
2142
+
2143
+ ### Features
2144
+
2145
+ * enable publishing of verification results ([fcbdb3e](https://github.com/pact-foundation/pact-js/commit/fcbdb3e9729365039c30267996a7364e23ccdef1))
2146
+ * release node 14 native binaries ([9ee832c](https://github.com/pact-foundation/pact-js/commit/9ee832c8dcfd896432ef34fb57595496bcac0077))
2147
+
2148
+ ## [10.0.0-beta.5](https://github.com/pact-foundation/pact-js/compare/v9.11.0...v10.0.0-beta.5) (2020-05-27)
2149
+
2150
+
2151
+ ### Features
2152
+
2153
+ * support MIME multipart form posts with binary files ([d72a210](https://github.com/pact-foundation/pact-js/commit/d72a2103b4fb0d348d2601e88d9a34befc4f31a7))
2154
+ * support regex matcher with a regexp object ([d92f6f5](https://github.com/pact-foundation/pact-js/commit/d92f6f5eee92667e5a3ce0ecdd44177d18a6b7ff))
2155
+ * support text nodes configured from XML builder ([a2a7f55](https://github.com/pact-foundation/pact-js/commit/a2a7f55eff4a187cbe30a3e56917745ebc40e33d))
2156
+ * support using matchers on XML text nodes ([b3b5e62](https://github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a))
2157
+
2158
+
2159
+ ### Bug Fixes
2160
+
2161
+ * correct the version of the pact_mock_server crate ([a17f2bb](https://github.com/pact-foundation/pact-js/commit/a17f2bb26d2964ac45b19704d91019ab2e7cdc4d))
2162
+ * date/time matchers were being skipped due to defect in upstream matching lib ([dcc3a7f](https://github.com/pact-foundation/pact-js/commit/dcc3a7fbf212cfce02c7d3dcf50bdb8f47baf45e))
2163
+ * travis matrix was doubled up ([fe08a70](https://github.com/pact-foundation/pact-js/commit/fe08a70769dbf7b3525b074f93731fb8d9ab3916))
2164
+ * travis was not running the E2E tests after merge from master ([73257dc](https://github.com/pact-foundation/pact-js/commit/73257dc3f43e229103aca119b3369d5d3ec228eb))
2165
+
2166
+ ## [10.0.0-beta.4](https://github.com/pact-foundation/pact-js/compare/v9.10.0...v10.0.0-beta.4) (2020-05-20)
2167
+
2168
+
2169
+ ### Features
2170
+
2171
+ * add support for binary payloads ([658ffa0](https://github.com/pact-foundation/pact-js/commit/658ffa0ee17adfe380b7cb1c68e10c48078c9cb6))
2172
+
2173
+
2174
+ ### Bug Fixes
2175
+
2176
+ * accidentially commited development paths in cargo manefest ([03cc16f](https://github.com/pact-foundation/pact-js/commit/03cc16f71d5f6a6cd646cdb6cf5421a134cb159e))
2177
+ * format the error messages in a better way ([0a15772](https://github.com/pact-foundation/pact-js/commit/0a15772a710d3d159648672470084a1c99b45cc8))
2178
+ * handle error when pact file cannot be written ([82832a8](https://github.com/pact-foundation/pact-js/commit/82832a81c115d06ef2d9c1fadd18c54f6f629e59))
2179
+ * throw an exception when a request is configured but no interaction defined ([b317da7](https://github.com/pact-foundation/pact-js/commit/b317da79f28dce45102a55bcdcbc415d3fbdb9ab))
2180
+ * throw an exception when a response is configured but no interaction defined ([6feacbe](https://github.com/pact-foundation/pact-js/commit/6feacbeef513420eddd9cbaed36abea80344de13))
2181
+
2182
+ ## [10.0.0-beta.3](https://github.com/pact-foundation/pact-js/compare/v9.9.2...v10.0.0-beta.3) (2020-04-08)
2183
+
2184
+
2185
+ ### Bug Fixes
2186
+
2187
+ * correct invalid logger import ([5d4ba5b](https://github.com/pact-foundation/pact-js/commit/5d4ba5be629693b6608ea5f671b116a2ec3dad14))
2188
+ * don't bundle the native lib in the NPM package ([24f43f3](https://github.com/pact-foundation/pact-js/commit/24f43f36f78269aef935381999dfe1e5802ea185))
2189
+ * guard against panics in background thread ([b35aecd](https://github.com/pact-foundation/pact-js/commit/b35aecd2e907f4cb80ac4ba8ec3d99c9801f8c15))
2190
+ * integer, decimal and number parameters are optional ([69f3983](https://github.com/pact-foundation/pact-js/commit/69f398333a10b649be4bf5a929234620d13d68d8))
2191
+ * throw a JS error if there are no pacts to verify ([3bfd9da](https://github.com/pact-foundation/pact-js/commit/3bfd9dac007320e3ff14e476851d2f0aabef7ca0))
2192
+ * try get the cause of any Rust panic ([f1f3d4a](https://github.com/pact-foundation/pact-js/commit/f1f3d4a4e287ec2c78a5b8f8eacfda459540dd5a))
2193
+ * typo ([5d8dd37](https://github.com/pact-foundation/pact-js/commit/5d8dd37cf338478cc2a16532b9f2664e301294bf))
2194
+ * update pact matching crate to 0.5.10 to fix invalid path matcher format ([ecce929](https://github.com/pact-foundation/pact-js/commit/ecce929af3d9aa51c3163d58e119924137a15195))
2195
+
2196
+ ## [10.0.0-beta.2](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.1...v10.0.0-beta.2) (2020-03-18)
2197
+
2198
+
2199
+ ### Bug Fixes
2200
+
2201
+ * correct the path to the native lib in the NPM package ([300d915](https://github.com/pact-foundation/pact-js/commit/300d91516afebeefe979039566b02162e09992c0))
2202
+
2203
+ ## [10.0.0-beta.1](https://github.com/pact-foundation/pact-js/compare/v9.8.1...v10.0.0-beta.1) (2020-03-17)
2204
+
2205
+
2206
+ ### Features
2207
+
2208
+ * got E2E consumer test passing ([904ed0b](https://github.com/pact-foundation/pact-js/commit/904ed0ba1115c81a07229e6a27c9e2d103c2dc36))
2209
+ * got request filters working. Yay! ([de16880](https://github.com/pact-foundation/pact-js/commit/de16880171ee76fdb134593a7fc78725c81158ec))
2210
+ * got the example V3 test working ([9ab43cc](https://github.com/pact-foundation/pact-js/commit/9ab43cc3541600653195c701b770dbdf1f44d5b0))
2211
+ * handle the parameters and results from provider state callbacks [#372](https://github.com/pact-foundation/pact-js/issues/372) ([d3f73e5](https://github.com/pact-foundation/pact-js/commit/d3f73e5845023aa5168647daf711829a2d90f9ce))
2212
+ * implement provider state parameters in consumer tests [#372](https://github.com/pact-foundation/pact-js/issues/372) ([af8bf32](https://github.com/pact-foundation/pact-js/commit/af8bf32f15551a7b86dc73682272074347143ffc))
2213
+ * implemented provider state callbacks with parameters [#372](https://github.com/pact-foundation/pact-js/issues/372) ([50e4e61](https://github.com/pact-foundation/pact-js/commit/50e4e6199b6d9ce37cca8f10bdcd0d403cc1ad5d))
2214
+ * Introduce an authenticated state [#372](https://github.com/pact-foundation/pact-js/issues/372) ([debebd7](https://github.com/pact-foundation/pact-js/commit/debebd73cce92a3988f99afbccc4d0091af4a3c9))
2215
+
2216
+
2217
+ ### Bug Fixes
2218
+
2219
+ * changes needed for the E2E consumer test ([6022f8b](https://github.com/pact-foundation/pact-js/commit/6022f8b33fce1cea1f60ba1cf62625f557a00572))
2220
+ * correct the paths for the attribute matchers ([7629c92](https://github.com/pact-foundation/pact-js/commit/7629c9232308e1e51730f1567a2e6010ce852aac))
2221
+ * correct the v3-todo example tests ([de205c7](https://github.com/pact-foundation/pact-js/commit/de205c7e5ca7c1922b187e29a6d44f0010afb27b))
2222
+ * datetime matchers now generate a value if one is not given ([a910840](https://github.com/pact-foundation/pact-js/commit/a910840001f0e86201e82b2ca5759841392c9cca))
2223
+ * fucking lint ([cdb72db](https://github.com/pact-foundation/pact-js/commit/cdb72db91eb1283423d21e3841ed3329a128a0af))
2224
+ * Gah! Lint Nazis ([79082fd](https://github.com/pact-foundation/pact-js/commit/79082fddafbb7e76293103a3457292b02b8dfc95))
2225
+ * got eachlike with number of examples working ([88c9a72](https://github.com/pact-foundation/pact-js/commit/88c9a72a8e11456d0afe94bbfc6ce212bd22153e))
2226
+ * lint ([772224d](https://github.com/pact-foundation/pact-js/commit/772224d4d7eeaa7beafe27b55816e441a5d1ddb4))
2227
+ * lint ([9717b47](https://github.com/pact-foundation/pact-js/commit/9717b47e2bc06087f0d8eafdeb86f73bdca46683))
2228
+ * neon build should point to native directory ([fdea3eb](https://github.com/pact-foundation/pact-js/commit/fdea3eb6619f9281a377300b39d281b342ab588d))
2229
+ * neon build should point to native directory ([16957a2](https://github.com/pact-foundation/pact-js/commit/16957a2dff8a7669ad848437591a02f306038dca))
2230
+ * neon requires a C++ compiler ([bb8731f](https://github.com/pact-foundation/pact-js/commit/bb8731fae1dcf8797bbfa1ecfd0ad3a95a7ef3d5))
2231
+ * removed node 6 and 7 because ancient ([2b45cfc](https://github.com/pact-foundation/pact-js/commit/2b45cfcca9adc92834cdfe74bf1dda5550f4d0ec))
2232
+ * rustup: Unable to run interactively. Run with -y to accept defaults ([abfa9c9](https://github.com/pact-foundation/pact-js/commit/abfa9c9151eb27c3b5c503131bda4907a809c677))
2233
+ * travis build needs the Rust source in dist ([e64402e](https://github.com/pact-foundation/pact-js/commit/e64402eae49ed2d5e290686860b357f1b4748812))
2234
+ * travis build needs the Rust source in dist ([519fee5](https://github.com/pact-foundation/pact-js/commit/519fee59d6798771e6fc7aaf6fcde8babd340356))
2235
+ * use 0.5.6 of matching lib to avoid dup rules ([d30d7b9](https://github.com/pact-foundation/pact-js/commit/d30d7b974bcdcf25cfd73fd93ade68fbcd73ecdb))
2236
+
2237
+ ## [10.0.0-beta.16](https://github.com/pact-foundation/pact-js/compare/v9.12.0...v10.0.0-beta.16) (2020-09-28)
2238
+
2239
+
2240
+ ### Features
2241
+
2242
+ * add flag to enable handling CORS pre-flight requests ([0adb3fc](https://github.com/pact-foundation/pact-js/commit/0adb3fcab90bcf491f291c3874dd8bff93d3ac48))
2243
+
2244
+
2245
+ ### Bug Fixes
2246
+
2247
+ * correct Rust code after upgrade to upstream libs ([aa6d803](https://github.com/pact-foundation/pact-js/commit/aa6d803bb611f7d89692abf4e4409c14e43e7cc9))
2248
+ * need .mocharc.json after merge from master ([2525bf6](https://github.com/pact-foundation/pact-js/commit/2525bf6563e8cc93cd3522bcff8cdb9cb5931c4e))
2249
+ * package.json after merge from master ([aef422b](https://github.com/pact-foundation/pact-js/commit/aef422b70d850032575bac8efc442bc6eecb0205))
2250
+
2251
+ ## [10.0.0-beta.15](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.14...v10.0.0-beta.15) (2020-08-05)
2252
+
2253
+
2254
+ ### Bug Fixes
2255
+
2256
+ * correct matcher paths for text nodes in XML ([a217793](https://github.com/pact-foundation/pact-js/commit/a217793a5e538d9e9616ae1bab8cbd561fdd5377))
2257
+
2258
+ ## [10.0.0-beta.14](https://github.com/pact-foundation/pact-js/compare/v9.11.1...v10.0.0-beta.14) (2020-08-04)
2259
+
2260
+
2261
+ ### Bug Fixes
2262
+
2263
+
2264
+
2265
+ * add some tests around the conusmer DSL matchers ([e6a153f](https://github.com/pact-foundation/pact-js/commit/e6a153fd62d48644b97018d69e5f23d1710e510f))
2266
+ * handle XML matching with different types of child elements ([2143ca4](https://github.com/pact-foundation/pact-js/commit/2143ca4c968969e1c6218dd8e538097733ccfa56))
2267
+ * implemented consumer DSL URL matcher ([f27a444](https://github.com/pact-foundation/pact-js/commit/f27a44409aed3ece1adbab6af9e853b7684c101c))
2268
+
2269
+
2270
+ ### Bug Fixes
2271
+
2272
+ * after upgrading crates ([9a5a36d](https://github.com/pact-foundation/pact-js/commit/9a5a36db9d733bd13a1d68bb5b8d893720a915cb))
2273
+ * import for metadata was wrong ([ba2a975](https://github.com/pact-foundation/pact-js/commit/ba2a9755aee672cbed73b236c44f68aab14939f0))
2274
+ * lint ([78b4692](https://github.com/pact-foundation/pact-js/commit/78b46927bbeb96a4da6a924b7d8e86084ff6c355))
2275
+
2276
+ ## [10.0.0-beta.12](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.11...v10.0.0-beta.12) (2020-06-12)
2277
+
2278
+ ## [10.0.0-beta.11](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.10...v10.0.0-beta.11) (2020-06-12)
2279
+
2280
+ ## [10.0.0-beta.10](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.9...v10.0.0-beta.10) (2020-06-12)
2281
+
2282
+ ## [10.0.0-beta.9](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.8...v10.0.0-beta.9) (2020-06-11)
2283
+
2284
+ ## [10.0.0-beta.8](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.7...v10.0.0-beta.8) (2020-06-11)
2285
+
2286
+ ## [10.0.0-beta.7](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.6...v10.0.0-beta.7) (2020-06-11)
2287
+
2288
+ ## [10.0.0-beta.6](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.5...v10.0.0-beta.6) (2020-06-11)
2289
+
2290
+
2291
+ ### Features
2292
+
2293
+ * enable publishing of verification results ([fcbdb3e](https://github.com/pact-foundation/pact-js/commit/fcbdb3e9729365039c30267996a7364e23ccdef1))
2294
+ * release node 14 native binaries ([9ee832c](https://github.com/pact-foundation/pact-js/commit/9ee832c8dcfd896432ef34fb57595496bcac0077))
2295
+
2296
+ ## [10.0.0-beta.5](https://github.com/pact-foundation/pact-js/compare/v9.11.0...v10.0.0-beta.5) (2020-05-27)
2297
+
2298
+
2299
+ ### Features
2300
+
2301
+ * support MIME multipart form posts with binary files ([d72a210](https://github.com/pact-foundation/pact-js/commit/d72a2103b4fb0d348d2601e88d9a34befc4f31a7))
2302
+ * support regex matcher with a regexp object ([d92f6f5](https://github.com/pact-foundation/pact-js/commit/d92f6f5eee92667e5a3ce0ecdd44177d18a6b7ff))
2303
+ * support text nodes configured from XML builder ([a2a7f55](https://github.com/pact-foundation/pact-js/commit/a2a7f55eff4a187cbe30a3e56917745ebc40e33d))
2304
+ * support using matchers on XML text nodes ([b3b5e62](https://github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a))
2305
+
2306
+ * allow WebDav REPORT request ([2928613](https://github.com/pact-foundation/pact-js/commit/2928613e35a52d76dff90981a8319df20ea1fccc))
2307
+
2308
+ ### [9.12.2](https://github.com/pact-foundation/pact-js/compare/v9.12.1...v9.12.2) (2020-10-06)
2309
+
2310
+
2311
+ ### Bug Fixes
2312
+
2313
+ * **types:** Export LogLevel, PactOptions and MessageProviderOptions at the root of @pact-foundation/pact ([a6b50d3](https://github.com/pact-foundation/pact-js/commit/a6b50d387dcfb34b46a0602462104fa0a4f67db4))
2314
+
2315
+ ### [9.12.1](https://github.com/pact-foundation/pact-js/compare/v9.12.0...v9.12.1) (2020-09-24)
2316
+
2317
+
2318
+ ### Bug Fixes
2319
+
2320
+ * allow matcher as the top-level value of a query string ([2922f8f](https://github.com/pact-foundation/pact-js/commit/2922f8fee871bfb1f220df37cfa76745e57f4e5e)), closes [#510](https://github.com/pact-foundation/pact-js/issues/510)
2321
+
2322
+ ## [9.12.0](https://github.com/pact-foundation/pact-js/compare/v9.11.1...v9.12.0) (2020-09-21)
2323
+
2324
+
2325
+ ### Features
2326
+
2327
+ * support MIME multipart form posts with binary files ([d72a210](https://github.com/pact-foundation/pact-js/commit/d72a2103b4fb0d348d2601e88d9a34befc4f31a7))
2328
+ * support regex matcher with a regexp object ([d92f6f5](https://github.com/pact-foundation/pact-js/commit/d92f6f5eee92667e5a3ce0ecdd44177d18a6b7ff))
2329
+ * support text nodes configured from XML builder ([a2a7f55](https://github.com/pact-foundation/pact-js/commit/a2a7f55eff4a187cbe30a3e56917745ebc40e33d))
2330
+ * support using matchers on XML text nodes ([b3b5e62](https://github.com/pact-foundation/pact-js/commit/b3b5e6231e9f0ade7be045ff117b441d0169114a))
2331
+ * allow also WebDAV HTTP Requests ([2ac811d](https://github.com/pact-foundation/pact-js/commit/2ac811d514a6a419a0e2d1abec1ac46e854d4770))
2332
+
2333
+
2334
+ ### Bug Fixes
2335
+
2336
+ * correct the version of the pact_mock_server crate ([a17f2bb](https://github.com/pact-foundation/pact-js/commit/a17f2bb26d2964ac45b19704d91019ab2e7cdc4d))
2337
+ * date/time matchers were being skipped due to defect in upstream matching lib ([dcc3a7f](https://github.com/pact-foundation/pact-js/commit/dcc3a7fbf212cfce02c7d3dcf50bdb8f47baf45e))
2338
+ * travis matrix was doubled up ([fe08a70](https://github.com/pact-foundation/pact-js/commit/fe08a70769dbf7b3525b074f93731fb8d9ab3916))
2339
+ * travis was not running the E2E tests after merge from master ([73257dc](https://github.com/pact-foundation/pact-js/commit/73257dc3f43e229103aca119b3369d5d3ec228eb))
2340
+
2341
+ ## [10.0.0-beta.4](https://github.com/pact-foundation/pact-js/compare/v9.10.0...v10.0.0-beta.4) (2020-05-20)
2342
+
2343
+
2344
+ ### Features
2345
+
2346
+ * add support for binary payloads ([658ffa0](https://github.com/pact-foundation/pact-js/commit/658ffa0ee17adfe380b7cb1c68e10c48078c9cb6))
2347
+
2348
+
2349
+ ### Bug Fixes
2350
+
2351
+ * accidentially commited development paths in cargo manefest ([03cc16f](https://github.com/pact-foundation/pact-js/commit/03cc16f71d5f6a6cd646cdb6cf5421a134cb159e))
2352
+ * format the error messages in a better way ([0a15772](https://github.com/pact-foundation/pact-js/commit/0a15772a710d3d159648672470084a1c99b45cc8))
2353
+ * handle error when pact file cannot be written ([82832a8](https://github.com/pact-foundation/pact-js/commit/82832a81c115d06ef2d9c1fadd18c54f6f629e59))
2354
+ * throw an exception when a request is configured but no interaction defined ([b317da7](https://github.com/pact-foundation/pact-js/commit/b317da79f28dce45102a55bcdcbc415d3fbdb9ab))
2355
+ * throw an exception when a response is configured but no interaction defined ([6feacbe](https://github.com/pact-foundation/pact-js/commit/6feacbeef513420eddd9cbaed36abea80344de13))
2356
+
2357
+ ## [10.0.0-beta.3](https://github.com/pact-foundation/pact-js/compare/v9.9.2...v10.0.0-beta.3) (2020-04-08)
2358
+
2359
+
2360
+ ### Bug Fixes
2361
+
2362
+ * correct invalid logger import ([5d4ba5b](https://github.com/pact-foundation/pact-js/commit/5d4ba5be629693b6608ea5f671b116a2ec3dad14))
2363
+ * don't bundle the native lib in the NPM package ([24f43f3](https://github.com/pact-foundation/pact-js/commit/24f43f36f78269aef935381999dfe1e5802ea185))
2364
+ * guard against panics in background thread ([b35aecd](https://github.com/pact-foundation/pact-js/commit/b35aecd2e907f4cb80ac4ba8ec3d99c9801f8c15))
2365
+ * integer, decimal and number parameters are optional ([69f3983](https://github.com/pact-foundation/pact-js/commit/69f398333a10b649be4bf5a929234620d13d68d8))
2366
+ * throw a JS error if there are no pacts to verify ([3bfd9da](https://github.com/pact-foundation/pact-js/commit/3bfd9dac007320e3ff14e476851d2f0aabef7ca0))
2367
+ * try get the cause of any Rust panic ([f1f3d4a](https://github.com/pact-foundation/pact-js/commit/f1f3d4a4e287ec2c78a5b8f8eacfda459540dd5a))
2368
+ * typo ([5d8dd37](https://github.com/pact-foundation/pact-js/commit/5d8dd37cf338478cc2a16532b9f2664e301294bf))
2369
+ * update pact matching crate to 0.5.10 to fix invalid path matcher format ([ecce929](https://github.com/pact-foundation/pact-js/commit/ecce929af3d9aa51c3163d58e119924137a15195))
2370
+
2371
+ ## [10.0.0-beta.2](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.1...v10.0.0-beta.2) (2020-03-18)
2372
+
2373
+
2374
+ ### Bug Fixes
2375
+
2376
+ * correct the path to the native lib in the NPM package ([300d915](https://github.com/pact-foundation/pact-js/commit/300d91516afebeefe979039566b02162e09992c0))
2377
+
2378
+ ## [10.0.0-beta.1](https://github.com/pact-foundation/pact-js/compare/v9.8.1...v10.0.0-beta.1) (2020-03-17)
2379
+
2380
+
2381
+ ### Features
2382
+
2383
+ * got E2E consumer test passing ([904ed0b](https://github.com/pact-foundation/pact-js/commit/904ed0ba1115c81a07229e6a27c9e2d103c2dc36))
2384
+ * got request filters working. Yay! ([de16880](https://github.com/pact-foundation/pact-js/commit/de16880171ee76fdb134593a7fc78725c81158ec))
2385
+ * got the example V3 test working ([9ab43cc](https://github.com/pact-foundation/pact-js/commit/9ab43cc3541600653195c701b770dbdf1f44d5b0))
2386
+ * handle the parameters and results from provider state callbacks [#372](https://github.com/pact-foundation/pact-js/issues/372) ([d3f73e5](https://github.com/pact-foundation/pact-js/commit/d3f73e5845023aa5168647daf711829a2d90f9ce))
2387
+ * implement provider state parameters in consumer tests [#372](https://github.com/pact-foundation/pact-js/issues/372) ([af8bf32](https://github.com/pact-foundation/pact-js/commit/af8bf32f15551a7b86dc73682272074347143ffc))
2388
+ * implemented provider state callbacks with parameters [#372](https://github.com/pact-foundation/pact-js/issues/372) ([50e4e61](https://github.com/pact-foundation/pact-js/commit/50e4e6199b6d9ce37cca8f10bdcd0d403cc1ad5d))
2389
+ * Introduce an authenticated state [#372](https://github.com/pact-foundation/pact-js/issues/372) ([debebd7](https://github.com/pact-foundation/pact-js/commit/debebd73cce92a3988f99afbccc4d0091af4a3c9))
2390
+
2391
+
2392
+ ### Bug Fixes
2393
+
2394
+ * changes needed for the E2E consumer test ([6022f8b](https://github.com/pact-foundation/pact-js/commit/6022f8b33fce1cea1f60ba1cf62625f557a00572))
2395
+ * correct the paths for the attribute matchers ([7629c92](https://github.com/pact-foundation/pact-js/commit/7629c9232308e1e51730f1567a2e6010ce852aac))
2396
+ * correct the v3-todo example tests ([de205c7](https://github.com/pact-foundation/pact-js/commit/de205c7e5ca7c1922b187e29a6d44f0010afb27b))
2397
+ * datetime matchers now generate a value if one is not given ([a910840](https://github.com/pact-foundation/pact-js/commit/a910840001f0e86201e82b2ca5759841392c9cca))
2398
+ * fucking lint ([cdb72db](https://github.com/pact-foundation/pact-js/commit/cdb72db91eb1283423d21e3841ed3329a128a0af))
2399
+ * Gah! Lint Nazis ([79082fd](https://github.com/pact-foundation/pact-js/commit/79082fddafbb7e76293103a3457292b02b8dfc95))
2400
+ * got eachlike with number of examples working ([88c9a72](https://github.com/pact-foundation/pact-js/commit/88c9a72a8e11456d0afe94bbfc6ce212bd22153e))
2401
+ * lint ([772224d](https://github.com/pact-foundation/pact-js/commit/772224d4d7eeaa7beafe27b55816e441a5d1ddb4))
2402
+ * lint ([9717b47](https://github.com/pact-foundation/pact-js/commit/9717b47e2bc06087f0d8eafdeb86f73bdca46683))
2403
+ * neon build should point to native directory ([fdea3eb](https://github.com/pact-foundation/pact-js/commit/fdea3eb6619f9281a377300b39d281b342ab588d))
2404
+ * neon build should point to native directory ([16957a2](https://github.com/pact-foundation/pact-js/commit/16957a2dff8a7669ad848437591a02f306038dca))
2405
+ * neon requires a C++ compiler ([bb8731f](https://github.com/pact-foundation/pact-js/commit/bb8731fae1dcf8797bbfa1ecfd0ad3a95a7ef3d5))
2406
+ * removed node 6 and 7 because ancient ([2b45cfc](https://github.com/pact-foundation/pact-js/commit/2b45cfcca9adc92834cdfe74bf1dda5550f4d0ec))
2407
+ * rustup: Unable to run interactively. Run with -y to accept defaults ([abfa9c9](https://github.com/pact-foundation/pact-js/commit/abfa9c9151eb27c3b5c503131bda4907a809c677))
2408
+ * travis build needs the Rust source in dist ([e64402e](https://github.com/pact-foundation/pact-js/commit/e64402eae49ed2d5e290686860b357f1b4748812))
2409
+ * travis build needs the Rust source in dist ([519fee5](https://github.com/pact-foundation/pact-js/commit/519fee59d6798771e6fc7aaf6fcde8babd340356))
2410
+ * use 0.5.6 of matching lib to avoid dup rules ([d30d7b9](https://github.com/pact-foundation/pact-js/commit/d30d7b974bcdcf25cfd73fd93ade68fbcd73ecdb))
2411
+
2412
+ ## [10.0.0-beta.13](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.12...v10.0.0-beta.13) (2020-06-27)
2413
+
2414
+
2415
+ ### Features
2416
+
2417
+ * add some tests around the conusmer DSL matchers ([e6a153f](https://github.com/pact-foundation/pact-js/commit/e6a153fd62d48644b97018d69e5f23d1710e510f))
2418
+ * handle XML matching with different types of child elements ([2143ca4](https://github.com/pact-foundation/pact-js/commit/2143ca4c968969e1c6218dd8e538097733ccfa56))
2419
+ * implemented consumer DSL URL matcher ([f27a444](https://github.com/pact-foundation/pact-js/commit/f27a44409aed3ece1adbab6af9e853b7684c101c))
2420
+ * package.json & package-lock.json to reduce vulnerabilities ([0bb8512](https://github.com/pact-foundation/pact-js/commit/0bb851255c0f08d25fd935e5bd164ce99063a9ae))
2421
+ * **pact-node:** Bump version of pact-node to pick up improved logging options ([1e09e1e](https://github.com/pact-foundation/pact-js/commit/1e09e1e44017811966defd9ba87c24066385d059))
2422
+
2423
+ ### [9.11.1](https://github.com/pact-foundation/pact-js/compare/v9.11.0...v9.11.1) (2020-07-18)
2424
+
2425
+
2426
+ ### Bug Fixes
2427
+
2428
+ * after upgrading crates ([9a5a36d](https://github.com/pact-foundation/pact-js/commit/9a5a36db9d733bd13a1d68bb5b8d893720a915cb))
2429
+ * import for metadata was wrong ([ba2a975](https://github.com/pact-foundation/pact-js/commit/ba2a9755aee672cbed73b236c44f68aab14939f0))
2430
+ * lint ([78b4692](https://github.com/pact-foundation/pact-js/commit/78b46927bbeb96a4da6a924b7d8e86084ff6c355))
2431
+ * **deps:** Update vulnerable dependencies ([2b2ce6e](https://github.com/pact-foundation/pact-js/commit/2b2ce6e30c161c967331c8c0f00b7319d3158489))
2432
+
2433
+ ## [9.11.0](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.4...v9.11.0) (2020-05-20)
2434
+
2435
+
2436
+ ### Bug Fixes
2437
+
2438
+ * **dsl:** Fix extractPayload so that it passes through object properties that are not matchers (fixes [#454](https://github.com/pact-foundation/pact-js/issues/454)) ([c0f3d37](https://github.com/pact-foundation/pact-js/commit/c0f3d37b3a1f1843d4e92182b388bfe23d95e5c8))
2439
+
2440
+ ## [10.0.0-beta.12](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.11...v10.0.0-beta.12) (2020-06-12)
2441
+
2442
+ ## [10.0.0-beta.11](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.10...v10.0.0-beta.11) (2020-06-12)
2443
+
2444
+ ## [10.0.0-beta.10](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.9...v10.0.0-beta.10) (2020-06-12)
2445
+
5
2446
  ## [10.0.0-beta.9](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.8...v10.0.0-beta.9) (2020-06-11)
6
2447
 
7
2448
  ## [10.0.0-beta.8](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.7...v10.0.0-beta.8) (2020-06-11)
@@ -17,6 +2458,12 @@ All notable changes to this project will be documented in this file. See [standa
17
2458
  * release node 14 native binaries ([9ee832c](https://github.com/pact-foundation/pact-js/commit/9ee832c8dcfd896432ef34fb57595496bcac0077))
18
2459
 
19
2460
  ## [10.0.0-beta.5](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.4...v10.0.0-beta.5) (2020-05-27)
2461
+ * **deps:** Bump lodash dependency version to obtain security fix ([c035482](https://github.com/pact-foundation/pact-js/commit/c035482524f1b27f7de0b2fe60d104e1cf25a601))
2462
+ * package.json & package-lock.json to reduce vulnerabilities ([f147ad2](https://github.com/pact-foundation/pact-js/commit/f147ad2b97bc384b8ccdf965bf4d47b65901cdf0))
2463
+ * package.json & package-lock.json to reduce vulnerabilities ([c620dc1](https://github.com/pact-foundation/pact-js/commit/c620dc1965ff2b73c5d649dd2192e206e9a24e0e))
2464
+ * **deps:** Update vulnerable dependencies ([2b2ce6e](https://github.com/pact-foundation/pact-js/commit/2b2ce6e30c161c967331c8c0f00b7319d3158489))
2465
+
2466
+ ## [9.11.0](https://github.com/pact-foundation/pact-js/compare/v9.10.0...v9.11.0) (2020-05-20)
20
2467
 
21
2468
 
22
2469
  ### Features
@@ -129,13 +2576,16 @@ All notable changes to this project will be documented in this file. See [standa
129
2576
  * typo ([5d8dd37](https://github.com/pact-foundation/pact-js/commit/5d8dd37cf338478cc2a16532b9f2664e301294bf))
130
2577
 
131
2578
  ## [10.0.0-beta.2](https://github.com/pact-foundation/pact-js/compare/v10.0.0-beta.1...v10.0.0-beta.2) (2020-03-18)
2579
+ * **dsl:** Fix extractPayload so that it passes through object properties that are not matchers (fixes [#454](https://github.com/pact-foundation/pact-js/issues/454)) ([c0f3d37](https://github.com/pact-foundation/pact-js/commit/c0f3d37b3a1f1843d4e92182b388bfe23d95e5c8))
2580
+ * package.json & package-lock.json to reduce vulnerabilities ([69d97e0](https://github.com/pact-foundation/pact-js/commit/69d97e0680e1d21e87ee491b0be0d1bd7e367e71))
2581
+ * package.json & package-lock.json to reduce vulnerabilities ([2184a5d](https://github.com/pact-foundation/pact-js/commit/2184a5dedd7adb2070e7094e8f1b25dc4a374696))
2582
+
132
2583
  ## [9.10.0](https://github.com/pact-foundation/pact-js/compare/v9.9.12...v9.10.0) (2020-04-24)
133
2584
 
134
2585
 
135
2586
  ### Features
136
2587
 
137
2588
  * remove need for pact-node in almost all uses, including examples ([4e22828](https://github.com/pact-foundation/pact-js/commit/4e228282bbf1f31d8dae35e3cc00e4a6347110ba))
138
- * remove need for pact-node in almost all uses, including examples ([83a91aa](https://github.com/pact-foundation/pact-js/commit/83a91aaf5ab0592279a6c60f12de719c218e3cd9))
139
2589
  * update PactWeb and MessageProviderPact interface ([b82976f](https://github.com/pact-foundation/pact-js/commit/b82976f34b607535bf9deb07987140b487ab87e7))
140
2590
 
141
2591
  ### [9.9.12](https://github.com/pact-foundation/pact-js/compare/v9.9.11...v9.9.12) (2020-04-19)