Releases: springwolf/springwolf-core
Releases · springwolf/springwolf-core
springwolf-kafka-0.5.0
What's Changed
- Added support Multiple Producer On the same Kafka Topic (#59) - thanks @sshemirani for reporting this issue!
springwolf-kafka-0.4.0
What's Changed
@KafkaHandler
annotated methods are now also mapped to channels, as requested in #39. Please update the UI version to 0.4.0.
springwolf-amqp-0.2.0
springwolf-kafka-0.3.0
Change Log
- The separate repository will be retired. The plugin was moved to this monorepo.
springwolf-core-0.4.0
Change Log
- #33 - Replace asyncapi/types with jasyncapi types.
- #34 - Configurable docs URL path. The documentation API endpoint url is now configurable from
application.properties
with the propertyspringwolf.paths.docs
. Please not that setting this property to any value other than the default will result in the UI not working.
springwolf-amqp-0.1.0
Change Log
- First release for the amqp plugin.
v0.3.0
Change Log
- Fix for #31 - thanks to @kalarani for reporting and fixing this issue!
- All endpoints prefix was changed from
/asyncapi
to/springwolf
- The return type of
/asyncapi/docs
(which is now/springwolf/docs
has been changed fromAsyncAPI
toMap<String, AsyncAPI>
- meaning instead of returning the async API doc, a map containing single entry ofdoc title -> doc
is returned.
v0.2.0
Change Log
- The project is no longer hosted on bintray (which has been EOLd), and was moved to maven central.
- Added
ProducerData
class which allow defining manually producer channels in the docket (see https://github.com/springwolf/springwolf-kafka#configuration-class for example). Thanks to @themis-pyrgiotis for contributing this addition!
v0.1.1
Change Log
- Replaced
getClassesToScan
withgetBasePackage
inAbstractChannelsScanner
to simplify inheriting channel scanners
v0.1.0
Change Log
- Split modules to different repositories
- Split Kafka scanner to a different module
- Created an
AbstractChannelsScanner
to facilitate creation of scanners for new protocols - Applications should now not use the sprinwolf-core dependency directly, but the springwolf- according to the desired protocol.