Skip to content

Releases: martywallace/tempest

5.0.2

14 Jan 22:53
Compare
Choose a tag to compare
Update package FQN.

4.1.1

30 Jun 01:41
Compare
Choose a tag to compare
Don't require dev value to be set in .env.

4.1.0

02 May 06:10
Compare
Choose a tag to compare
Provide access to booting services prematurely.

4.0.0

01 May 21:21
Compare
Choose a tag to compare

Significant refactoring and improvements.

3.0.3

10 Jan 00:56
Compare
Choose a tag to compare
  • Fixed bug where service setup would run every time they were accessed, rather than once.

3.0.2

07 Jan 01:27
Compare
Choose a tag to compare
  • TwigService now extends Twig_Environment directly, rather than initializing and managing an internal instance separately. This allows easy access to the full functionality of Twig.
  • Any sent Response with an empty body and a non-successful (outside of 2xx status range) HTTP status will attempt to load and send a Twig template with a matching file name, e.g. 404.html, falling back to an inbuilt error template (404 and 405 are supported by default).
  • More cleanup and improvements to the core.

3.0.1

06 Jan 23:38
Compare
Choose a tag to compare

The response body is no longer overwritten if a controller returns an empty value, allowing:

public function index(Request $request, Response $response) {
    $response->body = 'Hello!';
}

3.0.0

06 Jan 05:10
Compare
Choose a tag to compare
  • Changed service to an interface.
  • Removed inbuilt user and database services.
  • General cleanup and fixes.

2.2.1

13 Jul 06:50
Compare
Choose a tag to compare
  • Fixed a bug where Enum::getAll() would only return constants for the first enum class it was used on.

2.2.0

13 Jul 00:17
Compare
Choose a tag to compare
  • Removed Spot in favour of older Db service.
  • Modifications to user authentication service.