Skip to content

Commit 3b099d8

Browse files
authored
Fix the outdated version number in the template (#380)
2 parents 4233bc8 + 00902ab commit 3b099d8

File tree

8 files changed

+26
-1117
lines changed

8 files changed

+26
-1117
lines changed

RELEASE_NOTES.md

Lines changed: 2 additions & 44 deletions
Original file line numberDiff line numberDiff line change
@@ -1,49 +1,7 @@
11
# Frequenz Repository Configuration Release Notes
22

3-
## Summary
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.
6-
7-
## Upgrading
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).
12-
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.
15-
16-
All other upgrading should be done via the migration script or regenerating the templates.
17-
18-
```bash
19-
curl -sSL https://raw.githubusercontent.com/frequenz-floss/frequenz-repo-config-python/v0.12/cookiecutter/migrate.py | python3
20-
```
21-
22-
But you might still need to adapt your code:
23-
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.
27-
28-
## New Features
3+
## Bug Fixes
294

305
### Cookiecutter template
316

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.
38-
39-
- The GitHub workflows is now split into PRs and CI workflows.
40-
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.
42-
43-
The PR action is more lightweight, and only tests with one matrix (the most widely used), so PRs can be tested more quickly.
44-
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.
46-
47-
[ubuntu-20.04]: https://github.blog/changelog/2025-01-15-github-actions-ubuntu-20-runner-image-brownout-dates-and-other-breaking-changes/
48-
49-
- The Python `Protect version branches` branch protection rule now request review to Copilot by default.
7+
- Fix the repo-config version number that was outdated.

0 commit comments

Comments
 (0)