Selaa lähdekoodia

Merge branch 'edge' into meteor-1.8

Lauri Ojansivu 6 vuotta sitten
vanhempi
sitoutus
33f09f0887
5 muutettua tiedostoa jossa 11 lisäystä ja 5 poistoa
  1. 6 0
      CHANGELOG.md
  2. 1 1
      Stackerfile.yml
  3. 1 1
      package.json
  4. 2 2
      sandstorm-pkgdef.capnp
  5. 1 1
      server/migrations.js

+ 6 - 0
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:

+ 1 - 1
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

+ 1 - 1
package.json

@@ -1,6 +1,6 @@
 {
   "name": "wekan",
-  "version": "v2.44.0",
+  "version": "v2.45.0",
   "description": "Open-Source kanban",
   "private": true,
   "scripts": {

+ 2 - 2
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,

+ 1 - 1
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);