@pact-foundation/pact 9.15.1 → 9.15.2

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/CHANGELOG.md CHANGED
@@ -2,6 +2,13 @@
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
+ ### [9.15.2](https://github.com/pact-foundation/pact-js/compare/v9.15.1...v9.15.2) (2021-02-28)
6
+
7
+
8
+ ### Fixes and Improvements
9
+
10
+ * **pact-node:** bump dependency on pact-node ([a200414](https://github.com/pact-foundation/pact-js/commit/a2004143782be418b59a8266834c6aa8e6d2a1ef))
11
+
5
12
  ### [9.15.1](https://github.com/pact-foundation/pact-js/compare/v9.15.0...v9.15.1) (2021-02-23)
6
13
 
7
14
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@pact-foundation/pact",
3
- "version": "9.15.1",
3
+ "version": "9.15.2",
4
4
  "description": "Pact for all things Javascript",
5
5
  "main": "./src/pact.js",
6
6
  "types": "./src/pact.d.ts",
@@ -94,7 +94,7 @@
94
94
  ]
95
95
  },
96
96
  "dependencies": {
97
- "@pact-foundation/pact-node": "^10.11.4",
97
+ "@pact-foundation/pact-node": "^10.11.11",
98
98
  "@types/bluebird": "^3.5.20",
99
99
  "@types/express": "^4.17.11",
100
100
  "bluebird": "~3.5.1",
@@ -1,5 +1,5 @@
1
1
  import pino = require("pino");
2
2
  declare const logger: pino.Logger;
3
- export declare const setLogLevel: (wantedLevel?: number | "error" | "debug" | "info" | "warn" | "trace" | "fatal" | undefined) => number | void;
3
+ export declare const setLogLevel: (wantedLevel?: number | "error" | "debug" | "info" | "warn" | "fatal" | "trace" | undefined) => number | void;
4
4
  export declare const traceHttpInteractions: () => void;
5
5
  export default logger;