conventional-pre-commit 4.2.0__tar.gz → 4.3.0__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.
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.github/workflows/release.yml +2 -2
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.github/workflows/tests.yml +2 -2
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.pre-commit-config.yaml +5 -5
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/PKG-INFO +1 -1
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit/format.py +4 -3
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit.egg-info/PKG-INFO +1 -1
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit.egg-info/SOURCES.txt +1 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/conftest.py +5 -0
- conventional_pre_commit-4.3.0/tests/messages/conventional_commit_with_dots +1 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/test_format.py +13 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/test_hook.py +6 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.devcontainer/Dockerfile +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.devcontainer/devcontainer.json +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.dockerignore +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.flake8 +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.github/dependabot.yaml +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.gitignore +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.pre-commit-hooks.yaml +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.vscode/settings.json +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/LICENSE +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/README.md +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/compose.yml +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit/__init__.py +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit/hook.py +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit/output.py +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit.egg-info/dependency_links.txt +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit.egg-info/entry_points.txt +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit.egg-info/requires.txt +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit.egg-info/top_level.txt +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/pyproject.toml +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/setup.cfg +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/__init__.py +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/bad_commit +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/conventional_commit +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/conventional_commit_bad_multi_line +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/conventional_commit_gbk +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/conventional_commit_multi_line +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/conventional_commit_utf-8 +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/conventional_commit_with_multiple_scopes +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/conventional_commit_with_scope +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/custom_commit +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/fixup_commit +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/merge_commit +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/run.sh +0 -0
- {conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/test_output.py +0 -0
|
@@ -25,10 +25,10 @@ jobs:
|
|
|
25
25
|
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
|
|
26
26
|
|
|
27
27
|
steps:
|
|
28
|
-
- uses: actions/checkout@
|
|
28
|
+
- uses: actions/checkout@v5
|
|
29
29
|
|
|
30
30
|
- name: Set up Python ${{ matrix.python-version }}
|
|
31
|
-
uses: actions/setup-python@
|
|
31
|
+
uses: actions/setup-python@v6
|
|
32
32
|
with:
|
|
33
33
|
python-version: ${{ matrix.python-version }}
|
|
34
34
|
cache: pip
|
|
@@ -8,7 +8,7 @@ default_install_hook_types:
|
|
|
8
8
|
|
|
9
9
|
repos:
|
|
10
10
|
- repo: https://github.com/pre-commit/pre-commit-hooks
|
|
11
|
-
rev:
|
|
11
|
+
rev: v6.0.0
|
|
12
12
|
hooks:
|
|
13
13
|
- id: trailing-whitespace
|
|
14
14
|
- id: mixed-line-ending
|
|
@@ -17,22 +17,22 @@ repos:
|
|
|
17
17
|
- id: check-yaml
|
|
18
18
|
- id: check-added-large-files
|
|
19
19
|
|
|
20
|
-
- repo: https://github.com/psf/black
|
|
21
|
-
rev: 25.
|
|
20
|
+
- repo: https://github.com/psf/black-pre-commit-mirror
|
|
21
|
+
rev: 25.9.0
|
|
22
22
|
hooks:
|
|
23
23
|
- id: black
|
|
24
24
|
types:
|
|
25
25
|
- python
|
|
26
26
|
|
|
27
27
|
- repo: https://github.com/PyCQA/flake8
|
|
28
|
-
rev: 7.
|
|
28
|
+
rev: 7.3.0
|
|
29
29
|
hooks:
|
|
30
30
|
- id: flake8
|
|
31
31
|
types:
|
|
32
32
|
- python
|
|
33
33
|
|
|
34
34
|
- repo: https://github.com/pycqa/bandit
|
|
35
|
-
rev: 1.8.
|
|
35
|
+
rev: 1.8.6
|
|
36
36
|
hooks:
|
|
37
37
|
- id: bandit
|
|
38
38
|
args: ["-ll"]
|
{conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit/format.py
RENAMED
|
@@ -126,9 +126,9 @@ class ConventionalCommit(Commit):
|
|
|
126
126
|
@property
|
|
127
127
|
def r_scope(self):
|
|
128
128
|
"""Regex str for an optional (scope)."""
|
|
129
|
+
escaped_delimiters = list(map(re.escape, [":", ",", "-", "/", "."])) # type: ignore
|
|
129
130
|
if self.scopes:
|
|
130
131
|
scopes = self._r_or(self.scopes)
|
|
131
|
-
escaped_delimiters = list(map(re.escape, [":", ",", "-", "/"])) # type: ignore
|
|
132
132
|
delimiters_pattern = self._r_or(escaped_delimiters)
|
|
133
133
|
scope_pattern = rf"\(\s*(?:(?i:{scopes}))(?:\s*(?:{delimiters_pattern})\s*(?:(?i:{scopes})))*\s*\)"
|
|
134
134
|
|
|
@@ -137,10 +137,11 @@ class ConventionalCommit(Commit):
|
|
|
137
137
|
else:
|
|
138
138
|
return scope_pattern
|
|
139
139
|
|
|
140
|
+
joined_delimiters = "".join(escaped_delimiters)
|
|
140
141
|
if self.scope_optional:
|
|
141
|
-
return
|
|
142
|
+
return rf"(\([\w {joined_delimiters}]+\))?"
|
|
142
143
|
else:
|
|
143
|
-
return
|
|
144
|
+
return rf"(\([\w {joined_delimiters}]+\))"
|
|
144
145
|
|
|
145
146
|
@property
|
|
146
147
|
def r_delim(self):
|
|
@@ -35,6 +35,7 @@ tests/messages/conventional_commit_bad_multi_line
|
|
|
35
35
|
tests/messages/conventional_commit_gbk
|
|
36
36
|
tests/messages/conventional_commit_multi_line
|
|
37
37
|
tests/messages/conventional_commit_utf-8
|
|
38
|
+
tests/messages/conventional_commit_with_dots
|
|
38
39
|
tests/messages/conventional_commit_with_multiple_scopes
|
|
39
40
|
tests/messages/conventional_commit_with_scope
|
|
40
41
|
tests/messages/custom_commit
|
|
@@ -34,6 +34,11 @@ def conventional_utf8_commit_path():
|
|
|
34
34
|
return get_message_path("conventional_commit_utf-8")
|
|
35
35
|
|
|
36
36
|
|
|
37
|
+
@pytest.fixture
|
|
38
|
+
def conventional_commit_with_dots_path():
|
|
39
|
+
return get_message_path("conventional_commit_with_dots")
|
|
40
|
+
|
|
41
|
+
|
|
37
42
|
@pytest.fixture
|
|
38
43
|
def conventional_gbk_commit_path():
|
|
39
44
|
return get_message_path("conventional_commit_gbk")
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
feat(customer.registration): adds support for oauth2
|
|
@@ -443,6 +443,7 @@ def test_r_scope__special_chars(conventional_commit_scope_required):
|
|
|
443
443
|
assert regex.match("(some thing)")
|
|
444
444
|
assert regex.match("(some:thing)")
|
|
445
445
|
assert regex.match("(some,thing)")
|
|
446
|
+
assert regex.match("(some.thing)")
|
|
446
447
|
|
|
447
448
|
|
|
448
449
|
def test_r_scope__scopes(conventional_commit_scope_required):
|
|
@@ -455,6 +456,7 @@ def test_r_scope__scopes(conventional_commit_scope_required):
|
|
|
455
456
|
assert regex.match("(api: client)")
|
|
456
457
|
assert regex.match("(api/client)")
|
|
457
458
|
assert regex.match("(api-client)")
|
|
459
|
+
assert regex.match("(api.client)")
|
|
458
460
|
assert not regex.match("(test)")
|
|
459
461
|
assert not regex.match("(api; client)")
|
|
460
462
|
|
|
@@ -469,6 +471,7 @@ def test_r_scope__scopes_uppercase(conventional_commit_scope_required):
|
|
|
469
471
|
assert regex.match("(API: CLIENT)")
|
|
470
472
|
assert regex.match("(API/CLIENT)")
|
|
471
473
|
assert regex.match("(API-CLIENT)")
|
|
474
|
+
assert regex.match("(API.CLIENT)")
|
|
472
475
|
assert not regex.match("(TEST)")
|
|
473
476
|
assert not regex.match("(API; CLIENT)")
|
|
474
477
|
|
|
@@ -557,6 +560,16 @@ body copy
|
|
|
557
560
|
assert match.group("body").strip() == "body copy"
|
|
558
561
|
|
|
559
562
|
|
|
563
|
+
def test_match_dots(conventional_commit):
|
|
564
|
+
match = conventional_commit.match("""feat(foo.bar): hello world""")
|
|
565
|
+
assert isinstance(match, re.Match)
|
|
566
|
+
assert match.group("type") == "feat"
|
|
567
|
+
assert match.group("scope") == "(foo.bar)"
|
|
568
|
+
assert match.group("delim") == ":"
|
|
569
|
+
assert match.group("subject").strip() == "hello world"
|
|
570
|
+
assert match.group("body").strip() == ""
|
|
571
|
+
|
|
572
|
+
|
|
560
573
|
def test_match_invalid_type(conventional_commit):
|
|
561
574
|
match = conventional_commit.match(
|
|
562
575
|
"""invalid(scope): subject line
|
|
@@ -54,6 +54,12 @@ def test_main_success__conventional_utf8(conventional_utf8_commit_path):
|
|
|
54
54
|
assert result == RESULT_SUCCESS
|
|
55
55
|
|
|
56
56
|
|
|
57
|
+
def test_main_success__conventional_commit_with_dots_path(conventional_commit_with_dots_path):
|
|
58
|
+
result = main([conventional_commit_with_dots_path])
|
|
59
|
+
|
|
60
|
+
assert result == RESULT_SUCCESS
|
|
61
|
+
|
|
62
|
+
|
|
57
63
|
def test_main_fail__conventional_gbk(conventional_gbk_commit_path):
|
|
58
64
|
result = main([conventional_gbk_commit_path])
|
|
59
65
|
|
|
File without changes
|
{conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/.devcontainer/devcontainer.json
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit/__init__.py
RENAMED
|
File without changes
|
{conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit/hook.py
RENAMED
|
File without changes
|
{conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/conventional_pre_commit/output.py
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/conventional_commit
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{conventional_pre_commit-4.2.0 → conventional_pre_commit-4.3.0}/tests/messages/custom_commit
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|