Skip to content

Releases: Areeb-Gillani/vertx-boost

New Feature

25 Dec 21:36
Compare
Choose a tag to compare
  • Threading model support added on service level. Now you can run the service class on EventLoop, Virtual Thread and Worker Thread when you set the type attribute of a service unit to EL, VT, or W respectively.
  • Workers naming convention changed to ServiceUnits as it makes more sense after this new support
  • Redundant code removal

Bug Fixes

28 Sep 01:13
Compare
Choose a tag to compare
  • Router body handler's bug fix

New Features & Improvements

14 Sep 17:20
cb46cd1
Compare
Choose a tag to compare
  • Server sharing feature added. With the help of this feature multiple http listeners can be deployed on the same port. Thus, improving parallel processing.
  • Fast http server connection configurations added

New Features & Bug Fixes

07 Sep 19:14
Compare
Choose a tag to compare

New Features & Bug Fixes

02 Sep 10:41
Compare
Choose a tag to compare
  • Performance monitoring metric added
  • Logging bug fixed
  • Response template added

New Features

30 Aug 13:23
Compare
Choose a tag to compare
  • Embedded cluster support with Hazelcast
  • Local and Clustered event bus support
  • Aspects package changed to boost

New Features

28 Aug 06:12
Compare
Choose a tag to compare
  • Controller can now have String or Class datatype as an input param. It will help the developer to ignore the initial casting efforts.
  • Previously, it was JsonObject only
  • Example: @PostMapping("/xyz") public void xyzController (JsonObject body, HttpRequest request){ //TODO }
  • Now
  • Example 1: @PostMapping("/example1") public void example1(String body, HttpRequest request){ }
  • Example 2: @PostMapping("/example2") public void example2(ClassA body, HttpRequest request){ }

New Feature

18 Aug 17:43
Compare
Choose a tag to compare
  • SSL configuration added

New Implementations

18 Aug 16:49
Compare
Choose a tag to compare
  • Configuration enrichment
  • Deployment methodology changes

Initialization Improvement

18 Aug 16:04
Compare
Choose a tag to compare
  • New smart way to initialize the application has been added