mongodb 6.7.0-dev.20240530.sha.f56938f → 6.7.0-dev.20240608.sha.0655c730
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/README.md +19 -0
- package/lib/cursor/abstract_cursor.js +234 -268
- package/lib/cursor/abstract_cursor.js.map +1 -1
- package/lib/cursor/aggregation_cursor.js +10 -17
- package/lib/cursor/aggregation_cursor.js.map +1 -1
- package/lib/cursor/change_stream_cursor.js +6 -6
- package/lib/cursor/change_stream_cursor.js.map +1 -1
- package/lib/cursor/find_cursor.js +64 -72
- package/lib/cursor/find_cursor.js.map +1 -1
- package/lib/index.js.map +1 -1
- package/mongodb.d.ts +48 -64
- package/package.json +2 -2
- package/src/client-side-encryption/client_encryption.ts +27 -13
- package/src/cursor/abstract_cursor.ts +259 -348
- package/src/cursor/aggregation_cursor.ts +13 -23
- package/src/cursor/change_stream_cursor.ts +12 -15
- package/src/cursor/find_cursor.ts +67 -74
- package/src/index.ts +1 -0
package/README.md
CHANGED
|
@@ -20,6 +20,25 @@ The official [MongoDB](https://www.mongodb.com/) driver for Node.js.
|
|
|
20
20
|
| Contributing | [CONTRIBUTING.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/CONTRIBUTING.md) |
|
|
21
21
|
| Changelog | [HISTORY.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/HISTORY.md) |
|
|
22
22
|
|
|
23
|
+
|
|
24
|
+
|
|
25
|
+
### Release Integrity
|
|
26
|
+
|
|
27
|
+
The GitHub release contains a detached signature file for the NPM package (named
|
|
28
|
+
`mongodb-X.Y.Z.tgz.sig`).
|
|
29
|
+
|
|
30
|
+
The following command returns the link npm package.
|
|
31
|
+
```shell
|
|
32
|
+
npm view mongodb@vX.Y.Z dist.tarball
|
|
33
|
+
```
|
|
34
|
+
|
|
35
|
+
Using the result of the above command, a `curl` command can return the official npm package for the release.
|
|
36
|
+
|
|
37
|
+
To verify the integrity of the downloaded package, run the following command:
|
|
38
|
+
```shell
|
|
39
|
+
gpg --verify mongodb-X.Y.Z.tgz.sig mongodb-X.Y.Z.tgz
|
|
40
|
+
```
|
|
41
|
+
|
|
23
42
|
### Bugs / Feature Requests
|
|
24
43
|
|
|
25
44
|
Think you’ve found a bug? Want to see a new feature in `node-mongodb-native`? Please open a
|