From 1dace72092632c6ab0e36b84777a38c1da22581a Mon Sep 17 00:00:00 2001 From: ed Date: Sat, 25 Jan 2025 18:09:52 +0000 Subject: [PATCH] v1.16.10 --- copyparty/__version__.py | 4 ++-- docs/changelog.md | 25 +++++++++++++++++++++++++ 2 files changed, 27 insertions(+), 2 deletions(-) diff --git a/copyparty/__version__.py b/copyparty/__version__.py index 8d3b7bfa..649a565d 100644 --- a/copyparty/__version__.py +++ b/copyparty/__version__.py @@ -1,8 +1,8 @@ # coding: utf-8 -VERSION = (1, 16, 9) +VERSION = (1, 16, 10) CODENAME = "COPYparty" -BUILD_DT = (2025, 1, 22) +BUILD_DT = (2025, 1, 25) S_VERSION = ".".join(map(str, VERSION)) S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT) diff --git a/docs/changelog.md b/docs/changelog.md index b8273712..66ce1f61 100644 --- a/docs/changelog.md +++ b/docs/changelog.md @@ -1,3 +1,28 @@ +▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ +# 2025-0122-2326 `v1.16.9` ZeroMQ says hello + +## 🧪 new features + +* event-hooks can send zeromq / zmq / 0mq messages; see [readme](https://github.com/9001/copyparty#zeromq) or `--help-hooks` for examples d9db1534 +* new volflags to specify the [allow-tag](https://developer.mozilla.org/en-US/docs/Web/HTTP/Headers/Permissions-Policy#iframes) of the markdown/logue sandbox, to allow fullscreen and such (see `--help-flags`) 6a0aaaf0 +* new volflag `nosparse` for possibly-better performance in very rare and specific scenarios 917380dd + * only enable this if you're uploading to s3 or something like that, and do plenty of benchmarking to make sure that it actually improved performance instead of making it worse + +## 🩹 bugfixes + +* restrict max-length of filekeys to 72 characters e0cac6fd +* the hash-calculator mode of the commandline uploader produced incorrect whole-file hashes 4c04798a + * each chunk (`--chs`) was okay, but the final sum was not + +## 🔧 other changes + +* selftest the xml-parser on startup with malicious xml b2e8bf6e + * just in case a future python-version suddenly makes it unsafe somehow +* disable some features if a dangerously misconfigured reverseproxy is detected 3f84b0a0 +* the download-as-zip feature now defaults to utf8 filenames 1231ce19 + + + ▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀ # 2025-0111-1611 `v1.16.8` android boost