Skip to content

Commit 8757cde

Browse files
author
Julien Neuhart
committed
Update chapters on housekeeping, add changelog documentation
1 parent 3ee8f26 commit 8757cde

File tree

3 files changed

+590
-7
lines changed

3 files changed

+590
-7
lines changed

docs/docs/03_API/4_Housekeeping.md

+11-3
Original file line numberDiff line numberDiff line change
@@ -15,16 +15,24 @@ You should update to the latest minor/majors version whenever a new version is a
1515

1616
See [Symfony releases](https://symfony.com/releases).
1717

18-
## Minor Versions
18+
### Minor Versions
1919

2020
See https://symfony.com/doc/current/setup/upgrade_minor.html.
2121

22-
## Major Versions
22+
### Major Versions
2323

2424
See https://symfony.com/doc/current/setup/upgrade_major.html.
2525

2626
:::note
2727

2828
📣  Make sure your Symfony bundles are ready before updating.
2929

30-
:::
30+
:::
31+
32+
## Composer
33+
34+
To show the list of direct outdated dependencies, run:
35+
36+
```bash title="console"
37+
composer outdated --direct
38+
```

docs/docs/04_Web Application/4_Housekeeping.md

+6-4
Original file line numberDiff line numberDiff line change
@@ -11,8 +11,10 @@ Please read it carefully, as those actions will ensure your project is still rel
1111

1212
## Nuxt.js
1313

14-
From time to time, check for new releases of your main packages:
14+
From time to time:
1515

16-
1. Update the corresponding versions in your *src/webapp/package.json* file.
17-
2. Remove the file *src/webapp/yarn.lock* and the folder *src/webapp/node_modules*.
18-
3. Recreate the `webapp` service with `docker-compose up -d --force webapp`.
16+
1. Remove the file *src/webapp/yarn.lock* and the folder *src/webapp/node_modules*.
17+
2. Recreate the `webapp` service with `docker-compose up -d --force webapp`.
18+
3. (optional) Run `yarn outdated` for additional packages to update.
19+
4. (optional) Update their versions in the *src/webapp/package.json* file.
20+
5. Repeat! 😄

0 commit comments

Comments
 (0)