Wekan
Open source kanban board application built with Meteor
Alternative to: trello
About
Versions (100)
v9.62
2026-06-19v9.62 2026-06-19 WeKan ® release
This release adds the following features:
- Release All Platforms: Fix Docker image showing a stale Admin Panel version (image tagged vX reported v9.57).
The Admin Panel reads the WeKan version from the bundled
package.json, which comes verbatim from thewekan-<version>-<arch>.zipthe Dockerfile downloads and unzips into/build. Thedockerjob never passed--build-arg VERSION, so every image was built against the Dockerfile’s hardcodedARG VERSIONdefault — and that default was stuck at9.57becausereleases/version.shrewrote it with a sed anchored on the old version number, which silently no-op’d wheneverold_versiondid not match (e.g. the skipped 9.58 numbering). The result: images tagged v9.59/v9.60/v9.61 shipped the v9.57 bundle and reported 9.57 in the Admin Panel. Fixed three ways: thedockerjob now passes--build-arg VERSION=${VERSION}(the release version is authoritative); theversion.shDockerfile rewrite now anchors on the^ARG VERSION=prefix and asserts the result, so the default can never go stale again; and a new pre-build guard downloads the release bundle and fails fast if its apppackage.jsonversion does not match the release tag, before pushing a mislabeled image to the registries. Already-pushed v9.58–v9.61 images need a rebuild to carry their correct contents. Thanks to xet7 and Claude.
Thanks to above GitHub users for their contributions and translators for their translations.