Skip to content

Commit 3db90c4

Browse files
committed
chore(deps): upgrade requests to 2.33.0 and refresh locked security updates and bump codeclone version
1 parent a472e97 commit 3db90c4

10 files changed

Lines changed: 135 additions & 128 deletions

File tree

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,13 @@
22

33
## [2.0.0b1]
44

5+
Fixed:
6+
7+
- Upgrade requests to 2.33.0 for extract_zipped_paths security fix (CVE-2026-25645)
8+
9+
10+
## [2.0.0b1] - 20260325
11+
512
Major upgrade: CodeClone evolves from a structural clone detector into a
613
**baseline-aware code-health and CI governance tool** for Python.
714

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -197,7 +197,7 @@ Dynamic/runtime false positives are resolved via explicit inline suppressions, n
197197
{
198198
"report_schema_version": "2.1",
199199
"meta": {
200-
"codeclone_version": "2.0.0b1",
200+
"codeclone_version": "2.0.0b2",
201201
"project_name": "...",
202202
"scan_root": ".",
203203
"report_mode": "full",

benchmarks/run_docker_benchmark.sh

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
set -euo pipefail
33

44
ROOT_DIR="$(cd "$(dirname "${BASH_SOURCE[0]}")/.." && pwd)"
5-
IMAGE_TAG="${IMAGE_TAG:-codeclone-benchmark:2.0.0b1}"
5+
IMAGE_TAG="${IMAGE_TAG:-codeclone-benchmark:2.0.0b2}"
66
OUT_DIR="${OUT_DIR:-$ROOT_DIR/.cache/benchmarks}"
77
OUTPUT_BASENAME="${OUTPUT_BASENAME:-codeclone-benchmark.json}"
88
CPUSET="${CPUSET:-0}"

codeclone.baseline.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"meta": {
33
"generator": {
44
"name": "codeclone",
5-
"version": "2.0.0b1"
5+
"version": "2.0.0b2"
66
},
77
"schema_version": "2.0",
88
"fingerprint_version": "1",

docs/book/08-report.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22

33
## Purpose
44

5-
Define report contracts in `2.0.0b1`: canonical JSON (`report_schema_version=2.1`)
5+
Define report contracts in `2.0.0b2`: canonical JSON (`report_schema_version=2.1`)
66
plus deterministic TXT/Markdown/SARIF projections.
77

88
## Public surface

docs/book/appendix/b-schema-layouts.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,14 +2,14 @@
22

33
## Purpose
44

5-
Compact structural layouts for baseline/cache/report contracts in `2.0.0b1`.
5+
Compact structural layouts for baseline/cache/report contracts in `2.0.0b2`.
66

77
## Baseline schema (`2.0`)
88

99
```json
1010
{
1111
"meta": {
12-
"generator": { "name": "codeclone", "version": "2.0.0b1" },
12+
"generator": { "name": "codeclone", "version": "2.0.0b2" },
1313
"schema_version": "2.0",
1414
"fingerprint_version": "1",
1515
"python_tag": "cp313",
@@ -83,7 +83,7 @@ Notes:
8383
{
8484
"report_schema_version": "2.1",
8585
"meta": {
86-
"codeclone_version": "2.0.0b1",
86+
"codeclone_version": "2.0.0b2",
8787
"project_name": "codeclone",
8888
"scan_root": ".",
8989
"analysis_mode": "full",
@@ -264,7 +264,7 @@ Notes:
264264
"tool": {
265265
"driver": {
266266
"name": "codeclone",
267-
"version": "2.0.0b1",
267+
"version": "2.0.0b2",
268268
"rules": [
269269
{
270270
"id": "CCLONE001",

pyproject.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44

55
[project]
66
name = "codeclone"
7-
version = "2.0.0b1"
7+
version = "2.0.0b2"
88
description = "Structural code quality analysis for Python"
99
readme = { file = "README.md", content-type = "text/markdown" }
1010
license = "MIT"

tests/test_report.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -491,7 +491,7 @@ def test_report_sarif_uses_representative_and_related_locations() -> None:
491491
}
492492
sarif_payload = json.loads(
493493
to_sarif_report(
494-
meta={"codeclone_version": "2.0.0b1", "scan_root": "/repo"},
494+
meta={"codeclone_version": "2.0.0b2", "scan_root": "/repo"},
495495
func_groups=groups,
496496
block_groups={},
497497
segment_groups={},

tests/test_report_contract_coverage.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -427,7 +427,7 @@ def _rich_report_document() -> dict[str, object]:
427427
),
428428
)
429429
meta = {
430-
"codeclone_version": "2.0.0b1",
430+
"codeclone_version": "2.0.0b2",
431431
"project_name": "codeclone",
432432
"scan_root": "/repo/codeclone",
433433
"python_version": "3.13.11",
@@ -1251,7 +1251,7 @@ def test_render_sarif_report_document_without_srcroot_keeps_relative_payload() -
12511251
payload = {
12521252
"report_schema_version": "2.1",
12531253
"meta": {
1254-
"codeclone_version": "2.0.0b1",
1254+
"codeclone_version": "2.0.0b2",
12551255
"analysis_mode": "ci",
12561256
"report_mode": "full",
12571257
"runtime": {},

uv.lock

Lines changed: 116 additions & 116 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)