This commit is contained in:
ed
2026-03-08 21:06:24 +00:00
parent 8b5ac23efd
commit eca3ced160
4 changed files with 27 additions and 2 deletions

View File

@@ -1,8 +1,8 @@
# coding: utf-8
VERSION = (1, 20, 10)
VERSION = (1, 20, 11)
CODENAME = "sftp is fine too"
BUILD_DT = (2026, 2, 25)
BUILD_DT = (2026, 3, 8)
S_VERSION = ".".join(map(str, VERSION))
S_BUILD_DT = "{0:04d}-{1:02d}-{2:02d}".format(*BUILD_DT)

View File

@@ -1,3 +1,25 @@
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
# 2026-0225-1533 `v1.20.10` fix login (ノ ゚ヮ゚)ノ ~┻━┻
## recent important news
* [v1.20.9 (2025-02-25)](https://github.com/9001/copyparty/releases/tag/v1.20.9) fixed [CVE-2026-27948](https://github.com/9001/copyparty/security/advisories/GHSA-62cr-6wp5-q43h) (XSS)
## 🩹 bugfixes
* #1311 fix login (broke in v1.20.9) ecdfd2d1
## 🔧 other changes
* warn that config-reload doesn't do global-options a29037a0
## 🌠 fun facts
* rushing out a cve-fix in the wee hours of the morning before the 9-5 is a great idea that never goes wrong
* 10/10 will probably do again
▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀▀
# 2026-0225-0834 `v1.20.9` SECURITY: XSS fix

View File

@@ -19,6 +19,8 @@ cmp 2 ../cver/2 || zlib=1
cmp 3 ../cver/3 || ff=1
echo zlib=$zlib ff=$ff
[ "$1" ] && exit
[ $zlib ] && { make zlib; cp -pv 1 2 ../cver/; }
[ $ff ] && { make ff; cp -pv 3 ../cver/; }
rm -rf cver2

View File

@@ -194,6 +194,7 @@ filt=
for i in $dhub_order; do
printf '\ndockerhub %s\n' $i
podman manifest push --all copyparty-$i copyparty/$i:$ver
podman manifest push --all copyparty-$i copyparty/$i:beta
podman manifest push --all copyparty-$i copyparty/$i:latest
done &
for i in $ghcr_order; do