From e56ea3bdb3c05dd8c927a58539e419630696432b Mon Sep 17 00:00:00 2001 From: Github Action Date: Mon, 29 Jul 2024 22:54:13 +0000 Subject: [PATCH] chore: synced pact-js docs --- website/docs/implementation_guides/javascript/changelog.md | 7 +++++++ .../docs/implementation_guides/javascript/docs/matching.md | 2 +- 2 files changed, 8 insertions(+), 1 deletion(-) diff --git a/website/docs/implementation_guides/javascript/changelog.md b/website/docs/implementation_guides/javascript/changelog.md index b4a6331d..1432666e 100644 --- a/website/docs/implementation_guides/javascript/changelog.md +++ b/website/docs/implementation_guides/javascript/changelog.md @@ -6,6 +6,13 @@ custom_edit_url: https://github.com/pact-foundation/pact-js/edit/master/CHANGELO All notable changes to this project will be documented in this file. See [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines. +### [13.1.1](https://github.com/pact-foundation/pact-js/compare/v13.1.0...v13.1.1) (2024-07-15) + + +### Fixes and Improvements + +* nullValue matcher does not reify ([#1230](https://github.com/pact-foundation/pact-js/issues/1230)) ([bee3afb](https://github.com/pact-foundation/pact-js/commit/bee3afb5c2644218f57a65907547b12f5c6e93cb)), closes [#1229](https://github.com/pact-foundation/pact-js/issues/1229) + ## [13.1.0](https://github.com/pact-foundation/pact-js/compare/v13.0.0...v13.1.0) (2024-06-24) diff --git a/website/docs/implementation_guides/javascript/docs/matching.md b/website/docs/implementation_guides/javascript/docs/matching.md index 7ac579a3..487cfa8f 100644 --- a/website/docs/implementation_guides/javascript/docs/matching.md +++ b/website/docs/implementation_guides/javascript/docs/matching.md @@ -278,7 +278,7 @@ For this to work, in the consumer test we use the `fromProviderState` matching f For example: ```js - query: { accountNumber: fromProviderState("\${accountNumber}", "100") }, + query: { accountNumber: fromProviderState("${accountNumber}", "100") }, ``` Then when the provider is verified, the provider state callback can return a map of values. These values will be used to generate the value using the expression supplied from the consumer test.