summaryrefslogtreecommitdiffstats
path: root/Guard/Token
Commit message (Collapse)AuthorAgeFilesLines
* Merge branch '3.2'Nicolas Grekas2016-12-081-1/+1
|\ | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | * 3.2: (51 commits) [FrameworkBundle] [Workflow] Fix service marking store configuration Fix merge [Validator] add class name to the cache key [Serializer] Remove AbstractObjectNormalizer::isAttributeToNormalize Throw less misleading exception when property access not found [Twig] Fix deprecations with Twig 1.29 [FrameworkBundle] Fix validation cache warmer with failing or missing classes Fixed typo [FrameworkBundle] Removed the kernel.debug parameter from the cache pool namespace seed Fix email address fix the docblock in regard to the role argument [Bridge\Twig] Trigger deprecation when using FormExtension::$renderer Don't use the "app" global variable in the profiler [VarDumper] fix tests when xdebug is enabled Fix merge FIXED NON EXISTING TYPE DECLARATION [Form] Add failing test for data collector bug [Cache] Fix dumping SplDoublyLinkedList iter mode [Form] Fix FormDataCollector Ignore missing 'debug.file_link_formatter' service in Debug and Twig bundles ...
| * Fix email addressVictor Bocharsky2016-12-071-1/+1
| |
* | [Security] deprecate the RoleInterfaceChristian Flothmann2016-12-071-4/+4
|/
* Making GuardTokenInterface extend TokenInterfaceRyan Weaver2015-09-261-1/+3
| | | | | This makes some of our type-hints more honest: i.e. where we look for a GuardTokenInterface, but really also expect it to implement TokenInterface.
* Removing unnecessary overrideRyan Weaver2015-09-221-12/+0
|
* Tweaks thanks to WouterRyan Weaver2015-09-201-1/+1
|
* meaningless author and license changesRyan Weaver2015-09-203-3/+30
|
* Tweaking docblock on interface thanks to @iltarRyan Weaver2015-09-201-3/+4
|
* Adding periods at the end of exceptions, and changing one class name to ↵Ryan Weaver2015-09-201-1/+1
| | | | LogicException thanks to @iltar
* Thanks fabbot!Ryan Weaver2015-09-202-2/+2
|
* Renaming the tokens to be clear they are "post" and "pre" auth - also adding ↵Ryan Weaver2015-09-203-9/+21
| | | | | | | | | | | | | an interface The reason is that the GuardAuthenticationProvider *must* respond to *all* tokens created by the system - both "pre auth" and "post auth" tokens. The reason is that if a "post auth" token becomes not authenticated (e.g. because the user changes between requests), then it may be passed to the provider system. If no providers respond (which was the case before this commit), then AuthenticationProviderManager throws an exception. The next commit will properly handle these "post auth" + "no-longer-authenticated" tokens, which should cause a log out.
* Initial commit (but after some polished work) of the new Guard ↵Ryan Weaver2015-09-202-0/+152
authentication system