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 Cache File 2.0.0

Jul 21, 2022

Major version of Yii Cache File package was released. In this version we have moved from PSR interfaces version ^1.0.1 to version ^2.0|^3.0. As a result, there are types added everywhere and the package is no more compatible with PHP 7.4.

View 6.0.0

Jul 21, 2022

Version 6.0.0 of View package is released. This version adds ViewInterface::withLocale(), ViewInterface::withBasePath() and support for yiisoft/files version 2.0.

There are two renamings as well so adjust your code if necessary:

  • ViewInterface::setLanguage() → ViewInterface::setLocale()
  • ViewInterface::withSourceLanguage() → ViewInterface::withSourceLocale()

Yii Console 1.2.0

Jul 21, 2022

Version 1.2.0 of Yii console package was tagged. This version adds an ability to configure defaults for yii serve command that starts built-in development web server. It could be done via params.php of the console:

return [
    'yiisoft/yii-console' => [
        // ...
        'serve' => [
            'appRootPath' => null,
            'options' => [
                'address' => '127.0.0.1',
                'port' => '8080',
                'docroot' => 'public',
                'router' => 'public/index.php',
            ],
        ],
    ],

Injector 1.1.0

Jul 18, 2022

Version 1.1.0 of the Injector package was released.

There is better support for PHP 8.1 in the new release: the Injector now can match arguments with type intersected parameters.

Yii Logging File Target 2.0.0

Jul 18, 2022

Major version of Yii Logging File Target package was released. In this version:

  • add support for yiisoft/files of version ^2.0;
  • drop rotateByCopy, always rotate by rename;
  • add ext-zlib to composer requirements.

Yii Assets 2.1.0

Jul 18, 2022

Version 2.1.0 of assets package was released. There a few changes:

  • change path hash logic in AssetPublisher to filemtime + filecount;
  • raise the minimum PHP version to 8.0.

Yii HTML 2.5.0

Jul 9, 2022

Yii HTML package version 2.5.0 was released.

Added new methods for set concrete enctype value for the Form tag:

  • Form::enctypeApplicationXWwwFormUrlencoded(),
  • Form::enctypeMultipartFormData(),
  • Form::enctypeTextPlain().

Added new methods for add attributes:

  • Tag::addClass(),

Read more

Proxy 1.0.0

Jul 9, 2022

First release of yiisoft/proxy package was tagged. The package is able to build generic proxy for a class i.e. it allows intercepting all class method calls. It's used in yiisoft/yii-debug package to collect service's method calls information.

Check package readme for details.

Yii Files 2.0.0

Jul 5, 2022

We are very pleased to announce the major release of Yii Files version 2.0.0. There a few changes and additions:

  • Raise the minimum PHP version to 8.0.
  • Add beforeCopy, afterCopy callbacks for FileHelper::copyFile() and FileHelper::copyDirectory().
  • Allow RecursiveDirectoryIterator as argument in FileHelper::lastModifiedTime().
  • Add missed return value and type for callback of set_error_handler() function.

Yii Test Support 3.0.0

Jun 29, 2022

Test Support package version 3.0.0 was released.

This version raises the minimum psr/simple-cache version to ^2.0|^3.0.

Yii Caching Library 2.0.0

Jun 29, 2022

Yii Cache package version 2.0.0 was released.

This version raises the minimum psr/simple-cache version to ^2.0|^3.0 and the minimum PHP version to ^8.0.

Router and fastroute adapter 1.1.0

Jun 28, 2022

Router and its fastroute adapter were tagged. This version adds support for multiple hosts via Route::hosts() and Group::hosts():

Route::get('/')
    ->hosts(
        'https://yiiframework.com/',
        'https://yiiframework.ru/'
    );
    
Group::create()
    ->hosts(
        'https://yiiframework.com/',
        'https://yiiframework.ru/'
    );

Yii Dependency Injection 1.1.0

Jun 24, 2022

Version 1.1.0 of Yii Dependency Injection container is released.

This version raises the minimum psr/container version to ^1.1|^2.0.

Test Support 2.0.0

Jun 17, 2022

Test Support package version 2.0.0 was released.

This version raises the minimum psr/log version to ^2.0|^3.0 and the minimum PHP version to 8.0.

Error handler 2.1.0

Jun 16, 2022

Error handler package was updated with the following enhancements:

  • There is now Yiisoft\ErrorHandler\Event\ApplicationError triggered after the error is handled.
  • Current working directory is restored in error handler so relative paths now work well.
  • Exit is deferred now so custom shutdown handlers are properly triggered.
  • Added markdown support for friendly exceptions.

Read more

Log 2.0.0

May 22, 2022

Major version of Log package was released. In this version we have moved from PSR interfaces version 1.1 to version 2.0|3.0. As a result, there are types added everywhere and the package is no more compatible with PHP 7.4.

Yii HTML 2.4.0

May 19, 2022

Yii HTML package version 2.4.0 was released.

In this release:

  • Added classes for tags Body, Article, Section, Nav, Aside, Hgroup, Header, Footer, Address, Form, Datalist, Legend and Fieldset.

Read more

Yii Console 1.1.0

May 3, 2022

Minor release of Yii Console package was tagged:

  • The minimum PHP version required is now 8.0.
  • There's now bash completion for serve command and it serves at 127.0.0.1 by default instead of localhost.

ApiDoc extension version 3.0.5 released

Apr 21, 2022

We are very pleased to announce the release of the ApiDoc extension version 3.0.5.

This patch version fixes empty visibility in methods and properties.

See the CHANGELOG for a full list of changes.

RBAC, file storage and rules container 1.0.0

Apr 8, 2022

Three RBAC packages are released in their initial stable version: rbac, rbac-php, and rbac-rules-container.

These packages provide RBAC (Role-Based Access Control) library. They are used in Yii Framework but is usable separately as well. Main features are:

  • Flexible RBAC hierarchy with roles, permissions and rules.
  • Role inheritance.
  • Data could be passed to rules when checking access.
  • Multiple storage adapters.

Read more

  • «
  • 1
  • 2
  • 3
  • 4
  • 5
  • »
Get notified of news as soon as they are available using our RSS Feed.

Years

  • 2026 (43)
  • 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 383
  • extensions 233
  • release 109
  • yii2 73
  • 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)