Yii Router 1.2.0
Yii Router package was updated with the following enhancements:
- upgraded the
yiisoft/middleware-dispatcherdependency to version 3.0.
Yii Router package was updated with the following enhancements:
yiisoft/middleware-dispatcher dependency to version 3.0.Major version of Yii Middleware Dispatcher package was released. This version introduces a new WrapperInterface which is used to create a wrapper from callables. And MiddlewareFactoryInterface has been removed in favor of WrapperInterface.
Debug extension version 2.1.21 was released.
This release adds an ability to collect debug data in console applications. In order to do so, add the following to console application config:
// configuration adjustments for 'dev' environment
$config['bootstrap'][] = 'debug';
$config['modules']['debug'] = [
'class' => 'yii\debug\Module',
];
See the CHANGELOG for details.
We are very pleased to announce the major release of MongoDB extension version 3.0.0.
This version adds transactions support, PHP 8.1 compatibility and fixes a few bugs.
See the CHANGELOG for details.
We are very pleased to announce the release of Symfony mailer extension version 2.0.4.
This version throws an exception in case there is no transport configuration.
Details are available in CHANGELOG.
We are very pleased to announce two releases of Twig extension.
Version 2.4.2 allows installing the extension when using PHP 8.1.
We are very pleased to announce the release of Shell extension version 2.0.5. This version allows installing psy/psysh ~0.11.
We are very pleased to announce the release of Redis extension version 2.0.18.
This version adds support for tls scheme. Additionally, Cache::getValue() now returns false in case of missing key.
See the CHANGELOG for details.
Imagine extension version 2.3.1 was released.
This version makes protected static methods getThumbnailBox(), getBox() and isUpscaling() public.
See CHANGELOG for details.
We are very pleased to announce the release of Gii extension version 2.2.5.
This release adds support for the ::class constant in model generator via the useClassConstant setting and fixes a few bugs.
See the CHANGELOG for details.
Debug extension version 2.1.20 was released.
This release fixes crash on empty panel data, improves configuration of log target and allows using debugger as a submodule.
See the CHANGELOG for details.
We are very pleased to announce the release of Auth Client extension version 2.2.13.
This version fixes PHP 8.1 compatibility of BaseOAuth class.
See the CHANGELOG for details.
Major version of Yii Profiler package was released. In this version we have raised the minimum version of PHP to 8.0. As a result, the dependencies have also been updated.
We are very pleased to announce the release of Yii Framework version 2.0.46.
Please refer to the instructions at https://www.yiiframework.com/download/ to install or upgrade to this version.
This release fixes more PHP 8.1 compatibility issues, fixes significant number of bugs and adds some enhancements.
We are very pleased to announce the release of ElasticSearch extension version 2.1.3. This release:
See the CHANGELOG for details.
Version 1.2.0 of Yii Runnner package was tagged. This version adds config definition to DI container.
Version 1.1.0 of Yii Console Runnner package was tagged. This version adds passing input aggregate to the console application.
Version 1.3.0 of Yii Console package was tagged. This version adds collecting console command name to ApplicationStartup class.
Version 2.1.0 of Yii Middleware Dispatcher package was tagged. There a few enhancements.
$dispatcher = $dispatcher->withMiddlewares([
[
'class' => MyMiddleware::class,
'__construct()' => [
'someVar' => 42,
],
],
]);
InvalidMiddlewareDefinitionException.First stable version of yiisoft/yii-sentry package was released. The package provides integration with Sentry log aggregation service or a compatible one (so far, there's GlitchTip).