diff --git a/CHANGELOG.md b/CHANGELOG.md index af3c44972..588ac00b6 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -22,9 +22,16 @@ Fixing other platforms In Progress. WeKan 8.00-8.06 had wrong raw database directory setting /var/snap/wekan/common/wekan and some cards were not visible. Those are fixed at WeKan 8.07 where database directory is back to /var/snap/wekan/common and all cards are visible. -# Upcoming WeKan ® release +WeKan 8.00-8.24 used Colorful Unicode Emoji Icons, versions before and after use mostly Font Awesome 4.7 icons. -This release adds the following updates: +# v8.25 2026-01-28 WeKan ® release + +This release fixes the following CRITICAL SECURITY ISSUES of [Floppybleed](https://wekan.fi/hall-of-fame/floppybleed/): + +- [Fix Filebleed of Floppybleed](https://github.com/wekan/wekan/commit/a419d831a408f251c798f5410375b20afd98c04b). + Thanks to Luke Hebenstreit Twitter lheben_ and xet7. + +and adds the following updates: - [Updated code counts](https://github.com/wekan/wekan/commit/2f25f47d0ba4c7f543264cd7fe2ed117ab0ec9ee). Thanks to xet7. @@ -35,12 +42,24 @@ This release adds the following updates: Thanks to xet7. - [Updated Dockerfile](https://github.com/wekan/wekan/commit/d298ab7486d489d353fc410232a9dcdd68501c72). Thanks to xet7. -- Docker and Snap for Linux amd64/arm64/s390x. +- Docker for Linux amd64/arm64/s390x. [Part 1](https://github.com/wekan/wekan/commit/38711f0a29bf37d1e0a3fd9c8a9bcfb2442934b3), [Part 2](https://github.com/wekan/wekan/commit/e72019fa55ef6142767fd83e928bf2a0a966f9e6), [Part 3](https://github.com/wekan/wekan/commit/b2c7c7f55b5136bc91251cd57125316ec622d4a3), [Part 4](https://github.com/wekan/wekan/commit/98e5adfba80ee935b2a1293851d88812ad707b78), - [Part 5](https://github.com/wekan/wekan/commit/60846a44959d46262672c6a3048bd76d829c03bf). + [Part 5](https://github.com/wekan/wekan/commit/60846a44959d46262672c6a3048bd76d829c03bf), + [Part 6](https://github.com/wekan/wekan/commit/7ff174cf660f43dfbb471b29d75820f527771bbd). + Thanks to xet7. +- [Most Unicode Icons back to Font Awesome 4.7 for better accessibility. Less always visible buttons, More at ☰ Mnu](https://github.com/wekan/wekan/commit/7ad04f45353e1628881fec310caedf7625a34d4d). + Thanks to xet7. +- [Updated to MongoDB 7.0.29 at Snap Candidate](https://github.com/wekan/wekan/commit/ac70fe28488c09364133a65fbc80f5a819a1e4bf). + Thanks to developers of MongoDB. +- [Updated to MongoDB 7.0.29 at Helm Charts](https://github.com/wekan/charts/commit/8169739260b6f104c4d011dac5a4bf5485db8b45). + Thanks to developers of MongoDB. + +and fixes the following bugs: + +- [Fix autofocus](https://github.com/wekan/wekan/commit/440f553de0baf460acc891ee5864f84bb982104a). Thanks to xet7. Thanks to above GitHub users for their contributions and translators for their translations. diff --git a/Dockerfile b/Dockerfile index df2b5de7a..18148b61d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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.24/wekan-8.24-${WEKAN_ARCH}.zip" -unzip "wekan-8.24-${WEKAN_ARCH}.zip" -rm "wekan-8.24-${WEKAN_ARCH}.zip" +wget "https://github.com/wekan/wekan/releases/download/v8.25/wekan-8.25-${WEKAN_ARCH}.zip" +unzip "wekan-8.25-${WEKAN_ARCH}.zip" +rm "wekan-8.25-${WEKAN_ARCH}.zip" mv /home/wekan/app/bundle /build # Restore original tar diff --git a/Stackerfile.yml b/Stackerfile.yml index 819ef8723..3f738fb05 100644 --- a/Stackerfile.yml +++ b/Stackerfile.yml @@ -1,5 +1,5 @@ appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 -appVersion: "v8.24.0" +appVersion: "v8.25.0" files: userUploads: - README.md diff --git a/docs/Platforms/Propietary/Windows/Offline.md b/docs/Platforms/Propietary/Windows/Offline.md index a489f5d60..cb8bec1db 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.24-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v8.24/wekan-8.24-amd64-windows.zip) +1. [wekan-8.25-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v8.25/wekan-8.25-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.28-signed.msi` . In installer, uncheck downloading MongoDB compass. -7. Unzip `wekan-8.24-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files: +7. Unzip `wekan-8.25-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 d170e2974..e73637216 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v8.24.0", + "version": "v8.25.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index b92cb7d74..32374f8c8 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v8.24.0", + "version": "v8.25.0", "description": "Open-Source kanban", "private": true, "repository": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 79c47a008..b40d604d9 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 = 824, + appVersion = 825, # Increment this for every release. - appMarketingVersion = (defaultText = "8.24.0~2026-01-24"), + appMarketingVersion = (defaultText = "8.25.0~2026-01-28"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, diff --git a/snapcraft.yaml b/snapcraft.yaml index 2b84dc13b..e36562b34 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: wekan -version: '8.24' +version: '8.25' 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.24/wekan-8.24-amd64.zip - unzip wekan-8.24-amd64.zip - rm wekan-8.24-amd64.zip + wget https://github.com/wekan/wekan/releases/download/v8.25/wekan-8.25-amd64.zip + unzip wekan-8.25-amd64.zip + rm wekan-8.25-amd64.zip cd .. ##cd .build/bundle ##find . -type d -name '*-garbage*' | xargs rm -rf