Mongoose: mpromise (mongoose's default promise library) is deprecated, plug in your own promise library instead: http://mongoosejs.com/docs/promises.html
I've been getting this warning since July or so. From the details that I looked here: Automattic/mongoose#4291
The maintainer explains that the message tells you change from mongoose's default promise library. From the thread above, a fix would be to declare
mongoose.Promise = global.Promise;
(or another promise library) before the connect, which I have been doing interim.
I've been getting this warning since July or so. From the details that I looked here: Automattic/mongoose#4291
The maintainer explains that the message tells you change from mongoose's default promise library. From the thread above, a fix would be to declare
(or another promise library) before the connect, which I have been doing interim.