Yii Framework 34k+
  • News
  • Guide
  • API
  • Wiki
  • Forum
  • Community
    • Places
    • Members
    • Hall of Fame
    • Badges
  • More
    • Learn
    • Books
    • Resources
    • Develop
    • Download Yii
    • Extensions
    • Report an Issue
    • Report a Security Issue
    • Contribute to Yii
    • Donate
    • About
    • Release Cycle
    • License
    • Team
    • Official Logos and Design
Login

Yii Error Handler 4.3

Sep 6, 2025

Yii Error Handler version 4.3 was released. In this version:

  • pass request to callable value in ExceptionResponder middleware.

Yii3 web application template 1.0

Aug 25, 2025

The first stable release of the Yii3 web application template.

The template helps you quickly start with a classic web application and already includes the essentials:

  • middleware dispatcher,
  • routing,
  • error handling,
  • asset support (CSS, images),

Read more

Yii Error Handler 4.2

Aug 19, 2025

Yii Error Handler version 4.2 was released. In this version:

  • added $traceLink parameter to HtmlRenderer to allow linking to trace files;
  • introduced UserException attribute to mark user exceptions;
  • Cleanup templates, removed legacy code.

Yii Aliases 3.1

Aug 12, 2025

Yii Aliases version 3.1 was released. In this version:

  • Add AliasReference
  • Change PHP constraint in composer.json to 8.1 - 8.4
  • Bump PHP minimal version to 8.1

Yii Middleware Dispatcher 5.3

Aug 6, 2025

Yii Middleware Dispatcher version 5.3 was released. In this version:

  • add MiddlewareCollector for Yii Debug package;
  • support callable that returns Psr\Http\Server\RequestHandlerInterface as middleware definition;
  • change PHP constraint in composer.json to 8.1 - 8.4;
  • mark MiddlewareStack::$fallbackHandler readonly;

Read more

Yii Validator 2.5

Jul 19, 2025

Yii Validator version 2.5 was released.

In this version added Result::getPropertyErrorMessagesByPath() method.

Yii Dummy Provider 1.1

Jul 7, 2025

Yii Dummy Provider version 1.1 was released. In this version:

  • Provide yiisoft/db-implementation virtual package

Yii Validator 2.4

Jul 7, 2025

Yii Validator version 2.4.0 was released. In this version:

  • Allow use callable rules into Nested
  • Support stringable objects as validation error messages
  • Fix WhenMissing not working in nested rules
  • Fix incorrect Nested rule processing within Each

Yii 2.0.53

Jun 27, 2025

We are pleased to announce the release of Yii Framework version 2.0.53.

Please refer to the instructions at https://www.yiiframework.com/download/ to install or upgrade to this version.

This release fixes bugs including issues with MSSQL, enhances compatibility with recent PHP features and versions. Our community members added types for PHPStan/Psalm through whole codebase. It is still work in progress but significant part of the framework is covered.

Read more

Yii HTTP Runner 3.2

Jun 14, 2025

Minor version of Yii HTTP Runner were tagged. In this version made several changes and improvements.

  • Add HttpApplicationRunner::runAndGetResponse() method that returns response without emit.
  • Add $emitter, $useRemoveBodyByStatusMiddleware, $useContentLengthMiddleware and $useHeadRequestMiddleware parameters to HttpApplicationRunner constructor.
  • Minor refactor internal class RequestFactory: explicitly mark read-only properties and add type to parameter of create() method.
  • Don't remove Content-Length header if it is set and emit is called without body.

Yii Middleware 1.1

Jun 10, 2025

Minor version of Yii Middleware has been released. Here are the list of improvements and fixes included in the new version:

  • bumped PHP minimal version to 8.1 and refactor code to use new features;
  • changed PHP constraint in composer.json to 8.1 - 8.4;
  • bumped yiisoft/router version to ^4.0;
  • bumped yiisoft/session version to ^3.0;

Read more

Yii HTML 3.11

Jun 10, 2025

Version 3.11 of Yii HTML package is released. Here are the list of improvements and fixes included in the new version:

  • added classes for Code and Pre tags, Html::code() and Html::pre() methods;
  • added psalm type OptionsData in Select class;
  • explicitly marked parameters as nullable.

Yii HTTP Middleware 1.1

Jun 9, 2025

Minor version of Yii HTTP Middleware has been released.

