mongoose 4.13.10 → 4.13.11

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/History.md CHANGED
@@ -1,4 +1,9 @@
1
- 4.13.10 / 2017-01-28
1
+ 4.13.11 / 2018-02-07
2
+ ====================
3
+ * docs: fix links in 4.x docs #6081
4
+ * chore: add release script that uses --tag for npm publish for 4.x releases #6063
5
+
6
+ 4.13.10 / 2018-01-28
2
7
  ====================
3
8
  * docs(model+query): add lean() option to Model helpers #5996 [aguyinmontreal](https://github.com/aguyinmontreal)
4
9
  * fix: use lazy loading so we can build mongoose with webpack #5993 #5842
@@ -6,7 +11,7 @@
6
11
  * fix(populate): handle populating embedded discriminator paths #5970
7
12
  * docs(query+aggregate): add more detail re: maxTimeMS #4066
8
13
 
9
- 4.13.9 / 2017-01-07
14
+ 4.13.9 / 2018-01-07
10
15
  ===================
11
16
  * chore: update marked (dev dependency) re: security vulnerability #5951 [ChristianMurphy](https://github.com/ChristianMurphy)
12
17
  * fix: upgrade mongodb -> 2.2.34 for ipv6 and autoReconnect fixes #5794 #5760
@@ -0,0 +1,56 @@
1
+ From d1c5478c698dcae9731751e285eef3c431a8f213 Mon Sep 17 00:00:00 2001
2
+ From: Jess <jessachandler@gmail.com>
3
+ Date: Fri, 26 Jan 2018 10:06:01 +0900
4
+ Subject: [PATCH] Updated CONTRIBUTING.md (optional)
5
+
6
+ ---
7
+ CONTRIBUTING.md | 38 ++++++++++++++++++++++++++++++++++++++
8
+ 1 file changed, 38 insertions(+)
9
+
10
+ diff --git a/CONTRIBUTING.md b/CONTRIBUTING.md
11
+ index 477f83a8a..a82f1ed20 100644
12
+ --- a/CONTRIBUTING.md
13
+ +++ b/CONTRIBUTING.md
14
+ @@ -60,3 +60,41 @@ Visit `http://localhost:8088` and you should see the docs with your local change
15
+ ### Plugins website
16
+
17
+ The [plugins](http://plugins.mongoosejs.io/) site is also an [open source project](https://github.com/vkarpov15/mongooseplugins) that you can get involved with. Feel free to fork and improve it as well!
18
+ +
19
+ +
20
+ +## Financial contributions
21
+ +
22
+ +We also welcome financial contributions in full transparency on our [open collective](https://opencollective.com/mongoose).
23
+ +Anyone can file an expense. If the expense makes sense for the development of the community, it will be "merged" in the ledger of our open collective by the core contributors and the person who filed the expense will be reimbursed.
24
+ +
25
+ +
26
+ +## Credits
27
+ +
28
+ +
29
+ +### Contributors
30
+ +
31
+ +Thank you to all the people who have already contributed to mongoose!
32
+ +<a href="graphs/contributors"><img src="https://opencollective.com/mongoose/contributors.svg?width=890" /></a>
33
+ +
34
+ +
35
+ +### Backers
36
+ +
37
+ +Thank you to all our backers! [[Become a backer](https://opencollective.com/mongoose#backer)]
38
+ +
39
+ +<a href="https://opencollective.com/mongoose#backers" target="_blank"><img src="https://opencollective.com/mongoose/backers.svg?width=890"></a>
40
+ +
41
+ +
42
+ +### Sponsors
43
+ +
44
+ +Thank you to all our sponsors! (please ask your company to also support this open source project by [becoming a sponsor](https://opencollective.com/mongoose#sponsor))
45
+ +
46
+ +<a href="https://opencollective.com/mongoose/sponsor/0/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/0/avatar.svg"></a>
47
+ +<a href="https://opencollective.com/mongoose/sponsor/1/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/1/avatar.svg"></a>
48
+ +<a href="https://opencollective.com/mongoose/sponsor/2/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/2/avatar.svg"></a>
49
+ +<a href="https://opencollective.com/mongoose/sponsor/3/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/3/avatar.svg"></a>
50
+ +<a href="https://opencollective.com/mongoose/sponsor/4/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/4/avatar.svg"></a>
51
+ +<a href="https://opencollective.com/mongoose/sponsor/5/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/5/avatar.svg"></a>
52
+ +<a href="https://opencollective.com/mongoose/sponsor/6/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/6/avatar.svg"></a>
53
+ +<a href="https://opencollective.com/mongoose/sponsor/7/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/7/avatar.svg"></a>
54
+ +<a href="https://opencollective.com/mongoose/sponsor/8/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/8/avatar.svg"></a>
55
+ +<a href="https://opencollective.com/mongoose/sponsor/9/website" target="_blank"><img src="https://opencollective.com/mongoose/sponsor/9/avatar.svg"></a>
56
+
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "mongoose",
3
3
  "description": "Mongoose MongoDB ODM",
4
- "version": "4.13.10",
4
+ "version": "4.13.11",
5
5
  "author": "Guillermo Rauch <guillermo@learnboost.com>",
6
6
  "keywords": [
7
7
  "mongodb",
@@ -77,6 +77,8 @@
77
77
  "install-browser": "npm install `node format_deps.js`",
78
78
  "lint": "eslint . --quiet",
79
79
  "nsp": "nsp check",
80
+ "release": "git push origin master --tags && npm publish",
81
+ "release-legacy": "git push origin 4.x --tags && npm publish --tag legacy",
80
82
  "test": "mocha test/*.test.js test/**/*.test.js",
81
83
  "test-cov": "istanbul cover --report text --report html _mocha test/*.test.js"
82
84
  },
package/release-items.md CHANGED
@@ -5,7 +5,7 @@
5
5
  3. update History.md using `git changelog` or similar. Add #<TICKET_NUMBER> as well as a link to the github user who fixed it if applicable.
6
6
  4. git commit -a -m 'release x.x.x'
7
7
  5. git tag x.x.x
8
- 6. git push origin BRANCH --tags && npm publish
8
+ 6. `npm run release`, or `npm run release-legacy` for 4.x
9
9
  7. update mongoosejs.com (see "updating the website" below)
10
10
  8. tweet changelog link from [@mongoosejs](https://twitter.com/mongoosejs)
11
11
  9. Announce on mongoosejsteam slack channel