From 88f80e5070c20edb228d0909a9c9aeb81db45e89 Mon Sep 17 00:00:00 2001 From: Josh Angell Date: Wed, 5 Feb 2020 16:39:14 +0000 Subject: [PATCH 1/3] Borked release note. --- CHANGELOG.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index f1d177b..b911618 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -11,7 +11,7 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## 3.5.0 - 2020-02-05 ### Fixed -- Fixed things not working with Craft 3.4 ([79](https://github.com/angell-co/Spoon/issues/79)) +- Fixed things not working with Craft 3.4 ([#79](https://github.com/angell-co/Spoon/issues/79)) - Fixed an issue with block type configurations not keeping their order when deployed to another environment via project config ([#80](https://github.com/angell-co/Spoon/issues/80)) - Fixed an issue where Craft’s info table was being updated on every CP request ([#82](https://github.com/angell-co/Spoon/issues/82)) From 852fbab626a4a48261dc9bd3b358aaada0c7a10d Mon Sep 17 00:00:00 2001 From: Josh Angell Date: Wed, 5 Feb 2020 21:33:21 +0000 Subject: [PATCH 2/3] Added the new sort columns to the install migration. Fixes #86 --- src/migrations/Install.php | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/migrations/Install.php b/src/migrations/Install.php index 8f5fed4..0434452 100644 --- a/src/migrations/Install.php +++ b/src/migrations/Install.php @@ -116,6 +116,8 @@ protected function createTables() 'fieldLayoutId' => $this->integer(), 'groupName' => $this->string(255)->notNull()->defaultValue(''), 'context' => $this->string(255)->notNull()->defaultValue(''), + 'groupSortOrder' => $this->smallInteger()->unsigned(), + 'sortOrder' => $this->smallInteger()->unsigned(), 'dateCreated' => $this->dateTime()->notNull(), 'dateUpdated' => $this->dateTime()->notNull(), 'uid' => $this->uid(), From 91ba55e36098887114cdadf056ba9c144fb9193a Mon Sep 17 00:00:00 2001 From: Josh Angell Date: Wed, 5 Feb 2020 21:34:27 +0000 Subject: [PATCH 3/3] Added changelog --- CHANGELOG.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/CHANGELOG.md b/CHANGELOG.md index b911618..3c09d58 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p ## Unreleased +## 3.5.1 - 2020-02-05 + +### Fixed +- Fixed missing sort fields on new installs ([#86](https://github.com/angell-co/Spoon/issues/86)) + ## 3.5.0 - 2020-02-05