Skip to content

Commit

Permalink
Release 4.6.6
Browse files Browse the repository at this point in the history
  • Loading branch information
lcharette committed Oct 3, 2022
2 parents 12f0ff7 + 756a278 commit 098fc70
Show file tree
Hide file tree
Showing 3 changed files with 17 additions and 1 deletion.
5 changes: 5 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,11 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](http://keepachangelog.com/en/1.0.0/)
and this project adheres to [Semantic Versioning](http://semver.org/spec/v2.0.0.html).

## [v4.6.6](https://github.com/userfrosting/UserFrosting/compare/v4.6.5...v4.6.6)

### Fix
- Added dependencies to AddingForeignKeys Migration ([#1212](https://github.com/userfrosting/UserFrosting/pull/1212))

## [v4.6.5](https://github.com/userfrosting/UserFrosting/compare/v4.6.4...v4.6.5)

### Fix
Expand Down
2 changes: 1 addition & 1 deletion app/defines.php
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@
namespace UserFrosting;

// Some standard defines
define('UserFrosting\VERSION', '4.6.4');
define('UserFrosting\VERSION', '4.6.6');
define('UserFrosting\DS', '/');
define('UserFrosting\PHP_MIN_VERSION', '^7.3 | ^8.0');
define('UserFrosting\PHP_RECOMMENDED_VERSION', '^8.0');
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,17 @@
*/
class AddingForeignKeys extends Migration
{
public static $dependencies = [
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\GroupsTable',
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\UsersTable',
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\VerificationsTable',
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\ActivitiesTable',
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\PasswordResetsTable',
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\PermissionsTable', // which itself requires RolesTable and PermissionsRolesTable
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\PersistencesTable',
'\UserFrosting\Sprinkle\Account\Database\Migrations\v400\RoleUsersTable',
];

/**
* @var array List of operation to do
*/
Expand Down

0 comments on commit 098fc70

Please sign in to comment.