Skip to content

Commit 2401af6

Browse files
committed
Merge branch 'release/1.5.0'
2 parents b52a99c + 1d21682 commit 2401af6

File tree

2 files changed

+17
-7
lines changed

2 files changed

+17
-7
lines changed

src/OpenMatch/OpenMatch.csproj

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
<TargetFramework>netstandard2.1</TargetFramework>
55
<PackageId>OpenMatch.Api</PackageId>
66
<Title>OpenMatch Api</Title>
7-
<Version>1.4.0</Version>
7+
<Version>1.5.0</Version>
88
<PackageDescription>C# API for OpenMatch</PackageDescription>
99
<Authors>Yoann Potinet</Authors>
1010
<Company>Frozen Storm Interactive</Company>
@@ -29,9 +29,9 @@
2929
</ItemGroup>
3030

3131
<ItemGroup>
32-
<PackageReference Include="Grpc.Net.Client" Version="2.47.0" />
33-
<PackageReference Include="Google.Protobuf" Version="3.21.5" />
34-
<PackageReference Include="Grpc.Tools" Version="2.48.0">
32+
<PackageReference Include="Grpc.Net.Client" Version="2.49.0" />
33+
<PackageReference Include="Google.Protobuf" Version="3.21.7" />
34+
<PackageReference Include="Grpc.Tools" Version="2.49.1">
3535
<PrivateAssets>all</PrivateAssets>
3636
<IncludeAssets>runtime; build; native; contentfiles; analyzers</IncludeAssets>
3737
</PackageReference>

src/OpenMatch/proto/api/messages.proto

Lines changed: 13 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -45,9 +45,14 @@ message Ticket {
4545
// Optional, depending on the requirements of the connected systems.
4646
map<string, google.protobuf.Any> extensions = 5;
4747

48+
// Customized information not inspected by Open Match, to be kept persistent
49+
// throughout the life-cycle of a ticket.
50+
// Optional, depending on the requirements of the connected systems.
51+
map<string, google.protobuf.Any> persistent_field = 6;
52+
4853
// Create time is the time the Ticket was created. It is populated by Open
4954
// Match at the time of Ticket creation.
50-
google.protobuf.Timestamp create_time = 6;
55+
google.protobuf.Timestamp create_time = 7;
5156

5257
// Deprecated fields.
5358
reserved 2;
@@ -253,12 +258,17 @@ message Backfill {
253258
// Optional, depending on the requirements of the connected systems.
254259
map<string, google.protobuf.Any> extensions = 3;
255260

261+
// Customized information not inspected by Open Match, to be kept persistent
262+
// throughout the life-cycle of a backfill.
263+
// Optional, depending on the requirements of the connected systems.
264+
map<string, google.protobuf.Any> persistent_field = 4;
265+
256266
// Create time is the time the Ticket was created. It is populated by Open
257267
// Match at the time of Ticket creation.
258-
google.protobuf.Timestamp create_time = 4;
268+
google.protobuf.Timestamp create_time = 5;
259269

260270
// Generation gets incremented on GameServers update operations.
261271
// Prevents the MMF from overriding a newer version from the game server.
262272
// Do NOT read or write to this field, it is for internal tracking, and changing the value will cause bugs.
263-
int64 generation = 5;
273+
int64 generation = 6;
264274
}

0 commit comments

Comments
 (0)