Skip to content

Commit

Permalink
bump vostok dependencies
Browse files Browse the repository at this point in the history
  • Loading branch information
belykhvd committed Nov 29, 2024
1 parent d0e2c42 commit 7cf6271
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 7 deletions.
8 changes: 4 additions & 4 deletions EdiApi.Client/EdiApi.Client.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -14,10 +14,10 @@

<ItemGroup>
<PackageReference Include="Newtonsoft.Json" Version="13.0.1" />
<PackageReference Include="Vostok.ClusterClient.Core" Version="0.1.26" />
<PackageReference Include="Vostok.ClusterClient.Singular" Version="0.1.11" />
<PackageReference Include="Vostok.ClusterClient.Tracing" Version="0.1.4" />
<PackageReference Include="Vostok.ClusterClient.Transport" Version="0.1.17" />
<PackageReference Include="Vostok.ClusterClient.Core" Version="0.1.57" />
<PackageReference Include="Vostok.ClusterClient.Singular" Version="0.1.29" />
<PackageReference Include="Vostok.ClusterClient.Tracing" Version="0.1.8" />
<PackageReference Include="Vostok.ClusterClient.Transport" Version="0.1.39" />
</ItemGroup>

</Project>
4 changes: 2 additions & 2 deletions EdiApi.Client/Http/BaseEdiApiHttpClient.cs
Original file line number Diff line number Diff line change
Expand Up @@ -200,11 +200,11 @@ private string BuildAuthorizationHeader(AuthCredentials? authCredentials, string
}
if (!string.IsNullOrEmpty(authCredentials?.PortalSid))
{
stringBuilder.Append("," + $"konturediauth_portalsid={authCredentials.PortalSid}");
stringBuilder.Append("," + $"konturediauth_portalsid={authCredentials!.PortalSid}");
}
if (!string.IsNullOrEmpty(authCredentials?.Login))
{
stringBuilder.Append("," + $"konturediauth_login={authCredentials.Login},konturediauth_password={authCredentials.Password}");
stringBuilder.Append("," + $"konturediauth_login={authCredentials!.Login},konturediauth_password={authCredentials.Password}");
}

return stringBuilder.ToString();
Expand Down
2 changes: 1 addition & 1 deletion version.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"$schema": "https://raw.githubusercontent.com/AArnott/Nerdbank.GitVersioning/master/src/NerdBank.GitVersioning/version.schema.json",
"version": "2.6",
"version": "2.7-pre.3",
"assemblyVersion": {
"precision": "build"
},
Expand Down

0 comments on commit 7cf6271

Please sign in to comment.