Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update dependencies #15

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions JDBC.NET.Bridge/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -19,19 +19,19 @@
<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-netty-shaded</artifactId>
<version>1.46.0</version>
<version>1.53.0</version>
</dependency>

<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-protobuf</artifactId>
<version>1.46.0</version>
<version>1.53.0</version>
</dependency>

<dependency>
<groupId>io.grpc</groupId>
<artifactId>grpc-stub</artifactId>
<version>1.46.0</version>
<version>1.53.0</version>
</dependency>

<dependency>
Expand All @@ -50,7 +50,7 @@
<dependency>
<groupId>com.google.protobuf</groupId>
<artifactId>protobuf-java</artifactId>
<version>3.21.7</version>
<version>3.22.0</version>
</dependency>
</dependencies>

Expand Down
8 changes: 4 additions & 4 deletions JDBC.NET.Data/JDBC.NET.Data.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,15 +10,15 @@
<RepositoryUrl>https://github.com/chequer-io/JDBC.NET</RepositoryUrl>
<PackageProjectUrl>https://github.com/chequer-io/JDBC.NET</PackageProjectUrl>
<PackageIcon>Logo.jpg</PackageIcon>
<Version>3.4.2</Version>
<Version>3.4.3</Version>
<AllowUnsafeBlocks>true</AllowUnsafeBlocks>
</PropertyGroup>

<ItemGroup>
<PackageReference Include="J2NET" Version="1.2.0" />
<PackageReference Include="Google.Protobuf" Version="3.19.3" />
<PackageReference Include="Grpc" Version="2.43.0" />
<PackageReference Include="Grpc.Tools" Version="2.43.0">
<PackageReference Include="Google.Protobuf" Version="3.22.0" />
<PackageReference Include="Grpc" Version="2.46.6" />
<PackageReference Include="Grpc.Tools" Version="2.51.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>
Expand Down
2 changes: 1 addition & 1 deletion JDBC.NET.Data/JdbcCommand.cs
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ private void CloseStatement()
if (Connection is not JdbcConnection jdbcConnection)
throw new InvalidOperationException();

if (Connection.State != ConnectionState.Closed)
if (Connection.State is not ConnectionState.Closed)
{
jdbcConnection.Bridge.Statement.closeStatement(new CloseStatementRequest
{
Expand Down
2 changes: 1 addition & 1 deletion JDBC.NET.Sample/JDBC.NET.Sample.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@
</ItemGroup>

<PropertyGroup>
<RuntimeVersion>1.1.0</RuntimeVersion>
<RuntimeVersion>1.2.0</RuntimeVersion>
<OSPlatform Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::OSX)))' == 'true'">OSX</OSPlatform>
<OSPlatform Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Linux)))' == 'true'">Linux</OSPlatform>
<OSPlatform Condition="'$([System.Runtime.InteropServices.RuntimeInformation]::IsOSPlatform($([System.Runtime.InteropServices.OSPlatform]::Windows)))' == 'true'">Windows</OSPlatform>
Expand Down