v8.27
Some checks failed
Docker / build (push) Has been cancelled
Docker Image CI / build (push) Has been cancelled
Release Charts / release (push) Has been cancelled
Test suite / Meteor tests (push) Has been cancelled
Test suite / Coverage report (push) Has been cancelled

This commit is contained in:
Lauri Ojansivu 2026-01-31 20:51:19 +02:00
parent bbd9fd838b
commit bb12311e2f
8 changed files with 20 additions and 15 deletions

View file

@ -24,13 +24,18 @@ Those are fixed at WeKan 8.07 where database directory is back to /var/snap/weka
WeKan 8.00-8.24 used Colorful Unicode Emoji Icons, versions before and after use mostly Font Awesome 4.7 icons.
# Upcoming WeKan ® release
# v8.27 2026-01-31 WeKan ® release
This release adds the following updates:
- [Updated MongoDB to 7.0.29 at Windows install docs](https://github.com/wekan/wekan/commit/b55e1bbd409f76bd0388d19d4d0a8420cee8df96).
Thanks to MongoDB developers.
and fixes the following bugs:
- [Fix async/await in copy/move card operations](https://github.com/wekan/wekan/pull/6120).
Thanks to harryadel.
Thanks to above GitHub users for their contributions and translators for their translations.
# v8.26 2026-01-31 WeKan ® release

View file

@ -196,9 +196,9 @@ ln -sf $(which bsdtar) $(which tar)
# WeKan Bundle Installation
mkdir -p /home/wekan/app
cd /home/wekan/app
wget "https://github.com/wekan/wekan/releases/download/v8.26/wekan-8.26-${WEKAN_ARCH}.zip"
unzip "wekan-8.26-${WEKAN_ARCH}.zip"
rm "wekan-8.26-${WEKAN_ARCH}.zip"
wget "https://github.com/wekan/wekan/releases/download/v8.27/wekan-8.27-${WEKAN_ARCH}.zip"
unzip "wekan-8.27-${WEKAN_ARCH}.zip"
rm "wekan-8.27-${WEKAN_ARCH}.zip"
mv /home/wekan/app/bundle /build
# Restore original tar

View file

@ -1,5 +1,5 @@
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
appVersion: "v8.26.0"
appVersion: "v8.27.0"
files:
userUploads:
- README.md

View file

@ -10,7 +10,7 @@ This is without container (without Docker or Snap).
Right click and download files 1-4:
1. [wekan-8.26-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v8.26/wekan-8.26-amd64-windows.zip)
1. [wekan-8.27-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v8.27/wekan-8.27-amd64-windows.zip)
2. [node.exe](https://nodejs.org/dist/latest-v14.x/win-x64/node.exe)
@ -22,7 +22,7 @@ Right click and download files 1-4:
6. Double click `mongodb-windows-x86_64-7.0.29-signed.msi` . In installer, uncheck downloading MongoDB compass.
7. Unzip `wekan-8.26-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files:
7. Unzip `wekan-8.27-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files:
```
bundle (directory)

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "v8.26.0",
"version": "v8.27.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "v8.26.0",
"version": "v8.27.0",
"description": "Open-Source kanban",
"private": true,
"repository": {

View file

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
appVersion = 826,
appVersion = 827,
# Increment this for every release.
appMarketingVersion = (defaultText = "8.26.0~2026-01-31"),
appMarketingVersion = (defaultText = "8.27.0~2026-01-31"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,

View file

@ -1,5 +1,5 @@
name: wekan
version: '8.26'
version: '8.27'
base: core24
summary: Open Source kanban
description: |
@ -166,9 +166,9 @@ parts:
# Cleanup
mkdir .build
cd .build
wget https://github.com/wekan/wekan/releases/download/v8.26/wekan-8.26-amd64.zip
unzip wekan-8.26-amd64.zip
rm wekan-8.26-amd64.zip
wget https://github.com/wekan/wekan/releases/download/v8.27/wekan-8.27-amd64.zip
unzip wekan-8.27-amd64.zip
rm wekan-8.27-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf