Skip to content

4.2.0

Choose a tag to compare

@bizley bizley released this 10 Jun 10:04
· 116 commits to master since this release
35607a3
  • Added fileMode option to set the file permissions for generated migrations (int|string|null, default null, expects integer value like 0777 or integerish string convertable to integer).
  • Added fileOwnership option to set the file ownership for generated migrations (string|int|array<int|string, int|string>|null, default null, can be integer user id, string user name, string user:group combination, string user: or :group only, or array with [user, group] or ['user' => user, 'group' => group] data).
  • Changing file permission and group is done through Yii 2.0.43 FileHelper::changeOwnership() or the internal fallback in case of older Yii versions.
  • Refactored some code a bit.
  • Added more tests.
  • Improved mutation score.