Skip to content

Commit

Permalink
Merge branch '4.x' into 4.9
Browse files Browse the repository at this point in the history
# Conflicts:
#	.github/workflows/ci.yml
#	src/web/assets/cp/dist/cp.js
#	src/web/assets/cp/dist/cp.js.map
  • Loading branch information
brandonkelly committed Mar 30, 2024
2 parents 78eeada + 5572bb7 commit db53003
Show file tree
Hide file tree
Showing 38 changed files with 1,030 additions and 1,014 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ on:
workflow_dispatch:
push:
branches:
- develop
- 4.x
- '4.9'
pull_request:
permissions:
Expand Down
11 changes: 10 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,14 @@
# Release Notes for Craft CMS 4

## Unreleased

- The Craft 5 Upgrade utility now shows the upgrade status and latest compatible version for abandoned plugins.
- Fixed a “Double-instantiating a checkbox select on an element” JavaScript warning. ([#14707](https://github.com/craftcms/cms/issues/14707))

## 4.8.6 - 2024-03-26

- Added the “Craft 5 Upgrade” utility.

## 4.8.5 - 2024-03-22

- Selectize inputs no longer automatically select the hovered option on <kbd>Tab</kbd> press. ([selectize/selectize.js#2085](https://github.com/selectize/selectize.js/issues/2085))
Expand All @@ -8,7 +17,7 @@
- Fixed a bug where filesystems’ `afterSave()` and `afterDelete()` methods weren’t getting called. ([#14634](https://github.com/craftcms/cms/pull/14634))
- Fixed an error that could occur on `elements/recent-activity` Ajax requests when editing an element. ([#14635](https://github.com/craftcms/cms/issues/14635))

## 4.8.4 - 2024-03-19
## 4.8.4 - 2024-03-19 0473839613b9f75edd0796ff27f7a322da4f6d49

- Craft no longer shows an alert when an installed Craft/plugin edition is a lower tier than the licensed edition.

Expand Down
2 changes: 1 addition & 1 deletion src/config/app.php
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
return [
'id' => 'CraftCMS',
'name' => 'Craft CMS',
'version' => '4.8.5',
'version' => '4.8.6',
'schemaVersion' => '4.5.3.0',
'minVersionRequired' => '3.7.11',
'basePath' => dirname(__DIR__), // Defines the @app alias
Expand Down
2 changes: 2 additions & 0 deletions src/services/Utilities.php
Original file line number Diff line number Diff line change
Expand Up @@ -23,6 +23,7 @@
use craft\utilities\SystemMessages as SystemMessagesUtility;
use craft\utilities\SystemReport;
use craft\utilities\Updates as UpdatesUtility;
use craft\utilities\Upgrade;
use yii\base\Component;

/**
Expand Down Expand Up @@ -66,6 +67,7 @@ class Utilities extends Component
public function getAllUtilityTypes(): array
{
$utilityTypes = [
Upgrade::class,
UpdatesUtility::class,
SystemReport::class,
ProjectConfigUtility::class,
Expand Down
112 changes: 56 additions & 56 deletions src/translations/ar/app.php

Large diffs are not rendered by default.

86 changes: 43 additions & 43 deletions src/translations/cs/app.php

Large diffs are not rendered by default.

86 changes: 43 additions & 43 deletions src/translations/da/app.php

Large diffs are not rendered by default.

28 changes: 14 additions & 14 deletions src/translations/de-CH/app.php

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading

0 comments on commit db53003

Please sign in to comment.