Nette Framework 2.0.7 released!

Notice: This thread is very old.
David Grudl
Nette Core | 8082
+
0
-

Nette Framework 2.0.7 has just been released and is now available for download. Feel free to update!

Fixes and improvements:

  • Database: implemented multi primary key support and a lot of fixes (in type detection, …)
  • Config: added support for anonymous services defined via bullets
  • Latte: added support for {input $control}, {label $control} and n:input=$control, where $control is object IFormControl
  • UI\Presenter: invalid URL parameters are ignored and do not throw 404 HTTP error
  • MicroPresenter: returns 404 HTTP error when parameter callback is missing
  • Session: session ID is not regenerated after 30 minutes
  • Mail: fixed sending BCC header via SMTP protocol
  • PresenterComponent: to override constructor and not to call its ancestor will not cause error
  • Debugger: sends error-code after every errors
  • Tests: test are updated to last version of Nette\Tester

For the details about the changes you can have a look at the Github diff.

Tomas Jancik
Member | 103
+
0
-

David Grudl wrote:

  • Mail: fixed sending BCC header via SMTP protocol

I just came across this issue… nice to see it's fixed… I'll try update tommorow to see how it works :)

potapnik
Member | 127
+
0
-

The new RouterFactory is much better than routing done “the old way” in bootstrap.php. Now I see the logic, I can add some services to RouterFactory (database especially), and I know what I am doing. Thanks!