Skip to content

Releases: GreenfieldTech/irked

4.4.9

31 Mar 09:04
Compare
Choose a tag to compare

Update to upstream Vert.x release 4.4.9

4.5.7

27 Mar 22:04
Compare
Choose a tag to compare

Update to upstream Vert.x release 4.5.7

4.5.6

22 Mar 14:15
Compare
Choose a tag to compare

Update to upstream Vert.x release 4.5.6

4.5.5

14 Mar 20:14
Compare
Choose a tag to compare

Update to upstream Vert.x release 4.5.5

4.5.4

14 Mar 10:14
Compare
Choose a tag to compare

Update to upstream Vert.x release 4.5.4.

Apologies for the late release - I was pretty sure I did the release when Vert.x released 4.5.4, but apparently that only happened in a dream 😅

4.5.3

06 Feb 18:05
Compare
Choose a tag to compare
  • Update to upstream Vert.x release 4.5.3
  • Fixed a bug where calling Request.getBodyAs() when the body content is a valid JSON but not a JSON object, would result in a ClassCastException instead of the expected BadRequest.

4.4.8

06 Feb 21:41
Compare
Choose a tag to compare

Update to upstream Vert.x release 4.4.8

4.5.2

31 Jan 17:14
Compare
Choose a tag to compare

Update to upstream Vert.x release 4.5.2

4.4.7

31 Jan 17:04
Compare
Choose a tag to compare
  • Updated 4.4 series with latest update from upstream
  • Sync with Irked updates from the 4.5 series

4.5.1.1

29 Jan 11:19
Compare
Choose a tag to compare

Add support for subclassing Controller implementations

Simple example:

abstract class BaseExample extends Controller {
	@Get("/")
    WebHandler index = r -> r.sendContent("Base index", new OK());
}

class SpecificExample extends BaseExample {
	@Get("/document")
    WebHandler document = r -> r.sendContent("This document", new OK());
}