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.
2022-10-09 17:34:57 -04:00
## Preparing the release
2020-11-04 19:51:48 -05:00
2022-10-09 17:34:57 -04:00
### Update the version in these places
2020-11-04 19:51:48 -05:00
- [ ] `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`
2022-10-09 17:34:57 -04:00
### You also must edit these files
- [ ] `desktop/org.onionshare.OnionShare.appdata.xml` should have the correct release date, and links to correct screenshots
- [ ] `CHANGELOG.md` should be updated to include a list of all major changes since the last release
2023-09-04 19:29:30 -04:00
### Update dependencies
Check `cli/pyproject.toml` to see if any hard-coded versions should be updated. Then, update the dependencies like this:
```sh
cd cli
poetry update
cd ..
```
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
2023-09-04 19:29:30 -04:00
Check `desktop/pyproject.toml` to see if any hard-coded versions should be updated. Then, update the dependencies like this:
```
cd desktop
poetry update
cd ..
```
Update the docs dependencies like this:
```
cd docs
poetry update
cd ..
```
2023-09-04 21:46:54 -04:00
Update the versions of `meek` , `obfs4proxy` , and `snowflake` in the `desktop/scripts/build-pt-*` scripts, both the bash and PowerShell scripts. You can find the latest versions by looking at the tags in their git repos: [meek ](https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/meek/-/tags ), [obfs4proxy ](https://gitlab.com/yawning/obfs4/-/tags ), [snowflake ](https://gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake/-/tags ).
2023-09-04 19:29:30 -04:00
2022-10-09 17:34:57 -04:00
### Update the documentation
2020-11-08 23:45:54 -05:00
- [ ] 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
2022-10-09 17:34:57 -04:00
### Finalize localization
2021-02-21 13:55:08 -05:00
2023-09-04 23:16:44 -04:00
- [ ] Merge all the translations from weblate:
```
git remote add weblate https://hosted.weblate.org/projects/onionshare/translations/
git pull weblate main
```
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
2022-10-09 17:34:57 -04:00
### Make sure Snapcraft packaging works
2020-11-04 19:51:48 -05:00
2022-10-09 17:34:57 -04:00
In `snap/snapcraft.yaml` :
2020-11-08 15:07:17 -05:00
2022-10-02 16:02:38 -04:00
- [ ] The `tor` , `libevent` , `obfs4` , `snowflake-client` , and `meek-client` parts should be updated if necessary
2022-10-09 17:34:57 -04:00
- [ ] In the `onionshare` part, in the `override-pull` section, all of the dependencies in the `requirements.txt` file should match the dependencies listed in `cli/pyproject.toml` and `desktop/pyproject.toml` , with the exception of PySide2
2023-09-05 18:45:04 -04:00
To test locally:
- Install snapcraft with: `sudo snap install snapcraft --classic`
- Build snap with: `snapcraft`
- Install with: `sudo snap install ./onionshare_${VERSION}_amd64.snap --devmode`
2024-02-13 03:10:08 -05:00
To test in the edge branch:
2023-09-05 18:45:04 -04:00
With every commit to the `main` 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. You can install them with: `snap install onionshare --edge`
2020-11-08 15:07:17 -05:00
2022-10-09 17:34:57 -04:00
### Make sure the Flatpak packaging works
In `flatpak/org.onionshare.OnionShare.yaml` :
2023-09-09 15:12:27 -04:00
- [ ] Update `tor` and `libevent`
2023-09-10 14:19:43 -04:00
- [ ] Update `obfs4proxy` , `meek-client` , and `snowflake-client` dependencies, if necessary using [this tool ](https://github.com/micahflee/flatpak-builder-tools/tree/fix-go/go ):
```sh
cd flatpak-builder-tools/go
2024-02-13 03:10:08 -05:00
# For each these, incorporate the output into the Flatpak manifest
2023-09-10 14:19:43 -04:00
# Make sure to update the version numbers
2024-08-23 06:28:20 -04:00
./flatpak-go-deps.py gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/meek.git/meek-client@v0.38.0
./flatpak-go-deps.py gitlab.torproject.org/tpo/anti-censorship/pluggable-transports/snowflake.git/client@v2.6.0
2023-09-10 14:19:43 -04:00
./flatpak-go-deps.py gitlab.com/yawning/obfs4.git/obfs4proxy@obfs4proxy-0.0.14
```
Merge the output of each of these commands into the Flatpak manifest.
- [ ] Update the Python dependencies using [this tool ](https://github.com/flatpak/flatpak-builder-tools/blob/master/pip/flatpak-pip-generator ) along with `flatpak/poetry-to-requirements.py` :
```sh
cd flatpak-build-tools/pip
# get onionshare-cli dependencies
./flatpak-pip-generator $(../../onionshare/flatpak/poetry-to-requirements.py ../../onionshare/cli/pyproject.toml)
../flatpak-json2yaml.py ./python3-modules.json
mv python3-modules.yml onionshare-cli.yaml
# get onionshare dependencies
./flatpak-pip-generator $(../../onionshare/flatpak/poetry-to-requirements.py ../../onionshare/desktop/pyproject.toml | grep -v PySide6)
../flatpak-json2yaml.py ./python3-modules.json
mv python3-modules.yml onionshare-desktop.yaml
```
Now, merge `onionshare-desktop.yaml` and `onionshare-cli.yaml` into the Flatpak manifest.
- [ ] Build and test the Flatpak package to ensure it works:
```sh
2023-09-11 15:53:51 -04:00
flatpak-builder build --force-clean --jobs=$(nproc) --install-deps-from=flathub --install --user flatpak/org.onionshare.OnionShare.yaml
2023-09-10 14:19:43 -04:00
flatpak run org.onionshare.OnionShare
2024-02-13 03:10:08 -05:00
```
2022-10-09 17:34:57 -04:00
### Create a signed git tag
2020-11-08 15:07:17 -05:00
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
```
2022-10-09 17:34:57 -04:00
## Making the release
2020-11-04 19:51:48 -05:00
2022-10-09 17:34:57 -04:00
### Linux Snapcraft release
2020-11-04 19:51:48 -05:00
2022-10-09 17:34:57 -04:00
From https://snapcraft.io/onionshare/releases (you must be logged in), promote the release from latest/edge to latest/beta, then latest/candidate, then latest/stable.
2020-11-24 00:20:29 -05:00
2022-10-09 17:34:57 -04:00
### Linux Flatpak release
2020-11-04 19:51:48 -05:00
2022-10-09 17:34:57 -04:00
- [ ] Create a new branch in https://github.com/flathub/org.onionshare.OnionShare for the version
- [ ] Overwrite the manifest in the flathub repo with the updated version in [flatpak/org.onionshare.OnionShare.yaml ](./flatpak/org.onionshare.OnionShare.yaml )
- [ ] Edit it so that the sources for `onionshare` and `onionshare-cli` are the GitHub repo, with the correct git tag, rather than the local filesystem
- [ ] Make a PR in the flathub repo, and merge it to make a release
2020-11-04 19:51:48 -05:00
2022-10-09 17:34:57 -04:00
### Windows release
2020-11-04 19:51:48 -05:00
2023-10-20 21:26:07 -04:00
Create a Windows 11 VM, and set it up like this:
2020-11-04 19:51:48 -05:00
2023-10-20 21:26:07 -04:00
- Install [git for Windows ](https://git-scm.com/download/win ).
- Install the latest version of 3.11 [from python.org ](https://www.python.org/downloads/ ).
- Install [Microsoft C++ Build Tools ](https://visualstudio.microsoft.com/visual-cpp-build-tools/ ), making sure to check "Desktop development with C++".
- Download and install [7-Zip (x64) ](https://7-zip.org/ ). Add `C:\Program Files\7-Zip` to your path.
- Download and install [gpg4win ](https://gpg4win.org/ ). Add `C:\Program Files (x86)\GnuPG\bin` to your path.
2023-10-20 15:30:17 -04:00
- Install the Windows SDK from here: https://developer.microsoft.com/en-us/windows/downloads/windows-sdk/.
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` .
2024-03-20 13:09:15 -04:00
- Go to https://wixtoolset.org/docs/wix3/ and download and install WiX toolset. I downloaded `wix314.exe` . Add `C:\Program Files (x86)\WiX Toolset v3.14\bin` to the path.
2020-11-04 19:51:48 -05:00
2023-10-20 21:26:07 -04:00
Clone the OnionShare git repo and checkout the release tag.
If you've used this git repo for a previous release, clean it up:
- In the `onionshare/desktop` folder, delete `build` and `dist` from the previous build.
- Delete the poetry environment. You can find its name by run `poetry env list` , and then you can delete it with `poetry env remove [ENV_NAME]` .
Install Poetry and deps. Open a Developer PowerShell for VS window, change to the `onionshare` folder, and run:
```powershell
cd desktop
pip install poetry
poetry install
```
2023-10-20 15:30:17 -04:00
Github Actions will build the binaries. Find the Github Actions `build` workflow, switch to the summary tab, download `win64-build.zip` , and copy it to the Windows packaging environment.
2022-04-05 15:41:21 -04:00
2023-10-20 15:30:17 -04:00
Extract `win64-build.zip` . Run:
2022-04-05 15:41:21 -04:00
```
2023-10-20 15:30:17 -04:00
poetry run python .\scripts\build-windows.py codesign [path]
poetry run python .\scripts\build-windows.py package [path]
2022-04-05 15:41:21 -04:00
```
This will create:
2022-04-07 22:29:04 -04:00
- `desktop/dist/OnionShare-win64-$VERSION.msi`
2020-11-04 19:51:48 -05:00
2022-10-09 17:34:57 -04:00
### macOS release
2020-11-04 19:51:48 -05:00
2023-10-17 19:31:40 -04:00
In order to make a universal2 binary, you must following these instructions using a Mac with Apple Silicon. To keep a clean environment, you can use VM.
2023-02-05 19:41:07 -05:00
Set up the VM like this:
- Install [Homebrew ](https://brew.sh/ )
2023-02-06 23:53:27 -05:00
- `brew install create-dmg libiodbc`
2023-10-17 19:31:40 -04:00
- Install the latest Python 3.11 from https://www.python.org/downloads/
2023-02-05 19:41:07 -05:00
- Install ARM64 version of Go from https://go.dev/dl/
2024-02-19 14:32:33 -05:00
- Install "Postgres.app with PostgreSQL 16 (Universal)" from https://postgresapp.com/downloads.html
2023-10-17 19:31:40 -04:00
2023-10-20 21:26:07 -04:00
Clone the OnionShare git repo and checkout the release tag.
If you've used this git repo for a previous release, clean it up:
```sh
cd desktop
rm -rf build dist
# Delete the old poetry environment
poetry env remove $(poetry env list | grep "(Activated)" | cut -d" " -f1)
```
Install and build dependencies:
2023-02-05 19:41:07 -05:00
```sh
cd desktop
python3 -m pip install poetry
2023-10-17 19:31:40 -04:00
/Library/Frameworks/Python.framework/Versions/3.11/bin/poetry install
/Library/Frameworks/Python.framework/Versions/3.11/bin/poetry run python ./scripts/get-tor.py macos
2023-02-05 19:41:07 -05:00
./scripts/build-pt-obfs4proxy.sh
./scripts/build-pt-snowflake.sh
./scripts/build-pt-meek.sh
```
2023-10-17 19:31:40 -04:00
Make the Apple Silicon app bundle:
2023-02-05 19:41:07 -05:00
2023-10-17 19:31:40 -04:00
```sh
/Library/Frameworks/Python.framework/Versions/3.11/bin/poetry run python ./setup-freeze.py bdist_mac
/Library/Frameworks/Python.framework/Versions/3.11/bin/poetry run python ./scripts/build-macos.py cleanup-build
```
2022-06-19 23:18:25 -04:00
2023-10-17 19:31:40 -04:00
The Apple Silicon app bundle will be in `build` folder called `OnionShare.app` .
2022-06-19 23:18:25 -04:00
2023-10-17 19:31:40 -04:00
Github Actions will build the Intel app bundle. Find the Github Actions `build` workflow, switch to the summary tab, and download the `mac-intel-build` artifact. Extract it, and you'll get the Intel `OnionShare.app` folder.
2022-04-07 22:29:04 -04:00
2023-10-17 19:31:40 -04:00
Next, merge these two app bundles into a single universal2 app bundle:
2022-04-07 22:29:04 -04:00
2023-10-17 19:31:40 -04:00
```sh
poetry run ./scripts/macos-merge-universal.py [intel_app_path] [silicon_app_path] [universal2_app_path]
```
Finally, code sign and package the universal2 app bundle:
2022-04-07 22:29:04 -04:00
```sh
2023-10-17 19:31:40 -04:00
poetry run python ./scripts/build-macos.py codesign [universal2_app_path]
poetry run python ./scripts/build-macos.py package [universal2_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
2024-03-19 16:29:02 -04:00
xcrun notarytool submit --apple-id "micah@micahflee.com" --team-id N9B95FDWH4 --password "$APPLE_PASSWORD" --progress --wait dist/OnionShare-$VERSION.dmg
2022-04-07 22:29:04 -04:00
# 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
2022-10-09 17:34:57 -04: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`
2022-10-09 17:34:57 -04:00
- `OnionShare.flatpak` (rename to `OnionShare-$VERSION.flatpak` )
- `OnionShare-win64-$VERSION.msi`
- `OnionShare-$VERSION.dmg`
2020-11-08 17:49:24 -05:00
- `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 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.