Skip to content

Commit

Permalink
Merge branch 'release/3.5.1'
Browse files Browse the repository at this point in the history
* release/3.5.1:
  Added changelog
  Added the new sort columns to the install migration.
  Borked release note.
  • Loading branch information
joshangell committed Feb 5, 2020
2 parents 53ef6f4 + 91ba55e commit c54f6e8
Show file tree
Hide file tree
Showing 2 changed files with 8 additions and 1 deletion.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,16 @@ 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

### 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))

Expand Down
2 changes: 2 additions & 0 deletions src/migrations/Install.php
Original file line number Diff line number Diff line change
Expand Up @@ -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(),
Expand Down

0 comments on commit c54f6e8

Please sign in to comment.