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

docs(NODE-5528): add driver version compat table #17

Merged
merged 2 commits into from
Aug 14, 2023
Merged
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
13 changes: 12 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ Zstandard compression library for Node.js
npm install @mongodb-js/zstd
```

## Support matrix
## OS Support matrix

| | node12 | node14 | node16 | node18 | node20 |
| ---------------- | ------ | ------ | ------ | ------ | ------ |
Expand All @@ -23,6 +23,17 @@ npm install @mongodb-js/zstd
| Linux x64 musl | ✓ | ✓ | ✓ | ✓ | ✓ |
| Linux arm64 musl | ✓ | ✓ | ✓ | ✓ | ✓ |

## MongoDB Node.js Driver Version Compatibility

Only the following version combinations with the [MongoDB Node.js Driver](https://github.com/mongodb/node-mongodb-native) are considered stable.

| | `@mongodb-js/[email protected]` |
| ------------- | ---------------------- |
| `[email protected]` | ✓ `^1.1.0` |
| `[email protected]` | ✓ |
durran marked this conversation as resolved.
Show resolved Hide resolved
| `[email protected]` | ✓ |
| `[email protected]` | N/A |

## API

```ts
Expand Down
Loading