|
1 | 1 | # Changelog |
2 | 2 |
|
| 3 | +## 0.16.0 |
| 4 | + |
| 5 | +### 🚀 New Features |
| 6 | + |
| 7 | +- Most commands now accept a `--backend` option to specify the package manager backend to use. Up to this point, `uv` was the only supported backend. Now, a `--backend=none` option is available to use usethis without `uv`. This is a step toward supporting other backends such as Poetry in the future. When unspecified, heuristics will be used to determine the backend. |
| 8 | + |
| 9 | +- The use of `pyproject.toml` in a project is no longer assumed or imposed on a project when not using the `uv` backend. |
| 10 | + |
| 11 | +- `pre-commit` configurations are now more conventional, preferring URL-based repo configuration instead of local repos with `language: system`. The previous behaviour was designed to ensure synchronization of versions between the `uv` lockfile and the `pre-commit` configuration, but this is now provided by the `sync-with-uv` pre-commit hook, which is added automatically when using `pre-commit` with `uv`. |
| 12 | + |
| 13 | +- When using `usethis author`, a message with the author's name is now outputted in the console. |
| 14 | + |
| 15 | +### 🦾 Robustness |
| 16 | + |
| 17 | +- Pydantic warnings relating to deprecated access to the `model_fields` attribute on an instance should no longer occur. |
| 18 | + |
| 19 | +- The `tool.deptry.ignore_notebooks` configuration for deptry is set explicitly to the default value of `false` to hint that deptry is being used, and to hint on how to configure it. |
| 20 | + |
| 21 | +### 🐞 Bug Fixes |
| 22 | + |
| 23 | +- Previously, the `usethis ci bitbucket` command would fail to add Import Linter configuration to the CI pipeline when `import-linter` was detected. This has been fixed. |
| 24 | + |
| 25 | +- The `usethis badge pypi` command would generate markdown with invalid syntax due to a stray `<` character. This has been fixed. |
| 26 | + |
| 27 | +### 🧹 Maintenance |
| 28 | + |
| 29 | +- The default version of `pyproject-fmt` when used as a pre-commit has been bumped from v2.6.0 to v2.11.0. |
| 30 | + |
| 31 | +- The latest version of the Bitbucket Pipelines configuration file schema is now supported, specifically inline and custom pipeline step types; the `input_variables` configuration for steps, and the new name `scoped` for the artifacts upload type option `unshared`. |
| 32 | + |
| 33 | +### 📚 Documentation |
| 34 | + |
| 35 | +- Hyperlinks in the README and CONTRIBUTING.md files now point to the stable documentation site (rather than the latest site). |
| 36 | + |
| 37 | +- The [configurator](https://github.com/jamesbraza/configurator) project is now documented as a similar project in the README. |
| 38 | + |
| 39 | +### 📦 Packaging |
| 40 | + |
| 41 | +- Python 3.14 is now formally supported. |
| 42 | + |
| 43 | +- `click` is no longer a direct dependency. |
| 44 | + |
| 45 | +### 🔧 Internal Changes |
| 46 | + |
| 47 | +- The CI configuration has been overhauled. `uv` is used in more conventional ways. A runner has been added for bleeding edge dependency versions. The CI now runs on a cron schedule. `zizmor` has been added for security scanning. Permissions are more tightly scoped and explained. All actions have been bumped to their latest versions. |
| 48 | + |
| 49 | +- The pre-commit hooks have been migrated to use `prek` rather than `pre-commit` for development. |
| 50 | + |
| 51 | +- `pytest-sugar` has been added for a more user-friendly test suite output, and `pytest-emoji` has been removed. |
| 52 | + |
3 | 53 | ## 0.15.2 |
4 | 54 |
|
5 | 55 | ### 🦾 Robustness |
|
0 commit comments