Skip to content

Commit d4eab0e

Browse files
authoredMar 4, 2025··
ci: Remove beta branch (#9626)
1 parent 9c2d993 commit d4eab0e

File tree

3 files changed

+9
-23
lines changed

3 files changed

+9
-23
lines changed
 

‎.releaserc.js

+8-7
Original file line numberDiff line numberDiff line change
@@ -45,10 +45,10 @@ async function config() {
4545
branches: [
4646
'release',
4747
{ name: 'alpha', prerelease: true },
48-
{ name: 'beta', prerelease: true },
48+
// { name: 'beta', prerelease: true },
4949
'next-major',
50-
// Long-Term-Support branch of previous major version
51-
'release-6.x.x',
50+
// Long-Term-Support branch
51+
'release-8.x.x',
5252
],
5353
dryRun: false,
5454
debug: true,
@@ -62,13 +62,13 @@ async function config() {
6262
{ scope: 'no-release', release: false },
6363
],
6464
parserOpts: {
65-
noteKeywords: [ 'BREAKING CHANGE', 'BREAKING CHANGES', 'BREAKING' ],
65+
noteKeywords: ['BREAKING CHANGE'],
6666
},
6767
}],
6868
['@semantic-release/release-notes-generator', {
6969
preset: 'angular',
7070
parserOpts: {
71-
noteKeywords: ['BREAKING CHANGE', 'BREAKING CHANGES', 'BREAKING']
71+
noteKeywords: ['BREAKING CHANGE']
7272
},
7373
writerOpts: {
7474
commitsSort: ['subject', 'scope'],
@@ -97,8 +97,9 @@ async function config() {
9797
"@saithodev/semantic-release-backmerge",
9898
{
9999
"backmergeBranches": [
100-
{ from: "beta", to: "alpha" },
101-
{ from: "release", to: "beta" },
100+
// { from: 'beta', to: 'alpha' },
101+
// { from: 'release', to: 'beta' },
102+
{ from: 'release', to: 'alpha' },
102103
]
103104
}
104105
],

‎CHANGELOG.md

-13
Original file line numberDiff line numberDiff line change
@@ -15,19 +15,6 @@ Details:
1515
- Purpose: official release
1616
- Suitable environment: production
1717

18-
## ⚠️ [Beta Releases][log_beta]
19-
20-
> ### “Please try out, we’d love your feedback!”
21-
22-
These are releases that are pretty stable, but may have still some bugs to be fixed before official release.
23-
24-
Details:
25-
- Stability: *pretty stable*
26-
- NPM channel: `@beta`
27-
- Branch: [beta][branch_beta]
28-
- Purpose: feature maturation
29-
- Suitable environment: development
30-
3118
## 🔥 [Alpha Releases][log_alpha]
3219

3320
> ### “If you are curious to see what's next!”

‎README.md

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,6 @@
33
---
44

55
[![Build Status](https://github.com/parse-community/parse-server/actions/workflows/ci.yml/badge.svg?branch=alpha)](https://github.com/parse-community/parse-server/actions/workflows/ci.yml?query=workflow%3Aci+branch%3Aalpha)
6-
[![Build Status](https://github.com/parse-community/parse-server/actions/workflows/ci.yml/badge.svg?branch=beta)](https://github.com/parse-community/parse-server/actions/workflows/ci.yml?query=workflow%3Aci+branch%3Abeta)
76
[![Build Status](https://github.com/parse-community/parse-server/actions/workflows/ci.yml/badge.svg?branch=release)](https://github.com/parse-community/parse-server/actions/workflows/ci.yml?query=workflow%3Aci+branch%3Arelease)
87
[![Snyk Badge](https://snyk.io/test/github/parse-community/parse-server/badge.svg)](https://snyk.io/test/github/parse-community/parse-server)
98
[![Coverage](https://codecov.io/github/parse-community/parse-server/branch/alpha/graph/badge.svg)](https://app.codecov.io/github/parse-community/parse-server/tree/alpha)
@@ -14,7 +13,6 @@
1413
[![Postgres Version](https://img.shields.io/badge/postgresql-13,_14,_15,_16,_17-green.svg?logo=postgresql&style=flat)](https://www.postgresql.org)
1514

1615
[![npm latest version](https://img.shields.io/npm/v/parse-server/latest.svg)](https://www.npmjs.com/package/parse-server)
17-
[![npm beta version](https://img.shields.io/npm/v/parse-server/beta.svg)](https://www.npmjs.com/package/parse-server)
1816
[![npm alpha version](https://img.shields.io/npm/v/parse-server/alpha.svg)](https://www.npmjs.com/package/parse-server)
1917

2018
[![Backers on Open Collective](https://opencollective.com/parse-server/backers/badge.svg)][open-collective-link]
@@ -100,7 +98,7 @@ A big *thank you* 🙏 to our [sponsors](#sponsors) and [backers](#backers) who
10098

10199
Parse Server is available in different flavors on different branches:
102100

103-
- The main branches are [release][log_release], [beta][log_beta] and [alpha][log_alpha]. See the [changelog overview](CHANGELOG.md) for details.
101+
- The main branches are [release][log_release] and [alpha][log_alpha]. See the [changelog overview](CHANGELOG.md) for details.
104102
- The long-term-support (LTS) branches are named `release-<version>.x.x`, for example `release-5.x.x`. LTS branches do not have pre-release branches.
105103

106104
## Long Term Support

0 commit comments

Comments
 (0)
Please sign in to comment.