Skip to content

Commit

Permalink
Bump OpenIddict to 5.7.0
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinchalet committed Jun 19, 2024
1 parent 9fb1ef2 commit a86f66d
Show file tree
Hide file tree
Showing 8 changed files with 12 additions and 12 deletions.
4 changes: 2 additions & 2 deletions guides/getting-started/creating-your-own-server-instance.md
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,8 @@ If you don't want to start from one of the recommended samples, you'll need to:
- **Update your `.csproj` file** to reference the latest `OpenIddict.AspNetCore` and `OpenIddict.EntityFrameworkCore` packages:

```xml
<PackageReference Include="OpenIddict.AspNetCore" Version="5.6.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.6.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="5.7.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.7.0" />
```

- **Register your Entity Framework Core database context and configure the OpenIddict core services** in `Program.cs`
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ If you don't want to start from one of the recommended samples, you'll need to:
- **Reference the `OpenIddict.AspNetCore` package**:

```xml
<PackageReference Include="OpenIddict.AspNetCore" Version="5.6.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="5.7.0" />
```

- **Configure the OpenIddict validation services** in `Startup.ConfigureServices`:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -17,7 +17,7 @@ in web and desktop applications. If you want to use a non-interactive flow like
- **Update your `.csproj` file** to reference the latest `OpenIddict` package:

```xml
<PackageReference Include="OpenIddict" Version="5.6.0" />
<PackageReference Include="OpenIddict" Version="5.7.0" />
```

- **Configure the OpenIddict client services** in `Program.cs` (or `Startup.cs` if you use the regular ASP.NET Core web host):
Expand Down Expand Up @@ -71,8 +71,8 @@ If you don't want to start from one of the recommended samples, you'll need to:
- **Update your `.csproj` file** to reference the latest `OpenIddict.AspNetCore` and `OpenIddict.EntityFrameworkCore` packages:

```xml
<PackageReference Include="OpenIddict.AspNetCore" Version="5.6.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.6.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="5.7.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.7.0" />
```

- **Configure the OpenIddict core services** in `Program.cs` (or `Startup.cs`, depending on whether you're using the minimal host or the regular host):
Expand Down
4 changes: 2 additions & 2 deletions guides/migration/40-to-50.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ For that, update your `.csproj` file to reference the `OpenIddict` 5.x packages.
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="4.10.1" />

<!-- OpenIddict 5.x: -->
<PackageReference Include="OpenIddict.AspNetCore" Version="5.6.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.6.0" />
<PackageReference Include="OpenIddict.AspNetCore" Version="5.7.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.7.0" />
</ItemGroup>
```

Expand Down
2 changes: 1 addition & 1 deletion integrations/entity-framework-core.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To configure OpenIddict to use Entity Framework Core as the database for applica
- **Reference the `OpenIddict.EntityFrameworkCore` package**:

```xml
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.6.0" />
<PackageReference Include="OpenIddict.EntityFrameworkCore" Version="5.7.0" />
```

- **Create a database context deriving from `DbContext` (or `IdentityDbContext` when using ASP.NET Core Identity)**:
Expand Down
2 changes: 1 addition & 1 deletion integrations/entity-framework.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To configure OpenIddict to use Entity Framework 6.x as the database for applicat
- **Reference the `OpenIddict.EntityFramework` package**:

```xml
<PackageReference Include="OpenIddict.EntityFramework" Version="5.6.0" />
<PackageReference Include="OpenIddict.EntityFramework" Version="5.7.0" />
```

- **Create a database context deriving from `DbContext` and register the OpenIddict entities in the model**:
Expand Down
2 changes: 1 addition & 1 deletion integrations/mongodb.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To configure OpenIddict to use MongoDB as the database for applications, authori
- **Reference the `OpenIddict.MongoDb` package**:

```xml
<PackageReference Include="OpenIddict.MongoDb" Version="5.6.0" />
<PackageReference Include="OpenIddict.MongoDb" Version="5.7.0" />
```

- **Configure OpenIddict to use the MongoDB stores**:
Expand Down
2 changes: 1 addition & 1 deletion integrations/quartz.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ To configure OpenIddict to use Quartz.NET to perform automated cleanup tasks, yo
- **Reference the `OpenIddict.Quartz` package**:

```xml
<PackageReference Include="OpenIddict.Quartz" Version="5.6.0" />
<PackageReference Include="OpenIddict.Quartz" Version="5.7.0" />
```

- **Register the Quartz.NET services and configure it to use dependency injection and an in-memory store**:
Expand Down

0 comments on commit a86f66d

Please sign in to comment.