Skip to content

Releases: cakephp/authorization

CakePHP Authorization 2.0.2

14 Jan 14:38
3acb37e
Compare
Choose a tag to compare

Fixes

  • Console command building no longer fails when bake is not installed.

CakePHP Authorization 2.0.1

09 Jan 15:41
3930120
Compare
Choose a tag to compare

Fixes

  • Use stable versions of all dependencies.
  • Redirect URLs no longer contain the host or protocol. When doing redirects you should validate URLs again.
  • Redirect URLs now include the base path.

CakePHP Authorization 1.3.1

09 Jan 15:49
Compare
Choose a tag to compare

Fixes

  • Generated redirect URLs no longer contain the host or protocol. You should validate URLs before redirecting or use the method in authentication plugin.
  • Base paths are included in URLs generated by RedirectHandler.

CakePHP Authorization 2.0.0

16 Dec 03:20
Compare
Choose a tag to compare
  • Compatible with CakePHP 4.0

1.3.0

09 Nov 19:57
021935f
Compare
Choose a tag to compare

Improvements

Removed deprecations.
This plugin is now CakePHP 3.6+.

Authorization 1.2.0

26 Apr 10:49
Compare
Choose a tag to compare

New features

  • Convenience methods for actionMap and authorizeModel configuration keys added (#73)

Additionally, the docs have been moved to the Cookbook.

Authorization 1.1.0

02 Feb 19:18
1.1.0
Compare
Choose a tag to compare

New Features

  • The argument to authorize() can now be a scalar value. This enables
    the creation of resolvers that don't require an object.
  • Policies can now return Authorization\Policy\Result instead of just
    a boolean. This new object allows an additional reason code to be
    supplied for when authorization is denied.
  • Authorization\Exception\ForbiddenException::getResult() was added.
  • Authorization\Policy\RequestPolicyInterface was added. It defines
    an interface for doing access checks based on the request object.

1.0.0

17 Nov 06:47
1.0.0
bad690c
Compare
Choose a tag to compare
  • Authorization 1.0.0

1.0.0-beta8

17 Nov 06:34
1.0.0-beta8
c1084a1
Compare
Choose a tag to compare
1.0.0-beta8 Pre-release
Pre-release
  • Application classes must now implement the Authorization\AuthorizationProviderInterface

Authorization 1.0.0-beta6

05 Jun 02:10
1.0.0-beta6
Compare
Choose a tag to compare
Pre-release

New Features

  • Improved documentation.