Skip to content

Commit 97481a7

Browse files
authored
Merge pull request #767 from camunda-community-hub/release/2.8.0
Release/2.8.0
2 parents 6b4521b + 35ea796 commit 97481a7

File tree

216 files changed

+3073
-1857
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

216 files changed

+3073
-1857
lines changed

Client/Client.csproj

+6-6
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
<PropertyGroup>
44
<TargetFrameworks>net6.0;net7.0;net8.0</TargetFrameworks>
5-
<Version>2.7.0</Version>
5+
<Version>2.8.0</Version>
66
<Authors>Christopher Zell</Authors>
77
<Company/>
88
<Description>
@@ -14,13 +14,13 @@
1414
<PackageProjectUrl>https://github.com/zeebe-io/zeebe-client-csharp</PackageProjectUrl>
1515
<PackageTags>zeebe, zb, zb-csharp, zb-client, grpc</PackageTags>
1616

17-
<AssemblyVersion>2.7.0</AssemblyVersion>
18-
<FileVersion>2.7.0</FileVersion>
17+
<AssemblyVersion>2.8.0</AssemblyVersion>
18+
<FileVersion>2.8.0</FileVersion>
1919
<PackageReleaseNotes>
2020

2121
See release notes https://github.com/camunda-community-hub/zeebe-client-csharp/releases
2222

23-
This release is based on the Zeebe 8.5.6 release (https://github.com/zeebe-io/zeebe).
23+
This release is based on the Zeebe 8.6.8 release (https://github.com/zeebe-io/zeebe).
2424
</PackageReleaseNotes>
2525
<PackageRequireLicenseAcceptance>true</PackageRequireLicenseAcceptance>
2626
<GeneratePackageOnBuild>true</GeneratePackageOnBuild>
@@ -30,9 +30,9 @@
3030
<RepositoryType>git</RepositoryType>
3131
<PackageLicenseExpression>Apache-2.0</PackageLicenseExpression>
3232
<PackageIcon>icon.png</PackageIcon>
33-
<PackageVersion>2.7.0</PackageVersion>
33+
<PackageVersion>2.8.0</PackageVersion>
3434
<RootNamespace>Zeebe.Client</RootNamespace>
35-
<Title>2.7.0</Title>
35+
<Title>2.8.0</Title>
3636
<LangVersion>default</LangVersion>
3737
<PackageReadmeFile>README.md</PackageReadmeFile>
3838
</PropertyGroup>

Client/Impl/proto/Gateway.cs

+719-195
Large diffs are not rendered by default.

Client/Impl/proto/GatewayGrpc.cs

+15
Original file line numberDiff line numberDiff line change
@@ -685,9 +685,12 @@ public abstract partial class GatewayBase
685685
///FAILED_PRECONDITION:
686686
///- not all active elements in the given process instance are mapped to the elements in the target process definition
687687
///- a mapping instruction changes the type of an element or event
688+
///- a mapping instruction changes the implementation of a task
689+
///- a mapping instruction detaches a boundary event from an active element
688690
///- a mapping instruction refers to an unsupported element (i.e. some elements will be supported later on)
689691
///- a mapping instruction refers to element in unsupported scenarios.
690692
///(i.e. migration is not supported when process instance or target process elements contains event subscriptions)
693+
///- multiple mapping instructions target the same boundary event
691694
///
692695
///INVALID_ARGUMENT:
693696
///- A `sourceElementId` does not refer to an element in the process instance's process definition
@@ -2163,9 +2166,12 @@ protected GatewayClient(ClientBaseConfiguration configuration) : base(configurat
21632166
///FAILED_PRECONDITION:
21642167
///- not all active elements in the given process instance are mapped to the elements in the target process definition
21652168
///- a mapping instruction changes the type of an element or event
2169+
///- a mapping instruction changes the implementation of a task
2170+
///- a mapping instruction detaches a boundary event from an active element
21662171
///- a mapping instruction refers to an unsupported element (i.e. some elements will be supported later on)
21672172
///- a mapping instruction refers to element in unsupported scenarios.
21682173
///(i.e. migration is not supported when process instance or target process elements contains event subscriptions)
2174+
///- multiple mapping instructions target the same boundary event
21692175
///
21702176
///INVALID_ARGUMENT:
21712177
///- A `sourceElementId` does not refer to an element in the process instance's process definition
@@ -2197,9 +2203,12 @@ protected GatewayClient(ClientBaseConfiguration configuration) : base(configurat
21972203
///FAILED_PRECONDITION:
21982204
///- not all active elements in the given process instance are mapped to the elements in the target process definition
21992205
///- a mapping instruction changes the type of an element or event
2206+
///- a mapping instruction changes the implementation of a task
2207+
///- a mapping instruction detaches a boundary event from an active element
22002208
///- a mapping instruction refers to an unsupported element (i.e. some elements will be supported later on)
22012209
///- a mapping instruction refers to element in unsupported scenarios.
22022210
///(i.e. migration is not supported when process instance or target process elements contains event subscriptions)
2211+
///- multiple mapping instructions target the same boundary event
22032212
///
22042213
///INVALID_ARGUMENT:
22052214
///- A `sourceElementId` does not refer to an element in the process instance's process definition
@@ -2229,9 +2238,12 @@ protected GatewayClient(ClientBaseConfiguration configuration) : base(configurat
22292238
///FAILED_PRECONDITION:
22302239
///- not all active elements in the given process instance are mapped to the elements in the target process definition
22312240
///- a mapping instruction changes the type of an element or event
2241+
///- a mapping instruction changes the implementation of a task
2242+
///- a mapping instruction detaches a boundary event from an active element
22322243
///- a mapping instruction refers to an unsupported element (i.e. some elements will be supported later on)
22332244
///- a mapping instruction refers to element in unsupported scenarios.
22342245
///(i.e. migration is not supported when process instance or target process elements contains event subscriptions)
2246+
///- multiple mapping instructions target the same boundary event
22352247
///
22362248
///INVALID_ARGUMENT:
22372249
///- A `sourceElementId` does not refer to an element in the process instance's process definition
@@ -2263,9 +2275,12 @@ protected GatewayClient(ClientBaseConfiguration configuration) : base(configurat
22632275
///FAILED_PRECONDITION:
22642276
///- not all active elements in the given process instance are mapped to the elements in the target process definition
22652277
///- a mapping instruction changes the type of an element or event
2278+
///- a mapping instruction changes the implementation of a task
2279+
///- a mapping instruction detaches a boundary event from an active element
22662280
///- a mapping instruction refers to an unsupported element (i.e. some elements will be supported later on)
22672281
///- a mapping instruction refers to element in unsupported scenarios.
22682282
///(i.e. migration is not supported when process instance or target process elements contains event subscriptions)
2283+
///- multiple mapping instructions target the same boundary event
22692284
///
22702285
///INVALID_ARGUMENT:
22712286
///- A `sourceElementId` does not refer to an element in the process instance's process definition

Doxyfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ PROJECT_NAME = "Zeebe C# Client"
3838
# could be handy for archiving the generated documentation or if some version
3939
# control system is used.
4040

41-
PROJECT_NUMBER = 2.7.0
41+
PROJECT_NUMBER = 2.8.0
4242

4343
# Using the PROJECT_BRIEF tag one can provide an optional one line description
4444
# for a project that appears at the top of each page and should give viewer a

0 commit comments

Comments
 (0)