pull/3146/head v4.10
Lauri Ojansivu 5 years ago
parent 784f960e8f
commit 6ac3249272
  1. 2
      CHANGELOG.md
  2. 2
      Stackerfile.yml
  3. 2
      package-lock.json
  4. 2
      package.json
  5. 2744
      public/api/wekan.html
  6. 31
      public/api/wekan.yml
  7. 4
      sandstorm-pkgdef.capnp

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

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

2
package-lock.json generated

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

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

File diff suppressed because it is too large Load Diff

@ -1,7 +1,7 @@
swagger: '2.0'
info:
title: Wekan REST API
version: v4.09
version: v4.10
description: |
The REST API allows you to control and extend Wekan with ease.
@ -649,6 +649,35 @@ paths:
'200':
description: |-
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:
get:
operationId: get_all_custom_fields

@ -22,10 +22,10 @@ const pkgdef :Spk.PackageDefinition = (
appTitle = (defaultText = "Wekan"),
# The name of the app as it is displayed to the user.
appVersion = 409,
appVersion = 410,
# 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.
minUpgradableAppVersion = 0,

Loading…
Cancel
Save