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

Debug extension 2.1.19 released

Apr 5, 2022

Debug extension version 2.1.19 was released.

This release fixes PHP 8.1 compatibility issues and adds an option to change default LogTarget.

See the CHANGELOG for details.

Yii Bulma 1.0.0

Apr 1, 2022

First version of Yii Framework Bulma Integration package was released.

This Yii Framework package encapsulates Bulma components and plugins in terms of Yii widgets, and thus makes using Bulma components/plugins in Yii applications convenient.

See details in the package README.

Queue extension 2.3.4 released

Mar 31, 2022

Queue extension version 2.3.4 was released.

This version forces db driver to use index on the reserved_at column to unlock unfinished tasks.

Full changelog is available at GitHub.

ApiDoc extension version 3.0.4 released

Mar 29, 2022

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

This patch version fixes conversion of newlines to spaces and considers the first sentence ended only if the dot is followed by a space in BaseDoc::extractFirstSentence().

See the CHANGELOG for a full list of changes.

Our stance on the war operation and update on development

Mar 29, 2022

Yii team is international, it consists of awesome developers from Ukraine, Russia, Germany, Kazakhstan, Chile, Uzbekistan, Moldova, Poland, Netherlands, US and more.

Team members were shocked when it all started. Noone expected it, noone believed it.

A month passed and consequences are disasterous: the world changed forever, Ukrainians are fighting for their lives and future, Russians are experiencing huge pressure both from their own country and the world. Many are leaving their homes and their previous lives seeking at least some degree of safety.

Read more

HTML 2.3.0

Mar 25, 2022

HTML package version 2.3.0 was released.

In this release added classes for tags:

  • Title,
  • H1,
  • H2,
  • H3,

Read more

Test Support 1.4.0

Mar 24, 2022

Test Support package version 1.4.0 was released. There a few changes in SimpleContainer::has() method:

  • added abilitiy set custom callback;
  • catch only \Yiisoft\Test\Support\Container\Exception\NotFoundException instead of \Throwable.

Julia "Insolita" passed away

Feb 23, 2022

Julia "Insolita" passed away yesterday from cancer.

She was a prominent PHP and Yii community member, contributed to both Yii2 and upcoming Yii3, created a number of useful utilities and was helping with awesome PHP Digest (in English community known as JetBrains PHP Annotated).

Julia, thank you for what you've done. You'll always be in our hearts.

ApiDoc extension version 3.0.3 released

Feb 19, 2022

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

This patch version fixes wrong encoding during generation of non-Englush guides.

See the CHANGELOG for a full list of changes.

ApiDoc extension version 3.0.2 released

Feb 16, 2022

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

This patch version fixes an error preventing docs generation in an edge case.

See the CHANGELOG for a full list of changes.

Yii 2.0.45

Feb 11, 2022

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

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

This release makes Yii 2 compatible with PHP 8.1, fixes a number of bugs and adds some enhancements. Special thanks to longthanhtran, pamparam83, sartor, githubjeka for contributing compatibility fixes.

Read more

Symfony mailer extension 2.0.3 released

Feb 10, 2022

We are very pleased to announce the release of Symfony mailer extension version 2.0.3.

This version removed "final" modifier from Mailer and Message classes. While finalizing classes has its benefits, Yii2 is not ready for it unlike Yii3.

Details are available in CHANGELOG.

Yii Swagger 1.2.0

Feb 10, 2022

Yii Swagger intergration package was updated to version 1.2.0. In this version we have added an ability to configure OpenApi\Annotations\OpenAPI generation via Yiisoft\Swagger\Service\SwaggerService in config/params.php:

'yiisoft/yii-swagger' => [
    // Default values are specified.
    'open-api-options' => [
        'aliases' => OpenApi\Generator::DEFAULT_ALIASES,
        'namespaces' => OpenApi\Generator::DEFAULT_NAMESPACES,
        'analyser' => null,
        'analysis' => null,
        'processors' => null,
        'logger' => null,
        'validate' => true,
        'version' => OpenApi\Annotations\OpenApi::DEFAULT_VERSION,
    ],
],
//...

ApiDoc extension version 3.0.1 released

Feb 8, 2022

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

This patch version fixes an error preventing docs generation in an edge case.

See the CHANGELOG for a full list of changes.

Symfony mailer extension 2.0.2 released

Feb 3, 2022

We are very pleased to announce the release of Symfony mailer extension version 2.0.2.

This version fixes a number of bugs found since first release. Details are available in CHANGELOG.

View 5.0.0

Feb 3, 2022

Version 5.0.0 of View package is released. There a few bugs fixed, some additions and a few backwards incompatible changes:

  1. New and adjusted methods in ViewInterface.
  2. Some methods became mutating instead of immutable since it is desired behavior considering sub-views and layout.
  3. A simple view context class, ViewContext, was added.

Detailed changelog

RoadRunner adapter for Yii Runner 1.0.0

Jan 26, 2022

First release of RoadRunner adapter for Yii Runner was tagged.

Despite popular belief, PHP application doesn't have to die and re-initilize every request and, thanks to RoadRunner Yii3 application could work in "initilize once" mode. There are multiple profits in using RoadRunner:

  1. Higher performance because all the framework initialization is done only once and the initialized worker may handle multiple request-responses.
  2. Tight Golang-PHP integration via Goridge RPC protocol.
  3. HTTP/2, gRPC, PSR-7 out of the box.
  4. Easy to pack into Docker since there's no need for PHP-FPM. Responses are served directly as HTTP.

Read more

Yii Runner 1.0.0 and adapters

Jan 17, 2022

First release of Yii Runner was tagged. A runner hides application initialization details making configuration process easier.

For example, instead of complicated initialization, the following is enough for HTTP application's index.php:

<?php

Read more

Yii Swagger 1.1.0

Jan 14, 2022

Yii Swagger intergration package was updated to version 1.1.0. In this version an ability to configure Yii\Swagger\Middleware\SwaggerJson via config/params.php was added:

//...
'yiisoft/yii-swagger' => [
    'annotation-paths' => [
        '@src/Controller' // Directory where annotations are used
    ],
    'cacheTTL' => 60 // Enables caching and sets TTL, "null" value means infinite cache TTL.
]
//...

Access 1.1.0

Jan 14, 2022

yiisoft/access package got minor version release.

This version adds simple DenyAll and AllowAll access checkers that correspondingly deny or allow access to everything.

  • «
  • 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)