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
11 changes: 11 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,16 @@
# Parse-SDK-JS

## 2.3.0

- LocalDatastore fixes for React-Native ([#753](https://github.com/parse-community/Parse-SDK-JS/pull/753))
- LocalDatastore update from Server ([#734](https://github.com/parse-community/Parse-SDK-JS/pull/734))
- Support for Anonymous Users ([#750](https://github.com/parse-community/Parse-SDK-JS/pull/750))
- File upload via uri ([#749](https://github.com/parse-community/Parse-SDK-JS/pull/749))
- Add support to secured endpoints throught Authorization header ([#358](https://github.com/parse-community/Parse-SDK-JS/pull/358))
- Remove authResponse in FacebookUtils ([#728](https://github.com/parse-community/Parse-SDK-JS/pull/728))
- UserSubclass.logIn and UserSubclass.signUp returns subclass ([#756](https://github.com/parse-community/Parse-SDK-JS/pull/756))
- Subscribe to multiple LiveQuery subscriptions ([#758](https://github.com/parse-community/Parse-SDK-JS/pull/758))

## 2.2.1

- Addresses issue with babel runtime regenerator ([#740](https://github.com/parse-community/Parse-SDK-JS/pull/740))
Expand Down
21 changes: 17 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,9 +3,10 @@
[![Build Status][build-status-svg]][build-status-link]
[![Test Coverage][coverage-status-svg]][coverage-status-link]
[![Npm Version][npm-svg]][npm-link]
[![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/)
[![License][license-svg]][license-link]
[![CDNJS version][cdn-svg]][cdn-link]
[![Join The Conversation][discourse-svg]][discourse-link]
[![Greenkeeper badge][greenkeeper-svg]][greenkeeper-link]
[![License][license-svg]][license-link]

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

For TypeScript applications, install `'@types/parse'`:
```
$ npm install @types/parse
```

Types are updated manually after every release. If a definition doesn't exist, please submit a pull request to [@types/parse][types-parse]

## Upgrading to Parse SDK 2.0.0

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