Skip to content

Commit a2ec28d

Browse files
authored
Merge pull request #11366 from laissonsilveira/5.x
Broken link from findandmodify method deprecation
2 parents d2b846f + 05ce577 commit a2ec28d

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

docs/deprecations.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -60,7 +60,7 @@ If you use [`Model.findOneAndUpdate()`](/docs/api.html#model_Model.findOneAndUpd
6060
by default you'll see one of the below deprecation warnings.
6161

6262
```
63-
DeprecationWarning: Mongoose: `findOneAndUpdate()` and `findOneAndDelete()` without the `useFindAndModify` option set to false are deprecated. See: https://mongoosejs.com/docs/deprecations.html#findandmodify
63+
DeprecationWarning: Mongoose: `findOneAndUpdate()` and `findOneAndDelete()` without the `useFindAndModify` option set to false are deprecated. See: https://mongoosejs.com/docs/5.x/docs/deprecations.html#findandmodify
6464
DeprecationWarning: collection.findAndModify is deprecated. Use findOneAndUpdate, findOneAndReplace or findOneAndDelete instead.
6565
```
6666

lib/query.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -3777,7 +3777,7 @@ const _legacyFindAndModify = util.deprecate(function(filter, update, opts, cb) {
37773777
collection.collection._findAndModify(filter, sort, update, opts, _cb);
37783778
}, 'Mongoose: `findOneAndUpdate()` and `findOneAndDelete()` without the ' +
37793779
'`useFindAndModify` option set to false are deprecated. See: ' +
3780-
'https://mongoosejs.com/docs/deprecations.html#findandmodify');
3780+
'https://mongoosejs.com/docs/5.x/docs/deprecations.html#findandmodify');
37813781

37823782
/*!
37833783
* Override mquery.prototype._mergeUpdate to handle mongoose objects in

0 commit comments

Comments
 (0)