Merge branch 'devel'

This commit is contained in:
Lauri Ojansivu 2018-07-06 14:39:24 +03:00
commit 5e17b01077
4 changed files with 10 additions and 4 deletions

View file

@ -1,3 +1,9 @@
# v1.16 2018-07-06 Wekan release
- Fix: [Boards.forEach is not function](https://github.com/wekan/wekan/commit/a41190cdf024df65ad1c9931b3065c6ababeaf25).
Thanks to GitHub user xet7 for contributions.
# v1.15 2018-07-06 Wekan release
This release fixes the following bugs:

View file

@ -1,6 +1,6 @@
{
"name": "wekan",
"version": "1.15.0",
"version": "1.16.0",
"description": "The open-source Trello-like kanban",
"private": true,
"scripts": {

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 = 100,
appVersion = 101,
# Increment this for every release.
appMarketingVersion = (defaultText = "1.15.0~2018-07-06"),
appMarketingVersion = (defaultText = "1.16.0~2018-07-06"),
# Human-readable presentation of the app version.
minUpgradableAppVersion = 0,

View file

@ -153,7 +153,7 @@ Migrations.add('add-sort-checklists', () => {
});
Migrations.add('add-swimlanes', () => {
Boards.forEach((board) => {
Boards.find().forEach((board) => {
const swimlaneId = board.getDefaultSwimline()._id;
Cards.find({ boardId: board._id }).forEach((card) => {
if (!card.hasOwnProperty('swimlaneId')) {