README.md 7.8 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
<!--
Licensed to the Apache Software Foundation (ASF) under one
or more contributor license agreements.  See the NOTICE file
distributed with this work for additional information
regarding copyright ownership.  The ASF licenses this file
to you under the Apache License, Version 2.0 (the
"License"); you may not use this file except in compliance
with the License.  You may obtain a copy of the License at

  http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing,
software distributed under the License is distributed on an
"AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
KIND, either express or implied.  See the License for the
specific language governing permissions and limitations
under the License.
-->
A
Alek Storm 已提交
19

20
# Apache Releases
A
Alek Storm 已提交
21

22 23
You'll probably want to run these commands manually and understand what
they do prior to doing so.
A
Alek Storm 已提交
24

25 26 27 28 29
For coordinating on releases, on more operational topics that require more
synchronous communications, we tend to use the `#apache-releases` channel
on the Superset Slack. People crafting releases and those interested in
partaking in the process should join the channel.

30
## Release setup (First Time Only)
31

32 33
First you need to setup a few things. This is a one-off and doesn't
need to be done at every release.
A
Alek Storm 已提交
34 35

```bash
36
    # Create PGP Key, and use your @apache.org email address
37
    gpg --gen-key
38

39
    # Checkout ASF dist repo
40 41 42

    svn checkout https://dist.apache.org/repos/dist/dev/incubator/superset/ ~/svn/superset_dev

43
    svn checkout https://dist.apache.org/repos/dist/release/incubator/superset/ ~/svn/superset
44
    cd ~/svn/superset
45 46


47
    # Add your GPG pub key to KEYS file. Replace "Maxime Beauchemin" with your name
48 49
    export SUPERSET_PGP_FULLNAME="Maxime Beauchemin"
    (gpg --list-sigs "${SUPERSET_PGP_FULLNAME}" && gpg --armor --export "${SUPERSET_PGP_FULLNAME}" ) >> KEYS
50 51


52 53
    # Commit the changes
    svn commit -m "Add PGP keys of new Superset committer"
A
Alek Storm 已提交
54 55
```

56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71
## Crafting a source release

When crafting a new minor or major release we create 
a branch named with the release MAJOR.MINOR version.
This new branch will hold all PATCH and release candidates 
that belong to the MAJOR.MINOR version.

The MAJOR.MINOR branch is normally a "cut" from a specific point in time from the master branch.
Then (if needed) apply all cherries that will make the PATCH

Finally bump the version number on `superset/static/assets/package.json` ::

    "version": "0.35.0rc1"

Commit the change with the version number, then git tag the version and push

72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90
## Setting up the release environment (do every time)

As the vote process takes a minimum of 72h (community vote) + 72h (IPMC) vote,
often stretching over several weeks calendar time if votes don't pass, chances are
the same terminal session won't be used for crafting the release candidate and the
final release. Therefore, it's a good idea to do the following every time you
work on a new phase of the release process to make sure you aren't releasing
the wrong files/using wrong names:

```bash
    # Set SUPERSET_VERSION to the release being prepared, e.g. 0.34.1.
    export SUPERSET_VERSION=XX.YY.ZZ
    # Set RC to the release candindate number. Replacing QQ below with 1
    # indicates rc1 i.e. first vote on version above (0.34.1rc1)
    export SUPERSET_RC=QQ
```

Then you can generate other derived environment variables that are used
throughout the release process:
91

92
```bash
93 94
    # Replace SUPERSET_PGP_FULLNAME with your PGP key name for Apache
    export SUPERSET_PGP_FULLNAME="YOURFULLNAMEHERE"
95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114
    export SUPERSET_VERSION_RC=${SUPERSET_VERSION}rc${SUPERSET_RC}
    export SUPERSET_RELEASE=apache-superset-incubating-${SUPERSET_VERSION}
    export SUPERSET_RELEASE_RC=apache-superset-incubating-${SUPERSET_VERSION_RC}
    export SUPERSET_RELEASE_TARBALL=${SUPERSET_RELEASE}-source.tar.gz
    export SUPERSET_RELEASE_RC_TARBALL=${SUPERSET_RELEASE_RC}-source.tar.gz
```

## Preparing the release candidate

The first step of preparing an Apache Release is packaging a release candidate
to be voted on. Start by going to the root of the repo and making sure the
prerequisites are in order:

```bash
    # Go to the root directory of the repo, e.g. `~/src/incubator-superset`
    cd ~/src/incubator-superset/
    export SUPERSET_REPO_DIR=$(pwd)
    # make sure you're on the correct branch (e.g. 0.34)
    git branch
```
115

