-
Notifications
You must be signed in to change notification settings - Fork 1.8k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat(NODE-4436)!: support only snappy 7 or later
- Loading branch information
Showing
16 changed files
with
645 additions
and
314 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,26 @@ | ||
# Changes in v5 | ||
|
||
## TOC | ||
|
||
- TODO | ||
|
||
## About | ||
|
||
The following is a detailed collection of the changes in the major v5 release of the mongodb package for Node.js. | ||
|
||
<!-- | ||
1. a brief statement of what is breaking (brief as in "x will now return y instead of z", or "x is no longer supported, use y instead", etc | ||
2. a brief statement of why we are breaking it (bug, not useful, inconsistent behavior, better alternative, etc) | ||
3. if applicable, an example of suggested syntax change (can be included in (1) ) | ||
--> | ||
|
||
## Changes | ||
|
||
### Snappy v7.x.x or later and optional peerDependency | ||
|
||
`snappy` compression has been added to the package.json as a peerDependency that is **optional**. | ||
This means `npm` will let you know if the version of snappy you have installed is incompatible with the driver. | ||
|
||
```sh | ||
npm install --save snappy@7 | ||
``` |
Oops, something went wrong.