| Name | Modified | Size | Downloads / Week |
|---|---|---|---|
| Parent folder | |||
| wekan_10.46_amd64.snap | 2026-07-28 | 397.4 MB | |
| wekan_10.46_arm64.snap | 2026-07-28 | 305.6 MB | |
| wekan-10.46-riscv64.zip | 2026-07-28 | 312.7 MB | |
| wekan-10.46-s390x.zip | 2026-07-28 | 315.0 MB | |
| wekan-10.46-ppc64le.zip | 2026-07-28 | 314.1 MB | |
| wekan-10.46-sandstorm.spk | 2026-07-28 | 170.2 MB | |
| wekan-10.46-mac-arm64.zip | 2026-07-28 | 307.7 MB | |
| wekan-10.46-amd64.zip | 2026-07-28 | 309.0 MB | |
| wekan-10.46-arm64.zip | 2026-07-28 | 311.7 MB | |
| README.md | 2026-07-28 | 3.1 kB | |
| v10.46 source code.tar.gz | 2026-07-28 | 33.4 MB | |
| v10.46 source code.zip | 2026-07-28 | 34.6 MB | |
| Totals: 12 Items | 2.8 GB | 0 | |
v10.46 2026-07-28 WeKan ® release
This release fixes the following bug:
The SWC helper fix shipped in 10.45 was deleted by the bundler, because the package says it may be. Thanks to zubzhaaaw and xet7.
WeKan 10.45 still failed in Yandex Browser with `Cannot find module '@swc/helpers/_/_possible_constructor_return'` (#6556), and the fix for it was in that build. `@swc/helpers` declares `"sideEffects": false` — a promise to the bundler that importing one of its modules changes nothing observable, so an import whose bindings are never READ may be removed entirely. `import '@swc/helpers/_/_possible_constructor_return';` is exactly that: every line of the new file was dropped, the package subdirectory was never pulled into the bundle, and the legacy module tree came out as before. The fix compiled to nothing and looked like it had been applied. Every helper is imported BY NAME and read now — collected into an array whose length is written to `window.__wekanSwcHelpers`. That is an observable effect, so no optimizer may remove the imports that feed it, and the global says in one word whether the helpers reached the bundle at all if this ever happens again.and fixes the following test-harness faults: