mongodb 6.14.2-dev.20250315.sha.cd09d435 → 6.14.2-dev.20250318.sha.78d951b9
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 +8 -12
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -70,9 +70,7 @@ Change history can be found in [`HISTORY.md`](https://github.com/mongodb/node-mo
|
|
|
70
70
|
|
|
71
71
|
### Compatibility
|
|
72
72
|
|
|
73
|
-
The driver currently supports
|
|
74
|
-
|
|
75
|
-
** 3.6 support is deprecated and support will be removed in a future version **
|
|
73
|
+
The driver currently supports 4.0+ servers.
|
|
76
74
|
|
|
77
75
|
For exhaustive server and runtime version compatibility matrices, please refer to the following links:
|
|
78
76
|
|
|
@@ -83,13 +81,13 @@ For exhaustive server and runtime version compatibility matrices, please refer t
|
|
|
83
81
|
|
|
84
82
|
The following table describes add-on component version compatibility for the Node.js driver. Only packages with versions in these supported ranges are stable when used in combination.
|
|
85
83
|
|
|
86
|
-
| Component | `mongodb@3.x` | `mongodb@4.x` | `mongodb@5.x` | `mongodb@<6.12` | `mongodb@>=6.12
|
|
87
|
-
| ------------------------------------------------------------------------------------ | ------------------ | ------------------ | ------------------ | --------------- |
|
|
88
|
-
| [bson](https://www.npmjs.com/package/bson) | ^1.0.0 | ^4.0.0 | ^5.0.0 | ^6.0.0 | ^6.0.0
|
|
89
|
-
| [bson-ext](https://www.npmjs.com/package/bson-ext) | ^1.0.0 \|\| ^2.0.0 | ^4.0.0 | N/A | N/A | N/A
|
|
90
|
-
| [kerberos](https://www.npmjs.com/package/kerberos) | ^1.0.0 | ^1.0.0 \|\| ^2.0.0 | ^1.0.0 \|\| ^2.0.0 | ^2.0.1 | ^2.0.1
|
|
91
|
-
| [mongodb-client-encryption](https://www.npmjs.com/package/mongodb-client-encryption) | ^1.0.0 | ^1.0.0 \|\| ^2.0.0 | ^2.3.0 | ^6.0.0 | ^6.0.0
|
|
92
|
-
| [mongodb-legacy](https://www.npmjs.com/package/mongodb-legacy) | N/A | ^4.0.0 | ^5.0.0 | ^6.0.0 | ^6.0.0
|
|
84
|
+
| Component | `mongodb@3.x` | `mongodb@4.x` | `mongodb@5.x` | `mongodb@<6.12` | `mongodb@>=6.12` |
|
|
85
|
+
| ------------------------------------------------------------------------------------ | ------------------ | ------------------ | ------------------ | --------------- | ------------------ |
|
|
86
|
+
| [bson](https://www.npmjs.com/package/bson) | ^1.0.0 | ^4.0.0 | ^5.0.0 | ^6.0.0 | ^6.0.0 |
|
|
87
|
+
| [bson-ext](https://www.npmjs.com/package/bson-ext) | ^1.0.0 \|\| ^2.0.0 | ^4.0.0 | N/A | N/A | N/A |
|
|
88
|
+
| [kerberos](https://www.npmjs.com/package/kerberos) | ^1.0.0 | ^1.0.0 \|\| ^2.0.0 | ^1.0.0 \|\| ^2.0.0 | ^2.0.1 | ^2.0.1 |
|
|
89
|
+
| [mongodb-client-encryption](https://www.npmjs.com/package/mongodb-client-encryption) | ^1.0.0 | ^1.0.0 \|\| ^2.0.0 | ^2.3.0 | ^6.0.0 | ^6.0.0 |
|
|
90
|
+
| [mongodb-legacy](https://www.npmjs.com/package/mongodb-legacy) | N/A | ^4.0.0 | ^5.0.0 | ^6.0.0 | ^6.0.0 |
|
|
93
91
|
| [@mongodb-js/zstd](https://www.npmjs.com/package/@mongodb-js/zstd) | N/A | ^1.0.0 | ^1.0.0 | ^1.1.0 | ^1.1.0 \|\| ^2.0.0 |
|
|
94
92
|
|
|
95
93
|
|
|
@@ -110,8 +108,6 @@ After you've created your own project using `npm init`, you can run:
|
|
|
110
108
|
|
|
111
109
|
```bash
|
|
112
110
|
npm install mongodb
|
|
113
|
-
# or ...
|
|
114
|
-
yarn add mongodb
|
|
115
111
|
```
|
|
116
112
|
|
|
117
113
|
This will download the MongoDB driver and add a dependency entry in your `package.json` file.
|