Skip to content

Commit e5b647f

Browse files
committed
⚡️ Release 2.19.0
1 parent 50514f0 commit e5b647f

File tree

5 files changed

+58
-20
lines changed

5 files changed

+58
-20
lines changed

.github/workflows/pages.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,10 +1,8 @@
11
name: docs
22
on:
3-
push:
4-
branches:
5-
- master
6-
tags:
7-
- '*'
3+
release:
4+
types: [published]
5+
86
jobs:
97
build:
108
runs-on: ubuntu-18.04

.github/workflows/release.yml

Lines changed: 26 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,26 @@
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}}

CHANGELOG.md

Lines changed: 15 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,21 @@
11
# Parse-SDK-JS
22

33
### 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))
519

620
## 2.18.0
721
[Full Changelog](https://github.com/parse-community/Parse-SDK-JS/compare/2.17.0...2.18.0)

package-lock.json

Lines changed: 13 additions & 13 deletions
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": "2.18.0",
3+
"version": "2.19.0",
44
"description": "The Parse JavaScript SDK",
55
"homepage": "https://parseplatform.org/",
66
"keywords": [

0 commit comments

Comments
 (0)