Skip to content

Commit 582635e

Browse files
authored
⚡️ Release v2.3.2 (#787)
* ⚡️ Release v2.3.2 * fix flaky test * speed up tests first attempt
1 parent 72f02ec commit 582635e

File tree

4 files changed

+16
-10
lines changed

4 files changed

+16
-10
lines changed

CHANGELOG.md

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,14 @@
11
# Parse-SDK-JS
22

33
### master
4-
[Full Changelog](https://github.com/parse-community/Parse-SDK-JS/compare/2.3.1...master)
4+
[Full Changelog](https://github.com/parse-community/Parse-SDK-JS/compare/2.3.2...master)
5+
6+
## 2.3.2
7+
[Full Changelog](https://github.com/parse-community/Parse-SDK-JS/compare/2.3.1...2.3.2)
8+
9+
- Support `getData` from Parse.File ([#780](https://github.com/parse-community/Parse-SDK-JS/pull/780))
10+
- Parse.FacebookUtils `logIn` and `link` support MasterKey and SessionToken options ([#779](https://github.com/parse-community/Parse-SDK-JS/pull/779))
11+
- Remove node modules `http` and `https` from React-Native build ([#776](https://github.com/parse-community/Parse-SDK-JS/pull/776))
512

613
## 2.3.1
714
[Full Changelog](https://github.com/parse-community/Parse-SDK-JS/compare/2.3.0...2.3.1)

integration/test/clear.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const Parse = require('parse/node');
1+
const Parse = require('../../node');
22

33
module.exports = function() {
44
return Parse._ajax('GET', 'http://localhost:1337/clear', '');

package-lock.json

Lines changed: 5 additions & 5 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse",
3-
"version": "2.3.1",
3+
"version": "2.3.2",
44
"description": "The Parse JavaScript SDK",
55
"homepage": "https://parseplatform.org/",
66
"keywords": [
@@ -77,8 +77,7 @@
7777
"watch": "PARSE_BUILD=${PARSE_BUILD:=node} gulp watch",
7878
"integration": "TESTING=1 jasmine --config=jasmine.json",
7979
"docs": "jsdoc -c ./jsdoc-conf.json ./src",
80-
"release_docs": "./release_docs.sh",
81-
"prepare": "npm run build"
80+
"release_docs": "./release_docs.sh"
8281
},
8382
"jest": {
8483
"automock": true,

0 commit comments

Comments
 (0)