This release adds RemoveBodyMiddleware, which removes the response body for specific HTTP status codes.

Debug extension 2.1.27 and 2.1.26 released

Jun 8, 2025

We've tagged Yii2 debug extension version 2.1.27. It fixes a bug of unnecessary usage of backticks in UserPanel resulting in inability to work with environments where shell_exec is not available. No security was affected.

It seems, we've also forgot to write about 2.1.26:

  • Backtrace for internal PHP functions was added.
  • Module::$toolbarPosition was added to configure toolbar position.
  • yii\debug\Module::$authManager was added to select RBAC manager used by UserPanel (default is authManager).

Redis extension 2.0.20 released

Jun 5, 2025

We are very pleased to announce the release of Redis extension version 2.0.20.

This version removes logging of AUTH command parameters in non debug mode which may pose security issue. Also, it fixes one PHP 8.4 compatibility issue that was found since last release.

See the CHANGELOG for details.

Yii HTTP Middleware 1.0

Jun 4, 2025

First stable version of Yii HTTP Middleware was released.

The package provides a collection of PSR-15 middleware focused on HTTP features:

  • ContentLengthMiddleware — manages the Content-Length header in the response;
  • CorsAllowAllMiddleware — adds CORS headers allowing any request origins in later requests;
  • ForceSecureConnectionMiddleware — redirects insecure requests from HTTP to HTTPS and adds headers necessary to enhance the security policy;
  • HeadRequestMiddleware — removes body from response for HEAD request;

Read more

Yii Caching Library 3.1

Jun 1, 2025

Version 3.1 of Yii Caching Library is released.

  • Added interface SerializerInterface for data serialization, and PhpSerializer implementation.
  • Made normalize() method static in CacheKeyNormalizer class.
  • Changed PHP constraint in composer.json to 8.1 - 8.4.
  • Raised the minimum PHP version to 8.1 and minor refactoring.

Read more

Yii Dependency Injection 1.4

May 30, 2025

Version 1.4 of Yii Dependency Injection container is released.

  • Added TagReference::id() method.
  • Changed PHP constraint in composer.json to 8.1 - 8.4.
  • Made BuildingException and NotFoundException friendly.
  • Made $config parameter in Container constructor optional.

Read more

Yii PSR Emitter 1.0

May 21, 2025

First release of Yii PSR Emitter package was done. It provides EmitterInterface that is responsible for sending PSR-7 HTTP responses as well as several implementations of the interface:

  • SapiEmitter - sends a response using standard PHP Server API;
  • FakeEmiiter - a fake emitter that does nothing, except for capturing response (useful for testing purposes).

Additionally, the package provides EmitterMiddleware PSR-15 middleware that can be used in an application to send a response by any EmitterInterface implementation.

General usage:

/** 
 * @var \Psr\Http\Message\ResponseInterface $response 
 */
$emitter = new \Yiisoft\PsrEmitter\SapiEmitter();
$emitter->emit($response);

Yii View 12.2

May 16, 2025

Version 12.2 of Yii View package has been released. Here are the list of improvements and fixes included in the new version:

  • allowed to pass Stringable objects to WebView::setTitle() method;
  • allowed using multiple theme paths in yiisoft/view → theme → pathMap package parameter.
  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
Get notified of news as soon as they are available using our RSS Feed.

Years

  • 2026 (48)
  • 2025 (92)
  • 2024 (80)
  • 2023 (90)
  • 2022 (82)
  • 2021 (101)
  • 2020 (64)
  • 2019 (75)
  • 2018 (32)
  • 2017 (35)
  • 2016 (30)
  • 2015 (9)
  • 2014 (6)
  • 2013 (11)
  • 2012 (14)
  • 2011 (10)
  • 2010 (10)
  • 2009 (23)
  • 2008 (5)

Popular Tags

  • yii3 387
  • extensions 233
  • release 109
  • yii2 74
  • debug 30
  • view 28
  • html 25
  • auth client 23
  • bootstrap 21
  • redis 20
  • Yii 1.1
  • Guide
  • API
  • Wiki
  • Yii 2
  • Guide
  • API
  • Wiki
  • Yii3
  • Guide
  • API
  • Cookbook
  • Terms of service
  • License
  • Contact Us
  • Supported by
  • Your donations
  • JetBrains logo
  • © 2008 - 2026 Yii (Website Source Code)