Skip to content

Commit 09b7b19

Browse files
committed
⚡️ Release 3.2.0
1 parent a1995ba commit 09b7b19

File tree

3 files changed

+22
-4
lines changed

3 files changed

+22
-4
lines changed

CHANGELOG.md

Lines changed: 20 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,26 @@
11
# Parse-SDK-JS
22

33
### master
4-
[Full Changelog](https://github.com/parse-community/Parse-SDK-JS/compare/3.1.0...master)
5-
- Add className argument to Parse Object subclass constructor ([#1315](https://github.com/parse-community/Parse-SDK-JS/pull/1315))
4+
[Full Changelog](https://github.com/parse-community/Parse-SDK-JS/compare/3.2.0...master)
5+
6+
## 3.2.0
7+
[Full Changelog](https://github.com/parse-community/Parse-SDK-JS/compare/3.1.0...3.2.0)
8+
9+
**Breaking Changes**
10+
- Remove deletion of Anonymous User on logout ([#1324](https://github.com/parse-community/Parse-SDK-JS/pull/1324))
11+
See https://community.parseplatform.org/t/anonymous-user-destroyed-on-logout/1425
12+
13+
**Improvements**
14+
- Allow multiple classNames for `Parse.Object.registerSubclass` ([#1315](https://github.com/parse-community/Parse-SDK-JS/pull/1315))
15+
```
16+
const classNames = ['ClassOne', 'ClassTwo', 'ClassThree'];
17+
for (const className of classNames) {
18+
Parse.Object.registerSubclass(className, CustomClass);
19+
}
20+
```
21+
22+
**Fixes**
23+
- Fixes build for WeChat WeApp, To reduce package size, see [issue/#1331](https://github.com/parse-community/Parse-SDK-JS/issues/1331)
624

725
## 3.1.0
826
[Full Changelog](https://github.com/parse-community/Parse-SDK-JS/compare/3.0.0...3.1.0)

package-lock.json

Lines changed: 1 addition & 1 deletion
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse",
3-
"version": "3.1.0",
3+
"version": "3.2.0",
44
"description": "The Parse JavaScript SDK",
55
"homepage": "https://parseplatform.org/",
66
"keywords": [

0 commit comments

Comments
 (0)