This commit is contained in:
Lauri Ojansivu 2020-05-30 08:41:48 +03:00
parent 784f960e8f
commit 6ac3249272
7 changed files with 1645 additions and 1438 deletions

View file

@ -1,4 +1,4 @@
# Upcoming Wekan release # v4.10 2020-05-30 Wekan release
This release adds the following new features: This release adds the following new features:

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: "v4.09.0" appVersion: "v4.10.0"
files: files:
userUploads: userUploads:
- README.md - README.md

2
package-lock.json generated
View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v4.09.0", "version": "v4.10.0",
"lockfileVersion": 1, "lockfileVersion": 1,
"requires": true, "requires": true,
"dependencies": { "dependencies": {

View file

@ -1,6 +1,6 @@
{ {
"name": "wekan", "name": "wekan",
"version": "v4.09.0", "version": "v4.10.0",
"description": "Open-Source kanban", "description": "Open-Source kanban",
"private": true, "private": true,
"scripts": { "scripts": {

File diff suppressed because it is too large Load diff

View file

@ -1,7 +1,7 @@
swagger: '2.0' swagger: '2.0'
info: info:
title: Wekan REST API title: Wekan REST API
version: v4.09 version: v4.10
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.
@ -649,6 +649,35 @@ paths:
'200': '200':
description: |- description: |-
200 response 200 response
/api/boards/{board}/cardsByCustomField/{customField}/{customFieldValue}:
get:
operationId: get_board_customFieldValue
tags:
- Cards
parameters:
- name: board
in: path
description: the board value
type: string
required: true
- name: customField
in: path
description: the customField value
type: string
required: true
- name: customFieldValue
in: path
description: the customFieldValue value
type: string
required: true
produces:
- application/json
security:
- UserSecurity: []
responses:
'200':
description: |-
200 response
/api/boards/{board}/custom-fields: /api/boards/{board}/custom-fields:
get: get:
operationId: get_all_custom_fields operationId: get_all_custom_fields

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 = 409, appVersion = 410,
# Increment this for every release. # Increment this for every release.
appMarketingVersion = (defaultText = "4.09.0~2020-05-27"), appMarketingVersion = (defaultText = "4.10.0~2020-05-30"),
# Human-readable presentation of the app version. # Human-readable presentation of the app version.
minUpgradableAppVersion = 0, minUpgradableAppVersion = 0,