Skip to content

⚡ Release v2.2.0 #733

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
Feb 13, 2019
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