Skip to content

Commit 06fa101

Browse files
committed
docs: update v6 references to v7 in readme
1 parent 638da2c commit 06fa101

1 file changed

Lines changed: 7 additions & 7 deletions

File tree

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
The official [MongoDB](https://www.mongodb.com/) driver for Node.js.
44

5-
**Upgrading to version 6? Take a look at our [upgrade guide here](https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/CHANGES_6.0.0.md)!**
5+
**Upgrading to version 7? Take a look at our [upgrade guide here](https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/CHANGES_7.0.0.md)!**
66

77
## Quick Links
88

@@ -16,12 +16,10 @@ The official [MongoDB](https://www.mongodb.com/) driver for Node.js.
1616
| MongoDB Developer Center | [www.mongodb.com/developer](https://www.mongodb.com/developer/languages/javascript/) |
1717
| Stack Overflow | [stackoverflow.com](https://stackoverflow.com/search?q=%28%5Btypescript%5D+or+%5Bjavascript%5D+or+%5Bnode.js%5D%29+and+%5Bmongodb%5D) |
1818
| Source Code | [github.com/mongodb/node-mongodb-native](https://github.com/mongodb/node-mongodb-native) |
19-
| Upgrade to v6 | [etc/notes/CHANGES_6.0.0.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/CHANGES_6.0.0.md) |
19+
| Upgrade to v7 | [etc/notes/CHANGES_7.0.0.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/etc/notes/CHANGES_7.0.0.md) |
2020
| Contributing | [CONTRIBUTING.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/CONTRIBUTING.md) |
2121
| Changelog | [HISTORY.md](https://github.com/mongodb/node-mongodb-native/blob/HEAD/HISTORY.md) |
2222

23-
24-
2523
### Release Integrity
2624

2725
Releases are created automatically and signed using the [Node team's GPG key](https://pgp.mongodb.com/node-driver.asc). This applies to the git tag as well as all release packages provided as part of a GitHub release. To verify the provided packages, download the key and import it using gpg:
@@ -34,19 +32,21 @@ The GitHub release contains a detached signature file for the NPM package (named
3432
`mongodb-X.Y.Z.tgz.sig`).
3533

3634
The following command returns the link npm package.
35+
3736
```shell
3837
npm view [email protected] dist.tarball
3938
```
4039

4140
Using the result of the above command, a `curl` command can return the official npm package for the release.
4241

4342
To verify the integrity of the downloaded package, run the following command:
43+
4444
```shell
4545
gpg --verify mongodb-X.Y.Z.tgz.sig mongodb-X.Y.Z.tgz
4646
```
4747

48-
>[!Note]
49-
No verification is done when using npm to install the package. The contents of the Github tarball and npm's tarball are identical.
48+
> [!Note]
49+
> No verification is done when using npm to install the package. The contents of the Github tarball and npm's tarball are identical.
5050
5151
The MongoDB Node.js driver follows [semantic versioning](https://semver.org/) for its releases.
5252

@@ -100,7 +100,7 @@ This is the lowest typescript version guaranteed to work with our driver: older
100100
Since typescript [does not restrict breaking changes to major versions](https://github.com/Microsoft/TypeScript/wiki/Breaking-Changes), we consider this support best effort.
101101
If you run into any unexpected compiler failures against our supported TypeScript versions, please let us know by filing an issue on our [JIRA](https://jira.mongodb.org/browse/NODE).
102102

103-
Additionally, our Typescript types are compatible with the ECMAScript standard for our minimum supported Node version. Currently, our Typescript targets es2023.
103+
Additionally, our Typescript types are compatible with the ECMAScript standard for our minimum supported Node version. Currently, our Typescript targets es2023.
104104

105105
## Installation
106106

0 commit comments

Comments
 (0)