This commit is contained in:
Lauri Ojansivu 2025-06-12 19:30:59 +03:00
parent e6e1191f8a
commit d99864ca95
9 changed files with 40 additions and 35 deletions

View file

@ -15,7 +15,7 @@ Fixing other platforms In Progress.
[How to upgrade WeKan](https://github.com/wekan/wekan/issues/4585) [How to upgrade WeKan](https://github.com/wekan/wekan/issues/4585)
# Upcoming WeKan ® release # v7.92 2025-06-12 WeKan ® release
This release adds the following updates: This release adds the following updates:

View file

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

View file

@ -10,7 +10,7 @@ This is without container (without Docker or Snap).
Right click and download files 1-4: Right click and download files 1-4:
1. [wekan-7.91-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v7.91/wekan-7.91-amd64-windows.zip) 1. [wekan-7.92-amd64-windows.zip](https://github.com/wekan/wekan/releases/download/v7.92/wekan-7.92-amd64-windows.zip)
2. [node.exe](https://nodejs.org/dist/latest-v14.x/win-x64/node.exe) 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-6.0.23-signed.msi` . In installer, uncheck downloading MongoDB compass. 6. Double click `mongodb-windows-x86_64-6.0.23-signed.msi` . In installer, uncheck downloading MongoDB compass.
7. Unzip `wekan-7.91-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files: 7. Unzip `wekan-7.92-amd64-windows.zip` , inside it is directory `bundle`, to it copy other files:
``` ```
bundle (directory) bundle (directory)

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v7.91.0", "version": "v7.92.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v7.91.0", "version": "v7.92.0",
"description": "Open-Source kanban", "description": "Open-Source kanban",
"private": true, "private": true,
"repository": { "repository": {

View file

@ -1524,7 +1524,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
<ul class="toc-list-h1"> <ul class="toc-list-h1">
<li> <li>
<a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v7.91">Wekan REST API v7.91</a> <a href="#wekan-rest-api" class="toc-h1 toc-link" data-title="Wekan REST API v7.92">Wekan REST API v7.92</a>
</li> </li>
@ -1963,7 +1963,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
<div class="page-wrapper"> <div class="page-wrapper">
<div class="dark-box"></div> <div class="dark-box"></div>
<div class="content"> <div class="content">
<h1 id="wekan-rest-api">Wekan REST API v7.91</h1> <h1 id="wekan-rest-api">Wekan REST API v7.92</h1>
<blockquote> <blockquote>
<p>Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.</p> <p>Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.</p>
</blockquote> </blockquote>
@ -1995,18 +1995,18 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
</blockquote> </blockquote>
<pre class="highlight tab tab-shell"><code><span class="hljs-comment"># You can also use wget</span> <pre class="highlight tab tab-shell"><code><span class="hljs-comment"># You can also use wget</span>
curl -X POST /users/login \ curl -X POST /users/login \
-H <span class="hljs-string">'Content-Type: application/x-www-form-urlencoded'</span> \ -H <span class="hljs-string">'Content-Type: application/json'</span> \
-H <span class="hljs-string">'Accept: */*'</span> -H <span class="hljs-string">'Accept: */*'</span>
</code></pre> </code></pre>
<pre class="highlight tab tab-http"><code><span class="hljs-keyword">POST</span> <span class="hljs-string">/users/login</span> HTTP/1.1 <pre class="highlight tab tab-http"><code><span class="hljs-keyword">POST</span> <span class="hljs-string">/users/login</span> HTTP/1.1
<span class="http"><span class="hljs-attribute">Content-Type</span>: application/x-www-form-urlencoded <span class="http"><span class="hljs-attribute">Content-Type</span>: application/json
<span class="hljs-attribute">Accept</span>: */* <span class="hljs-attribute">Accept</span>: */*
<span class="undefined"></span></span></code></pre> <span class="undefined"></span></span></code></pre>
<pre class="highlight tab tab-javascript"><code><span class="hljs-keyword">var</span> headers = { <pre class="highlight tab tab-javascript"><code><span class="hljs-keyword">var</span> headers = {
<span class="hljs-string">'Content-Type'</span>:<span class="hljs-string">'application/x-www-form-urlencoded'</span>, <span class="hljs-string">'Content-Type'</span>:<span class="hljs-string">'application/json'</span>,
<span class="hljs-string">'Accept'</span>:<span class="hljs-string">'*/*'</span> <span class="hljs-string">'Accept'</span>:<span class="hljs-string">'*/*'</span>
}; };
@ -2028,7 +2028,7 @@ $.ajax({
"password": "pa$$word" "password": "pa$$word"
}'</span>; }'</span>;
<span class="hljs-keyword">const</span> headers = { <span class="hljs-keyword">const</span> headers = {
<span class="hljs-string">'Content-Type'</span>:<span class="hljs-string">'application/x-www-form-urlencoded'</span>, <span class="hljs-string">'Content-Type'</span>:<span class="hljs-string">'application/json'</span>,
<span class="hljs-string">'Accept'</span>:<span class="hljs-string">'*/*'</span> <span class="hljs-string">'Accept'</span>:<span class="hljs-string">'*/*'</span>
}; };
@ -2050,7 +2050,7 @@ fetch(<span class="hljs-string">'/users/login'</span>,
<span class="hljs-keyword">require</span> <span class="hljs-string">'json'</span> <span class="hljs-keyword">require</span> <span class="hljs-string">'json'</span>
headers = { headers = {
<span class="hljs-string">'Content-Type'</span> =&gt; <span class="hljs-string">'application/x-www-form-urlencoded'</span>, <span class="hljs-string">'Content-Type'</span> =&gt; <span class="hljs-string">'application/json'</span>,
<span class="hljs-string">'Accept'</span> =&gt; <span class="hljs-string">'*/*'</span> <span class="hljs-string">'Accept'</span> =&gt; <span class="hljs-string">'*/*'</span>
} }
@ -2063,7 +2063,7 @@ p JSON.parse(result)
</code></pre> </code></pre>
<pre class="highlight tab tab-python"><code><span class="hljs-keyword">import</span> requests <pre class="highlight tab tab-python"><code><span class="hljs-keyword">import</span> requests
headers = { headers = {
<span class="hljs-string">'Content-Type'</span>: <span class="hljs-string">'application/x-www-form-urlencoded'</span>, <span class="hljs-string">'Content-Type'</span>: <span class="hljs-string">'application/json'</span>,
<span class="hljs-string">'Accept'</span>: <span class="hljs-string">'*/*'</span> <span class="hljs-string">'Accept'</span>: <span class="hljs-string">'*/*'</span>
} }
@ -2099,7 +2099,7 @@ System.out.println(response.toString());
<span class="hljs-function"><span class="hljs-keyword">func</span> <span class="hljs-title">main</span><span class="hljs-params">()</span></span> { <span class="hljs-function"><span class="hljs-keyword">func</span> <span class="hljs-title">main</span><span class="hljs-params">()</span></span> {
headers := <span class="hljs-keyword">map</span>[<span class="hljs-keyword">string</span>][]<span class="hljs-keyword">string</span>{ headers := <span class="hljs-keyword">map</span>[<span class="hljs-keyword">string</span>][]<span class="hljs-keyword">string</span>{
<span class="hljs-string">"Content-Type"</span>: []<span class="hljs-keyword">string</span>{<span class="hljs-string">"application/x-www-form-urlencoded"</span>}, <span class="hljs-string">"Content-Type"</span>: []<span class="hljs-keyword">string</span>{<span class="hljs-string">"application/json"</span>},
<span class="hljs-string">"Accept"</span>: []<span class="hljs-keyword">string</span>{<span class="hljs-string">"*/*"</span>}, <span class="hljs-string">"Accept"</span>: []<span class="hljs-keyword">string</span>{<span class="hljs-string">"*/*"</span>},
} }
@ -2119,6 +2119,11 @@ System.out.println(response.toString());
<blockquote> <blockquote>
<p>Body parameter</p> <p>Body parameter</p>
</blockquote> </blockquote>
<pre class="highlight tab tab-json"><code>{
<span class="hljs-attr">"username"</span>: <span class="hljs-string">"string"</span>,
<span class="hljs-attr">"password"</span>: <span class="hljs-string">"pa$$word"</span>
}
</code></pre>
<pre class="highlight tab tab-yaml"><code><span class="hljs-attr">username:</span> <span class="hljs-string">string</span> <pre class="highlight tab tab-yaml"><code><span class="hljs-attr">username:</span> <span class="hljs-string">string</span>
<span class="hljs-attr">password:</span> <span class="hljs-string">pa$$word</span> <span class="hljs-attr">password:</span> <span class="hljs-string">pa$$word</span>
@ -2139,8 +2144,8 @@ System.out.println(response.toString());
<td>body</td> <td>body</td>
<td>body</td> <td>body</td>
<td>object</td> <td>object</td>
<td>false</td> <td>true</td>
<td>none</td> <td>Login credentials</td>
</tr> </tr>
<tr> <tr>
<td>» username</td> <td>» username</td>
@ -2211,23 +2216,23 @@ System.out.println(response.toString());
<tr> <tr>
<td>» id</td> <td>» id</td>
<td>string</td> <td>string</td>
<td>false</td> <td>true</td>
<td>none</td>
<td>none</td> <td>none</td>
<td>User ID</td>
</tr> </tr>
<tr> <tr>
<td>» token</td> <td>» token</td>
<td>string</td> <td>string</td>
<td>false</td> <td>true</td>
<td>none</td>
<td>none</td> <td>none</td>
<td>Authentication token</td>
</tr> </tr>
<tr> <tr>
<td>» tokenExpires</td> <td>» tokenExpires</td>
<td>string</td> <td>string(date-time)</td>
<td>false</td> <td>true</td>
<td>none</td>
<td>none</td> <td>none</td>
<td>Token expiration date</td>
</tr> </tr>
</tbody> </tbody>
</table> </table>
@ -2245,7 +2250,7 @@ System.out.println(response.toString());
<tbody> <tbody>
<tr> <tr>
<td>» error</td> <td>» error</td>
<td>number</td> <td>string</td>
<td>false</td> <td>false</td>
<td>none</td> <td>none</td>
<td>none</td> <td>none</td>

View file

@ -1,7 +1,7 @@
swagger: '2.0' swagger: '2.0'
info: info:
title: Wekan REST API title: Wekan REST API
version: v7.91 version: v7.92
description: | description: |
The REST API allows you to control and extend Wekan with ease. The REST API allows you to control and extend Wekan with ease.
@ -47,14 +47,14 @@ paths:
- password - password
properties: properties:
username: username:
type: string
description: | description: |
Your username Your username
password:
type: string type: string
format: password password:
description: | description: |
Your password Your password
type: string
format: password
responses: responses:
200: 200:
description: |- description: |-

View file

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"), appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user. # The name of the app as it is displayed to the user.
appVersion = 791, appVersion = 792,
# Increment this for every release. # Increment this for every release.
appMarketingVersion = (defaultText = "7.91.0~2025-05-25"), appMarketingVersion = (defaultText = "7.92.0~2025-06-12"),
# Human-readable presentation of the app version. # Human-readable presentation of the app version.
minUpgradableAppVersion = 0, minUpgradableAppVersion = 0,

View file

@ -1,5 +1,5 @@
name: wekan name: wekan
version: '7.91' version: '7.92'
base: core20 base: core20
summary: Open Source kanban summary: Open Source kanban
description: | description: |
@ -170,9 +170,9 @@ parts:
# Cleanup # Cleanup
mkdir .build mkdir .build
cd .build cd .build
wget https://github.com/wekan/wekan/releases/download/v7.91/wekan-7.91-amd64.zip wget https://github.com/wekan/wekan/releases/download/v7.92/wekan-7.92-amd64.zip
unzip wekan-7.91-amd64.zip unzip wekan-7.92-amd64.zip
rm wekan-7.91-amd64.zip rm wekan-7.92-amd64.zip
cd .. cd ..
##cd .build/bundle ##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf ##find . -type d -name '*-garbage*' | xargs rm -rf