From a347ae367654258b7768e7571831ed8f75fb5b84 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Andr=C3=A9s=20Manelli?= Date: Mon, 11 Mar 2019 22:30:16 +0100 Subject: Rename migration to re run --- server/migrations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/migrations.js b/server/migrations.js index eeb2d5ea..b8915fe9 100644 --- a/server/migrations.js +++ b/server/migrations.js @@ -518,7 +518,7 @@ Migrations.add('add-templates', () => { }); }); -Migrations.add('fix-circular-reference', () => { +Migrations.add('fix-circular-reference_', () => { Cards.find().forEach((card) => { if (card.parentId === card._id) { Cards.update(card._id, {$set: {parentId: ''}}, noValidateMulti); -- cgit v1.2.3-1-g7c22 From cf7d740004d5b7511a7c0fc434437cba4390f824 Mon Sep 17 00:00:00 2001 From: Lauri Ojansivu Date: Mon, 11 Mar 2019 23:39:05 +0200 Subject: v2.45 --- CHANGELOG.md | 6 ++++++ Stackerfile.yml | 2 +- package.json | 2 +- sandstorm-pkgdef.capnp | 4 ++-- 4 files changed, 10 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index e54ac9bc..d95edd59 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,3 +1,9 @@ +# v2.45 2019-03-11 Wekan release + +This release fixes the following bugs, thanks to andresmanelli: + +- [Rename circular card migration to re run the fix](https://github.com/wekan/wekan/commit/a347ae367654258b7768e7571831ed8f75fb5b84). + # v2.44 2019-03-11 Wekan release This release adds the following new features and fixes with Apache I-CLA, thanks to bentiss: diff --git a/Stackerfile.yml b/Stackerfile.yml index e7d6b3c2..39885d8d 100644 --- a/Stackerfile.yml +++ b/Stackerfile.yml @@ -1,5 +1,5 @@ appId: wekan-public/apps/77b94f60-dec9-0136-304e-16ff53095928 -appVersion: "v2.44.0" +appVersion: "v2.45.0" files: userUploads: - README.md diff --git a/package.json b/package.json index 77e8eba5..fab14904 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "wekan", - "version": "v2.44.0", + "version": "v2.45.0", "description": "Open-Source kanban", "private": true, "scripts": { diff --git a/sandstorm-pkgdef.capnp b/sandstorm-pkgdef.capnp index 23171379..ef66ffd4 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 = 246, + appVersion = 247, # Increment this for every release. - appMarketingVersion = (defaultText = "2.44.0~2019-03-11"), + appMarketingVersion = (defaultText = "2.45.0~2019-03-11"), # Human-readable presentation of the app version. minUpgradableAppVersion = 0, -- cgit v1.2.3-1-g7c22