v8.34
Some checks are pending
Docker / build (push) Waiting to run
Docker Image CI / build (push) Waiting to run
Release Charts / release (push) Waiting to run
Test suite / Meteor tests (push) Waiting to run
Test suite / Coverage report (push) Blocked by required conditions

This commit is contained in:
Lauri Ojansivu 2026-02-20 00:35:29 +02:00
parent a34c2f35a6
commit 33e0c08adc
8 changed files with 17 additions and 15 deletions

View file

@ -30,7 +30,7 @@ Upgrading to Meteor 3 progress:
- https://www.linkedin.com/posts/harryadel_dev-diary-24-wekan-migration-journey-activity-7426683776547811328-jS9h/
- https://forums.meteor.com/t/anyone-still-using-meteor-2/64402/4
# Upcoming WeKan ® release
# v8.34 2026-02-20 WeKan ® release
This release adds the following CRITICAL SECURITY FIXES:
@ -75,6 +75,8 @@ and fixes the following bugs:
Thanks to xet7.
- [Fix createWorkspace Meteor method fails with "Expected string, got undefined"](https://github.com/wekan/wekan/commit/06d418b12b5de6392dab12c2d3b262813b92e730).
Thanks to TheBoysenBuilds and xet7.
- [Fix Notifications from not allowed Boards](https://github.com/wekan/wekan/commit/a34c2f35a6c4ae64b97af0a930fb768b2d781938).
Thanks to FK-PATZ3 and xet7.
Thanks to above GitHub users for their contributions and translators for their translations.

View file

@ -197,9 +197,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.33/wekan-8.33-${WEKAN_ARCH}.zip"
unzip "wekan-8.33-${WEKAN_ARCH}.zip"
rm "wekan-8.33-${WEKAN_ARCH}.zip"
wget "https://github.com/wekan/wekan/releases/download/v8.34/wekan-8.34-${WEKAN_ARCH}.zip"
unzip "wekan-8.34-${WEKAN_ARCH}.zip"
rm "wekan-8.34-${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.33.0"
appVersion: "v8.34.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.33-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v8.33/wekan-8.33-amd64-windows.zip)
1. [wekan-8.34-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v8.34/wekan-8.34-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.30-signed.msi` . In installer, uncheck downloading MongoDB compass.
7. Unzip `wekan-8.33-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files:
7. Unzip `wekan-8.34-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.33.0",
"version": "v8.34.0",
"lockfileVersion": 1,
"requires": true,
"dependencies": {

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "v8.33.0",
"version": "v8.34.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 = 833,
appVersion = 834,
# Increment this for every release.
appMarketingVersion = (defaultText = "8.33.0~2026-02-15"),
appMarketingVersion = (defaultText = "8.34.0~2026-02-20"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,

View file

@ -1,5 +1,5 @@
name: wekan
version: '8.33'
version: '8.34'
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.33/wekan-8.33-amd64.zip
unzip wekan-8.33-amd64.zip
rm wekan-8.33-amd64.zip
wget https://github.com/wekan/wekan/releases/download/v8.34/wekan-8.34-amd64.zip
unzip wekan-8.34-amd64.zip
rm wekan-8.34-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf