CodeIgniter 4.0.5と4.1.1がリリースされました

(2022-04-26 追記) CodeIgniter 4.1.9より前のバージョンには脆弱性が報告されています。 「 CodeIgniter 4.1.9(セキュリティ修正)がリリースされました」を参照してください。

PHP8に対応したCodeIgniter 4.0.5と4.1.0が2021/01/31にリリースされました。

その後、パッケージングにミスが見つかり02/01に4.1.1がリリースされ、4.0.5のパッケージも更新されました。 なお、Composerでインストールしている場合は影響はありません。

PHP 7.3以上の場合は4.1.1へ、PHP 7.2の場合は4.0.5へアップグレードすることを推奨します。

私の CodeIgniter 4 Application Template も4.1に更新しました。

主な変更点

  • PHP8対応
  • 4.0.5はPHP 7.2をサポートする最後のバージョン
  • 4.1.xはPHP 7.3以上から8.0をサポート
  • CLIからコードを生成する Generator が追加
  • 多数のバグ修正

system 以外の更新

4.0.4と4.0.5を比較すると、system/外の以下のファイルに変更が加えられています。 これらは、composer updateでは更新されませんので、必要なものは手動で更新する必要があります。

Liaison Revision を使うと、更新が楽になります。

4.0.5/LICENSE
4.0.5/README.md
4.0.5/app/Config/App.php
4.0.5/app/Config/Autoload.php
4.0.5/app/Config/Boot/development.php
4.0.5/app/Config/Boot/production.php
4.0.5/app/Config/Boot/testing.php
4.0.5/app/Config/Cache.php
4.0.5/app/Config/Constants.php
4.0.5/app/Config/ContentSecurityPolicy.php
4.0.5/app/Config/Database.php
4.0.5/app/Config/DocTypes.php
4.0.5/app/Config/Email.php
4.0.5/app/Config/Encryption.php
4.0.5/app/Config/Events.php
4.0.5/app/Config/Exceptions.php
4.0.5/app/Config/Filters.php
4.0.5/app/Config/ForeignCharacters.php
4.0.5/app/Config/Format.php
4.0.5/app/Config/Generators.php
4.0.5/app/Config/Honeypot.php
4.0.5/app/Config/Images.php
4.0.5/app/Config/Kint.php
4.0.5/app/Config/Logger.php
4.0.5/app/Config/Migrations.php
4.0.5/app/Config/Mimes.php
4.0.5/app/Config/Modules.php
4.0.5/app/Config/Pager.php
4.0.5/app/Config/Paths.php
4.0.5/app/Config/Routes.php
4.0.5/app/Config/Security.php
4.0.5/app/Config/Services.php
4.0.5/app/Config/Toolbar.php
4.0.5/app/Config/UserAgents.php
4.0.5/app/Config/Validation.php
4.0.5/app/Config/View.php
4.0.5/app/Controllers/BaseController.php
4.0.5/app/Controllers/Home.php
4.0.5/app/Views/errors/cli/error_404.php
4.0.5/app/Views/errors/cli/error_exception.php
4.0.5/app/Views/errors/html/debug.css
4.0.5/app/Views/errors/html/debug.js
4.0.5/app/Views/errors/html/error_exception.php
4.0.5/composer.json
4.0.5/env
4.0.5/license.txt
4.0.5/phpunit.xml.dist
4.0.5/public/.htaccess
4.0.5/public/index.php
4.0.5/spark

関連

参考

Date: 2021/02/02

Tags: codeigniter, codeigniter4, release