Skip to content

Commit c78bc1f

Browse files
committed
Merge remote-tracking branch 'parse/master' into back4app3.4.0
2 parents b4f37d1 + c5a1a98 commit c78bc1f

File tree

148 files changed

+12693
-8708
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

148 files changed

+12693
-8708
lines changed

.eslintignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
lib
22
coverage
3-
3+
out

.github/ISSUE_TEMPLATE.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,7 @@
22
**Please use this template. If you don't use this template, your issue may be closed without comment.**
33
We use GitHub Issues for bugs.
44
5-
If you have a non-bug question, ask on Stack Overflow or Server Fault:
6-
- https://stackoverflow.com/questions/tagged/parse.com
7-
- https://serverfault.com/tags/parse
5+
If you have a non-bug question, ask on [Parse Community's Discourse forum](https://community.parseplatform.org/c/parse-server)
86
97
If you have a vulnerability disclosure, please follow our policy available here https://github.com/parse-community/parse-server/blob/master/SECURITY.md
108
Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
---
2+
name: "🙋‍Getting Help"
3+
about: Join https://community.parseplatform.org
4+
5+
---

.github/ISSUE_TEMPLATE/---parse-server-3-0-0.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,8 @@ about: Report an issue while migrating to parse-server 3.0.0
77
<!---
88
** Use this template only if you have an issue migrating to parse-server 3.0.0 **
99
10+
If you have a question, ask on [Parse Community's Discourse forum](https://community.parseplatform.org/c/parse-server)
11+
1012
If you have a vulnerability disclosure, please follow our policy available here https://github.com/parse-community/parse-server/blob/master/SECURITY.md
1113
1214
You may also search through existing issues before opening a new one: https://github.com/parse-community/parse-server/issues?utf8=%E2%9C%93&q=is%3Aissue

.github/ISSUE_TEMPLATE/---push-notifications.md

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,7 @@ about: Issues with setting up or delivering push notifications
88
99
**We use GitHub Issues for reporting bugs with parse-server.**
1010
11-
If you have a *question*, you should join the gitter chat where a community of more than 200 parse users gather.
12-
13-
- https://gitter.im/ParsePlatform/Chat
11+
If you have a *question*, you should join the [Parse Community's Discourse forum](https://community.parseplatform.org/c/parse-server)
1412
1513
If you have a non-bug question, ask on Stack Overflow or Server Fault:
1614
- https://stackoverflow.com/questions/tagged/parse.com

.github/ISSUE_TEMPLATE/---report-an-issue.md

Lines changed: 1 addition & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,7 @@ about: Report an issue on parse-server
88
99
**We use GitHub Issues for reporting bugs with parse-server.**
1010
11-
If you have a *question*, you should join the gitter chat where a community of more than 200 parse users gather.
12-
13-
- https://gitter.im/ParsePlatform/Chat
14-
15-
If you have a non-bug question, ask on Stack Overflow or Server Fault:
16-
- https://stackoverflow.com/questions/tagged/parse.com
17-
- https://serverfault.com/tags/parse
11+
If you have a *question*, you should join the [Parse Community's Discourse forum](https://community.parseplatform.org/c/parse-server).
1812
1913
If you have a vulnerability disclosure, please follow our policy available here https://github.com/parse-community/parse-server/blob/master/SECURITY.md
2014

.github/stale.yml

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,9 +7,14 @@ exemptLabels:
77
- pinned
88
- security
99
- good first issue
10-
- up for grabs
10+
- up-for-grabs
11+
- bug
12+
- enhancement
13+
- help wanted
1114
# Label to use when marking an issue as stale
1215
staleLabel: wontfix
16+
# Limit to only `issues` not `pulls`
17+
only: issues
1318
# Comment to post when marking an issue as stale. Set to `false` to disable
1419
markComment: >
1520
This issue has been automatically marked as stale because it has not had

.nvmrc

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1,2 @@
1-
8.10
1+
10.14.2
2+

.nycrc

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,8 +4,7 @@
44
"text-summary"
55
],
66
"exclude": [
7-
"**/spec/**",
8-
"src/"
7+
"**/spec/**"
98
]
109
}
1110

.travis.yml

Lines changed: 7 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -18,24 +18,23 @@ branches:
1818
- /^greenkeeper/.*$/
1919
cache:
2020
directories:
21-
- node_modules
21+
- "$HOME/.npm"
2222
- "$HOME/.mongodb/versions"
2323

2424
# Test stage
2525
stage: test
2626
env:
2727
global:
2828
- COVERAGE_OPTION='./node_modules/.bin/nyc'
29-
- NODE_VERSION=8.11.2
3029
matrix:
31-
- MONGODB_VERSION=3.2.13
32-
- MONGODB_VERSION=3.4.4
30+
- MONGODB_VERSION=4.0.4
31+
- MONGODB_VERSION=3.6.9
3332
- PARSE_SERVER_TEST_DB=postgres
3433
- PARSE_SERVER_TEST_CACHE=redis
35-
- NODE_VERSION=stable
34+
- NODE_VERSION=11.4.0
3635
matrix:
3736
allow_failures:
38-
- env: NODE_VERSION=stable
37+
- env: NODE_VERSION=11.4.0
3938
before_install:
4039
- nvm install $NODE_VERSION
4140
- nvm use $NODE_VERSION
@@ -74,9 +73,9 @@ jobs:
7473
- provider: npm
7574
skip_cleanup: true
7675
email:
77-
secure: "YweTGc22uqFWpzbfiUa5ptBLRAy6tt6d9TZLwEkPtmnsWzN9dguGyKWmXiw0qL+848FWQ5PWzUgBn5XdigV9tF3rJY6RGs8i38WulNjwSoGuRZa3AChsQHAb1KenANcJybzhnwgEj9gRsrGZPEsyI2whfake/xLDtG91kHjpJANsd4gseOh6fdS4FIYCbyXvSbC7S0yZzIJkgSkMqJO7RJ8r0HYQ7srYIw31dM3ZXSmUYu+GaMDUUu3RLAGYoKaROxhDRnzkjdeLLiwZH8hQ/6CaqwqX54iJ6OS+MOQU3fi5ZXalA7RZvtC4RmrcCkaTf3i0f+5xejYIFgzXdYGMVm8DUc82tDw1s4b6Pb19bgi1xXOQ0IKzRmZuGxnvkRN61dnYdnpnnNuG97HXgVjiOigZXVLZkWazUdnf9zXqmkC+KxPfa4Ldqg0TMjQ9J14n6TXxRti8Tt0xMa1Uzho7VdsxdJy35Bghy398O6X8VdX6parfzEkX7c/JzcA3TIMJ9+S1dy3J4Tb2URB5367W6h7cDeXtGmwLTFu75Q1CNqRJkUGbSrX2NyMqG5tc8oaTM+OWvLxcbKPRy9T6qN7x2JmCHHaapf8/8VR9wCy2PwE5j+KWhmctEHqqOgrtG5gsjC0eCPJsposxZWyM7M6aUpXe3w+olBfKq9apUGStUSU="
76+
secure: $NPM_EMAIL
7877
api_key:
79-
secure: "QprkaqQ+WCvZQR4qIEs5iS6peMCbRd8Hgt0s6HfdmhavNXwDFY8Bkdf6zJwWHLiqs4pyClXDZ2f6QiOs7y9IvJZ+wOIbsf4N5V6s06zOxJ0NAOwhe0mgWS3Us0zgXIfmW4BpmGnU4ql/qGL+9vNfyQJ7wxEJxVK7hiYh9Epu49E2jmefDqTX+SNSrDCg4HkRcxerxYGnAJDCP50QaNlyLSciODD6wHaddrSYkdvmISLMnLHug61OkE4OBIOWXfYV+e31kDj+zgczAfVQgekDKtaimCQclHFrmaEPl0KIm6wsDQAw5HWkepA/WZfv4SbCrDaKJDZw+LBI7dR0ezmiOH/zmWWrRW7D4wjkDGiumWjA8etuf8I4GRyC/d1RS+hnlvPr0Bu+WljuVxLoK3nhZOdiK5t4QlVDoGankkRjLylwFQgo8tzu5N0dc26z3ClowTwcKsjStmFr53gjCD7l3qoFjyPot1JlW3LPhG9Nch7rK33/7ONqVai3zxb1xB9ynd8TSzKi4/66LeYEDcGVM5A9Vmkp+egCnOhkOAXdI8O4jid98NANir+U4xmUYZ2PAMNmSeHlpSpwH2pC1/BHpDKA9RZEuEdr3sgmtuXXwwOCp+xvuVwxZZ6+gVEjG4nGTqSNxUIq1fzjGih8ElJtbM1Uhh2dVE9uxW7EC/oCuuk="
78+
secure: $NPM_TOKEN
8079
on:
8180
tags: true
8281
all_branches: true

0 commit comments

Comments
 (0)