First version of Redis adapter for Yii cache was released. It is based on predis and could be used either standalone as PSR-16 cache implementation or with Yii cache to gain additional benefits.
First version of Redis adapter for Yii cache was released. It is based on predis and could be used either standalone as PSR-16 cache implementation or with Yii cache to gain additional benefits.
Version 2.0.0 of assets package was released improving public API for more convenient use.
First release of Yii Console package was tagged. It provides a console that could be added to an application.
Minor verison of CSRF package was tagged adding ability to obtain parameter and header names set to the middleware via CsrfMiddleware::getParameterName()
and CsrfMiddleware::getHeaderName()
.
Minor version of mutex package was released. In this version two new exceptions were introduced: MutexLockedException
and MutexReleaseException
. We throw them instead of less specific RuntimeException
.
Major versions of yiisoft/view and yiisoft/yii-view were tagged.
Version 2.1.0 of View package is released. Immutable methods View::withAddedCommonParameters()
and WebView::withAddedCommonParameters()
are now available to add extra parameters available in all views and their sub-views.
Mailer package version 3.0.0 was tagged. This version expands Yiisoft\Mailer\MessageInterface
adding the following methods:
Fisrt version of mutex package was released. This package provides mutex implementation and allows mutual execution of concurrent processes in order to prevent "race conditions". This is achieved by using a "lock" mechanism. Each possibly concurrent processes cooperates by acquiring a lock before accessing the corresponding data.