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

HTTP 1.1.0 released

Dec 28, 2020

Version 1.1.0 of yiisoft/http package was released.

ContentDispositionHeader was introduced. It helps building Content-Disposition header that complies to RFC-6266 and works in majority of modern browsers:

$name = \Yiisoft\Http\ContentDispositionHeader::name();

Read more

Session 1.0.0

Dec 26, 2020

Session package implements a session service, PSR-15 session middleware, and a flash message service which helps use one-time messages.

You can access session data through SessionInterface.

/** @var \Yiisoft\Session\SessionInterface $session */
$myId = $session->get('my_id');
if ($myId === null) {
    $session->set('my_id', 42);
}

Read more

i18n 1.0.0

Dec 25, 2020

Another Yii3 family package is released. This time it is yiisoft/i18n. The package provides common internationalization utilities and currently includes a Locale class. It stores locale information created from BCP 47 formatted string. Can parse locale string, modify locale parts, form locale string from parts, and derive fallback locale.

$locale = new \Yiisoft\I18n\Locale('es-CL');
echo $locale->language(); // es
echo $locale->region(); // CL

$locale = $locale->withLanguage('en');
echo $locale->asString(); // en-CL

echo $locale->fallbackLocale()->asString(); // en

The package has 100% code coverage and 100% mutation score.

Test support 1.0.0

Dec 24, 2020

First release of test support package was tagged. The package is intended to simplify the process of testing application elements that depend on PSR interfaces and is currently covering:

  • Container Interface, PSR-11
  • Event Dispatcher, PSR-14
  • Simple Cache, PSR-16

More interfaces are to be covered in the subsequent releases. Extensive documentation is available.

Aliases 1.1.2

Dec 24, 2020

Patch release of aliases package was tagged. It is fixing a bug with nested aliases and getAll().

Update does not require anything special. Just do composer update.

Composer config plugin 0.5.0

Dec 24, 2020

A pre-release version 0.5.0 of Composer config plugin was tagged. The plugin takes care of assembling configuration from multiple sources as configured in composer.json. That usually happens on composer update or composer install. Assembled configs are then used in the application cutting application bootstrap time significantly.

The plugin is still under development so there still could be configuration syntax changes.

Imagine extension version 2.3.0 released

Dec 23, 2020

Imagine extension version 2.3.0 was released.

Image::thumbnail() now accepts ImageInterface::THUMBNAIL_FLAG_UPSCALE flag to allow thumbnail upscaling. Since this option is only supported in imagine/imagine v1.0.0 or later, support for older version was dropped.

See CHANGELOG for details.

Queue extension 2.3.1 released

Dec 23, 2020

Queue extension version 2.3.1 was released.

This version fixes amqp-interop queue/listen signal handling and adds compatibilty with symfony/process 5.0.

Full changelog is available at GitHub.

MongoDB extension 2.1.11 released

Dec 23, 2020

We are very pleased to announce the release of MongoDB extension version 2.1.11.

This version adds compatibility with PECL MongoDb 1.9.0 driver.

See the CHANGELOG for details.

HTTP client extension 2.0.13 released

Dec 23, 2020

We are very pleased to announce the release of HTTP client extension version 2.0.13.

See the CHANGELOG for details.

Debug extension 2.1.16 released

Dec 23, 2020

Debug extension version 2.1.16 was released.

See the CHANGELOG for details.

Yii 2.0.40

Dec 23, 2020

We are very pleased to announce the release of Yii Framework version 2.0.40. Please refer to the instructions at https://www.yiiframework.com/download/ to install or upgrade to this version.

The release is mostly focused on fixing issues found since last release.

Thanks to all Yii community members who contribute to the framework, translators who keep documentation translations up to date and community members who answer questions at forums.

There are many active Yii communities so if you need help or want to share your experience, feel free to join them.

A complete list of changes can be found in the CHANGELOG.

Yii 1.1.23 is released

Dec 2, 2020

We are very pleased to announce that Yii Framework version 1.1.23 is released. You can download it at yiiframework.com/download/.

This release is a release of Yii 1.1 that has reached maintenance mode and will, only receive necessary security fixes and fixes to adjust the code for compatibility with PHP 7 and 8 if they do not cause breaking changes. This allows you to keep your servers PHP version up to date in the environments where old Yii 1.1 applications are hosted and stay within the version ranges supported by the PHP team.

Yii 1.1.23 adds support for PHP 8 and improves compatibility for PHP 7. It also adds support for PostgreSQL 12.

Read more

Cookies 1.0.0 released

Dec 2, 2020

First version of cookies package released.

The package helps in working with HTTP cookies in a PSR-7 environment:

  • provides a handy abstraction representing a cookie
  • allows dealing with many cookies at once
  • forms and adds Set-Cookie headers to response

According to our quality standards, it has full test coverag, high MSI score and type coverage.

Usage examples are available in package readme.

Strings 1.1.0 released

Nov 13, 2020

A minor version of strings package was released:

  • Flags for WildcardPattern now could be turned off by passing a boolean flag.
  • An option withEnding() was added to WildcardPattern. It is allowing to match ending of testing string only ignoring the beginning.

More details could be found in the package CHANGELOG.

Debug extension 2.1.15 released

Nov 13, 2020

Debug extension version 2.1.15 was released.

This release fixes a bug introduced in previous release.

See the CHANGELOG for details.

Auth Client extension 2.2.9 released

Nov 13, 2020

We are very pleased to announce the release of Auth Client extension version 2.2.9.

This release fixes regression introduced in previous release.

See the CHANGELOG for details.

Twig extension 2.4.1 released

Nov 10, 2020

We are very pleased to announce two releases of Twig extension.

Version 2.4.1 allows installing the extension when using PHP 8.

Auth Client extension 2.2.8 released

Nov 10, 2020

We are very pleased to announce the release of Auth Client extension version 2.2.8.

This release adds compatibility with PHP 8 and fixes a bug when "Invalid access token" was thrown instead of refreshing a token.

See the CHANGELOG for details.

Debug extension 2.1.14 released

Nov 10, 2020

Debug extension version 2.1.14 was released. This release adds extra routing data in Router panel and an ability for toolbar to skip URLs of AJAX requests from being displayed.

See the CHANGELOG for details.

  • «
  • 1
  • 2
  • 3
  • 4
  • »
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)