mongoose 6.9.0 → 6.9.2

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 CHANGED
@@ -21,7 +21,7 @@ Mongoose 6.0.0 was released on August 24, 2021. You can find more details on [ba
21
21
  - [Bug Reports](https://github.com/Automattic/mongoose/issues/)
22
22
  - [Mongoose Slack Channel](http://slack.mongoosejs.io/)
23
23
  - [Help Forum](http://groups.google.com/group/mongoose-orm)
24
- - [MongoDB Support](https://docs.mongodb.org/manual/support/)
24
+ - [MongoDB Support](https://www.mongodb.com/docs/manual/support/)
25
25
 
26
26
  ## Plugins
27
27
 
@@ -96,7 +96,7 @@ await mongoose.connect('mongodb://127.0.0.1/my_database');
96
96
 
97
97
  Once connected, the `open` event is fired on the `Connection` instance. If you're using `mongoose.connect`, the `Connection` is `mongoose.connection`. Otherwise, `mongoose.createConnection` return value is a `Connection`.
98
98
 
99
- **Note:** _If the local connection fails then try using 127.0.0.1 instead of 127.0.0.1. Sometimes issues may arise when the local hostname has been changed._
99
+ **Note:** _If the local connection fails then try using 127.0.0.1 instead of localhost. Sometimes issues may arise when the local hostname has been changed._
100
100
 
101
101
  **Important!** Mongoose buffers all the commands until it's connected to the database. This means that you don't have to wait until it connects to MongoDB in order to define models, run queries, etc.
102
102