Skip to content

Commit 8d87e59

Browse files
authored
build: release
2 parents 6b863e3 + bf74a71 commit 8d87e59

File tree

6 files changed

+81
-59
lines changed

6 files changed

+81
-59
lines changed

.github/workflows/release-automated.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ jobs:
1313
persist-credentials: false
1414
- uses: actions/setup-node@v2
1515
with:
16-
node-version: 12
16+
node-version: 14
1717
registry-url: https://registry.npmjs.org/
1818
- name: Cache Node.js modules
1919
uses: actions/cache@v2

changelogs/CHANGELOG_alpha.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [4.1.2-alpha.3](https://github.com/ParsePlatform/parse-dashboard/compare/4.1.2-alpha.2...4.1.2-alpha.3) (2022-06-04)
2+
3+
4+
### Bug Fixes
5+
6+
* security upgrade semver-regex from 3.1.3 to 3.1.4 ([#2154](https://github.com/ParsePlatform/parse-dashboard/issues/2154)) ([4f9090a](https://github.com/ParsePlatform/parse-dashboard/commit/4f9090ad22460913f7987964ee54f26d348ca254))
7+
18
## [4.1.2-alpha.2](https://github.com/ParsePlatform/parse-dashboard/compare/4.1.2-alpha.1...4.1.2-alpha.2) (2022-05-30)
29

310

changelogs/CHANGELOG_beta.md

+7
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,10 @@
1+
## [4.1.3-beta.1](https://github.com/ParsePlatform/parse-dashboard/compare/4.1.2...4.1.3-beta.1) (2022-06-18)
2+
3+
4+
### Bug Fixes
5+
6+
* security upgrade semver-regex from 3.1.3 to 3.1.4 ([#2154](https://github.com/ParsePlatform/parse-dashboard/issues/2154)) ([4f9090a](https://github.com/ParsePlatform/parse-dashboard/commit/4f9090ad22460913f7987964ee54f26d348ca254))
7+
18
## [4.1.2-beta.1](https://github.com/ParsePlatform/parse-dashboard/compare/4.1.1...4.1.2-beta.1) (2022-06-01)
29

310

package-lock.json

+50-41
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+11-11
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "parse-dashboard",
3-
"version": "4.1.2",
3+
"version": "4.1.3-beta.1",
44
"repository": {
55
"type": "git",
66
"url": "https://github.com/ParsePlatform/parse-dashboard"
@@ -35,27 +35,27 @@
3535
"LICENSE"
3636
],
3737
"dependencies": {
38-
"@babel/runtime": "7.17.9",
38+
"@babel/runtime": "7.18.3",
3939
"bcryptjs": "2.3.0",
4040
"body-parser": "1.20.0",
41-
"commander": "9.2.0",
41+
"commander": "9.3.0",
4242
"connect-flash": "0.1.1",
4343
"cookie-session": "2.0.0",
4444
"copy-to-clipboard": "3.3.1",
45-
"core-js": "3.22.4",
45+
"core-js": "3.22.7",
4646
"csurf": "1.11.0",
4747
"express": "4.18.1",
48-
"graphiql": "1.8.8",
49-
"graphql": "16.4.0",
48+
"graphiql": "1.8.9",
49+
"graphql": "16.5.0",
5050
"history": "4.10.1",
51-
"immutable": "4.0.0",
51+
"immutable": "4.1.0",
5252
"immutable-devtools": "0.1.5",
5353
"inquirer": "8.2.4",
5454
"js-beautify": "1.14.2",
55-
"otpauth": "7.1.2",
55+
"otpauth": "7.1.3",
5656
"package-json": "7.0.0",
5757
"parse": "3.4.2",
58-
"passport": "0.5.2",
58+
"passport": "0.6.0",
5959
"passport-local": "1.0.0",
6060
"prismjs": "1.28.0",
6161
"prop-types": "15.8.1",
@@ -68,12 +68,12 @@
6868
"react-helmet": "6.1.0",
6969
"react-json-view": "1.21.3",
7070
"react-popper-tooltip": "4.3.1",
71-
"react-redux": "8.0.1",
71+
"react-redux": "8.0.2",
7272
"react-router": "5.2.1",
7373
"react-router-dom": "5.3.0",
7474
"regenerator-runtime": "0.13.9",
7575
"semver": "7.3.7",
76-
"typescript": "4.6.4"
76+
"typescript": "4.7.2"
7777
},
7878
"devDependencies": {
7979
"@actions/core": "1.2.6",

release.config.js

+5-6
Original file line numberDiff line numberDiff line change
@@ -83,21 +83,20 @@ async function config() {
8383
['@semantic-release/git', {
8484
assets: [changelogFile, 'package.json', 'package-lock.json', 'npm-shrinkwrap.json'],
8585
}],
86+
['@semantic-release/github', {
87+
successComment: getReleaseComment(),
88+
labels: ['type:ci'],
89+
releasedLabels: ['state:released<%= nextRelease.channel ? `-${nextRelease.channel}` : "" %>']
90+
}],
8691
[
8792
'@saithodev/semantic-release-backmerge',
8893
{
8994
'branches': [
9095
{ from: 'beta', to: 'alpha' },
9196
{ from: 'release', to: 'beta' },
92-
{ from: 'release', to: 'alpha' },
9397
]
9498
}
9599
],
96-
['@semantic-release/github', {
97-
successComment: getReleaseComment(),
98-
labels: ['type:ci'],
99-
releasedLabels: ['state:released<%= nextRelease.channel ? `-${nextRelease.channel}` : "" %>']
100-
}],
101100
],
102101
};
103102

0 commit comments

Comments
 (0)