Skip to content

Commit d4b7437

Browse files
committed
Clear release notes and migration script
Signed-off-by: Leandro Lucarella <[email protected]>
1 parent 4233bc8 commit d4b7437

File tree

2 files changed

+12
-1073
lines changed

2 files changed

+12
-1073
lines changed

RELEASE_NOTES.md

+12-24
Original file line numberDiff line numberDiff line change
@@ -2,48 +2,36 @@
22

33
## Summary
44

5-
This release improves dependabot groups, so it is less likely that breaking updates are grouped with non-breaking updates and upgrades the GitHub workflows to use more actions, run PR checks faster and use Ubuntu 24.04 instead of 20.04.
5+
<!-- Here goes a general summary of what this release is about -->
66

77
## Upgrading
88

9-
### Cookiecutter template
10-
11-
* Branch protection rule **Protect version branches** was updated, please re-import it following the [instructions](https://frequenz-floss.github.io/frequenz-repo-config-python/v0.13/user-guide/start-a-new-project/configure-github/#rulesets).
9+
<!-- Here goes notes on how to upgrade from previous versions, including deprecations and what they should be replaced with -->
1210

13-
> [!IMPORTANT]
14-
> For **api** projects make sure to require the **Check proto files with protolint** status check too, which is not included by the provided ruleset by default.
11+
### Cookiecutter template
1512

16-
All other upgrading should be done via the migration script or regenerating the templates.
13+
All upgrading should be done via the migration script or regenerating the templates.
1714

1815
```bash
1916
curl -sSL https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.12/cookiecutter/migrate.py | python3
2017
```
2118

2219
But you might still need to adapt your code:
2320

24-
* The new workflows will test using Python 3.12 too, if your code is not compatible with it, you might need to fix it, or you can just remove the Python 3.12 from the test matrix if you need a quick fix. For example, the `typing-extension` library is compatible with Python 3.12 from version 4.6.0, so you might need to upgrade it if you are using it.
25-
* Check the new dependabot configuration file if you customized the dependabot configuration for the `pip` ecosystem.
26-
* Add exclusions for any other dependency you have at v0.x.x or that breaks frequently, so dependabot PRs are easy to merge.
21+
<!-- Here upgrade steps for cookiecutter specifically -->
2722

2823
## New Features
2924

30-
### Cookiecutter template
31-
32-
- Dependabot config now uses a new grouping that should make upgrades more smooth.
33-
34-
* We group patch updates as they should always work.
35-
* We also group minor updates, as it works too for most libraries, typically except libraries that don't have a stable release yet (v0.x.x branch), so we make some exceptions for them.
36-
* Major updates and dependencies excluded by the above groups are still managed, but they'll create one PR per dependency, as breakage is expected, so it might need manual intervention.
37-
* Finally, we group some dependencies that are related to each other, and usually needs to be updated together.
25+
<!-- Here goes the main new features and examples or instructions on how to use them -->
3826

39-
- The GitHub workflows is now split into PRs and CI workflows.
27+
### Cookiecutter template
4028

41-
These new workflows also start using a new reusable `gh-action-nox`, native arm runners and Ubuntu 24.04, as [Ubuntu 20.04 will be removed from GitHub runners by April's 1st][ubuntu-20.04]. Python 3.12 is also added to the test matrix.
29+
<!-- Here new features for cookiecutter specifically -->
4230

43-
The PR action is more lightweight, and only tests with one matrix (the most widely used), so PRs can be tested more quickly.
31+
## Bug Fixes
4432

45-
The push workflow does a more intense testing with all matrix combinations. This also runs for the merge queue, so before PRs are actually merged the tests will run for the complete matrix.
33+
<!-- Here goes notable bug fixes that are worth a special mention or explanation -->
4634

47-
[ubuntu-20.04]: https://github.blog/changelog/2025-01-15-github-actions-ubuntu-20-runner-image-brownout-dates-and-other-breaking-changes/
35+
### Cookiecutter template
4836

49-
- The Python `Protect version branches` branch protection rule now request review to Copilot by default.
37+
<!-- Here bug fixes for cookiecutter specifically -->

0 commit comments

Comments
 (0)