codefence 1.0.2__tar.gz → 1.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.
- {codefence-1.0.2 → codefence-1.0.4}/PKG-INFO +2 -3
- {codefence-1.0.2 → codefence-1.0.4}/codefence.egg-info/PKG-INFO +2 -3
- {codefence-1.0.2 → codefence-1.0.4}/codefence.py +1 -1
- {codefence-1.0.2 → codefence-1.0.4}/pyproject.toml +1 -1
- {codefence-1.0.2 → codefence-1.0.4}/CHANGELOG.md +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/LICENSE.txt +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/LICENSE_FAQ.md +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/NOTICE.md +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/README.md +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/REFUND_POLICY.md +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/SECURITY.md +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/TERMS_OF_USE.md +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/codefence.egg-info/SOURCES.txt +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/codefence.egg-info/dependency_links.txt +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/codefence.egg-info/entry_points.txt +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/codefence.egg-info/top_level.txt +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/rules.json +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/samples/bad_javascript.js +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/samples/bad_python.py +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/samples/clean_example.js +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/samples/clean_example.py +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/setup.cfg +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/tests/test_baseline.py +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/tests/test_history.py +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/tests/test_integration.py +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/tests/test_lexer.py +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/tests/test_policy.py +0 -0
- {codefence-1.0.2 → codefence-1.0.4}/tests/test_rules.py +0 -0
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: codefence
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: A tiny offline policy gate for code. Check AI-generated code before it reaches Git.
|
|
5
5
|
Author: CodeFence
|
|
6
6
|
License: CODEFENCE
|
|
@@ -220,7 +220,6 @@ Description-Content-Type: text/markdown
|
|
|
220
220
|
License-File: LICENSE.txt
|
|
221
221
|
License-File: LICENSE_FAQ.md
|
|
222
222
|
License-File: NOTICE.md
|
|
223
|
-
Dynamic: license-file
|
|
224
223
|
|
|
225
224
|
# CodeFence
|
|
226
225
|
|
|
@@ -1,6 +1,6 @@
|
|
|
1
|
-
Metadata-Version: 2.
|
|
1
|
+
Metadata-Version: 2.2
|
|
2
2
|
Name: codefence
|
|
3
|
-
Version: 1.0.
|
|
3
|
+
Version: 1.0.4
|
|
4
4
|
Summary: A tiny offline policy gate for code. Check AI-generated code before it reaches Git.
|
|
5
5
|
Author: CodeFence
|
|
6
6
|
License: CODEFENCE
|
|
@@ -220,7 +220,6 @@ Description-Content-Type: text/markdown
|
|
|
220
220
|
License-File: LICENSE.txt
|
|
221
221
|
License-File: LICENSE_FAQ.md
|
|
222
222
|
License-File: NOTICE.md
|
|
223
|
-
Dynamic: license-file
|
|
224
223
|
|
|
225
224
|
# CodeFence
|
|
226
225
|
|
|
@@ -40,7 +40,7 @@ from typing import Callable, Iterable, Iterator, Sequence
|
|
|
40
40
|
# =============================================================================
|
|
41
41
|
|
|
42
42
|
TOOL_NAME = "codefence"
|
|
43
|
-
TOOL_VERSION = "1.0.
|
|
43
|
+
TOOL_VERSION = "1.0.4"
|
|
44
44
|
RULES_SCHEMA = "codefence/rules-v1"
|
|
45
45
|
DEFAULT_MAX_SIZE = 2 * 1024 * 1024
|
|
46
46
|
DEFAULT_RULES_FILENAME = "rules.json"
|
|
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
|
|
|
4
4
|
|
|
5
5
|
[project]
|
|
6
6
|
name = "codefence"
|
|
7
|
-
version = "1.0.
|
|
7
|
+
version = "1.0.4"
|
|
8
8
|
description = "A tiny offline policy gate for code. Check AI-generated code before it reaches Git."
|
|
9
9
|
readme = {file = "README.md", content-type = "text/markdown"}
|
|
10
10
|
requires-python = ">=3.10"
|
|
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
|
|
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
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|