diff --git a/CHANGELOG.md b/CHANGELOG.md index 4547c8a87..d9814454d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -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. diff --git a/Dockerfile b/Dockerfile index 0c8cddcd2..b056b18a2 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 diff --git a/Stackerfile.yml b/Stackerfile.yml index 93ed29901..9f750c6ae 100644 --- a/Stackerfile.yml +++ b/Stackerfile.yml @@ -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 diff --git a/docs/Platforms/Propietary/Windows/Offline.md b/docs/Platforms/Propietary/Windows/Offline.md index 641cd7bcf..aed200d21 100644 --- a/docs/Platforms/Propietary/Windows/Offline.md +++ b/docs/Platforms/Propietary/Windows/Offline.md @@ -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) diff --git a/package-lock.json b/package-lock.json index 6aea0156f..eda9a5d7b 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v8.33.0", + "version": "v8.34.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index 775d68bb7..cd065df05 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v8.33.0", + "version": "v8.34.0", "description": "Open-Source kanban", "private": true, "repository": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index db9776520..bde9394ec 100644 --- a/sandstorm-pkgdef.capnp +++ b/sandstorm-pkgdef.capnp @@ -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, diff --git a/snapcraft.yaml b/snapcraft.yaml index e972736ee..8ea59394f 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -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