Skip to content

Commit 4e3cb4e

Browse files
committed
release notes for 1.0.110
1 parent 66ee196 commit 4e3cb4e

File tree

2 files changed

+5
-3
lines changed

2 files changed

+5
-3
lines changed

docs/releasenotes.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,9 @@
11
# Release Notes
22

3-
## unreleased
3+
## 1.0.110
44

5+
- add support for server-side reflection (think "mex"/"wsdl") in `protobuf-net.Grpc.AspNetCore.Reflection` (#49/#63 via mholo65)
6+
- add .proto schema generation tools in `protobuf-net.Grpc.Reflection`
57
- add `[SimpleRpcExceptions]` (which can be applied at service contract, service type, or service method levels), and `SimpleRpcExceptionsInterceptor` (which can be applied to any service registration) - which expose server exceptions more conveniently (#75)
68
- use linker-friendly metadata inspection (#90)
79
- add non-generic `AddCodeFirst` native server overload (#106)

tests/protobuf-net.Grpc.Reflection.Test/SchemaGeneration.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -85,14 +85,14 @@ public class MyResponse
8585
public string? Value { get; set; }
8686

8787
[DataMember(Order = 2)]
88-
public Category Category {get;set;}
88+
public Category Category { get; set; }
8989

9090
[DataMember(Order = 3)]
9191
public Guid RefId { get; set; }
9292
}
9393

9494
public enum Category
95-
{
95+
{
9696
Default = 0,
9797
Foo = 1,
9898
Bar = 2,

0 commit comments

Comments
 (0)