2020-11-04 19:51:48 -05:00
# OnionShare Release Process
Unless you're a core OnionShare developer making a release, you'll probably never need to follow it.
## Changelog, version, docs, and signed git tag
Before making a release, you must update the version in these places:
- [ ] `cli/pyproject.toml`
- [ ] `cli/onionshare_cli/resources/version.txt`
2021-12-19 20:42:11 -05:00
- [ ] `desktop/pyproject.toml`
2022-01-17 15:56:39 -05:00
- [ ] `desktop/setup.py`
2021-12-19 20:42:11 -05:00
- [ ] `desktop/org.onionshare.OnionShare.appdata.xml`
2021-02-22 23:00:27 -05:00
- [ ] `docs/source/conf.py` (`version` at the top, and the `versions` list too)
2020-11-08 23:45:54 -05:00
- [ ] `snap/snapcraft.yaml`
2021-05-31 13:36:07 -04:00
If you update `flask-socketio` , ensure that you also update the [socket.io.min.js ](https://github.com/micahflee/onionshare/blob/develop/cli/onionshare_cli/resources/static/js/socket.io.min.js ) file to a version that is [supported ](https://flask-socketio.readthedocs.io/en/latest/#version-compatibility ) by the updated version of `flask-socketio` .
2021-05-06 15:53:11 -04:00
2020-11-08 23:45:54 -05:00
Update the documentation:
- [ ] Update all of the documentation in `docs` to cover new features, including taking new screenshots if necessary
2021-02-21 13:55:08 -05:00
Finalize localization:
- [ ] Merge all the translations from weblate
2021-05-31 13:36:07 -04:00
- [ ] In `docs` run `poetry run ./check-weblate.py [API_KEY]` to see which translations are >90% in the app and docs
2021-02-21 13:55:08 -05:00
- [ ] Edit `cli/onionshare_cli/settings.py` , make sure `self.available_locales` lists only locales that are >90% translated
2021-12-12 13:17:34 -05:00
- [ ] From the `desktop` folder in the virtual env, run `./scripts/countries-update-list.py` to make sure the localized country list for censorship circumvention is available in all available languages
2021-02-21 13:55:08 -05:00
- [ ] Edit `docs/source/conf.py` , make sure `languages` lists only languages that are >90% translated
2021-02-22 23:00:27 -05:00
- [ ] Edit `docs/build.sh` and make sure `LOCALES=` lists the same languages as above, in `docs/source/conf.py`
2021-02-21 13:55:08 -05:00
- [ ] Make sure the latest documentation is built and committed:
```
cd docs
poetry install
poetry run ./build.sh
```
2020-11-08 23:45:54 -05:00
You also must edit these files:
2021-12-19 20:42:11 -05:00
- [ ] `desktop/org.onionshare.OnionShare.appdata.xml` should have the correct release date, and links to correct screenshots
2020-11-08 23:45:54 -05:00
- [ ] `CHANGELOG.md` should be updated to include a list of all major changes since the last release
2020-11-04 19:51:48 -05:00
2020-11-08 15:07:17 -05:00
Make sure snapcraft packaging works. In `snap/snapcraft.yaml` :
2022-10-02 16:02:38 -04:00
- [ ] The `tor` , `libevent` , `obfs4` , `snowflake-client` , and `meek-client` parts should be updated if necessary
2022-01-17 15:56:39 -05:00
- [ ] All python packages in the `onionshare` part should be updated to match `desktop/pyproject.toml`
2022-07-04 18:08:58 -04:00
- [ ] With every commit to the `develop` branch, Snapcraft's CI should trigger builds. Make sure the builds all succeeded at https://snapcraft.io/onionshare/builds (you must be logged in), and test them
2020-11-08 15:07:17 -05:00
2022-07-04 18:00:44 -04:00
Update to the latest version of Tor:
- [ ] Edit `desktop/scripts/get-tor.py` to use the latest version of Tor Browser, and the latest sha256 checksums.
- [ ] Update the version of `meek` , `obfs4proxy` , and `snowflake` in the `desktop/scripts/build-pt-*` scripts, both the bash and PowerShell scripts.
2020-11-08 15:07:17 -05:00
Finally:
2020-11-04 19:51:48 -05:00
- [ ] There must be a PGP-signed git tag for the version, e.g. for OnionShare 2.1, the tag must be `v2.1`
The first step for the Linux, macOS, and Windows releases is the same.
Verify the release git tag:
```sh
git fetch
git tag -v v$VERSION
```
If the tag verifies successfully, check it out:
```sh
git checkout v$VERSION
```
## Linux Snapcraft release
You must have `snap` and `snapcraft` (`snap install snapcraft --classic`) installed.
2021-11-15 21:41:42 -05:00
Build and test the snap before publishing (note that `--dangerous` lets you install the snap before it's codesigned):
2020-11-04 19:51:48 -05:00
```sh
snapcraft
2022-01-17 13:34:11 -05:00
snap install --dangerous ./onionshare_${VERSION}_amd64.snap
2020-11-04 19:51:48 -05:00
```
2022-01-17 13:34:11 -05:00
This will create `onionshare_${VERSION}_amd64.snap` .
2020-11-24 00:20:29 -05:00
Run the OnionShare snap locally:
2020-11-04 19:51:48 -05:00
```sh
2020-11-24 00:20:29 -05:00
/snap/bin/onionshare # desktop version
2020-11-04 19:51:48 -05:00
/snap/bin/onionshare.cli # CLI version
```
2020-11-24 00:20:29 -05:00
Upload the to Snapcraft:
```sh
snapcraft login
2022-01-17 13:34:11 -05:00
snapcraft upload --release=stable onionshare_${VERSION}_amd64.snap
2020-11-04 19:51:48 -05:00
```
2021-02-21 13:55:08 -05:00
## Windows
2020-11-04 19:51:48 -05:00
2022-06-19 18:11:50 -04:00
Set up the packaging environment:
2020-11-04 19:51:48 -05:00
2022-10-02 16:02:38 -04:00
- Install the Windows SDK from here: https://developer.microsoft.com/en-us/windows/downloads/windows-sdk/ and add `C:\Program Files (x86)\Microsoft SDKs\ClickOnce\SignTool` to the path (you'll need it for `signtool.exe` )
2022-01-12 22:58:40 -05:00
- Go to https://dotnet.microsoft.com/download/dotnet-framework and download and install .NET Framework 3.5 SP1 Runtime. I downloaded `dotnetfx35.exe` .
- Go to https://wixtoolset.org/releases/ and download and install WiX toolset. I downloaded `wix311.exe` . Add `C:\Program Files (x86)\WiX Toolset v3.11\bin` to the path.
2020-11-04 19:51:48 -05:00
2022-10-02 15:42:44 -04:00
Github Actions will build the binaries. Find the Github Actions `build` workflow, switch to the summary tab, and download:
2022-04-05 15:41:21 -04:00
2022-10-02 15:42:44 -04:00
- `build-win32`
- `build-win64`
2022-04-05 15:41:21 -04:00
2022-06-19 18:11:50 -04:00
Extract these files, change to the `desktop` folder, and run:
2022-04-05 15:41:21 -04:00
```
poetry run python .\scripts\build-windows.py codesign [onionshare_win32_path] [onionshare_win64_path]
poetry run python .\scripts\build-windows.py package [onionshare_win32_path] [onionshare_win64_path]
```
This will create:
- `desktop/dist/OnionShare-win32-$VERSION.msi`
2022-04-07 22:29:04 -04:00
- `desktop/dist/OnionShare-win64-$VERSION.msi`
2020-11-04 19:51:48 -05:00
2021-02-21 13:55:08 -05:00
## macOS
2020-11-04 19:51:48 -05:00
2022-06-19 23:18:25 -04:00
Set up the packaging environment:
- Install create-dmg: `brew install create-dmg`
2022-10-02 15:42:44 -04:00
Github Actions will build the binaries. Find the Github Actions `build` workflow, switch to the summary tab, and download:
2022-04-07 22:29:04 -04:00
2022-10-02 15:42:44 -04:00
- `build-mac`
2022-04-07 22:29:04 -04:00
2022-06-19 18:11:50 -04:00
Extract these files, change to the `desktop` folder, and run:
2022-04-07 22:29:04 -04:00
```sh
2022-04-03 20:20:31 -04:00
poetry run python ./scripts/build-macos.py codesign [app_path]
poetry run python ./scripts/build-macos.py package [app_path]
2020-11-04 19:51:48 -05:00
```
2022-01-13 18:13:03 -05:00
The will create `dist/OnionShare-$VERSION.dmg` .
2020-11-04 20:34:00 -05:00
2022-04-07 22:29:04 -04:00
Now, notarize the release.
2020-11-04 20:34:00 -05:00
2022-04-07 22:29:04 -04:00
```sh
export APPLE_PASSWORD="changeme" # app-specific Apple ID password
export VERSION=$(cat ../cli/onionshare_cli/resources/version.txt)
# Notarize it
xcrun altool --notarize-app --primary-bundle-id "com.micahflee.onionshare" -u "micah@micahflee.com" -p "$APPLE_PASSWORD" --file dist/OnionShare-$VERSION.dmg
2022-10-02 15:42:44 -04:00
# Wait for it to get approved, check status with
2022-04-07 22:29:04 -04:00
xcrun altool --notarization-history 0 -u "micah@micahflee.com" -p "$APPLE_PASSWORD"
# After it's approved, staple the ticket
xcrun stapler staple dist/OnionShare-$VERSION.dmg
```
2020-11-04 20:34:00 -05:00
2022-01-13 18:13:03 -05:00
This will create `desktop/dist/OnionShare-$VERSION.dmg` , signed and notarized.
2020-11-04 20:34:00 -05:00
2021-02-21 13:55:08 -05:00
## Source package
2020-11-04 20:34:00 -05:00
2021-08-22 16:17:55 -04:00
To make a source package, run `./build-source.sh $TAG` , where `$TAG` is the name of the signed git tag, e.g. `v2.1` .
2020-11-08 15:07:17 -05:00
This will create `dist/onionshare-$VERSION.tar.gz` .
2020-11-04 20:34:00 -05:00
2021-02-21 13:55:08 -05:00
## Publishing the release
2020-11-04 20:34:00 -05:00
2021-02-22 23:00:27 -05:00
### PGP signatures
2020-11-08 17:49:24 -05:00
After following all of the previous steps, gather these files:
2020-11-04 20:34:00 -05:00
2022-01-17 13:34:11 -05:00
- `onionshare_${VERSION}_amd64.snap`
2020-11-08 17:49:24 -05:00
- `OnionShare-$VERSION.msi`
- `OnionShare.dmg` (rename it to `OnionShare-$VERSION.dmg` )
- `onionshare-$VERSION.tar.gz`
Create a PGP signature for each of these files, e.g:
```sh
2021-08-20 17:13:44 -04:00
gpg -a --detach-sign OnionShare-$VERSION.tar.gz
2020-11-08 17:49:24 -05:00
gpg -a --detach-sign [... and so on]
```
2021-02-22 23:00:27 -05:00
### Create a release on GitHub:
2020-11-08 17:49:24 -05:00
- Match it to the version tag, put the changelog in description of the release
2021-02-22 23:00:27 -05:00
- Upload all 8 files (binary and source packages and their `.asc` signatures)
2020-11-08 17:49:24 -05:00
2021-02-22 23:00:27 -05:00
### Update onionshare-cli on PyPi
2020-11-08 17:49:24 -05:00
2021-02-22 23:00:27 -05:00
```sh
cd cli
poetry install
poetry publish --build
```
2020-11-08 17:49:24 -05:00
2021-02-22 23:00:27 -05:00
### Update Flathub
2021-02-21 13:55:08 -05:00
2021-02-22 23:00:27 -05:00
After there's a new release tag, make the Flathub package work here: https://github.com/flathub/org.onionshare.OnionShare
2021-02-21 13:55:08 -05:00
2021-02-22 23:00:27 -05:00
You must have `flatpak` and `flatpak-builder` installed, with flathub remote added (`flatpak remote-add --if-not-exists --user flathub https://flathub.org/repo/flathub.flatpakrepo`).
2020-11-08 17:49:24 -05:00
2021-06-01 22:39:34 -04:00
- [ ] Change the tag (for both `onionshare` and `onionshare-cli` ) to match the new git tag
2021-02-22 23:00:27 -05:00
- [ ] Update `tor` , `libevent` , and `obfs4` dependencies, if necessary
- [ ] Built the latest python dependencies using [this tool ](https://github.com/flatpak/flatpak-builder-tools/blob/master/pip/flatpak-pip-generator ) (see below)
- [ ] Test the Flatpak package, ensure it works
2020-11-08 17:49:24 -05:00
2021-02-22 23:00:27 -05:00
```
# you may need to install toml
pip3 install --user toml
# clone flatpak-build-tools
git clone https://github.com/flatpak/flatpak-builder-tools.git
# get onionshare-cli dependencies
2021-06-01 22:39:34 -04:00
cd poetry
./flatpak-poetry-generator.py ../../onionshare/cli/poetry.lock
cd ..
2021-02-22 23:00:27 -05:00
# get onionshare dependencies
2021-06-01 22:39:34 -04:00
cd pip
2021-02-22 23:00:27 -05:00
./flatpak-pip-generator $(python3 -c 'import toml; print("\n".join(toml.loads(open("../../onionshare/desktop/pyproject.toml").read())["tool"]["briefcase"]["app"]["onionshare"]["requires"]))' |grep -v "./onionshare_cli" |grep -v -i "pyside2" |tr "\n" " ")
mv python3-modules.json onionshare.json
# use something like https://www.json2yaml.com/ to convert to yaml and update the manifest
# add all of the modules in both onionshare-cli and onionshare to the submodules of "onionshare"
2021-06-01 22:39:34 -04:00
# - poetry/generated-poetry-sources.json (onionshare-cli)
# - pip/python3-modules.json (onionshare)
2021-02-22 23:00:27 -05:00
```
Build and test the Flatpak package before publishing:
2020-11-08 17:49:24 -05:00
```sh
2021-02-22 23:00:27 -05:00
flatpak-builder build --force-clean --install-deps-from=flathub --install --user org.onionshare.OnionShare.yaml
flatpak run org.onionshare.OnionShare
2020-11-08 17:49:24 -05:00
```
2021-08-20 16:13:39 -04:00
Create a [single-file bundle ](https://docs.flatpak.org/en/latest/single-file-bundles.html ):
```sh
2021-08-20 17:13:44 -04:00
flatpak build-bundle ~/.local/share/flatpak/repo OnionShare-$VERSION.flatpak org.onionshare.OnionShare --runtime-repo=https://flathub.org/repo/flathub.flatpakrepo
2021-08-20 16:13:39 -04:00
```
2021-08-20 17:13:44 -04:00
Create a PGP signature for the flatpak single-file bundle:
```sh
gpg -a --detach-sign OnionShare-$VERSION.flatpak
```
Upload this `.flatpak` and its sig to the GitHub release as well.
2021-02-22 23:00:27 -05:00
### Update Homebrew
- Make a PR to [homebrew-cask ](https://github.com/homebrew/homebrew-cask ) to update the macOS version
### Update onionshare.org
- Upload all 10 files to https://onionshare.org/dist/$VERSION/
- Update the [onionshare-website ](https://github.com/micahflee/onionshare-website ) repo:
- Edit `latest-version.txt` to match the latest version
- Update the version number and download links
- Deploy to https://onionshare.org/
### Update docs.onionshare.org
- Upload everything from `docs/build/docs` to https://docs.onionshare.org/
### Update the community
2020-11-08 17:49:24 -05:00
- Upload all 10 files to the OnionShare team Keybase filesystem
- Email the [onionshare-dev ](https://lists.riseup.net/www/subscribe/onionshare-dev ) mailing list announcing the release
2021-02-22 23:00:27 -05:00
- Blog, tweet, toot, etc.