You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+65-1Lines changed: 65 additions & 1 deletion
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -5,6 +5,59 @@ All notable changes to this project will be documented in this file.
5
5
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
6
6
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).
7
7
8
+
## [v4.3.0]
9
+
10
+
### Changed Requirements
11
+
- Changed minimum PHP Version to 7.1
12
+
13
+
### Added
14
+
- Separated `BakeCommand` class into multiple methods to make it easier for sprinkle to add custom command to the `bake` command.
15
+
16
+
### Fix
17
+
-`bake` command return error if account sprinkle is not included ([#944])
18
+
19
+
### Changed
20
+
- Account sprinkle now extend the Core `BakeCommand` class to add the `create-admin` to the general bake command. Any sprinkle already extending the Core `BakeCommand` might need adjustments.
21
+
- Updated custom Eloquent relations (`belongsToManyThrough`, `morphToManyUnique`, `belongsToManyUnique`, `morphToManyUnique`, etc.) to support Laravel 5.8. See [The `belongsToMany` Method](https://laravel.com/docs/5.5/upgrade#upgrade-5.5.0).
22
+
23
+
### Removed
24
+
- Removed `belongsToManyConstrained` (deprecated in 4.1.6)
25
+
26
+
## [v4.2.3]
27
+
28
+
### Added
29
+
- Config to set Domain of RememberMe Cookie ([#990]; [#991]; Thanks @xrobau!)
30
+
- Config settings for password min/max length ([#993])
31
+
32
+
### Fixed
33
+
-[PHPMailer] Turn off opportunistic TLS when disabled ([#986]; [#987])
34
+
- Migrator now ignore files that don't end in `.php` ([#965]; Temporary fix for [#998])
35
+
36
+
## [v4.2.2]
37
+
38
+
### Added
39
+
- New group factory (`'UserFrosting\Sprinkle\Account\Database\Models\Group'`)
40
+
- New `withController` Trait, as an alternative for deprecated `ControllerTestCase`
41
+
- StyleCI config
42
+
-[Travis] SQLite in-memory DB testing
43
+
-[Travis] enabled memcache & Redis service
44
+
45
+
### Fixed
46
+
- DefaultPermissions seed results in SQL errors ([#981]; [#983])
47
+
- Make group & role schema consistent between creation and edition. Prevents group and role without a name or slug to be created during edition.
48
+
- Factories changed to make sure slugs are unique
49
+
- Fix `WithTestUser` Trait returning a user with id of zero or reserve master id when a non-master user was asked. If master user already exist, will return it instead of trying to create a new one (with the same id)
50
+
- Force close db connection on test `tearDown` procedure
51
+
52
+
### Changed
53
+
- Recommended PHP version is now 7.2, as 7.1 will be EOL in less than 6 months
54
+
- Added tests coverage for all build-in controllers
55
+
- Applied styling rules from StyleCI & updated php-cs-fixer rules to match StyleCI config
56
+
57
+
### Deprecated
58
+
-`ControllerTestCase`. Use `withController` Trait instead.
59
+
60
+
8
61
## [v4.2.1]
9
62
10
63
### Added
@@ -730,7 +783,18 @@ See [http://learn.userfrosting.com/upgrading/40-to-41](Upgrading 4.0.x to 4.1.x
[](https://chat.userfrosting.com/channel/support)
6
7
[](#backers)
7
8
[](#sponsors)
@@ -20,7 +33,7 @@ If you simply want to show that you like this project, or want to remember it fo
20
33
21
34
Copyright (c) 2019, free to use in personal and commercial software as per the [license](LICENSE.md).
22
35
23
-
UserFrosting is a secure, modern user management system written in PHP and built on top of the [Slim Microframework](http://www.slimframework.com/), [Twig](http://twig.sensiolabs.org/) templating engine, and [Eloquent](https://laravel.com/docs/5.4/eloquent#introduction) ORM.
36
+
UserFrosting is a secure, modern user management system written in PHP and built on top of the [Slim Microframework](http://www.slimframework.com/), [Twig](http://twig.sensiolabs.org/) templating engine, and [Eloquent](https://laravel.com/docs/5.8/eloquent#introduction) ORM.
0 commit comments