@pact-foundation/pact-core 15.1.0 → 15.1.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +7 -0
- package/package.json +1 -1
- package/prebuilds/darwin-arm64/libpact_ffi.dylib +0 -0
- package/prebuilds/darwin-x64/libpact_ffi.dylib +0 -0
- package/prebuilds/darwin-x64/node.napi.node +0 -0
- package/prebuilds/linux-arm64/libpact_ffi.so +0 -0
- package/prebuilds/linux-arm64/libpact_ffi_musl.so +0 -0
- package/prebuilds/linux-x64/libpact_ffi.so +0 -0
- package/prebuilds/linux-x64/libpact_ffi_musl.so +0 -0
- package/prebuilds/win32-x64/node.napi.node +0 -0
- package/prebuilds/win32-x64/pact_ffi.dll +0 -0
- package/src/ffi/index.d.ts +1 -1
- package/src/ffi/index.js +1 -1
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 [commit-and-tag-version](https://github.com/absolute-version/commit-and-tag-version) for commit guidelines.
|
|
4
4
|
|
|
5
|
+
## [15.1.1](https://github.com/pact-foundation/pact-js-core/compare/v15.1.0...v15.1.1) (2024-07-19)
|
|
6
|
+
|
|
7
|
+
|
|
8
|
+
### Fixes and Improvements
|
|
9
|
+
|
|
10
|
+
* **deps:** pin to node 22.4.1 ([#518](https://github.com/pact-foundation/pact-js-core/issues/518)) ([a3d97d2](https://github.com/pact-foundation/pact-js-core/commit/a3d97d2d91d06e1dd0875fa0cd3e2cc331435bb4))
|
|
11
|
+
|
|
5
12
|
## [15.1.0](https://github.com/pact-foundation/pact-js-core/compare/v15.0.0...v15.1.0) (2024-06-20)
|
|
6
13
|
|
|
7
14
|
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@pact-foundation/pact-core",
|
|
3
|
-
"version": "15.1.
|
|
3
|
+
"version": "15.1.1",
|
|
4
4
|
"description": "Core of @pact-foundation/pact. You almost certainly don't want to depend on this directly.",
|
|
5
5
|
"main": "src/index.js",
|
|
6
6
|
"homepage": "https://github.com/pact-foundation/pact-js-core#readme",
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
package/src/ffi/index.d.ts
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
import { LogLevel } from '../logger/types';
|
|
2
2
|
import { Ffi } from './types';
|
|
3
|
-
export declare const PACT_FFI_VERSION = "0.4.
|
|
3
|
+
export declare const PACT_FFI_VERSION = "0.4.22";
|
|
4
4
|
declare let ffiLib: Ffi;
|
|
5
5
|
declare let ffi: typeof ffiLib;
|
|
6
6
|
export declare const getFfiLib: (logLevel?: LogLevel) => typeof ffi;
|
package/src/ffi/index.js
CHANGED
|
@@ -30,7 +30,7 @@ exports.getFfiLib = exports.PACT_FFI_VERSION = void 0;
|
|
|
30
30
|
const node_path_1 = __importDefault(require("node:path"));
|
|
31
31
|
const bindings = require("node-gyp-build");
|
|
32
32
|
const logger_1 = __importStar(require("../logger"));
|
|
33
|
-
exports.PACT_FFI_VERSION = '0.4.
|
|
33
|
+
exports.PACT_FFI_VERSION = '0.4.22';
|
|
34
34
|
const supportedPlatforms = [
|
|
35
35
|
'darwin-arm64',
|
|
36
36
|
'darwin-x64',
|