Skip to content
This repository was archived by the owner on Feb 10, 2021. It is now read-only.

Commit 28eaa1b

Browse files
committed
Merge branch 'release/1.0.6'
* release/1.0.6: Changelog for 1.0.6. Chaning the `template` attribute to be 255.
2 parents 2447007 + 1621881 commit 28eaa1b

File tree

2 files changed

+6
-1
lines changed

2 files changed

+6
-1
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,11 @@ The format is based on [Keep a Changelog](http://keepachangelog.com/) and this p
77

88
## Unreleased
99

10+
## 1.0.6 - 2019-01-28
11+
12+
### Fixed
13+
- Fixed an issue with the length of the template attribute in MySQL 5.6 ([#5](https://github.com/angell-co/Portal/issues/5)).
14+
1015

1116
## 1.0.5 - 2018-09-27
1217

src/models/Target_SiteSettings.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ public function rules()
139139
$rules = [
140140
[ [ 'id', 'targetId', 'siteId' ], 'number', 'integerOnly' => true ],
141141
[ [ 'siteId' ], SiteIdValidator::class ],
142-
[ [ 'template' ], 'string', 'max' => 500 ]
142+
[ [ 'template' ], 'string', 'max' => 255 ]
143143
];
144144

145145
return $rules;

0 commit comments

Comments
 (0)