Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 3 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,10 @@ jobs:
before_script:
- npm install -g mongodb-runner
- mongodb-runner start
script:
script:
- npm run lint
- npm test -- --maxWorkers=4
- npm run build
- npm run integration
after_script: ./node_modules/codecov/bin/codecov -f ./coverage/coverage-final.json && rm -rf ./coverage
# release on github latest branch
Expand All @@ -33,7 +34,7 @@ jobs:
-
before_script: skip
after_script: skip
script:
script:
- npm run release_docs
- npm run build
deploy:
Expand Down
37 changes: 27 additions & 10 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,23 +1,40 @@
# Parse-SDK-JS

## 2.2.0

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

## 2.1.0

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

## 2.0.2

- Fixes issue affecting unsubscribing from liveQueries (#640)
- Adds support for aggregate stages with identical names (#637)
- Adds ability to fetch an object with includes (#631)
- Adds support for $nor operator in queries (#634)
- Adds support for containedBy operator in queries (#633)
- Adds support for includeAll (#632)
- Fixes issue affecting unsubscribing from liveQueries ([#640](https://github.com/parse-community/parse-server/pull/640))
- Adds support for aggregate stages with identical names ([#637](https://github.com/parse-community/parse-server/pull/637))
- Adds ability to fetch an object with includes ([#631](https://github.com/parse-community/parse-server/pull/631))
- Adds support for $nor operator in queries ([#634](https://github.com/parse-community/parse-server/pull/634))
- Adds support for containedBy operator in queries ([#633](https://github.com/parse-community/parse-server/pull/633))
- Adds support for includeAll ([#632](https://github.com/parse-community/parse-server/pull/632))

## 2.0.1

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

## 2.0.0

- Parse.Promise has been replaced by native Promises
- Backbone style callbacks are removed
- Parse.Promise has been replaced by native Promises ([#620](https://github.com/parse-community/parse-server/pull/620))
- Backbone style callbacks are removed ([#620](https://github.com/parse-community/parse-server/pull/620))
3 changes: 1 addition & 2 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "parse",
"version": "2.1.0",
"version": "2.2.0",
"description": "The Parse JavaScript SDK",
"homepage": "https://www.parse.com",
"keywords": [
Expand Down Expand Up @@ -74,7 +74,6 @@
"test": "PARSE_BUILD=node jest",
"lint": "eslint --cache src/ integration/",
"lint:fix": "eslint --fix --cache src/ integration/",
"preintegration": "npm run build",
"watch": "PARSE_BUILD=${PARSE_BUILD:=node} gulp watch",
"integration": "TESTING=1 jasmine --config=jasmine.json",
"docs": "jsdoc -c ./jsdoc-conf.json ./src",
Expand Down