|
2 | 2 |
|
3 | 3 | ## Summary
|
4 | 4 |
|
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 --> |
6 | 6 |
|
7 | 7 | ## Upgrading
|
8 | 8 |
|
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 --> |
12 | 10 |
|
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 |
15 | 12 |
|
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. |
17 | 14 |
|
18 | 15 | ```bash
|
19 | 16 | curl -sSL https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.12/cookiecutter/migrate.py | python3
|
20 | 17 | ```
|
21 | 18 |
|
22 | 19 | But you might still need to adapt your code:
|
23 | 20 |
|
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 --> |
27 | 22 |
|
28 | 23 | ## New Features
|
29 | 24 |
|
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 --> |
38 | 26 |
|
39 |
| -- The GitHub workflows is now split into PRs and CI workflows. |
| 27 | +### Cookiecutter template |
40 | 28 |
|
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 --> |
42 | 30 |
|
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 |
44 | 32 |
|
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 --> |
46 | 34 |
|
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 |
48 | 36 |
|
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