Skip to content

Commit ce01763

Browse files
author
Sophia Tevosyan
committed
adding changes necessary for testing and releasing package
1 parent 958ec3a commit ce01763

File tree

5 files changed

+27
-5
lines changed

5 files changed

+27
-5
lines changed

Directory.Packages.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@
2828

2929
<!-- DurableTask Packages -->
3030
<ItemGroup>
31-
<PackageVersion Include="Microsoft.Azure.DurableTask.Core" Version="3.1.0" />
31+
<PackageVersion Include="Microsoft.Azure.DurableTask.Core" Version="3.2.0-test.1" />
3232
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.2.2" />
3333
</ItemGroup>
3434

eng/targets/Release.props

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@
1717
</PropertyGroup>
1818

1919
<PropertyGroup>
20-
<VersionPrefix>1.10.0</VersionPrefix>
20+
<VersionPrefix>1.11.0-test.1</VersionPrefix>
2121
<VersionSuffix></VersionSuffix>
2222
</PropertyGroup>
2323

nuget.config

Lines changed: 11 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,17 @@
11
<?xml version="1.0" encoding="utf-8"?>
2+
23
<configuration>
34
<packageSources>
45
<clear/>
5-
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" protocolVersion="3" />
6+
<add key="nuget.org" value="https://api.nuget.org/v3/index.json" />
7+
<add key="durabletask" value="https://azfunc.pkgs.visualstudio.com/public/_packaging/durabletask/nuget/v3/index.json" />
68
</packageSources>
9+
<packageSourceMapping>
10+
<packageSource key="durabletask">
11+
<package pattern="Microsoft.Azure.DurableTask.Core" />
12+
</packageSource>
13+
<packageSource key="nuget.org">
14+
<package pattern="*" />
15+
</packageSource>
16+
</packageSourceMapping>
717
</configuration>

src/Grpc/orchestrator_service.proto

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -343,6 +343,7 @@ message CreateInstanceRequest {
343343
google.protobuf.StringValue executionId = 7;
344344
map<string, string> tags = 8;
345345
TraceContext parentTraceContext = 9;
346+
google.protobuf.Timestamp requestTime = 10;
346347
}
347348

348349
message OrchestrationIdReusePolicy {
@@ -490,6 +491,8 @@ message SignalEntityRequest {
490491
google.protobuf.StringValue input = 3;
491492
string requestId = 4;
492493
google.protobuf.Timestamp scheduledTime = 5;
494+
TraceContext parentTraceContext = 6;
495+
google.protobuf.Timestamp requestTime = 7;
493496
}
494497

495498
message SignalEntityResponse {
@@ -575,6 +578,7 @@ message OperationRequest {
575578
string operation = 1;
576579
string requestId = 2;
577580
google.protobuf.StringValue input = 3;
581+
TraceContext traceContext = 4;
578582
}
579583

580584
message OperationResult {
@@ -591,10 +595,14 @@ message OperationInfo {
591595

592596
message OperationResultSuccess {
593597
google.protobuf.StringValue result = 1;
598+
google.protobuf.Timestamp startTimeUtc = 2;
599+
google.protobuf.Timestamp endTimeUtc = 3;
594600
}
595601

596602
message OperationResultFailure {
597603
TaskFailureDetails failureDetails = 1;
604+
google.protobuf.Timestamp startTimeUtc = 2;
605+
google.protobuf.Timestamp endTimeUtc = 3;
598606
}
599607

600608
message OperationAction {
@@ -610,6 +618,8 @@ message SendSignalAction {
610618
string name = 2;
611619
google.protobuf.StringValue input = 3;
612620
google.protobuf.Timestamp scheduledTime = 4;
621+
google.protobuf.Timestamp requestTime = 5;
622+
TraceContext parentTraceContext = 6;
613623
}
614624

615625
message StartNewOrchestrationAction {
@@ -618,6 +628,8 @@ message StartNewOrchestrationAction {
618628
google.protobuf.StringValue version = 3;
619629
google.protobuf.StringValue input = 4;
620630
google.protobuf.Timestamp scheduledTime = 5;
631+
google.protobuf.Timestamp requestTime = 6;
632+
TraceContext parentTraceContext = 7;
621633
}
622634

623635
message AbandonActivityTaskRequest {

src/Grpc/versions.txt

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
1-
# The following files were downloaded from branch main at 2025-04-23 23:27:00 UTC
2-
https://raw.githubusercontent.com/microsoft/durabletask-protobuf/fbe5bb20835678099fc51a44993ed9b045dee5a6/protos/orchestrator_service.proto
1+
# The following files were downloaded from branch stevosyan/distributed-tracing-for-entities-isolated at 2025-05-28 02:45:45 UTC
2+
https://raw.githubusercontent.com/microsoft/durabletask-protobuf/23ed998d1813577d9821e51ea7909063eb677a1b/protos/orchestrator_service.proto

0 commit comments

Comments
 (0)