116 117 118 119 120 121 122 123 124 125 126 127 128 129 130
Make sure the version number under `superset/assets/package.json` corresponds
to `SUPERSET_VERSION` above (`0.34.1` in example above), and has been committed to the
branch.

```bash
    grep ${SUPERSET_VERSION} superset/assets/package.json
```

If nothing shows up, either the version isn't correctly set in `package.json`,
or the environment variable is misconfigured.

### Crafting tarball and signatures

Now let's craft a source release
```bash
131
    # Let's create a git tag
132
    git tag -f ${SUPERSET_VERSION_RC}
133

134
    # Create the target folder
135
    mkdir -p ~/svn/superset_dev/${SUPERSET_VERSION_RC}/
136
    git archive \
137 138 139
        --format=tar.gz ${SUPERSET_VERSION_RC} \
        --prefix="${SUPERSET_RELEASE_RC}/" \
        -o ~/svn/superset_dev/${SUPERSET_VERSION_RC}/${SUPERSET_RELEASE_RC_TARBALL}
140

141
    cd ~/svn/superset_dev/${SUPERSET_VERSION_RC}/
142 143 144 145 146
    ${SUPERSET_REPO_DIR}/scripts/sign.sh "${SUPERSET_RELEASE_RC_TARBALL}" "${SUPERSET_PGP_FULLNAME}"

    # To verify to signature
    gpg --verify "${SUPERSET_RELEASE_RC_TARBALL}".asc "${SUPERSET_RELEASE_RC_TARBALL}"

147 148
```

149
### Shipping to SVN
150

151
Now let's ship this RC into svn's dev folder
152 153

```bash
154
    cd ~/svn/superset_dev/
155 156
    svn add ${SUPERSET_VERSION_RC}
    svn commit -m "Release ${SUPERSET_VERSION_RC}"
157 158
```

159 160
Now you're ready to start the VOTE thread.

161
### Validating a release
162 163 164 165 166

https://www.apache.org/info/verification.html

## Publishing a successful release

167 168
Upon a successful vote (community AND IPMC), you'll have to copy the folder
into the non-"dev/" folder.
169
```bash
170
    cp -r ~/svn/superset_dev/${SUPERSET_VERSION_RC}/ ~/svn/superset/${SUPERSET_VERSION}/
171
    cd ~/svn/superset/
172 173 174 175 176 177 178 179 180 181 182 183 184 185
    # Rename the RC (0.34.1rc1) to the actual version being released (0.34.1)
    for f in ${SUPERSET_VERSION}/*; do mv "$f" "${f/${SUPERSET_VERSION_RC}/${SUPERSET_VERSION}}"; done
    svn add ${SUPERSET_VERSION}
    svn commit -m "Release ${SUPERSET_VERSION}"
```

Then tag the final release:
```bash
    # Go to the root directory of the repo, e.g. `~/src/incubator-superset`
    cd ~/src/incubator-superset/
    # make sure you're on the correct branch (e.g. 0.34)
    git branch
    # Create the release tag
    git tag -f ${SUPERSET_VERSION}
186 187 188 189
```

Now you can announce the release on the mailing list, make sure to use the
proper template
190

191 192 193 194 195 196 197
## Post release

In `UPDATING.md`, a file that contains a list of notifications around
deprecations and upgrading-related topics,
make sure to move the content now under the `Next Version` section under a new
section for the new release.

198 199 200 201 202
## Build from source tarball

To make a working build given a tarball
```bash
# Building a docker from a tarball
203
docker build -t apache-superset:${SUPERSET_VERSION_RC} -f Dockerfile.from_tarball . --build-arg VERSION=${SUPERSET_VERSION_RC}
204 205

# testing the resulting docker
206
docker run -p 5001:8088 apache-superset:${SUPERSET_VERSION_RC}
207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239
# you should be able to access localhost:5001 on your browser
# login using admin/admin
```

# Refresh documentation website

Every once in a while we want to compile the documentation and publish it.
Here's how to do it.

```bash
# install doc dependencies
pip install -r docs/requirements.txt

# build the docs
python setup.py build_sphinx

# copy html files to temp folder
cp -r docs/_build/html/ /tmp/tmp_superset_docs/

# clone the docs repo
cd ~/
git clone https://git-wip-us.apache.org/repos/asf/incubator-superset-site.git

# copy
cp -r /tmp/tmp_superset_docs/ ~/incubator-superset-site.git/

# commit and push to `asf-site` branch
cd ~/incubator-superset-site.git/
git checkout asf-site
git add .
git commit -a -m "New doc version"
git push origin master
```