Skip to content

Commit 43c8f91

Browse files
authored
⚡️ Release v2.3.0 (#757)
* ⚡️ Release v2.3.0 Closes: #687, #670, #723, #669 * Pin packages * (Jest) Fix deprecated setupTestFrameworkScriptFile * (Codecov) Fix coverage folders * Update Parse.Cloud.define docs * Add discource badge to Readme Pending #753 * add user subclass fix * add typescript to readme * typo * add discourse to js sdk * remove url module #758 (review) * Update CHANGELOG.md
1 parent b6bc90c commit 43c8f91

7 files changed

+3431
-6015
lines changed

CHANGELOG.md

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,16 @@
11
# Parse-SDK-JS
22

3+
## 2.3.0
4+
5+
- LocalDatastore fixes for React-Native ([#753](https://github.com/parse-community/Parse-SDK-JS/pull/753))
6+
- LocalDatastore update from Server ([#734](https://github.com/parse-community/Parse-SDK-JS/pull/734))
7+
- Support for Anonymous Users ([#750](https://github.com/parse-community/Parse-SDK-JS/pull/750))
8+
- File upload via uri ([#749](https://github.com/parse-community/Parse-SDK-JS/pull/749))
9+
- Add support to secured endpoints throught Authorization header ([#358](https://github.com/parse-community/Parse-SDK-JS/pull/358))
10+
- Remove authResponse in FacebookUtils ([#728](https://github.com/parse-community/Parse-SDK-JS/pull/728))
11+
- UserSubclass.logIn and UserSubclass.signUp returns subclass ([#756](https://github.com/parse-community/Parse-SDK-JS/pull/756))
12+
- Subscribe to multiple LiveQuery subscriptions ([#758](https://github.com/parse-community/Parse-SDK-JS/pull/758))
13+
314
## 2.2.1
415

516
- Addresses issue with babel runtime regenerator ([#740](https://github.com/parse-community/Parse-SDK-JS/pull/740))

README.md

Lines changed: 17 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,10 @@
33
[![Build Status][build-status-svg]][build-status-link]
44
[![Test Coverage][coverage-status-svg]][coverage-status-link]
55
[![Npm Version][npm-svg]][npm-link]
6-
[![CDNJS version](https://img.shields.io/cdnjs/v/parse.svg)](https://cdnjs.com/libraries/parse) [![Greenkeeper badge](https://badges.greenkeeper.io/parse-community/Parse-SDK-JS.svg)](https://greenkeeper.io/)
7-
[![License][license-svg]][license-link]
6+
[![CDNJS version][cdn-svg]][cdn-link]
7+
[![Join The Conversation][discourse-svg]][discourse-link]
88
[![Greenkeeper badge][greenkeeper-svg]][greenkeeper-link]
9+
[![License][license-svg]][license-link]
910

1011
[![Backers on Open Collective](https://opencollective.com/parse-server/backers/badge.svg)](#backers)
1112
[![Sponsors on Open Collective](https://opencollective.com/parse-server/sponsors/badge.svg)](#sponsors)
@@ -45,6 +46,13 @@ const AsyncStorage = require('react-native').AsyncStorage;
4546
Parse.setAsyncStorage(AsyncStorage);
4647
```
4748

49+
For TypeScript applications, install `'@types/parse'`:
50+
```
51+
$ npm install @types/parse
52+
```
53+
54+
Types are updated manually after every release. If a definition doesn't exist, please submit a pull request to [@types/parse][types-parse]
55+
4856
## Upgrading to Parse SDK 2.0.0
4957

5058
With Parse SDK 2.0.0, gone are the backbone style callbacks and Parse.Promises.
@@ -70,7 +78,12 @@ As of April 5, 2017, Parse, LLC has transferred this code to the parse-community
7078
[coverage-status-link]: http://codecov.io/github/parse-community/Parse-SDK-JS?branch=master
7179
[npm-svg]: https://badge.fury.io/js/parse.svg
7280
[npm-link]: https://npmjs.org/parse
81+
[cdn-svg]: https://img.shields.io/cdnjs/v/parse.svg
82+
[cdn-link]: https://cdnjs.com/libraries/parse
83+
[discourse-svg]: https://img.shields.io/discourse/https/community.parseplatform.org/topics.svg
84+
[discourse-link]: https://community.parseplatform.org/c/sdk/js
7385
[license-svg]: https://img.shields.io/badge/license-BSD-lightgrey.svg
7486
[license-link]: https://github.com/parse-community/Parse-SDK-JS/blob/master/LICENSE
75-
[greenkeeper-svg]: https://img.shields.io/badge/license-BSD-lightgrey.svg
76-
[greenkeeper-link]: https://badges.greenkeeper.io/parse-community/Parse-SDK-JS.svg
87+
[greenkeeper-svg]: https://badges.greenkeeper.io/parse-community/Parse-SDK-JS.svg
88+
[greenkeeper-link]: https://greenkeeper.io/
89+
[types-parse]: https://github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/parse

0 commit comments

Comments
 (0)