Skip to content

Releases: pcdv/flak

2.8.0

21 Feb 11:23
Compare
Choose a tag to compare

Minor update:

  • Add text/plain in simple returned errors
  • Ability to set InetSocketAddress

2.7.0

05 Feb 14:04
Compare
Choose a tag to compare

Minor fixes and enhancements, and one small breaking change:

  • unknown pages used to be reported to ErrorHandler, this is no longer the case
  • it is still possible to use an unknown page handler to handle 404 errors and potentially redirect them

2.6.0

04 Jan 10:00
Compare
Choose a tag to compare

Add support for gzip Content-Encoding.

Fix js errors due to invalid JSON data being returned on void methods: return "null" instead of "" for those.

2.5.0

13 Jul 13:19
Compare
Choose a tag to compare

Support parameters set repeatedly in query string (cf method Query.parameters())

2.4.0

01 Jun 13:33
Compare
Choose a tag to compare

Get out of beta and add a helper method in SessionManager

2.4.0-beta2

16 May 13:50
Compare
Choose a tag to compare

Resolves compilation issue with beta1

2.4.0-beta1

16 May 07:18
Compare
Choose a tag to compare
Refactored session management to support cookie expiration and improv…

2.3.0

26 Jan 14:17
Compare
Choose a tag to compare

Minor update:

  • more secure cookies by default (use HttpOnly flag)
  • improved OpenAPI generation (declare path parameters automatically)

2.2.0

10 Sep 06:19
Compare
Choose a tag to compare

Officialize 2.2.0-beta + (old) bug fix

Fix a bug that caused loss of trailing slash in splat, e.g. with @Route("/static/doc/*path"), accessing the page with url /static/doc/guide or /static/doc/guide/ would both yield path = "guide".

Redirecting from /static/doc/guide to /static/doc/guide/ would then generate an infinite redirect loop.

2.2.0-beta1

22 Apr 15:34
Compare
Choose a tag to compare

Add Options annotation
Add a way to register a global BeforeHook, invoked before every route handler