Skip to content

Releases: mikebronner/laravel-governor

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

0.1.3

06 Sep 03:41
Compare
Choose a tag to compare
0.1.3 Pre-release
Pre-release

Fixed

  • excluded _token from being saved when creating roles.

0.1.2

05 Sep 00:35
Compare
Choose a tag to compare
0.1.2 Pre-release
Pre-release

Added

  • first set of unit tests (working on more)
  • Travis-CI
  • Coveralls

Fixed

  • copy/paste error with rules, entity, and assignment policies
  • added LaravelCollective/Html service provider to installation instructions