Skip to content

Commit

Permalink
Updated readme and release notes.
Browse files Browse the repository at this point in the history
Updated NuGet packages
Fixed assertion in DeviceFlowStore tests
  • Loading branch information
albertodall committed Sep 6, 2021
1 parent 2b5f0ae commit 441f8c2
Show file tree
Hide file tree
Showing 5 changed files with 18 additions and 8 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -7,17 +7,17 @@
</PropertyGroup>

<ItemGroup>
<PackageReference Include="FluentAssertions" Version="5.10.3" />
<PackageReference Include="FluentAssertions" Version="6.1.0" />
<PackageReference Include="Microsoft.AspNetCore.Http" Version="2.2.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="3.1.4" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="3.1.4" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects" Version="161.46367.54" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="Microsoft.SqlServer.SqlManagementObjects" Version="161.46437.65" />
<PackageReference Include="Moq" Version="4.16.1" />
<PackageReference Include="MySql.Data" Version="8.0.25" />
<PackageReference Include="Npgsql" Version="5.0.5" />
<PackageReference Include="MySql.Data" Version="8.0.26" />
<PackageReference Include="Npgsql" Version="5.0.7" />
<PackageReference Include="System.Data.SqlClient" Version="4.8.2" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.114.2" />
<PackageReference Include="System.Data.SQLite.Core" Version="1.0.115" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PrivateAssets>all</PrivateAssets>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -106,7 +106,7 @@ public async Task Should_Find_Stored_Data(TestDatabase testDb)
foundDeviceFlowCodes.Should().NotBeNull();
var deserializedData = serializer.Deserialize<DeviceCode>(foundDeviceFlowCodes?.Data);

deserializedData.CreationTime.Should().BeCloseTo(data.CreationTime);
deserializedData.CreationTime.Should().Be(data.CreationTime);
deserializedData.ClientId.Should().Be(data.ClientId);
deserializedData.Lifetime.Should().Be(data.Lifetime);
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
<PackageReference Include="Microsoft.AspNetCore.Http.Abstractions" Version="2.2.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="3.1.4" />
<PackageReference Include="Microsoft.Extensions.Logging.Abstractions" Version="3.1.4" />
<PackageReference Include="NHibernate" Version="5.3.8" />
<PackageReference Include="NHibernate" Version="5.3.9" />
<PackageReference Include="Microsoft.SourceLink.GitHub" Version="1.0.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
Expand Down
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,7 @@ That's why it's not recommended to use this provider in production with an in-me
I wish to thank all the contributors to this project:

- [Ivan](https://github.com/mtivan)
- [Hiller](https://github.com/Hiller)

# Acknowledgements
This package has been built using these awesome Open Source projects:
Expand Down
9 changes: 9 additions & 0 deletions RELEASENOTES.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,12 @@
## Build 2.1.4
_Release notes - IdentityServer4.NHibernate - Version 2.1.4_

__New features__
- No new features

__Resolved issues__
- [#15](https://github.com/albertodall/IdentityServer4.NHibernate/issues/15) - SqlException: Incorrect syntax near the keyword 'Key'. ([@Hiller](https://github.com/Hiller))

## Build 2.1.3
_Release notes - IdentityServer4.NHibernate - Version 2.1.3_

Expand Down

0 comments on commit 441f8c2

Please sign in to comment.