Skip to content

Commit

Permalink
Merge pull request #14 from francnuec/update-neo4jclient
Browse files Browse the repository at this point in the history
Update Neo4jClient to 4.1.14
  • Loading branch information
Arsslensoft committed Jul 2, 2021
2 parents cac65dd + 453a901 commit 0016c0a
Show file tree
Hide file tree
Showing 4 changed files with 22 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@

<ItemGroup>
<PackageReference Include="Castle.Core" Version="4.4.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.7.1" />
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.10.0" />
<PackageReference Include="NSubstitute" Version="4.2.2" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -67,5 +67,15 @@ public Task RollbackAsync()
{
return WrappedItem.RollbackAsync();
}

public ValueTask DisposeAsync()
{
return WrappedItem.DisposeAsync();
}

public void Dispose()
{
WrappedItem.Dispose();
}
}
}
10 changes: 10 additions & 0 deletions Neo4jClient.DataAnnotations/Extensions/Driver/SessionWrapper.cs
Original file line number Diff line number Diff line change
Expand Up @@ -123,5 +123,15 @@ protected internal static IAsyncTransaction GetAsyncTransaction(IAsyncTransactio

return transaction;
}

public ValueTask DisposeAsync()
{
return WrappedItem.DisposeAsync();
}

public void Dispose()
{
WrappedItem.Dispose();
}
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@

<ItemGroup>
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="5.0.1" />
<PackageReference Include="Neo4jClient" Version="4.1.2" />
<PackageReference Include="Neo4jClient" Version="4.1.14" />
<PackageReference Include="System.ComponentModel.Annotations" Version="5.0.0" />
</ItemGroup>

Expand Down

0 comments on commit 0016c0a

Please sign in to comment.