forked from commitizen-tools/commitizen
-
Notifications
You must be signed in to change notification settings - Fork 0
Feature/uv #1
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
Closed
Feature/uv #1
Changes from all commits
Commits
Show all changes
50 commits
Select commit
Hold shift + click to select a range
583acf4
docs(config): split the configuration documentation into pages
bearomorphism 3cb9b2c
docs(exit_codes.md): move "ignoring errors" from bump doc to exit_cod…
bearomorphism d7cf81c
docs(bump): fix broken documentation format
bearomorphism 6e8edcd
ci(github-actions): add python 3.14 to github-actions and tox
Lee-W 04d5304
refactor(bump): rename parameter and variables
bearomorphism b91ceb1
build: update dev dependencies
Lee-W 82caf4b
refactor(changelog): raise NotAllow when file_name not passed instead…
Lee-W 1960970
style(ruff): enable S101 check to avoid assert usage in production code
Lee-W 7d6ae2d
fix(bump): remove NotAllowed related to --get-next option, other rela…
bearomorphism 34cff20
refactor(bump): extract option validation and new version resolution …
bearomorphism 8421bb1
refactor(cargo_provider): cleanup and get rid of potential type errors
bearomorphism 7529611
docs(exit-codes): general update
bearomorphism c8c91f1
test: replace try with pytest.raises (#1654)
bearomorphism e2081c8
fix(git): replace lstrip with strip for compatibility issue
bearomorphism 755fd82
perf: add TYPE_CHECKING to CzQuestion imports
bearomorphism bc2ba39
fix(cli): debug and no_raise can be used together in sys.excepthook
bearomorphism 1441c3d
perf(ruff): enable ruff rules TC001~TC006
bearomorphism 609011c
fix(version): fix the behavior of cz version --major
bearomorphism 5b471c3
refactor(version): rename class member to align with other classes
bearomorphism 9473ef3
docs(cli/screenshots): update CLI screenshots
github-actions[bot] c2ae121
bump: version 4.10.0 → 4.10.1
github-actions[bot] 2b0b4d8
docs: add missing site_url
bearomorphism 30bb513
build: add missing dark mode back
bearomorphism 1e5869e
style(mkdocs.yml): make indent consistent in nav section
bearomorphism b78e303
build: update dev dependencies
Lee-W 8b1fad6
feat: add custom validation
benediktziegler 8265c90
feat: Drop support for Python 3.9 as EOL reached and add Python 3.14 …
Lee-W 2072f8e
style: remove Python 3.9 compatible code
Lee-W c0da2e6
docs: fix some format issues in docs
bearomorphism b64c6f6
docs: fix broken links in doc
Parkerhiphop ce4f408
refactor: migrate from Poetry to uv for dependency management and bui…
YazdanRa a587af3
ci: add link checker
bearomorphism 12ddd37
ci(deps): bump actions/checkout from 5 to 6
dependabot[bot] c41d19b
ci: fix syntax error in links.yml workflow
bearomorphism 8c57f63
ci: add configuration file for link checker
bearomorphism 57cd232
build: update dev dependencies
Lee-W f226ea0
feat: add custom validation
benediktziegler b494695
feat: Drop support for Python 3.9 as EOL reached and add Python 3.14 …
Lee-W f1fd29f
style: remove Python 3.9 compatible code
Lee-W b394425
test(commands): centralize all --help tests in a file to dedup code
bearomorphism 392a654
build(tox): do not use poetry anymore and use the builtin `dependency…
noirbizarre 11467ce
test(tox): ensure all tests can run from any directory
noirbizarre cf03c8d
bump: version 4.10.1 → 4.11.0
github-actions[bot] 98321b1
ci: fix the issue lychee.toml was not consumed correctly
bearomorphism a726088
Merge remote-tracking branch 'upstream/HEAD' into feature/uv
YazdanRa 37abd51
build: update poethepoet dependency to version 0.34.0
YazdanRa 9dda9c5
fix: update tox configuration to use dependency groups for test envir…
YazdanRa 95f5d79
fix: update check-commit command to use uv instead of poetry
YazdanRa 1bd0898
refactor: remove unused poetry_command from tool.poe in pyproject.toml
YazdanRa db62bad
feat: set executor type to "uv" in tool.poe section of pyproject.toml
YazdanRa File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,41 @@ | ||
| name: Links | ||
|
|
||
| on: | ||
| repository_dispatch: | ||
| workflow_dispatch: | ||
| pull_request: | ||
| schedule: | ||
| - cron: "00 18 * * *" | ||
|
|
||
| jobs: | ||
| check-links: | ||
| runs-on: ubuntu-latest | ||
| permissions: | ||
| issues: write # required for peter-evans/create-issue-from-file | ||
| steps: | ||
| - uses: actions/checkout@v6 | ||
|
|
||
| - name: Link Checker | ||
| id: lychee | ||
| uses: lycheeverse/lychee-action@v2 | ||
| with: | ||
| args: --config lychee.toml . | ||
| fail: false | ||
|
|
||
| - name: Broken Links Report | ||
| if: steps.lychee.outputs.exit_code != 0 && github.event_name == 'schedule' | ||
| uses: actions/github-script@v8 | ||
| with: | ||
| script: | | ||
| const fs = require('fs'); | ||
|
|
||
| // Read the markdown file | ||
| // Ensure the path is correct relative to the workspace root | ||
| const reportBody = fs.readFileSync('./lychee/out.md', 'utf8'); | ||
|
|
||
| await github.rest.issues.create({ | ||
| owner: context.repo.owner, | ||
| repo: context.repo.repo, | ||
| title: 'Broken Links Report', | ||
| body: reportBody | ||
| }); |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1 @@ | ||
| __version__ = "4.10.0" | ||
| __version__ = "4.11.0" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.