Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Chore/upgrade to pact ffi 0.4.22 #519

Merged
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions .github/workflows/build-and-test.yml
Original file line number Diff line number Diff line change
Expand Up @@ -108,25 +108,25 @@ jobs:
strategy:
fail-fast: false
matrix:
node-version: [16, 18, 20, 22]
node-version: [16, 18, 20, 22.4.1]
os: [macos-14, macos-12, ubuntu-latest, windows-latest]
docker: [false]
include:
- os: ubuntu-latest
docker: true
alpine: false
arch: arm64
node-version: 22
node-version: 22.4.1
- os: ubuntu-latest
docker: true
alpine: true
arch: arm64
node-version: 22
node-version: 22.4.1
- os: ubuntu-latest
docker: true
alpine: true
arch: amd64
node-version: 22
node-version: 22.4.1
- os: ubuntu-latest
docker: true
alpine: false
Expand Down Expand Up @@ -222,4 +222,4 @@ jobs:
GITHUB_TOKEN: ${{ github.token }}
DRY_RUN: true

- run: echo "New Release will be v${{ steps.publish.outputs.version }}"
- run: echo "New Release will be v${{ steps.publish.outputs.version }}"
2 changes: 1 addition & 1 deletion src/ffi/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ import logger, { DEFAULT_LOG_LEVEL } from '../logger';
import { LogLevel } from '../logger/types';
import { Ffi } from './types';

export const PACT_FFI_VERSION = '0.4.21';
export const PACT_FFI_VERSION = '0.4.22';

// supported prebuilds
// darwin-arm64
Expand Down
1 change: 1 addition & 0 deletions test/matt.consumer.integration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ const sendMattMessageTCP = (
return new Promise((resolve) => {
socket.on('data', (data) => {
resolve(parseMattMessage(data.toString()));
socket.destroy();
});
});
};
Expand Down
1 change: 1 addition & 0 deletions test/matt.provider.integration.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -40,6 +40,7 @@ const startTCPServer = (host: string, port: number) => {
sock.write(generateMattMessage('message not understood'));
}
sock.write('\n');
sock.destroy();
});
});

Expand Down
Loading