Skip to content

Releases: orchestral/authorization

v5.0.0

01 Mar 03:22

Choose a tag to compare

Changes

  • Update support for Laravel Framework v7.

v4.0.0

03 Sep 22:18

Choose a tag to compare

Changes

  • Update support for Laravel Framework v6.

v3.8.2

03 Sep 21:59

Choose a tag to compare

Changes

  • Orchestra\Authorization should accepts Illuminate\Contracts\Auth\Guard and only check for Orchestra\Contracts\Auth\Guard if it's available.

v3.8.1

03 Sep 21:58

Choose a tag to compare

Changes

  • Use static function rather than function whenever possible, the PHP engine does not need to instantiate and later GC a $this variable for said closure.

v3.8.0

12 Mar 03:05

Choose a tag to compare

Changes

  • Update support to Laravel Framework 5.8.

v3.7.1

21 Feb 07:18

Choose a tag to compare

Changes

  • Improve performance by prefixing all global functions calls with \ to skip the look up and resolve process and go straight to the global function.

v3.7.0

08 Nov 03:12

Choose a tag to compare

Changes

  • Update support to Laravel Framework 5.7.

v3.6.0

02 May 01:43

Choose a tag to compare

Added

  • Added Orchestra\Authorization\Authorization::canAs() and Orchestra\Authorization\Authorization::canIfAs() which you can send an instance of Orchestra\Contracts\Authorization\Authorizable to check authorization explicitly for the $user.

Changes

  • Update support to Laravel Framework 5.6.

v3.5.2

25 Apr 07:55

Choose a tag to compare

Added

  • Added Orchestra\Authorization\Authorization::canAs() and Orchestra\Authorization\Authorization::canIfAs() which you can send an instance of Orchestra\Contracts\Authorization\Authorizable to check authorization explicitly for the $user.

v3.5.1

28 Nov 23:44

Choose a tag to compare

Changes

  • Split Orchestra\Authorization\Fluent to Orchestra\Authorization\Action and Orchestra\Authorization\Role.