mongoose 4.13.17 → 4.13.21
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/.travis.yml +4 -4
- package/History.md +17 -0
- package/data.json +8 -0
- package/dist/browser.umd.js +1500 -0
- package/lib/aggregate.js +1 -1
- package/lib/cast.js +7 -1
- package/lib/model.js +1 -0
- package/lib/schema.js +7 -3
- package/package.json +1 -2
- package/.vscode/settings.json +0 -2
package/.travis.yml
CHANGED
|
@@ -11,16 +11,16 @@ node_js:
|
|
|
11
11
|
- "0.10"
|
|
12
12
|
- "iojs"
|
|
13
13
|
before_script:
|
|
14
|
-
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-
|
|
15
|
-
- tar -zxvf mongodb-linux-x86_64-
|
|
14
|
+
- wget http://fastdl.mongodb.org/linux/mongodb-linux-x86_64-3.4.23.tgz
|
|
15
|
+
- tar -zxvf mongodb-linux-x86_64-3.4.23.tgz
|
|
16
16
|
- mkdir -p ./data/db/27017
|
|
17
17
|
- mkdir -p ./data/db/27000
|
|
18
18
|
- printf "\n--timeout 8000" >> ./test/mocha.opts
|
|
19
|
-
- ./mongodb-linux-x86_64-
|
|
19
|
+
- ./mongodb-linux-x86_64-3.4.23/bin/mongod --fork --dbpath ./data/db/27017 --syslog --port 27017
|
|
20
|
+
- export PATH=`pwd`/mongodb-linux-x86_64-3.4.23/bin/:$PATH
|
|
20
21
|
- sleep 3
|
|
21
22
|
script:
|
|
22
23
|
- npm test
|
|
23
24
|
- npm run lint
|
|
24
|
-
- npm run nsp
|
|
25
25
|
notifications:
|
|
26
26
|
email: false
|
package/History.md
CHANGED
|
@@ -1,3 +1,20 @@
|
|
|
1
|
+
4.13.21 / 2020-07-12
|
|
2
|
+
====================
|
|
3
|
+
* fix(query): delete top-level `_bsontype` property in queries to prevent silent empty queries #8222
|
|
4
|
+
|
|
5
|
+
4.13.20 / 2020-01-07
|
|
6
|
+
====================
|
|
7
|
+
* fix(schema): make aliases handle mongoose-lean-virtuals #6069
|
|
8
|
+
|
|
9
|
+
4.13.19 / 2019-07-02
|
|
10
|
+
====================
|
|
11
|
+
* fix(aggregate): make `setOptions()` work as advertised #7950 #6011 [cdimitroulas](https://github.com/cdimitroulas)
|
|
12
|
+
|
|
13
|
+
4.13.18 / 2019-01-21
|
|
14
|
+
====================
|
|
15
|
+
* fix(model): handle setting populated path set via `Document#populate()` #7302
|
|
16
|
+
* fix(cast): backport fix from #7290 to 4.x
|
|
17
|
+
|
|
1
18
|
4.13.17 / 2018-08-30
|
|
2
19
|
====================
|
|
3
20
|
* fix(document): disallow setting `constructor` and `prototype` if strict mode false
|