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)
# Upcoming WeKan ® release
# v7.92 2025-06-12 WeKan ® release
This release adds the following updates:

View file

@ -1,5 +1,5 @@
appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928
appVersion: "v7.91.0"
appVersion: "v7.92.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-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)
@ -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.
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)

2
package-lock.json generated
View file

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

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "v7.91.0",
"version": "v7.92.0",
"description": "Open-Source kanban",
"private": true,
"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">
<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>
@ -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="dark-box"></div>
<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>
<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>
@ -1995,18 +1995,18 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
</blockquote>
<pre class="highlight tab tab-shell"><code><span class="hljs-comment"># You can also use wget</span>
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>
</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
<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="undefined"></span></span></code></pre>
<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>
};
@ -2028,7 +2028,7 @@ $.ajax({
"password": "pa$$word"
}'</span>;
<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>
};
@ -2050,7 +2050,7 @@ fetch(<span class="hljs-string">'/users/login'</span>,
<span class="hljs-keyword">require</span> <span class="hljs-string">'json'</span>
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>
}
@ -2063,7 +2063,7 @@ p JSON.parse(result)
</code></pre>
<pre class="highlight tab tab-python"><code><span class="hljs-keyword">import</span> requests
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>
}
@ -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> {
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>},
}
@ -2119,6 +2119,11 @@ System.out.println(response.toString());
<blockquote>
<p>Body parameter</p>
</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>
<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>object</td>
<td>false</td>
<td>none</td>
<td>true</td>
<td>Login credentials</td>
</tr>
<tr>
<td>» username</td>
@ -2211,23 +2216,23 @@ System.out.println(response.toString());
<tr>
<td>» id</td>
<td>string</td>
<td>false</td>
<td>none</td>
<td>true</td>
<td>none</td>
<td>User ID</td>
</tr>
<tr>
<td>» token</td>
<td>string</td>
<td>false</td>
<td>none</td>
<td>true</td>
<td>none</td>
<td>Authentication token</td>
</tr>
<tr>
<td>» tokenExpires</td>
<td>string</td>
<td>false</td>
<td>none</td>
<td>string(date-time)</td>
<td>true</td>
<td>none</td>
<td>Token expiration date</td>
</tr>
</tbody>
</table>
@ -2245,7 +2250,7 @@ System.out.println(response.toString());
<tbody>
<tr>
<td>» error</td>
<td>number</td>
<td>string</td>
<td>false</td>
<td>none</td>
<td>none</td>

View file

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

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 = 791,
appVersion = 792,
# 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.
minUpgradableAppVersion = 0,

View file

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