Skip to content

Commit c12a670

Browse files
committed
Update CHANGELOG for 0.24.1
1 parent 2b04a75 commit c12a670

File tree

4 files changed

+39
-4
lines changed

4 files changed

+39
-4
lines changed

CHANGELOG.md

Lines changed: 35 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,38 @@
1+
## 0.24.1 (2017-05-23)
2+
3+
### Incompatible Changes
4+
5+
Separate react-native related logic from main code (#160)
6+
7+
Skygear has special integration with React Native to leverage the
8+
extended capability of the platform. Instead of just importing the normal
9+
skygear, you should do this
10+
11+
```js
12+
import skygear from ‘skygear/react-native’
13+
```
14+
15+
### Features
16+
17+
- Using lerna to make repo ready for multiple-packages (#192)
18+
- Support plugin only request during plugin initialization (#189)
19+
- Make S3 signer respect url prefix (#214)
20+
- Read `.env` as in skygear-server (#179)
21+
- Allow config of pg pool size (#201)
22+
- Separate react-native related logic from main code
23+
24+
### Bug Fixes
25+
26+
- Fix unable to use SkygearResponse returned from handler
27+
28+
### Other Notes
29+
30+
- Fix formating for lint
31+
- Query doc updated
32+
- Refactor the usage of closure and promise
33+
- Upgrade to loadash v4
34+
- Add trailing slash to end-point if missing
35+
136
## 0.23.0 (2017-04-20)
237

338
### Features

lerna.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,5 +3,5 @@
33
"packages": [
44
"packages/*"
55
],
6-
"version": "0.0.0"
6+
"version": "0.24.1"
77
}

packages/skygear-core/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "skygear-core",
3-
"version": "0.23.0",
3+
"version": "0.24.1",
44
"description": "Core of Skygear JS SDK",
55
"homepage": "https://github.com/SkygearIO/skygear-SDK-JS",
66
"repository": {

packages/skygear/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "skygear",
3-
"version": "0.23.0",
3+
"version": "0.24.1",
44
"description": "JS SDK of Skygear services",
55
"homepage": "https://github.com/SkygearIO/skygear-SDK-JS",
66
"repository": {
@@ -26,7 +26,7 @@
2626
},
2727
"license": "Apache-2.0",
2828
"dependencies": {
29-
"skygear-core": "^0.23.0"
29+
"skygear-core": "^0.24.1"
3030
},
3131
"bugs": {
3232
"url": "https://github.com/SkygearIO/skygear-SDK-JS/issues"

0 commit comments

Comments
 (0)