Skip to content

Commit

Permalink
Merge pull request #35 from qdimka/feature/update-zb-client-2.6
Browse files Browse the repository at this point in the history
feat: update dependency zb-client to v2.6.0
  • Loading branch information
VonDerBeck authored Jul 17, 2024
2 parents cfa412e + 9177bfb commit 00e435f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 2 additions & 0 deletions src/Zeebe.Client.Accelerator/Abstractions/AbstractJob.cs
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ public AbstractJob(IJob job)
public string Variables => job.Variables;

public string CustomHeaders => job.CustomHeaders;

public string TenantId => job.TenantId;
}

}
6 changes: 3 additions & 3 deletions src/Zeebe.Client.Accelerator/Zeebe.Client.Accelerator.csproj
Original file line number Diff line number Diff line change
Expand Up @@ -41,21 +41,21 @@ So this is our version of a good Bootstrap Extension for the C# Zeebe Client. Cr
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="8.0.0" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="8.0.0" />
<PackageReference Include="zb-client" Version="2.5.0" />
<PackageReference Include="zb-client" Version="2.6.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net7.0'">
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="7.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="7.0.1" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="7.0.0" />
<PackageReference Include="zb-client" Version="2.5.0" />
<PackageReference Include="zb-client" Version="2.6.0" />
</ItemGroup>

<ItemGroup Condition="'$(TargetFramework)' == 'net6.0'">
<PackageReference Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
<PackageReference Include="Microsoft.Extensions.Hosting" Version="6.0.1" />
<PackageReference Include="Microsoft.Extensions.Options.ConfigurationExtensions" Version="6.0.0" />
<PackageReference Include="zb-client" Version="2.5.0" />
<PackageReference Include="zb-client" Version="2.6.0" />
</ItemGroup>

<ItemGroup>
Expand Down

0 comments on commit 00e435f

Please sign in to comment.