Browse Source

Finish 3.6.0-beta.1

pull/7188/head 3.6.0-beta.1
Brandon Kelly 5 years ago
parent
commit
b1da5d634b
  1. 24
      CHANGELOG.md
  2. 2
      composer.json
  3. 2
      src/config/app.php

24
CHANGELOG.md

@ -1,5 +1,29 @@
# Release Notes for Craft CMS 3.x
## 3.6.0-beta.1 - 2020-11-03
### Added
- Added the `users/list-admins` and `users/set-password` commands. ([#7067](https://github.com/craftcms/cms/issues/7067))
- Added `craft\console\Controller::passwordPrompt()`.
### Changed
- Renamed the `backup` and `restore` commands to `db/backup` and `db/restore`. ([#7023](https://github.com/craftcms/cms/issues/7023))
- Relational fields now include all related elements’ titles as search keywords, including disabled elements. ([#7079](https://github.com/craftcms/cms/issues/7079))
- `craft\services\Composer::install()` no longer has an `$allowlist` argument.
- Craft no longer reports PHP deprecation errors.
- Updated Guzzle to 7.x, for environments running PHP 7.2.5 or later, and where the `config.platform.php` value in `composer.json` is at least `7.2.5`. ([#6997](https://github.com/craftcms/cms/issues/6997))
- Updated Composer to 2.0.4.
### Deprecated
- Deprecated the `backup` and `restore` commands.
- Deprecated `craft\services\Composer::$disablePackagist`.
- Deprecated `craft\web\View::$minifyCss`.
- Deprecated `craft\web\View::$minifyJs`.
### Removed
- Removed Minify and jsmin-php.
- Removed `craft\services\Api::getComposerWhitelist()`.
## 3.5.15 - 2020-11-03
### Added

2
composer.json

@ -1,7 +1,7 @@
{
"name": "craftcms/cms",
"description": "Craft CMS",
"version": "3.6.0-alpha",
"version": "3.6.0-beta.1",
"keywords": [
"cms",
"craftcms",

2
src/config/app.php

@ -3,7 +3,7 @@
return [
'id' => 'CraftCMS',
'name' => 'Craft CMS',
'version' => '3.6.0-alpha',
'version' => '3.6.0-beta.1',
'schemaVersion' => '3.5.13',
'minVersionRequired' => '2.6.2788',
'basePath' => dirname(__DIR__), // Defines the @app alias

Loading…
Cancel
Save