Skip to content

Commit 88ff4c2

Browse files
authored
⚡ Release v2.2.0 (#733)
1 parent 7da04e2 commit 88ff4c2

File tree

3 files changed

+31
-14
lines changed

3 files changed

+31
-14
lines changed

.travis.yml

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -22,9 +22,10 @@ jobs:
2222
before_script:
2323
- npm install -g mongodb-runner
2424
- mongodb-runner start
25-
script:
25+
script:
2626
- npm run lint
2727
- npm test -- --maxWorkers=4
28+
- npm run build
2829
- npm run integration
2930
after_script: ./node_modules/codecov/bin/codecov -f ./coverage/coverage-final.json && rm -rf ./coverage
3031
# release on github latest branch
@@ -33,7 +34,7 @@ jobs:
3334
-
3435
before_script: skip
3536
after_script: skip
36-
script:
37+
script:
3738
- npm run release_docs
3839
- npm run build
3940
deploy:

CHANGELOG.md

Lines changed: 27 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -1,23 +1,40 @@
11
# Parse-SDK-JS
22

3+
## 2.2.0
4+
5+
- Support for Local Datastore ([#612](https://github.com/parse-community/parse-server/pull/612))
6+
- LiveQuery override data on update ([#718](https://github.com/parse-community/parse-server/pull/718)) (Requires Parse-Server 3.1.3+)
7+
- Support setting user from JSON (hydrate) ([#730](https://github.com/parse-community/parse-server/pull/730))
8+
- Improve dot notation for updating nested objects ([#729](https://github.com/parse-community/parse-server/pull/729))
9+
- LiveQuery handle unset operation ([#714](https://github.com/parse-community/parse-server/pull/714)) (Requires Parse-Server 3.1.3+)
10+
- Add original object to LiveQuery events ([#712](https://github.com/parse-community/parse-server/pull/712)) (Requires Parse-Server 3.1.3+)
11+
- Add support for providing file upload progress. ([#373](https://github.com/parse-community/parse-server/pull/373)) (Browser Only)
12+
- Support clone with relation ([#382](https://github.com/parse-community/parse-server/pull/382))
13+
- Add batchSize to saveAll / destroyAll ([#701](https://github.com/parse-community/parse-server/pull/701))
14+
- Add save Method for Parse.Config ([#684](https://github.com/parse-community/parse-server/pull/684))
15+
- Allow specific keys to be reverted in unsaved objects ([#565](https://github.com/parse-community/parse-server/pull/565))
16+
- Handle undefined in Cloud Code ([#682](https://github.com/parse-community/parse-server/pull/682))
17+
- Validate if geopoint values is number ([#671](https://github.com/parse-community/parse-server/pull/671))
18+
- LiveQuery Support for Subclasses ([#662](https://github.com/parse-community/parse-server/pull/662))
19+
320
## 2.1.0
421

5-
- Parse.Error now inherits from Error
22+
- Parse.Error now inherits from Error ([#658](https://github.com/parse-community/parse-server/pull/658))
623

724
## 2.0.2
825

9-
- Fixes issue affecting unsubscribing from liveQueries (#640)
10-
- Adds support for aggregate stages with identical names (#637)
11-
- Adds ability to fetch an object with includes (#631)
12-
- Adds support for $nor operator in queries (#634)
13-
- Adds support for containedBy operator in queries (#633)
14-
- Adds support for includeAll (#632)
26+
- Fixes issue affecting unsubscribing from liveQueries ([#640](https://github.com/parse-community/parse-server/pull/640))
27+
- Adds support for aggregate stages with identical names ([#637](https://github.com/parse-community/parse-server/pull/637))
28+
- Adds ability to fetch an object with includes ([#631](https://github.com/parse-community/parse-server/pull/631))
29+
- Adds support for $nor operator in queries ([#634](https://github.com/parse-community/parse-server/pull/634))
30+
- Adds support for containedBy operator in queries ([#633](https://github.com/parse-community/parse-server/pull/633))
31+
- Adds support for includeAll ([#632](https://github.com/parse-community/parse-server/pull/632))
1532

1633
## 2.0.1
1734

18-
- Ensure we only read the job status id header if present.
35+
- Ensure we only read the job status id header if present. ([#623](https://github.com/parse-community/parse-server/pull/623))
1936

2037
## 2.0.0
2138

22-
- Parse.Promise has been replaced by native Promises
23-
- Backbone style callbacks are removed
39+
- Parse.Promise has been replaced by native Promises ([#620](https://github.com/parse-community/parse-server/pull/620))
40+
- Backbone style callbacks are removed ([#620](https://github.com/parse-community/parse-server/pull/620))

package.json

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse",
3-
"version": "2.1.0",
3+
"version": "2.2.0",
44
"description": "The Parse JavaScript SDK",
55
"homepage": "https://www.parse.com",
66
"keywords": [
@@ -74,7 +74,6 @@
7474
"test": "PARSE_BUILD=node jest",
7575
"lint": "eslint --cache src/ integration/",
7676
"lint:fix": "eslint --fix --cache src/ integration/",
77-
"preintegration": "npm run build",
7877
"watch": "PARSE_BUILD=${PARSE_BUILD:=node} gulp watch",
7978
"integration": "TESTING=1 jasmine --config=jasmine.json",
8079
"docs": "jsdoc -c ./jsdoc-conf.json ./src",

0 commit comments

Comments
 (0)