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 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-2.6.11.tgz
15
- - tar -zxvf mongodb-linux-x86_64-2.6.11.tgz
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-2.6.11/bin/mongod --fork --dbpath ./data/db/27017 --syslog --port 27017
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
package/data.json ADDED
@@ -0,0 +1,8 @@
1
+ {
2
+ "address1": "325 Meridian Ave",
3
+ "cartId": "5ef6579bcccab50008066a7f",
4
+ "city": "Miami Beach",
5
+ "shipping": "standard",
6
+ "state": "Florida",
7
+ "zip": "33139"
8
+ }