Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ jobs:
cache: pip

- name: Install CivicCore release wheel
run: python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.0/civiccore-1.0.0-py3-none-any.whl
run: python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.0.1/civiccore-1.0.1-py3-none-any.whl

- name: Install package and test dependencies
run: python -m pip install -e ".[dev]"
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/verify.yml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ jobs:
with:
python-version: "3.11"
- name: Install CivicCore release wheel
run: python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.0/civiccore-1.0.0-py3-none-any.whl
run: python -m pip install https://github.com/CivicSuite/civiccore/releases/download/v1.0.1/civiccore-1.0.1-py3-none-any.whl
- name: Install package
run: python -m pip install -e ".[dev]"
- name: Run release gate
Expand Down
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,12 @@ All notable changes to CivicZone will be documented in this file.

The format follows Keep a Changelog, and this project follows Semantic Versioning.

## [Unreleased]

### Changed

- feat(deps): bump civiccore pin to v1.0.1 (security hardening recovery patch)

## [1.0.0] - 2026-05-07

### Recovery note
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ authors = [
{ name = "CivicSuite contributors" }
]
dependencies = [
"civiccore @ https://github.com/CivicSuite/civiccore/releases/download/v1.0/civiccore-1.0.0-py3-none-any.whl#sha256=92d3d9984e3b3651586a342503f0789464b7618a2a030fce91d736e199d696e0",
"civiccore @ https://github.com/CivicSuite/civiccore/releases/download/v1.0.1/civiccore-1.0.1-py3-none-any.whl#sha256=561d7a8f73260d50de79351d330876d2cb3488c0e046a2888e82fe09d1e03969",
"fastapi>=0.115.0,<1.0.0",
"uvicorn[standard]>=0.30.0,<1.0.0",
]
Expand Down
7 changes: 3 additions & 4 deletions tests/test_runtime_foundation.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,9 @@ def test_pyproject_uses_published_civiccore_release_wheel() -> None:
assert data["tool"]["hatch"]["metadata"]["allow-direct-references"] is True
assert (
"civiccore @ https://github.com/CivicSuite/civiccore/releases/download/"
"v1.0/civiccore-1.0.0-py3-none-any.whl#sha256=92d3d9984e3b3651586a342503f0789464b7618a2a030fce91d736e199d696e0"
"v1.0.1/civiccore-1.0.1-py3-none-any.whl#sha256=561d7a8f73260d50de79351d330876d2cb3488c0e046a2888e82fe09d1e03969"
) in dependencies
assert "civiccore==1.0.0" not in dependencies
assert "civiccore==1.0.1" not in dependencies


def test_root_endpoint_states_runtime_boundary() -> None:
Expand All @@ -50,7 +50,7 @@ def test_health_endpoint_reports_versions() -> None:
assert payload["status"] == "ok"
assert payload["service"] == "civiczone"
assert payload["version"] == "0.2.0"
assert payload["civiccore_version"] == "1.0.0"
assert payload["civiccore_version"] == "1.0.1"


def test_release_gate_prefers_native_unix_python_before_windows_launcher() -> None:
Expand Down Expand Up @@ -85,4 +85,3 @@ def test_current_docs_mark_v1_label_as_recovered_without_product_release_overcla
assert "release-recovery" in lowered, path
assert "provisional" not in lowered, path
assert "product release" not in lowered, path