aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMicah Lee <micah@micahflee.com>2022-07-04 18:00:44 -0400
committerMicah Lee <micah@micahflee.com>2022-07-04 18:00:44 -0400
commit12295aa6935e9e7d052206782280b8d7032e22a9 (patch)
treebc319aaebc6376bc7e44965f8154a2aaab20c573
parentb393eeb9b577feafc55c765c8594ce837492bb54 (diff)
downloadonionshare-12295aa6935e9e7d052206782280b8d7032e22a9.tar.gz
onionshare-12295aa6935e9e7d052206782280b8d7032e22a9.zip
Update get-tor.py to use Tor Browser 11.0.15
-rw-r--r--RELEASE.md5
-rw-r--r--desktop/scripts/get-tor.py10
2 files changed, 10 insertions, 5 deletions
diff --git a/RELEASE.md b/RELEASE.md
index ece4851f..824c9467 100644
--- a/RELEASE.md
+++ b/RELEASE.md
@@ -46,6 +46,11 @@ Make sure snapcraft packaging works. In `snap/snapcraft.yaml`:
- [ ] All python packages in the `onionshare` part should be updated to match `desktop/pyproject.toml`
- [ ] Test the snap package, ensure it works
+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.
+
Finally:
- [ ] There must be a PGP-signed git tag for the version, e.g. for OnionShare 2.1, the tag must be `v2.1`
diff --git a/desktop/scripts/get-tor.py b/desktop/scripts/get-tor.py
index edd47320..8a134320 100644
--- a/desktop/scripts/get-tor.py
+++ b/desktop/scripts/get-tor.py
@@ -9,18 +9,18 @@ import subprocess
import requests
import click
-torbrowser_version = "11.0.14"
+torbrowser_version = "11.0.15"
expected_win32_sha256 = (
- "c14b979c81310ad039985e047dbb5b8058662bb3105b9022f7b9e0d18a29d0d6"
+ "c2e09fd10f07e4cb8c6050d0b2556af17ec2cc8efaba9abc0db413f7a058e189"
)
expected_win64_sha256 = (
- "ced3de06d089fbbeb8cee309971ac26983aba8eaf948fedce472d40cdd572301"
+ "46b2731ba0e771a477516c0c13a43a7223a767b1a8a0e53506d199f870b2adf3"
)
expected_macos_sha256 = (
- "558ae5ab188f62feb04c6b2e7f43eae2361e8ec1718e0f4f927801411d911e22"
+ "408f46f8680d79b3452d1668e69227e566ffc177f82a02ee7e3480b720e6ad77"
)
expected_linux64_sha256 = (
- "b606924fdf8237e697cf95c229189da5875c190875d729769655c7b67aeb9aa6"
+ "74301bf40527933efa20b4af599a82daede70cf13ce9ed0cf9e5b937e22264bf"
)
win32_url = f"https://dist.torproject.org/torbrowser/{torbrowser_version}/torbrowser-install-{torbrowser_version}_en-US.exe"