asyncapi / saunter

Saunter is a code-first AsyncAPI documentation generator for dotnet.
https://www.asyncapi.com/
MIT License
195 stars 55 forks source link

Async API 2.2.0 #122

Closed daniel5053 closed 2 years ago

daniel5053 commented 2 years ago

Hi,

Following the AsyncAPI 2.2.0 specs, They added new property to the channel entry called "servers" - which is the connection between channel and its server/servers

Will you support it soon?

m-wild commented 2 years ago

Just had a look at the release notes for 2.2.0, sounds like this will be pretty easy to implement.

Plan will be to add it as another property in the ChannelAttribute so usage would be like [Channel("foo.bar", Servers = new[] { "my-server" })]. And of course it could be populated by any IChannelItemFilter too.

Will look to get this out this week.

m-wild commented 2 years ago

Hi there, this will be available in v0.9.0

image

image