78 Commits (af1fb2e8907b3dce6d50558a6b90874a6680837b)

Author SHA1 Message Date
Kévin Chalet 552ac02176 Introduce application requirements and add per-application PKCE enforcement support 7 years ago
Kévin Chalet 225b8ad9f5 Add device code flow support 7 years ago
Kévin Chalet 2c5e9c6a69 Use Enumerable.Contains() instead of ImmutableArray.Contains() and add missing cancellation tokens 7 years ago
Kévin Chalet 2113b573ad
Replace ValueTask<ImmutableArray<T>> by IAsyncEnumerable<T> 7 years ago
Kévin Chalet 32a51c026b
Replace the static caches used in the EF 6/EF Core/NHibernate caches by private singleton caches injected via DI 7 years ago
Kévin Chalet 9ee38c0efb
Introduce the first experimental OpenIddict 3.0 bits and move the build infrastructure to Arcade 7 years ago
Kévin Chalet 4242e43638 Remove invalid null checks from OpenIddictTokenStore 8 years ago
Kévin Chalet 313a4a92ec Update OpenIddictValidationConfiguration to validate the default sign-in/out schemes and ensure they don't point to the OpenIddict validation handler 8 years ago
Kévin Chalet 77ed793859 Update the OpenIddict builders to hide System.Object's root members 8 years ago
Kévin Chalet 38092df0ac Rename IOpenIddictTokenStore.SetTokenTypeAsync() to SetTypeAsync() 8 years ago
Kévin Chalet 041a83847a Introduce AuthenticationTicket extensions and move the EntityFramework/EntityFrameworkCore extensions to a better namespace 8 years ago
Kévin Chalet 338f8779f4 Update the OpenIddict.Core extensions to register the memory cache services and remove unnecessary references 8 years ago
Kévin Chalet 3a13c8505a Update the EF 6.x/EF Core entity configurations to use pre-defined column lengths 8 years ago
Kévin Chalet 55f358689c Introduce built-in entity caching support in the managers and allow disabling the additional checks 8 years ago
Kévin Chalet 50375c212d Introduce a custom exception type that allows flowing multiple validation errors 8 years ago
Kévin Chalet a60014dda5 Introduce OpenIddictAuthorizationManager.FindByApplicationIdAsync() and decorate the built-in models with [DebuggerDisplay] 8 years ago
Kévin Chalet 9a06891507 Tweak the events model to force user-defined handlers to explicitly determine whether other handlers can be invoked 8 years ago
Kévin Chalet 803b6abbf3 Update IOpenIddictAuthorizationManager.FindAsync() to make CancellationToken optional 8 years ago
Kévin Chalet ddbe7aed38 Update IOpenIddictAuthorizationStore.PruneAsync() to also take expired tokens into account 8 years ago
Kévin Chalet 0f89f638eb Introduce new FindAsync methods in OpenIddictTokenManager/IOpenIddictTokenStore 8 years ago
Kévin Chalet 4d8e458df5 Update documentation and move the MVC binder/binder provider to an .Internal namespace 8 years ago
Kévin Chalet 5a37afb116 Move the OpenIddict entities mappings to separate IEntityTypeConfiguration instances 8 years ago
Kévin Chalet b5c9798e17 Introduce new unit tests for the core/server/validation builders and extensions 8 years ago
Kévin Chalet 0cf7311664 Move the distributed/memory cache services registration from OpenIddict.Core to the stores/server packages 8 years ago
Vladyslav Martynets 80bfa33b36 Replace new() constraints by Activator.CreateInstance() to allow using abstract entities as generic parameters 8 years ago
Kévin Chalet b348a12a1c Update the EF 6.x/EF Core entities to use HashSet instead of List and automatically register EF 6.x context classes in the DI container 8 years ago
Kévin Chalet 321ab58801 Rename OpenIddictEntityFrameworkCoreOptions/OpenIddictEntityFrameworkOptions.ContextType to DbContextType 8 years ago
Kévin Chalet 2bc86ea255 Update OpenIddictServerExtensions to throw an exception when the core services are not registered 8 years ago
Kévin Chalet c3bab03116 Use private static fields instead of IMemoryCache to cache compiled queries 8 years ago
Kévin Chalet 32fe4b0ae7 Remove OpenIddict.Models/OpenIddict.Stores and move to per-provider models 8 years ago
Kévin Chalet 9515954ac9 Introduce non-generic manager interfaces and update the token server/validation services to use them 8 years ago
Kévin Chalet 7bca2c06ed Revamp the OpenIddict services registration process and introduce new builders to separate the server APIs from the core APIs 8 years ago
Kévin Chalet ef139e23d1 Move the default stores to OpenIddict.Stores and the server components to OpenIddict.Server 9 years ago
Kévin Chalet 2554bd55e1 Update the Entity Framework Core 2.0 stores to use compiled queries 9 years ago
Kévin Chalet cfcba5f79f Update OpenIddictApplicationStore/OpenIddictAuthorizationStore.DeleteAsync() to use serializable transactions 9 years ago
Kévin Chalet 866c61f399 Update the Entity Framework Core stores to be compatible with QueryTrackingBehavior.NoTracking 9 years ago
Kévin Chalet 8592dce45b Update the Get*Async() managers/stores methods to return ValueTask instead of Task 9 years ago
Kévin Chalet c56a1a355f Move PruneAsync() to the authorization/token stores to allow creating more efficient implementations 9 years ago
Kévin Chalet 176af6281a Update OpenIddictAuthorizationManager/OpenIddictTokenManager.PruneInvalidAsync() to re-throw exceptions 9 years ago
Kévin Chalet b3de8b998e Introduce OpenIddictScope.Resources and OpenIddictScopeManager.ListResourcesAsync() 9 years ago
Kévin Chalet f503fb7e7a Cache permissions, redirect_uris and post_logout_redirect_uris in memory 9 years ago
Kévin Chalet 173c89231f Make the CreateAsync() API consistent with DeleteAsync()/UpdateAsync() 9 years ago
Kévin Chalet 857820d6f9 Fix invalid XML documentation in the scopes manager/store 9 years ago
Kévin Chalet 41a19beb41 Introduce IOpenIddictScopeStore/OpenIddictScopeManager.FindByIdAsync()/GetIdAsync() 9 years ago
Kévin Chalet a19f5e81ff Rename OpenIddictToken.Ciphertext/Hash to Payload/ReferenceId and add new methods to allow overriding the default obfuscation 9 years ago
Kévin Chalet bddfdb74be Add "state" parameters to the GetAsync()/ListAsync() stores methods to avoid closure allocations 9 years ago
Kévin Chalet 02d5ff7100 Update the authorizations/tokens stores to eagerly load the associated applications/authorizations 9 years ago
Kévin Chalet 07177df0d3 Rework the applications/authorizations/scopes/tokens stores methods 9 years ago
Kévin Chalet 5c1eaff415 Use FirstOrDefaultAsync() instead of SingleOrDefaultAsync() to avoid generating SELECT TOP(2) SQL requests 9 years ago
Kévin Chalet 83eddce4f4 Use ToListAsync() instead of ToArrayAsync() to save an intermediate allocation 9 years ago