forked from apache/superset
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
41 changed files
with
1,411 additions
and
409 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -115,7 +115,7 @@ source set_release_env.sh 1.5.1rc1 [email protected] | |
|
||
The script will output the exported variables. Here's example for 1.5.1rc1: | ||
|
||
``` | ||
```env | ||
------------------------------- | ||
Set Release env variables | ||
SUPERSET_VERSION=1.5.1 | ||
|
@@ -264,13 +264,13 @@ python changelog.py --previous_version 1.5.0 --current_version ${SUPERSET_GITHUB | |
|
||
Finally, bump the version number on `superset-frontend/package.json` (replace with whichever version is being released excluding the RC version): | ||
|
||
``` | ||
```json | ||
"version": "0.38.0" | ||
``` | ||
|
||
Commit the change with the version number, then git tag the version with the release candidate and push to the branch: | ||
|
||
``` | ||
```bash | ||
# add changed files and commit | ||
git add ... | ||
git commit ... | ||
|
@@ -366,7 +366,7 @@ The script will interactively ask for extra information needed to fill out the e | |
voting description, it will generate a passing, non passing or non conclusive email. | ||
Here's an example: | ||
|
||
``` | ||
```text | ||
A List of people with +1 binding vote (ex: Max,Grace,Krist): Daniel,Alan,Max,Grace | ||
A List of people with +1 non binding vote (ex: Ville): Ville | ||
A List of people with -1 vote (ex: John): | ||
|
@@ -516,16 +516,22 @@ reference), and whether to force the `latest` Docker tag on the | |
generated images. | ||
|
||
### Npm Release | ||
|
||
You might want to publish the latest @superset-ui release to npm | ||
|
||
```bash | ||
cd superset/superset-frontend | ||
``` | ||
|
||
An automated GitHub action will run and generate a new tag, which will contain a version number provided as a parameter. | ||
|
||
```bash | ||
export GH_TOKEN={GITHUB_TOKEN} | ||
npx lerna version {VERSION} --conventional-commits --create-release github --no-private --yes --message {COMMIT_MESSAGE} | ||
``` | ||
|
||
This action will publish the specified version to npm registry. | ||
|
||
```bash | ||
npx lerna publish from-package --yes | ||
``` |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.