Nette Framework 2.2.3 RC for testing
Notice: This thread is very old.
- David Grudl
- Nette Core | 8218
I'd like to announce the release candidate of Nette 2.2.3.
The release candidate is intended for bug fixing prior to the stable release. Please test this release against your code and report any problems that you encounter. Next release should show up in two weeks.
You can download ZIP archive or use Composer:
"require": {
"nette/nette": "2.2.3-RC"
},
"minimum-stability": "RC",
"prefer-stable": true
- David Grudl
- Nette Core | 8218
Fixes:
- Forms: fixed erasing of manually added errors via addError
- DI: fixed inheritance
- Database & DI: fixes autowiring for multiple connections
- PgSqlDriver: fixed support for schemas
- Mail: setHtmlBody() decodes %XX in URL
- PhpGenerator: fixed dumping of non-public properties
- PhpGenerator: ClassType::from processes only own properties
- new way how to detect errors in native PHP function (used in Session, Mail, Strings, …)
- Neon: fixed parsing of:
key1:
- subitem
- subitem
News:
- added support for
$configurator->setDebugMode('secret@23.75.345.200')
, wheresecret
must match with cookienette-debug
- NDBT: added support for NULL with operator NOT
- DI: better exception messages
- Forms & Latte: prettier output formating
- added Validators::isUri()
- Tracy: added Debugger::$logSeverity for logging bluescreen for errors/warnings/notices in production mode
- David Grudl
- Nette Core | 8218
I'd like to announce the release candidate of Nette 2.2.3-RC2 which covers these bugfixes:
- TemplateFactory: added missing filters modifyDate, length & null
- Template::registerHelperLoader: removed E_USER_DEPRECATED
- Mail: fixed headers encoding https://github.com/…ail/issues/4
- Latte: filter
|date
respects active timezone - Latte: macro {includeblock} gently trims output
and introduces new function Latte\Engine::invokeFilter(), as a replacement
for missing construct $template->$filter()
.
Stable release is planned after PHP 5.6.0 will be released.