Skip to content

Releases: mikebronner/laravel-governor

0.4.1

04 Jun 23:41
Compare
Choose a tag to compare
0.4.1 Pre-release
Pre-release

Removed

  • erroneous composer.json entry for Laravel 5.1 compatibility.

Upgrade to Laravel 5.4

04 Jun 22:42
Compare
Choose a tag to compare
Pre-release

This plugin is unfortunately no longer backwards compatible, and trying to add backwards compatibility proved to be difficult to maintain and very time-consuming. So for now, we will try to maintain backward compatibility where possible as we move forward with newer Laravel releases, but won't guarantee it.

Added

  • Laravel 5.4 compatibility.
  • automatic policy detection, making Entity seeding unnecessary.
  • automatic adding of created_by column in tables, regardless of models.
  • PHPCI integration.
  • initial set of tests, with more to come.
  • config file documentation.

Fixed

  • role editing form.

Changed

  • views to use the projects master layout file and be easier to publish.
  • config settings to be more appropriate.
  • controllers and models with PHP7 stuff and general clean up.
  • routes to use dedicated folder.
  • traits to use dedicated folder.
  • policies to be much more concise, no methods needed.
  • config variables to be more consistent.
  • updated README documentation.

Laravel 5.2 Compatible

25 Jan 02:08
Compare
Choose a tag to compare
Pre-release

Added

  • $incrementing = false; to classes using name as primary key.
  • use statements in migrations.

Changed

  • added routes to web route group.
  • creation of $user using helper methods app() and config().

0.2.1

02 Dec 18:07
Compare
Choose a tag to compare
0.2.1 Pre-release
Pre-release

Fixed

  • reference to User model primary key to not use $user->id, but instead $user->getKey().

Changed

  • installation instructions to make sure a User exists in the system.

0.2.0

02 Dec 17:32
Compare
Choose a tag to compare
0.2.0 Pre-release
Pre-release

Changed

  • installation instructions for adding Entities.
  • views to better resemble Spark Settings components, so they can be integrated into Spark.

Removed

  • entities view, as it wasn't conducive to a good workflow.
  • requirement to manually add Collective\Html package.

0.1.8

29 Sep 21:38
Compare
Choose a tag to compare
0.1.8 Pre-release
Pre-release

Added

  • "laravelcollective/html" as a package dependency.

Changed

0.1.7

19 Sep 02:58
Compare
Choose a tag to compare
0.1.7 Pre-release
Pre-release

Fixed

  • Saving of rules (would fail due to incorrect form values).

0.1.6

07 Sep 04:52
Compare
Choose a tag to compare
0.1.6 Pre-release
Pre-release

Added

  • most unit tests, will add additional ones as necessary.

Changed

  • used Guard facade in Requests, instead of Auth::user()->can() to integrate more tightly into Laravel Authorization.

Fixed

  • typo in Edit Entity view.

Removed

  • unneeded functionality in Governable trait.
  • unneeded Request class.

0.1.5

06 Sep 21:48
Compare
Choose a tag to compare
0.1.5 Pre-release
Pre-release

Fixed

  • Entity routes in controller
  • Updated to README by @Busayo and @drbyte, thanks guys!

Changed

  • Cleaned up models

0.1.4

06 Sep 17:57
Compare
Choose a tag to compare
0.1.4 Pre-release
Pre-release

Added

  • isSuperAdmin attribute to governable users (this differs from the Laravel documentation in that it is an attribute of the user, and not a method)
  • automatic super-admin interception, no need to manually add it to your auth middleware, policies, or service providers

Fixed

  • possible issue with seeder class, causing it to fail in certain situations