Fast, Smart Flex Recipe Upgrades with recipes:update

Symfony Flex makes it easy to install a package and get everything you need to start working immediately: new config files, changes to .env, Docker configuration and more. The idea is so powerful that symfony/skeleton - the repository used for new Symfony apps - starts empty other than composer.json! Familiar files like src/Kernel.php, bin/console and config/services.yaml are added to your project via recipes. The "ingredients" to these recipes can be found at https://github.com/symfony/recipes and https://github.com/symfony/recipes-contrib. Over time, as Symfony adds new features or adopts new best-practices, the recipes change. And while you don't need to update these files, it's the best way to take advantage of new features and keep your Symfony app "feeling" standard.

Hello "recipes:update"! Upgrading to a new version of Symfony is a well-documented process. But until now, there wasn't a great way to update your already-installed recipes. You could use composer recipes:install symfony/framework-bundle --force, but that simply re-installs the recipe, completely overwriting your files and custom changes with the latest version. That made the upgrade process brittle and tricky. Not a good user experience! And so, starting in symfony/flex 1.18.0 or 2.1.0, a new composer command is now available: recipes:update. This command is smart: it generates a "diff" between the originally-installed version of recipe and the latest version, then leverages git to apply that patch. In other words, upgrading recipes is as simple and robust as merging two branches together with git! Most of the time the changes apply cleanly. But if they don't, you get a familiar git-style conflict that you can resolve. Well then... let's see it! In this example, I'm updating the symfony/framework-bundle recipe - the most complex recipe - which is 18 months and 4 Symfony versions out-of-date in my project! Once you've reviewed the changes, commit them like normal, then... back to work! Either to upgrade more recipes, work on your app, or contribute back to Symfony ;).

The CHANGELOG After updating a recipe, you can run git status and git diff --cached path/to/file to see what updated. But while this will tell you what changed, it won't tell you why that change was introduced. Fortunately, the recipes:update command includes a CHANGELOG at the bottom, with a summary of all the pull requests that made changes to the recipe since you originally installed it. For example: [5.2] Remove trusted-proxies/hosts from recipes (#790) [symfony/framework-bundle] Add config/preload.php (#825) Disable "http_method_override" by default (#892) [FrameworkBundle] Replace deprecated storage_id by `storage_factory… (#898) Leverage the new Runtime component (#787)

In most modern terminals, you can click the pull request number - e.g. #790 - to jump to that pull request on GitHub (you may need to hold Ctrl or Cmd and then click, depending on your terminal).

When Should I Run recipes:update? Feel free to run recipes:update command as often as you want. To update everything, run it repeatedly until the list is empty! It's safe, and you get to review all changes before you commit. But the most important time to upgrade your recipes is after upgrading a package (like Symfony) to a new minor (e.g. 5.3 -> 5.4) or major (e.g. 5.4 -> 6.0) version. That's the most common time when a recipe will have important upgrades. Have fun and happy recipe-updating!

                Sponsor the Symfony project.

https://symfony.com/blog/fast-smart-flex-recipe-upgrades-with-recipes-update?utm_source=Symfony%20Blog%20Feed&utm_medium=feed

Creată 3y | 19 ian. 2022, 14:20:11


Autentifică-te pentru a adăuga comentarii

Alte posturi din acest grup

Case study - Yousign: Scaling Trust with Smart, Scalable Architecture

As digital signatures become the norm in modern business, Yousign has established itself as a trusted leader across Europe. Behind its simple, intuitive interface is a powerful technical engine, handl

6 iun. 2025, 07:10:24 | Symfony
SymfonyOnline June 2025 starts next week!

Get ready for the exciting SymfonyOnline June 2025, kicking off in a few days only! There’s still time to register and join the international online Symfony conference—along with pre-conferenc

5 iun. 2025, 10:20:09 | Symfony
A Week of Symfony #961 (May 26 – June 1, 2025)

This week, Symfony released the stable version of Symfony 7.3, which includes lots of amazing new features. We also published the maintenance versions 6.4.22 and 7.2.7.

Symfony development highlights

1 iun. 2025, 08:50:16 | Symfony
New in Symfony 7.3: DX Improvements (part 2)

This is the second part of the blog post showcasing the main DX (developer experience) features introduced in Symfony 7.3. Read the first part of this blog post.

Verify URI Signatures… https://symfon

29 mai 2025, 09:10:19 | Symfony
Symfony 6.4.22 released

Symfony 6.4.22 has just been released. Read the Symfony upgrade guide to learn more about upgrading Symfony and use the SymfonyInsight upgrade reports to detect the code you will need to change in you

29 mai 2025, 09:10:19 | Symfony
Symfony 7.2.7 released

Symfony 7.2.7 has just been released. Read the Symfony upgrade guide to learn more about upgrading Symfony and use the SymfonyInsight upgrade reports to detect the code you will need to change in your

29 mai 2025, 09:10:18 | Symfony
Symfony 7.3.0 released

Symfony 7.3.0 has just been released. Check the New in Symfony 7.3 posts on this blog to learn about the main features of this new stable release; or check the first beta release announcement to get t

29 mai 2025, 09:10:17 | Symfony