From cdd878db018280369b643fce62f70e55044f9ac4 Mon Sep 17 00:00:00 2001 From: ikkez Date: Tue, 15 Feb 2022 17:59:01 +0100 Subject: [PATCH] 3.8.0-Release --- CHANGELOG.md | 14 +++++++++++++- README.md | 4 ++-- base.php | 2 +- 3 files changed, 16 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index b98111f7..51d4f70a 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,18 @@ CHANGELOG -3.7.3 +3.8.0 (15 Feb 2022) +* Feat: allow access to previous session data in cache-based session handler +* Feat: pass session information to onSuspect Session handler +* Fix: PHP 8.1 compatibility fixes [#332](https://github.com/bcosca/fatfree-core/issues/332) [#333](https://github.com/bcosca/fatfree-core/issues/333) +* Fix: check for critical schemes in url validation +* Fix: plural format syntax with empty param, [#325](https://github.com/bcosca/fatfree-core/issues/325) +* Fix: DB mapper not able to fetch field scheme in sqlite views +* Fix: capitalization of array key X-Http-Method-Override in headers [#327](https://github.com/bcosca/fatfree-core/issues/327) +* Fix SMTP: allow RFC2047 encoded words in From/To/Cc/Bcc headers +* Fix: use correct ternary value, [#323](https://github.com/bcosca/fatfree-core/issues/323) +* Fix: trace not present in error handler when in CLI mode and !DEBUG, [#323](https://github.com/bcosca/fatfree-core/issues/323) + +3.7.3 (13 Dec 2020) * NEW: added auto_increment detection, [bcosca/fatfree#1192](https://github.com/bcosca/fatfree/issues/1192), [bcosca/fatfree#1093](https://github.com/bcosca/fatfree/issues/1093), [bcosca/fatfree#1175](https://github.com/bcosca/fatfree/issues/1175), [#290](https://github.com/bcosca/fatfree-core/issues/290) * added SMTP dialog error handling, [#317](https://github.com/bcosca/fatfree-core/issues/317) * Fix: Check active transaction before rollback/commit (PHP8 issue) diff --git a/README.md b/README.md index 1ca3e318..6714c0c4 100644 --- a/README.md +++ b/README.md @@ -24,11 +24,11 @@ $f3 = \Base::instance(); --- For the main repository (demo package), see https://github.com/bcosca/fatfree -For the test bench and unit tests, see https://github.com/bcosca/fatfree/tree/dev +For the test bench and unit tests, see https://github.com/f3-factory/fatfree-dev For the user guide, see https://fatfreeframework.com/user-guide For the documentation, see https://fatfreeframework.com/api-reference ## Support on Beerpay Hey dude! Help me out for a couple of :beers:! -[![Beerpay](https://beerpay.io/bcosca/fatfree-core/badge.svg?style=beer-square)](https://beerpay.io/bcosca/fatfree-core) [![Beerpay](https://beerpay.io/bcosca/fatfree-core/make-wish.svg?style=flat-square)](https://beerpay.io/bcosca/fatfree-core?focus=wish) \ No newline at end of file +[![Beerpay](https://beerpay.io/bcosca/fatfree-core/badge.svg?style=beer-square)](https://beerpay.io/bcosca/fatfree-core) [![Beerpay](https://beerpay.io/bcosca/fatfree-core/make-wish.svg?style=flat-square)](https://beerpay.io/bcosca/fatfree-core?focus=wish) diff --git a/base.php b/base.php index 036752b9..34d225bd 100644 --- a/base.php +++ b/base.php @@ -45,7 +45,7 @@ final class Base extends Prefab implements ArrayAccess { //@{ Framework details const PACKAGE='Fat-Free Framework', - VERSION='3.7.4-Dev'; + VERSION='3.8.0-Release'; //@} //@{ HTTP status codes (RFC 2616)