github2gerrit 1.2.1__tar.gz → 1.2.2__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.
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/.pre-commit-config.yaml +5 -5
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/PKG-INFO +2 -1
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/action.yaml +1 -1
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/pyproject.toml +8 -1
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/uv.lock +238 -193
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/.editorconfig +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/.gitignore +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/.gitlint +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/.markdownlint.yaml +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/.readthedocs.yml +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/.yamllint +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/LICENSE +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/LICENSES/Apache-2.0.txt +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/README.md +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/REUSE.toml +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/docs/COMMIT_RULES.md +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/docs/COMPOSITE_ACTION_TESTING.md +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/docs/PR_UPDATE_IMPLEMENTATION.md +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/docs/RELEASE-v0.2.0.md +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/docs/github2gerrit_token_permissions_classic.png +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/sitecustomize.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/__init__.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/cli.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/commit_normalization.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/commit_rules.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/config.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/constants.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/core.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/duplicate_detection.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/error_codes.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/external_api.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/gerrit_pr_closer.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/gerrit_query.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/gerrit_rest.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/gerrit_urls.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/github_api.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/gitreview.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/gitutils.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/mapping_comment.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/models.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/netrc.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/orchestrator/__init__.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/orchestrator/reconciliation.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/pr_commands.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/pr_content_filter.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/reconcile_matcher.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/rich_display.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/rich_logging.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/similarity.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/ssh_agent_setup.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/ssh_common.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/ssh_config_parser.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/ssh_discovery.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/trailers.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/src/github2gerrit/utils.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/conftest.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/fixtures/__init__.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/fixtures/make_repo.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/fixtures/ssh_config_samples.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_action_environment_mapping.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_action_outputs.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_action_pr_number_handling.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_action_step_validation.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_automation_only.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_change_id_deduplication.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_clean_squash_title.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_cli.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_cli_helpers.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_cli_netrc_options.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_cli_outputs_file.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_cli_url_and_dryrun.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_commit_normalization.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_commit_rules.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_composite_action_coverage.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_config_and_reviewers.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_config_helpers.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_close_pr_policy.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_config_and_errors.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_gerrit_backref_comment.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_gerrit_push_errors.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_gerrit_rest_results.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_integration_fixture_repo.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_prepare_commits.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_shallow_clone.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_ssh_setup.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_core_ssrf_protection.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_dependency_supersession.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_dns_validation_and_no_gerrit.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_duplicate_detection.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_email_case_normalization.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_error_codes.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_external_api_framework.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_force_flag_cli.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_gerrit_change_id_footer.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_gerrit_change_status_checks.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_gerrit_pr_closer.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_gerrit_rest_client.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_gerrit_urls.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_gerrit_urls_more.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_ghe_and_gitreview_args.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_github_api_error_handling.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_github_api_helpers.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_github_api_retry_and_helpers.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_gitreview.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_gitutils_helpers.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_issue_157_regressions.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_mapping_comment_additional.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_mapping_comment_digest_and_backref.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_metadata_and_reconciliation.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_metadata_trailer_separation_bug.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_misc_small_coverage.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_netrc.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_orphan_rest_side_effects.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_pr_commands.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_pr_content_filter.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_pr_content_filter_integration.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_pr_update_detection.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_reconciliation_extracted_module.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_reconciliation_plan_and_orphans.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_reconciliation_scenarios.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_ssh_agent.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_ssh_agent_ownership.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_ssh_artifact_prevention.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_ssh_common.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_ssh_discovery.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_ssh_discovery_dry_run.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_trailers_additional.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_url_parser.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/test_utils.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/unit/test_config_integration.py +0 -0
- {github2gerrit-1.2.1 → github2gerrit-1.2.2}/tests/unit/test_ssh_config_parser.py +0 -0
|
@@ -59,7 +59,7 @@ repos:
|
|
|
59
59
|
types: [yaml]
|
|
60
60
|
|
|
61
61
|
- repo: https://github.com/astral-sh/ruff-pre-commit
|
|
62
|
-
rev:
|
|
62
|
+
rev: 0c7b6c989466a93942def1f84baf36ddfcd60c83 # frozen: v0.15.14
|
|
63
63
|
hooks:
|
|
64
64
|
- id: ruff
|
|
65
65
|
files: ^(src|scripts|tests)/.+\.py$
|
|
@@ -68,7 +68,7 @@ repos:
|
|
|
68
68
|
files: ^(src|scripts|tests)/.+\.py$
|
|
69
69
|
|
|
70
70
|
- repo: https://github.com/pre-commit/mirrors-mypy
|
|
71
|
-
rev:
|
|
71
|
+
rev: d2823d321df3af8f878f7ee3414dc94d037145b9 # frozen: v2.1.0
|
|
72
72
|
hooks:
|
|
73
73
|
- id: mypy
|
|
74
74
|
files: ^src/.+\.py$
|
|
@@ -115,18 +115,18 @@ repos:
|
|
|
115
115
|
|
|
116
116
|
# Requires a mirror, primary repo lacks .pre-commit-hooks.yaml
|
|
117
117
|
- repo: https://github.com/DetachHead/basedpyright-prek-mirror
|
|
118
|
-
rev:
|
|
118
|
+
rev: 78e6efd50b63647fecb7e65fc7032745d861e2c5 # frozen: 1.39.6
|
|
119
119
|
hooks:
|
|
120
120
|
- id: basedpyright
|
|
121
121
|
files: ^src/.+\.py$
|
|
122
122
|
|
|
123
123
|
- repo: https://github.com/lfreleng-actions/gha-workflow-linter
|
|
124
|
-
rev:
|
|
124
|
+
rev: 2c315e461ec3379bf9c1682360fdc1a3899f88c9 # frozen: v1.0.4
|
|
125
125
|
hooks:
|
|
126
126
|
- id: gha-workflow-linter
|
|
127
127
|
|
|
128
128
|
- repo: https://github.com/python-jsonschema/check-jsonschema
|
|
129
|
-
rev:
|
|
129
|
+
rev: 943377262562a12b57292fc98fabd7dbf81451fe # frozen: 0.37.2
|
|
130
130
|
hooks:
|
|
131
131
|
- id: check-github-actions
|
|
132
132
|
- id: check-github-workflows
|
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
Metadata-Version: 2.4
|
|
2
2
|
Name: github2gerrit
|
|
3
|
-
Version: 1.2.
|
|
3
|
+
Version: 1.2.2
|
|
4
4
|
Summary: Submit a GitHub pull request to a Gerrit repository.
|
|
5
5
|
Project-URL: Homepage, https://github.com/lfreleng-actions/github2gerrit-action
|
|
6
6
|
Project-URL: Repository, https://github.com/lfreleng-actions/github2gerrit-action
|
|
@@ -22,6 +22,7 @@ Classifier: Topic :: Software Development :: Build Tools
|
|
|
22
22
|
Classifier: Topic :: Software Development :: Version Control
|
|
23
23
|
Classifier: Typing :: Typed
|
|
24
24
|
Requires-Python: >=3.11
|
|
25
|
+
Requires-Dist: click>=8.1.7
|
|
25
26
|
Requires-Dist: cryptography>=46.0.5
|
|
26
27
|
Requires-Dist: git-review>=2.5.0
|
|
27
28
|
Requires-Dist: pygerrit2>=2.0.15
|
|
@@ -221,7 +221,7 @@ runs:
|
|
|
221
221
|
- name: "Setup uv"
|
|
222
222
|
if: steps.disabled-check.outputs.disabled != 'true'
|
|
223
223
|
# yamllint disable-line rule:line-length
|
|
224
|
-
uses: astral-sh/setup-uv@
|
|
224
|
+
uses: astral-sh/setup-uv@08807647e7069bb48b6ef5acd8ec9567f424441b # v8.1.0
|
|
225
225
|
with:
|
|
226
226
|
enable-cache: false
|
|
227
227
|
|
|
@@ -30,6 +30,13 @@ dependencies = [
|
|
|
30
30
|
# CLI framework (Typer)
|
|
31
31
|
"typer>=0.20.1",
|
|
32
32
|
|
|
33
|
+
# Imported directly by the CLI (click.Group subclass for custom usage
|
|
34
|
+
# formatting; click.core.ParameterSource to detect explicit CLI flags)
|
|
35
|
+
# rather than only transitively via typer. Declared as a direct
|
|
36
|
+
# dependency so our import contract doesn't depend on typer's internal
|
|
37
|
+
# dependency choices.
|
|
38
|
+
"click>=8.1.7",
|
|
39
|
+
|
|
33
40
|
# Rich formatting for CLI output
|
|
34
41
|
"rich>=14.2.0",
|
|
35
42
|
|
|
@@ -208,7 +215,7 @@ disallow_untyped_calls = false
|
|
|
208
215
|
|
|
209
216
|
[tool.coverage.run]
|
|
210
217
|
branch = true
|
|
211
|
-
source = ["
|
|
218
|
+
source = ["github2gerrit"]
|
|
212
219
|
omit = [
|
|
213
220
|
"tests/*",
|
|
214
221
|
"src/github2gerrit/gerrit_rest.py",
|