Skip to content

Commit

Permalink
Fix proto definition (#39361)
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshLove-msft authored and drielenr committed Oct 24, 2023
1 parent ed5102c commit 4e82c71
Show file tree
Hide file tree
Showing 3 changed files with 7 additions and 10 deletions.
Original file line number Diff line number Diff line change
@@ -1,15 +1,11 @@
# Release History

## 5.14.0-beta.1 (Unreleased)

### Features Added

### Breaking Changes

### Bugs Fixed
## 5.13.2 (2023-10-18)

### Other Changes

- Updated proto service definition to use StringValue rather than string for deadletter error reason and description.

## 5.13.1 (2023-10-17)

### Bugs Fixed
Expand Down
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
syntax = "proto3";

import "google/protobuf/empty.proto";
import "google/protobuf/wrappers.proto";

// this namespace will be shared between isolated worker and WebJobs extension so make it somewhat generic
option csharp_namespace = "Microsoft.Azure.ServiceBus.Grpc";
Expand Down Expand Up @@ -35,8 +36,8 @@ message AbandonRequest {
message DeadletterRequest {
string locktoken = 1;
bytes propertiesToModify = 2;
string deadletterReason = 3;
string deadletterErrorDescription = 4;
google.protobuf.StringValue deadletterReason = 3;
google.protobuf.StringValue deadletterErrorDescription = 4;
}

// The defer message request containing the locktoken and properties to modify.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
<PropertyGroup>
<TargetFrameworks>netstandard2.0;net6.0</TargetFrameworks>
<Description>Microsoft Azure WebJobs SDK ServiceBus Extension</Description>
<Version>5.14.0-beta.1</Version>
<Version>5.13.2</Version>
<!--The ApiCompatVersion is managed automatically and should not generally be modified manually.-->
<!--Since we are adding a new target for net6.0, we need to temporarily condition on netstandard-->
<ApiCompatVersion>5.13.1</ApiCompatVersion>
Expand Down

0 comments on commit 4e82c71

Please sign in to comment.