Skip to content

Commit 547261e

Browse files
author
Sophia Tevosyan
committed
reverting ci changes
1 parent 8e69683 commit 547261e

File tree

6 files changed

+16
-27
lines changed

6 files changed

+16
-27
lines changed

Directory.Packages.props

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,6 @@
99

1010
<!-- Microsoft.Extensions.* Packages -->
1111
<ItemGroup>
12-
<PackageVersion Include="Microsoft.Extensions.Caching.Memory" Version="8.0.0" />
1312
<PackageVersion Include="Microsoft.Extensions.Configuration.Abstractions" Version="6.0.0" />
1413
<PackageVersion Include="Microsoft.Extensions.DependencyInjection" Version="6.0.2" />
1514
<PackageVersion Include="Microsoft.Extensions.DependencyInjection.Abstractions" Version="6.0.0" />
@@ -29,7 +28,7 @@
2928

3029
<!-- DurableTask Packages -->
3130
<ItemGroup>
32-
<PackageVersion Include="Microsoft.Azure.DurableTask.Core" Version="3.6.0-private1" />
31+
<PackageVersion Include="Microsoft.Azure.DurableTask.Core" Version="3.3.0" />
3332
<PackageVersion Include="Microsoft.Azure.Functions.Worker.Extensions.DurableTask" Version="1.2.2" />
3433
</ItemGroup>
3534

eng/targets/Release.props

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,8 +17,8 @@
1717
</PropertyGroup>
1818

1919
<PropertyGroup>
20-
<VersionPrefix>1.14.0</VersionPrefix>
21-
<VersionSuffix>private1</VersionSuffix>
20+
<VersionPrefix>1.13.0</VersionPrefix>
21+
<VersionSuffix></VersionSuffix>
2222
</PropertyGroup>
2323

2424
</Project>

eng/templates/build.yml

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -41,10 +41,11 @@ jobs:
4141
- task: DotNetCoreCLI@2
4242
displayName: Restore
4343
inputs:
44-
command: custom
45-
custom: restore
44+
command: restore
45+
verbosityRestore: Minimal
4646
projects: $(project)
47-
arguments: '-v m'
47+
feedsToUse: config
48+
nugetConfigPath: nuget.config
4849

4950
# Build source directory
5051
- task: DotNetCoreCLI@2

nuget.config

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

src/Grpc/orchestrator_service.proto

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -342,10 +342,8 @@ message OrchestratorResponse {
342342
// The number of work item events that were processed by the orchestrator.
343343
// This field is optional. If not set, the service should assume that the orchestrator processed all events.
344344
google.protobuf.Int32Value numEventsProcessed = 5;
345-
OrchestrationTraceContext orchestrationTraceContext = 6;
346345

347-
// Whether or not a history is required to complete the original OrchestratorRequest and none was provided.
348-
bool requiresHistory = 7;
346+
OrchestrationTraceContext orchestrationTraceContext = 6;
349347
}
350348

351349
message CreateInstanceRequest {

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 stevosyan/extended-sessions-for-orchestrations-isolated at 2025-08-21 02:14:04 UTC
2-
https://raw.githubusercontent.com/microsoft/durabletask-protobuf/42cc3e416e9b227ed0a68c7dfd504ab5aed84e26/protos/orchestrator_service.proto
1+
# The following files were downloaded from branch main at 2025-08-08 16:46:11 UTC
2+
https://raw.githubusercontent.com/microsoft/durabletask-protobuf/e88acbd07ae38b499dbe8c4e333e9e3feeb2a9cc/protos/orchestrator_service.proto

0 commit comments

Comments
 (0)