Skip to content

Commit

Permalink
Merge branch 'release/3.2.6'
Browse files Browse the repository at this point in the history
  • Loading branch information
brandonkelly committed Jul 23, 2019
2 parents e44b9d1 + 7a514df commit 02739d2
Show file tree
Hide file tree
Showing 26 changed files with 466 additions and 561 deletions.
31 changes: 30 additions & 1 deletion CHANGELOG-v3.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,22 @@
# Release Notes for Craft CMS 3.x

## 3.2.6 - 2019-07-23

### Changed
- When enabling a new site for a Single section, Craft now uses the primary site’s content as the starting point for the new site’s content, if the section was already enabled for it.
- Swapped the position of the “Save as a Draft” and “Save Entry” buttons. ([#4622](https://github.com/craftcms/cms/issues/4622))
- `craft\helpers\DateTimeHelper::toDateTime()` now supports arrays created from `DateTime` objects. ([#4627](https://github.com/craftcms/cms/issues/4627))
- Plugin license key inputs are no longer limited to 29 characters, to make room for long environment variable names. ([#4393](https://github.com/craftcms/cms/issues/4393))
- Updated Imagine to 1.2.2.1.

### Fixed
- Fixed a bug where Craft could load the same JavaScript and CSS files multiple times when opening element editor HUDs. ([#4620](https://github.com/craftcms/cms/issues/4620))
- Fixed a bug where each animated GIF frame would still be parsed when generating a thumbnail, even if the `transformGifs` setting was set to `false`. ([#4588](https://github.com/craftcms/cms/issues/4588))
- Fixed a bug where back-end slug validation wasn’t working correctly for slugs with unicode characters. ([#4628](https://github.com/craftcms/cms/issues/4628))
- Fixed a bug where it wasn’t possible to create new entries if the section handle matched the `pageTrigger` config setting, and the `pageTrigger` config setting had a trailing slash. ([#4631](https://github.com/craftcms/cms/issues/4631))
- Fixed a bug where the `sections.previewTargets` database column was getting created as a `varchar` instead of `text` column for new Craft installs. ([#4638](https://github.com/craftcms/cms/issues/4638))
- Fixed a bug where the `preserveExifData` config setting wasn’t being respected on image upload.

## 3.2.5.1 - 2019-07-19

### Fixed
Expand Down Expand Up @@ -108,10 +125,12 @@

## 3.2.0 - 2019-07-09

> {warning} If you’ve ever run the `project-config/rebuild` command, it’s highly recommended that you run it again with Craft 3.1.34, before updating to Craft 3.2.
> {warning} If you’ve ever run the `project-config/rebuild` command, it’s highly recommended that you run it again with Craft 3.1.34.2, before updating to Craft 3.2.
> {warning} Custom login controllers must now explicitly set their `$allowAnonymous` values to include `self::ALLOW_ANONYMOUS_OFFLINE` if they wish to be available when the system is offline.
> {tip} If you have Super Table or Neo installed, you should update those **at the same time** as Craft, to avoid unnecessary search index jobs from being added to the queue.
### Added
- All element types now have the option to support drafts and revisions.
- Drafts are now autocreated when content is modified, and autosaved whenever the content changes. ([#1034](https://github.com/craftcms/cms/issues/1034))
Expand Down Expand Up @@ -291,6 +310,16 @@
- Fixed a bug where `craft\helpers\UrlHelper` methods could add duplicate query params on generated URLs.
- Fixed a bug where Matrix blocks weren’t getting duplicated for other sites when creating a new element. ([#4449](https://github.com/craftcms/cms/issues/4449))

## 3.1.34.2 - 2019-07-23

### Fixed
- Fixed a bug where the `project-config/rebuild` command was discarding email and user settings.

## 3.1.34.1 - 2019-07-22

### Fixed
- Fixed a bug where the `project-config/rebuild` command was ignoring entry types that didn’t have a field layout. ([#4600](https://github.com/craftcms/cms/issues/4600))

## 3.1.34 - 2019-07-09

### Changed
Expand Down
4 changes: 2 additions & 2 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "craftcms/cms",
"description": "Craft CMS",
"version": "3.2.5.1",
"version": "3.2.6",
"keywords": [
"cms",
"craftcms",
Expand Down Expand Up @@ -39,7 +39,7 @@
"league/flysystem": "^1.0.35",
"league/oauth2-client": "^2.2.1",
"mikehaertl/php-shellcommand": "^1.2.5",
"pixelandtonic/imagine": "~0.7.1.2",
"pixelandtonic/imagine": "~1.2.2.1",
"seld/cli-prompt": "^1.0.3",
"symfony/yaml": "^3.2|^4.0",
"true/punycode": "^2.1.0",
Expand Down
Loading

0 comments on commit 02739d2

Please sign in to comment.