Skip to content

Commit

Permalink
chore: synced pact-js docs
Browse files Browse the repository at this point in the history
  • Loading branch information
Github Action committed Jul 29, 2024
1 parent c22f63d commit e56ea3b
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 7 additions & 0 deletions website/docs/implementation_guides/javascript/changelog.md
Original file line number Diff line number Diff line change
Expand Up @@ -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)


Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit e56ea3b

Please sign in to comment.