-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
fix: make optional properties of bindings nullable #89
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you ullebe1 for your first pull request to AsyncAPI.NET repository. Please check out our contributors guide.
src/LEGO.AsyncAPI/Models/Bindings/Pulsar/PulsarChannelBinding.cs
Outdated
Show resolved
Hide resolved
src/LEGO.AsyncAPI/Models/Bindings/Pulsar/PulsarChannelBinding.cs
Outdated
Show resolved
Hide resolved
b01e212
to
80e7258
Compare
src/LEGO.AsyncAPI/Models/Bindings/Kafka/KafkaOperationBinding.cs
Outdated
Show resolved
Hide resolved
src/LEGO.AsyncAPI/Models/Bindings/Kafka/KafkaOperationBinding.cs
Outdated
Show resolved
Hide resolved
src/LEGO.AsyncAPI/Models/Bindings/Kafka/TopicConfigurationObject.cs
Outdated
Show resolved
Hide resolved
src/LEGO.AsyncAPI/Models/Bindings/Pulsar/PulsarServerBinding.cs
Outdated
Show resolved
Hide resolved
src/LEGO.AsyncAPI/Models/Bindings/WebSockets/WebSocketsChannelBinding.cs
Outdated
Show resolved
Hide resolved
src/LEGO.AsyncAPI/Models/Bindings/WebSockets/WebSocketsChannelBinding.cs
Outdated
Show resolved
Hide resolved
Reverted the commit putting the versions in quotes in strings. Seems there is something inconsistent in how that works. On my machine they need to be in quotes for the tests to pass, in CI they cannot be in quotes or the tests fail. No special setup, just running |
test/LEGO.AsyncAPI.Tests/Bindings/Pulsar/PulsarBindings_Should.cs
Outdated
Show resolved
Hide resolved
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Thank you for the contribution 👍
… ullebe1/optionals_nullable
This change will be a part of the 3.0 release |
Makes all properties of bindings that are optional nullable, so as to make them optional in the library as well.