diff --git a/CHANGELOG.md b/CHANGELOG.md index 220e9c037..bc8eca57d 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,4 +1,4 @@ -# Upcoming Wekan release +# v5.25 2021-04-27 Wekan release This release adds the following new features: diff --git a/Stackerfile.yml b/Stackerfile.yml index 24ee59752..d4c17588b 100644 --- a/Stackerfile.yml +++ b/Stackerfile.yml @@ -1,5 +1,5 @@ appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 -appVersion: "v5.24.0" +appVersion: "v5.25.0" files: userUploads: - README.md diff --git a/package-lock.json b/package-lock.json index e5b8d99a2..4ef1545c2 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v5.24.0", + "version": "v5.25.0", "lockfileVersion": 1, "requires": true, "dependencies": { diff --git a/package.json b/package.json index fb969582f..086df93fb 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v5.24.0", + "version": "v5.27.0", "description": "Open-Source kanban", "private": true, "scripts": { diff --git a/public/api/wekan.html b/public/api/wekan.html index d4199e7b4..df0a9ee4a 100644 --- a/public/api/wekan.html +++ b/public/api/wekan.html @@ -7,7 +7,7 @@ - Wekan REST API v5.24 + Wekan REST API v5.25 @@ -1486,6 +1486,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc + @@ -1549,7 +1550,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc @@ -2092,7 +2098,7 @@ var n=this.pipeline.run(e.tokenizer(t)),r=new e.Vector,i=[],o=this._fields.reduc
-

Wekan REST API v5.24

+

Wekan REST API v5.25

Scroll down for code samples, example requests and responses. Select a language for code samples from the tabs above or the mobile navigation menu.

@@ -15915,9 +15921,12 @@ System.out.println(response.toString()); "string" ], "language": "string", - "notifications": [], - "activity": "string", - "read": "string", + "notifications": [ + { + "activity": "string", + "read": "string" + } + ], "showCardsCountAt": 0, "startDayOfWeek": 0, "starredBoards": [ @@ -16653,9 +16662,12 @@ System.out.println(response.toString()); "string" ], "language": "string", - "notifications": [], - "activity": "string", - "read": "string", + "notifications": [ + { + "activity": "string", + "read": "string" + } + ], "showCardsCountAt": 0, "startDayOfWeek": 0, "starredBoards": [ @@ -20434,9 +20446,12 @@ UserSecurity "string" ], "language": "string", - "notifications": [], - "activity": "string", - "read": "string", + "notifications": [ + { + "activity": "string", + "read": "string" + } + ], "showCardsCountAt": 0, "startDayOfWeek": 0, "starredBoards": [ @@ -20572,45 +20587,6 @@ UserSecurity -

UsersEmails

-

- - -

-
{
-  "address": "string",
-  "verified": true
-}
-
-
-

Properties

- - - - - - - - - - - - - - - - - - - - - - - - - - -
NameTypeRequiredRestrictionsDescription
addressstringtruenoneThe email address
verifiedbooleantruenoneHas the email been verified

UsersProfile

@@ -20631,9 +20607,12 @@ UserSecurity "string" ], "language": "string", - "notifications": [], - "activity": "string", - "read": "string", + "notifications": [ + { + "activity": "string", + "read": "string" + } + ], "showCardsCountAt": 0, "startDayOfWeek": 0, "starredBoards": [ @@ -20649,7 +20628,7 @@ UserSecurity } -

Properties

+

Properties

@@ -20739,20 +20718,6 @@ UserSecurity - - - - - - - - - - - - - - @@ -20882,7 +20847,7 @@ UserSecurity } -

Properties

+

Properties

enabled notifications for the user
activitystringtruenoneThe id of the activity this notification references
readstringfalsenonethe date on which this notification was read
showCardsCountAt number false
@@ -20910,6 +20875,84 @@ UserSecurity
+

UsersEmails

+

+ + +

+
{
+  "address": "string",
+  "verified": true
+}
+
+
+

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeRequiredRestrictionsDescription
addressstringtruenoneThe email address
verifiedbooleantruenoneHas the email been verified
+

UsersProfileNotifications

+

+ + +

+
{
+  "activity": "string",
+  "read": "string"
+}
+
+
+

Properties

+ + + + + + + + + + + + + + + + + + + + + + + + + + +
NameTypeRequiredRestrictionsDescription
activitystringtruenoneThe id of the activity this notification references
readstringfalsenonethe date on which this notification was read
@@ -20931,6 +20974,7 @@ UserSecurity +
diff --git a/public/api/wekan.yml b/public/api/wekan.yml index 175dacd93..1c938d78c 100644 --- a/public/api/wekan.yml +++ b/public/api/wekan.yml @@ -1,7 +1,7 @@ swagger: '2.0' info: title: Wekan REST API - version: v5.24 + version: v5.25 description: | The REST API allows you to control and extend Wekan with ease. diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 22676f0a2..6abc0554b 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 = 524, + appVersion = 525, # Increment this for every release. - appMarketingVersion = (defaultText = "5.24.0~2021-04-24"), + appMarketingVersion = (defaultText = "5.25.0~2021-04-27"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, diff --git a/snapcraft.yaml b/snapcraft.yaml index 034c88bf9..343f898a5 100644 --- a/snapcraft.yaml +++ b/snapcraft.yaml @@ -1,5 +1,5 @@ name: wekan -version: '5.24' +version: '5.25' summary: The open-source kanban description: | Wekan is an open-source and collaborative kanban board application.