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 Middleware Dispatcher 5.2

Sep 25, 2023

Minor version of Yii Middleware Dispatcher package is released.

This version adds support for invokable class names & implementations of Psr\Http\Server\RequestHandlerInterface.

Yii Strings 2.2

Sep 20, 2023

Minor version of Yii Strings package was released.

In this release:

  • Add CombinedRegexp and MemoizedCombinedRegexp classes optimizes matching of multiple regular expressions.
  • Add methods StringHelper::trim(), StringHelper::ltrim() and StringHelper::rtrim().
  • Add $strict parameter to Inflector::toSnakeCase() method.
  • Raise required PHP version to 8.0.

Read more

Yii Access 2.0

Aug 7, 2023

Major version of Yii Access package was released.

In this release:

  • type for $userId parameter of AccessCheckerInterface::userHasPermission() method is specified;
  • mininum PHP version was raised to 8.0.

Rate limiter 3.0.0

Jul 26, 2023

Major version of yiisoft/rate-limiter package was released.

In this release:

  • Revised architecture allowing concurrency-safe counter storages.
  • Added APCu counters storage that is suitable for high concurrency environments that might cause dirty reads.
  • Dependency upgrades.
  • Mininum PHP version was raised to 8.0.

Thanks to Pan Jiawei for handing this complicated work.

DB and drivers updates

Jul 24, 2023

Database package was tagged along with its drivers.

  • Legacy array type-casting syntax was removed from db. Param should now be used instead.
  • Drivers got more tests, refactoring and more edge-cases handled.

Here's the list CHANGELOGs:

  • DB 1.1.0
  • MSSQL 1.0.1

Read more

Redis adapter for cache 2.0.0

Jul 10, 2023

Version 2.0.0 of Redis adapter for Yii cache was released. In this version:

  • psr/simple-cache requirement raised to ^2.0|^3.0.
  • PHP requirement raised to ^8.0.
  • predis/predis requirement raised to ^2.1.
  • Redis cluster support added.

Yii Runner HTTP 2.1.0

Jul 10, 2023

Version 2.1.0 of Yii Runner HTTP was released.

This version adds support of stream output and deprecating ServerRequestFactory in favor of RequestFactory.

VarDumper 1.6.0

Jun 30, 2023

A minor update was made to yiisoft/var-dumper package.

In this version:

  • Removed leading spaces in closure dumps.
  • Added individual dumps for DateTime and DateTimeImmutable objects.

It seems, we forgot to post news about the package since 1.2.0 so here's the summary of what was added since then:

  • asJson() method that provide exporting value as JSON string.
  • asPrimitives() method that exports a variable like destructed JSON.

Read more

i18n 1.2.0

Jun 4, 2023

New version of yiisoft/i18n package was released.

This version adds LocaleProvider and raises required major PHP version to 8.

Yii Console 2.1

May 28, 2023

Version 2.1 of Yii Console package was tagged.

In this version:

  • Enhanced output for serve command
  • Added --xdebug option for serve
  • Fixed accepting : as command name separator
  • Added something else

Yii Middleware Dispatcher 5.1

May 11, 2023

Minor version of Yii Middleware Dispatcher package is released.

In this version make a few improvements:

  • Added composite parameters resolver.
  • Added support for psr/http-message version ^2.0.
  • Optimized MiddlewareFactory performance.

Yii Translator DB Message Storage 1.0.0

May 9, 2023

First stable version of Yii Translator DB Message Storage was tagged.

This package provides the database storage for the yiisoft/translator.

It allows you to store messages in databases supported by yiisoft/db: MariaDB, MSSQL, MySQL, Oracle, PostgreSQL, and SQLite.

Yii Cache Library - DB Handler 1.0.0

May 9, 2023

First stable version of Yii Cache Library - DB Handler was tagged.

This package provides the database driver for the yiisoft/cache.

It allows you to store cache in databases supported by yiisoft/db: MariaDB, MSSQL, MySQL, Oracle, PostgreSQL, and SQLite.

Yii Logging Library - DB Target 1.0.0

May 9, 2023

First stable version of Yii Logging Library - DB Target was tagged.

This package provides the database target for the yiisoft/log.

It allows you to write logs into databases suppoerted by yiisoft/db: MariaDB, MSSQL, MySQL, Oracle, PostgreSQL, and SQLite.

Yii database 1.0.0

Apr 12, 2023

First release of Yii Database and its drivers is done.

It is a framework-agnostic package to work with different types of databases,
such as [MariaDB], [MSSQL], [MySQL], [Oracle], [PostgreSQL], and [SQLite].

Using the package, you can perform common database tasks such as creating, reading, updating, and deleting
records in a database table, as well as executing raw SQL queries.

$rows = (new Query($db))  
    ->select(['id', 'email'])  
    ->from('{{%user}}')  
    ->where(['last_name' => 'Smith'])  
    ->limit(10)  
    ->all();

Read more

Response Download 1.0

Mar 13, 2023

The first stable version of yiisoft/response-download was released.

This package provides multiple methods for creating PSR-7 compatible response with downloadable content using PSR-17 compatible response factory and stream factory:

  • Send file by path.
  • Send string content as a file.
  • Send PSR-7 compatible stream as a file.
  • Send file by path using x-sendfile.

Check README for more details.

Psalm level is 1, the code coverage and MSI are 100%.

Major releases of Yii runners

Feb 19, 2023

Yii runners packages got a major releases:

  • Yii Runner 2.0
  • Yii HTTP Runner 2.0
  • Yii Console Runner 2.0
  • Yii RoadRunner Runner 2.0

Configuration group names in runners adapted to Yii conventions and added ability to configure it. Make a few improvements also:

Read more

Yii Widgets 2.1

Feb 19, 2023

Minor version of Yii Widgets package is released.

In this version updated dependencies:

  • yiisoft/cache to ^2.0|^3.0;
  • yiisoft/aliases to ^3.0;
  • yiisoft/view to ^8.0.

Yii View Twig Renderer 2.1

Feb 17, 2023

Minor version of Yii View Twig Renderer was released. There a few changes and improvements:

  • raised minimum PHP version to ^8.0;
  • updated version of yiisoft/view to ^6.0|^7.0|^8.0;
  • added support ^2.0 version of psr/container.

Yii Router 3.0 and FastRoute Adapter 3.0

Feb 17, 2023

Major versions of Yii Router and Yii Routere FastRoute Adapter adapter package were released.

Configuration group names of both packages adapted to Yii convention.

  • «
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • »
Get notified of news as soon as they are available using our RSS Feed.

Years

  • 2026 (44)
  • 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 384
  • 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)