File tree Expand file tree Collapse file tree 5 files changed +58
-20
lines changed Expand file tree Collapse file tree 5 files changed +58
-20
lines changed Original file line number Diff line number Diff line change 1
1
name : docs
2
2
on :
3
- push :
4
- branches :
5
- - master
6
- tags :
7
- - ' *'
3
+ release :
4
+ types : [published]
5
+
8
6
jobs :
9
7
build :
10
8
runs-on : ubuntu-18.04
Original file line number Diff line number Diff line change
1
+ name : release
2
+
3
+ on :
4
+ release :
5
+ types : [published]
6
+
7
+ jobs :
8
+ publish-npm :
9
+ runs-on : ubuntu-18.04
10
+ steps :
11
+ - uses : actions/checkout@v2
12
+ - uses : actions/setup-node@v1
13
+ with :
14
+ node-version : 12
15
+ registry-url : https://registry.npmjs.org/
16
+ - name : Cache Node.js modules
17
+ uses : actions/cache@v2
18
+ with :
19
+ path : ~/.npm
20
+ key : ${{ runner.os }}-node-${{ hashFiles('**/package-lock.json') }}
21
+ restore-keys : |
22
+ ${{ runner.os }}-node-
23
+ - run : npm ci
24
+ - run : npm publish
25
+ env :
26
+ NODE_AUTH_TOKEN : ${{secrets.NPM_TOKEN}}
Original file line number Diff line number Diff line change 1
1
# Parse-SDK-JS
2
2
3
3
### master
4
- [ Full Changelog] ( https://github.com/parse-community/Parse-SDK-JS/compare/2.18.0...master )
4
+ [ Full Changelog] ( https://github.com/parse-community/Parse-SDK-JS/compare/2.19.0...master )
5
+
6
+ ## 2.19.0
7
+ [ Full Changelog] ( https://github.com/parse-community/Parse-SDK-JS/compare/2.18.0...2.19.0 )
8
+
9
+ ** Features**
10
+ - New error codes (210 and 211) for MFA ([ #1268 ] ( https://github.com/parse-community/Parse-SDK-JS/pull/1268 ) )
11
+
12
+ ** Improvements**
13
+ - Parse.File.destroy error message ([ #1257 ] ( https://github.com/parse-community/Parse-SDK-JS/pull/1257 ) )
14
+
15
+ ** Fixes**
16
+ - Remove unnecessary object reference and comment from AddUniqueOp ([ #1253 ] ( https://github.com/parse-community/Parse-SDK-JS/pull/1253 ) )
17
+ - Internal Referencing for Increment Dot Notation ([ #1255 ] ( https://github.com/parse-community/Parse-SDK-JS/pull/1255 ) )
18
+ - Saving for Increment Dot Notation ([ #1219 ] ( https://github.com/parse-community/Parse-SDK-JS/pull/1219 ) )
5
19
6
20
## 2.18.0
7
21
[ Full Changelog] ( https://github.com/parse-community/Parse-SDK-JS/compare/2.17.0...2.18.0 )
Original file line number Diff line number Diff line change 1
1
{
2
2
"name" : " parse" ,
3
- "version" : " 2.18 .0" ,
3
+ "version" : " 2.19 .0" ,
4
4
"description" : " The Parse JavaScript SDK" ,
5
5
"homepage" : " https://parseplatform.org/" ,
6
6
"keywords" : [
You can’t perform that action at this time.
0 commit comments