github-code-review 4.0.3__tar.gz → 4.0.4__tar.gz

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (62) hide show
  1. {github_code_review-4.0.3 → github_code_review-4.0.4}/PKG-INFO +7 -6
  2. {github_code_review-4.0.3 → github_code_review-4.0.4}/README.md +6 -5
  3. {github_code_review-4.0.3 → github_code_review-4.0.4}/pyproject.toml +2 -1
  4. {github_code_review-4.0.3 → github_code_review-4.0.4}/LICENSE +0 -0
  5. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/__init__.py +0 -0
  6. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/__main__.py +0 -0
  7. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/bootstrap.py +0 -0
  8. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/cli.py +0 -0
  9. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/cli_base.py +0 -0
  10. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/commands/__init__.py +0 -0
  11. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/commands/deploy.py +0 -0
  12. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/commands/fix.py +0 -0
  13. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/commands/gh_post_review_comment.py +0 -0
  14. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/commands/gh_react_to_comment.py +0 -0
  15. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/commands/gitlab_post_review_comment.py +0 -0
  16. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/commands/linear_comment.py +0 -0
  17. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/commands/repl.py +0 -0
  18. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/commands/version.py +0 -0
  19. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/config.toml +0 -0
  20. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/constants.py +0 -0
  21. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/context.py +0 -0
  22. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/core.py +0 -0
  23. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/entrypoint.py +0 -0
  24. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/env.py +0 -0
  25. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/gh_api.py +0 -0
  26. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/git_installation_check.py +0 -0
  27. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/gitlab.py +0 -0
  28. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/issue_trackers.py +0 -0
  29. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/pipeline.py +0 -0
  30. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/pipeline_steps/__init__.py +0 -0
  31. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/pipeline_steps/jira.py +0 -0
  32. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/pipeline_steps/linear.py +0 -0
  33. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/project_config.py +0 -0
  34. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/report_struct.py +0 -0
  35. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/answer.j2 +0 -0
  36. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/partial/aux_files.j2 +0 -0
  37. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/questions/changes_summary.j2 +0 -0
  38. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/questions/release_notes.j2 +0 -0
  39. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/questions/test_cases.j2 +0 -0
  40. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/workflows/github/components/env-vars.j2 +0 -0
  41. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/workflows/github/components/installs.j2 +0 -0
  42. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/workflows/github/gito-code-review.yml.j2 +0 -0
  43. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/workflows/github/gito-react-to-comments.yml.j2 +0 -0
  44. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/workflows/gitlab/.gitlab-ci.yml.j2 +0 -0
  45. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/tpl/workflows/gitlab/gito-code-review.yml.j2 +0 -0
  46. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/__init__.py +0 -0
  47. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/cli.py +0 -0
  48. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git.py +0 -0
  49. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git_platform/__init__.py +0 -0
  50. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git_platform/adapters/__init__.py +0 -0
  51. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git_platform/adapters/base.py +0 -0
  52. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git_platform/adapters/github.py +0 -0
  53. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git_platform/adapters/gitlab.py +0 -0
  54. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git_platform/github.py +0 -0
  55. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git_platform/gitlab.py +0 -0
  56. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git_platform/platform_types.py +0 -0
  57. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/git_platform/shared.py +0 -0
  58. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/html.py +0 -0
  59. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/markdown.py +0 -0
  60. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/package_metadata.py +0 -0
  61. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/python.py +0 -0
  62. {github_code_review-4.0.3 → github_code_review-4.0.4}/gito/utils/string.py +0 -0
@@ -1,6 +1,6 @@
1
1
  Metadata-Version: 2.4
2
2
  Name: github-code-review
3
- Version: 4.0.3
3
+ Version: 4.0.4
4
4
  Summary: AI code review tool that works with any language model provider. It detects issues in GitHub pull requests or local changes—instantly, reliably, and without vendor lock-in.
5
5
  License: MIT
6
6
  License-File: LICENSE
@@ -104,11 +104,12 @@ Get consistent, thorough code reviews in seconds—no waiting for human availabi
104
104
  ## 🌐 Supported Platforms & Integrations<a id="-supported-platforms--integrations"></a>
105
105
 
106
106
  ### 🧩 Git Platforms
107
- | Platform | Status |
108
- |-----------|----------------------|
109
- | GitHub | ✅ Supported |
110
- | GitLab | 🧪 Supported (Beta) |
111
- | Bitbucket | 🛠️ Planned |
107
+ | Platform | Status |
108
+ |-------------|----------------------|
109
+ | GitHub | ✅ Supported |
110
+ | GitLab | 🧪 Supported (Beta) |
111
+ | Bitbucket | 🛠️ Planned |
112
+ | Local / CLI | ✅ Supported |
112
113
 
113
114
  > ℹ️ Gito ships ready-to-use CI/CD workflows for these platforms,
114
115
  > with full support for triggering actions via PR comments, automatic review posting, and PR lifecycle integration.
@@ -59,11 +59,12 @@ Get consistent, thorough code reviews in seconds—no waiting for human availabi
59
59
  ## 🌐 Supported Platforms & Integrations<a id="-supported-platforms--integrations"></a>
60
60
 
61
61
  ### 🧩 Git Platforms
62
- | Platform | Status |
63
- |-----------|----------------------|
64
- | GitHub | ✅ Supported |
65
- | GitLab | 🧪 Supported (Beta) |
66
- | Bitbucket | 🛠️ Planned |
62
+ | Platform | Status |
63
+ |-------------|----------------------|
64
+ | GitHub | ✅ Supported |
65
+ | GitLab | 🧪 Supported (Beta) |
66
+ | Bitbucket | 🛠️ Planned |
67
+ | Local / CLI | ✅ Supported |
67
68
 
68
69
  > ℹ️ Gito ships ready-to-use CI/CD workflows for these platforms,
69
70
  > with full support for triggering actions via PR comments, automatic review posting, and PR lifecycle integration.
@@ -1,6 +1,6 @@
1
1
  [tool.poetry]
2
2
  name = "github-code-review"
3
- version = "4.0.3"
3
+ version = "4.0.4"
4
4
  description = "AI code review tool that works with any language model provider. It detects issues in GitHub pull requests or local changes—instantly, reliably, and without vendor lock-in."
5
5
  readme = "README.md"
6
6
  license = "MIT"
@@ -98,6 +98,7 @@ build-backend = "poetry.core.masonry.api"
98
98
 
99
99
  [tool.poetry.scripts]
100
100
  gito = "gito.entrypoint:main"
101
+ "github-code-review" = "gito.entrypoint:main" # alias for `uvx github-code-review`
101
102
 
102
103
  [tool.pytest.ini_options]
103
104
  minversion = "6.0"