Skip to content

Releases: pcdv/flak

2.8.0

Choose a tag to compare

@pcdv pcdv released this 21 Feb 11:23

Minor update:

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

2.7.0

Choose a tag to compare

@pcdv pcdv released this 05 Feb 14:04

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

Choose a tag to compare

@pcdv pcdv released this 04 Jan 10:00

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

Choose a tag to compare

@pcdv pcdv released this 13 Jul 13:19

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

2.4.0

Choose a tag to compare

@pcdv pcdv released this 01 Jun 13:33

Get out of beta and add a helper method in SessionManager

2.4.0-beta2

Choose a tag to compare

@pcdv pcdv released this 16 May 13:50

Resolves compilation issue with beta1

2.4.0-beta1

Choose a tag to compare

@pcdv pcdv released this 16 May 07:18
Refactored session management to support cookie expiration and improv…

2.3.0

Choose a tag to compare

@pcdv pcdv released this 26 Jan 14:17

Minor update:

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

2.2.0

Choose a tag to compare

@pcdv pcdv released this 10 Sep 06:19

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

Choose a tag to compare

@pcdv pcdv released this 22 Apr 15:34

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