Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Edits to v1.24.0 release blog #282

Merged
merged 3 commits into from
Dec 3, 2024
Merged
Changes from 2 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions src/content/blog/release-v1.24.0-php8.4.md
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,7 @@ Congratulations to **all of you and all contributors who made this happen**. It'
## Smaller Changes

* Added dynamic timeout handling for scripts on start based on setting of `default_container_timeout`. This is mostly only for folks with exceptionally slow internet.
* Added explicit support for the `symfony` project type, see [docs](https://ddev.readthedocs.io/en/stable/users/quickstart/#symfony), thanks [@IndraGunawan](https://github.com/IndraGunawan).
* `ddev describe` changes how exposed ports are displayed for better clarity (thanks [@hanoii](https://github.com/hanoii))
* Only a limited set of locales is now installed in `ddev-webserver` by default. If you need more, use `webimage_extra_packages: [locales-all]`
* Complex `ddev composer` command usage with json or args with spaces is fixed. (A bug was introduced in v1.23.5.)
Expand All @@ -41,6 +42,8 @@ Congratulations to **all of you and all contributors who made this happen**. It'
<dd>If your project is actually a Drupal 11 project, there's no reason to make any changes. If your project is Drupal 8-10, you may want to change it to project type <code>drupal10</code>, for example although there's no meaningful difference in this release. </dd>
<dt>What if I want more locales than the ones provided by default?</dt>
<dd>The default locales installed in the web container for v1.24.0 are <code>en_CA.UTF-8, en_US.UTF-8, en_GB.UTF-8, de_DE.UTF-8, de_AT.UTF-8, fr_CA.UTF-8, fr_FR.UTF-8, ja_JP.UTF-8, ru_RU.UTF-8</code>. If you need other locales, all locales will be installed if you add <code>locales-all</code> to your <code>webimage_extra_packages</code> in <code>.ddev/config.yaml</code> For example, <code>webimage_extra_packages: ["locales-all"]</code></dd>
<dt>What should I do after upgrading DDEV?</dt>
<dd>DDEV will already ask you to do a <code>ddev poweroff</code>, but consider doing a <code>ddev config --update</code> on your projects. This will auto-detect your project type and required PHP version. It may switch the <code>drupal</code> type to <code>drupal10</code> or <code>drupal11</code>.</dd>
</dl>

## Reversions and Removals
Expand Down
Loading