Wekan REST API v7.97
+Wekan REST API v7.98
@@ -14835,7 +14835,8 @@ $.ajax({Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.
const fetch = require('node-fetch');
const inputBody = '{
- "title": "string"
+ "title": "string",
+ "swimlaneId": "string"
}';
const headers = {
'Content-Type':'multipart/form-data',
@@ -14934,6 +14935,7 @@ System.out.println(response.toString());
Body parameter
title: string
+swimlaneId: string
Parameters
@@ -14969,6 +14971,13 @@ System.out.println(response.toString());
true
the title of the List
+
+» swimlaneId
+body
+string
+true
+the swimlaneId value
+
Detailed descriptions
@@ -19104,7 +19113,7 @@ UserSecurity
string
true
none
-the swimlane associated to this list. Used for templates
+the swimlane associated to this list. Required for per-swimlane list titles
createdAt
diff --git a/public/api/wekan.yml b/public/api/wekan.yml
index 26e8fff11..ad3ee0238 100644
--- a/public/api/wekan.yml
+++ b/public/api/wekan.yml
@@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
- version: v7.97
+ version: v7.98
description: |
The REST API allows you to control and extend Wekan with ease.
@@ -1736,6 +1736,11 @@ paths:
the title of the List
type: string
required: true
+ - name: swimlaneId
+ in: formData
+ description: the swimlaneId value
+ type: string
+ required: true
- name: board
in: path
description: |
@@ -3806,7 +3811,7 @@ definitions:
type: string
swimlaneId:
description: |
- the swimlane associated to this list. Used for templates
+ the swimlane associated to this list. Required for per-swimlane list titles
type: string
createdAt:
description: |
diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp
index 1baaf84d8..9cc154870 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 = 797,
+ appVersion = 798,
# Increment this for every release.
- appMarketingVersion = (defaultText = "7.97.0~2025-10-08"),
+ appMarketingVersion = (defaultText = "7.98.0~2025-10-11"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,
diff --git a/snapcraft.yaml b/snapcraft.yaml
index 50e6b9a2a..21a1796b5 100644
--- a/snapcraft.yaml
+++ b/snapcraft.yaml
@@ -1,5 +1,5 @@
name: wekan
-version: '7.97'
+version: '7.98'
base: core24
summary: Open Source kanban
description: |
@@ -194,9 +194,9 @@ parts:
# Cleanup
mkdir .build
cd .build
- wget https://github.com/wekan/wekan/releases/download/v7.97/wekan-7.97-amd64.zip
- unzip wekan-7.97-amd64.zip
- rm wekan-7.97-amd64.zip
+ wget https://github.com/wekan/wekan/releases/download/v7.98/wekan-7.98-amd64.zip
+ unzip wekan-7.98-amd64.zip
+ rm wekan-7.98-amd64.zip
cd ..
##cd .build/bundle
##find . -type d -name '*-garbage*' | xargs rm -rf