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 NuGet Packages - Minor Updates #56

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
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
Update NuGet Packages - Minor Updates
renovate[bot] authored Jan 9, 2025

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature.
commit 3082b0504abb081aa6cb233b77feca7446ca5e18
14 changes: 7 additions & 7 deletions src/sharpbq.csproj
Original file line number Diff line number Diff line change
@@ -10,13 +10,13 @@

<ItemGroup>
<None Include="../README.md" Pack="true" PackagePath="\" />
<PackageReference Include="Google.Cloud.BigQuery.V2" Version="3.1.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
<PackageReference Include="Google.Cloud.BigQuery.V2" Version="3.10.0" />
<PackageReference Include="Microsoft.Extensions.Configuration" Version="6.0.2" />
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Configuration.Json" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.DependencyInjection" Version="6.0.2" />
<PackageReference Include="Microsoft.Extensions.Options" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.1" />
</ItemGroup>

</Project>
8 changes: 4 additions & 4 deletions test/sharpbq.UnitTests/sharpbq.UnitTests.csproj
Original file line number Diff line number Diff line change
@@ -9,13 +9,13 @@

<ItemGroup>
<PackageReference Include="Microsoft.NET.Test.Sdk" Version="16.11.0" />
<PackageReference Include="Shouldly" Version="4.1.0" />
<PackageReference Include="xunit" Version="2.4.1" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.4.3">
<PackageReference Include="Shouldly" Version="4.2.1" />
<PackageReference Include="xunit" Version="2.9.3" />
<PackageReference Include="xunit.runner.visualstudio" Version="2.8.2">
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
<PrivateAssets>all</PrivateAssets>
</PackageReference>
<PackageReference Include="coverlet.msbuild" Version="3.1.2">
<PackageReference Include="coverlet.msbuild" Version="3.2.0">
<PrivateAssets>all</PrivateAssets>
<IncludeAssets>runtime; build; native; contentfiles; analyzers; buildtransitive</IncludeAssets>
</PackageReference>

Unchanged files with check annotations Beta

public interface ISharpBQClient
{
BigQueryResults ExecuteQuery(string sql, IEnumerable<BigQueryParameter> parameters,
QueryOptions queryOptions = null, GetQueryResultsOptions resultsOptions = null);

Check warning on line 9 in src/DataAccess/Clients/ISharpBQClient.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.

Check warning on line 9 in src/DataAccess/Clients/ISharpBQClient.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.
Task<BigQueryResults> ExecuteQueryAsync(string sql, IEnumerable<BigQueryParameter> parameters,
QueryOptions queryOptions = null, GetQueryResultsOptions resultsOptions = null);

Check warning on line 12 in src/DataAccess/Clients/ISharpBQClient.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.

Check warning on line 12 in src/DataAccess/Clients/ISharpBQClient.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.
BigQueryJob GetJob(JobReference jobReference, GetJobOptions options = null);

Check warning on line 14 in src/DataAccess/Clients/ISharpBQClient.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.
Task<BigQueryJob> GetJobAsync(JobReference jobReference, GetJobOptions options = null);

Check warning on line 16 in src/DataAccess/Clients/ISharpBQClient.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.
}
{
List<T> Query<T>(string queryString);
Task<List<T>> QueryAsync<T>(string queryString, List<BigQueryParameter> parameters = null);

Check warning on line 9 in src/DataAccess/IDataStoreBase.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.
}
return resultsList;
}
public async Task<List<T>> QueryAsync<T>(string queryString, List<BigQueryParameter> parameters = null)

Check warning on line 39 in src/DataAccess/DataStoreBase.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.
{
var results = await _client.ExecuteQueryAsync(queryString, parameters: parameters,
new QueryOptions { UseQueryCache = false },
}
public BigQueryResults ExecuteQuery(string sql, IEnumerable<BigQueryParameter> parameters,
QueryOptions queryOptions = null,

Check warning on line 19 in src/DataAccess/Clients/SharpBQClient.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.
GetQueryResultsOptions resultsOptions = null) =>

Check warning on line 20 in src/DataAccess/Clients/SharpBQClient.cs

GitHub Actions / unit

Cannot convert null literal to non-nullable reference type.
_client.ExecuteQuery(sql, parameters, queryOptions, resultsOptions);
public async Task<BigQueryResults> ExecuteQueryAsync(string sql, IEnumerable<BigQueryParameter> parameters,