Skip to content

Commit 50e58d2

Browse files
committed
chore(release): v3.14.0
1 parent 8d798d3 commit 50e58d2

File tree

5 files changed

+27
-4
lines changed

5 files changed

+27
-4
lines changed

bower.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "leancloud-storage",
3-
"version": "3.13.2",
3+
"version": "3.14.0",
44
"homepage": "https://github.com/leancloud/javascript-sdk",
55
"authors": ["LeanCloud <[email protected]>"],
66
"description": "LeanCloud JavaScript SDK",

changelog.md

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,26 @@
1+
# 3.14.0 (2019-06-30)
2+
3+
### Features
4+
5+
- 增加了一组序列化与反序列化方法 `AV.parse``AV.stringify`
6+
- 排行榜增加了 `AV.Leaderboard#count` 方法用于获取参与排行的用户总数。
7+
- 增加了手动启用、停用调试模式的开关:
8+
9+
```js
10+
AV.debug.enable();
11+
AV.debug.disable();
12+
```
13+
14+
原有在浏览器中使用 localStorage,在 Node.js 中使用环境变量启用调试模式的方式仍然可用。
15+
16+
- 扩展了初始化时的 serverURLs 参数,现在允许指定 LiveQuery 服务的 server。
17+
18+
### Bug fixes
19+
20+
- 修正了 LiveQuery 的默认 server。
21+
- `AV.Query#get` 方法传入 falsy objectId 时现在有了更准确与一致的异常信息。
22+
- 修复了多处 TypeScript 定义问题。
23+
124
## 3.13.2 (2019-05-14)
225

326
### Bug fixes

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": "leancloud-storage",
3-
"version": "3.13.2",
3+
"version": "3.14.0",
44
"main": "./dist/node/index.js",
55
"description": "LeanCloud JavaScript SDK.",
66
"repository": {

src/version.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
module.exports = '3.13.2';
1+
module.exports = '3.14.0';

0 commit comments

Comments
 (0)