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
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [0.4.1] - 2026-04-05

### Fixed

- **structlog API compatibility** — replaced `structlog.get_level_from_name()` with `logging.getLevelName()` from the stdlib for compatibility with structlog ≥ 25.x which removed that function

## [0.4.0] - 2026-03-30

### Added
Expand Down
3 changes: 2 additions & 1 deletion src/summarizer/main.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,7 @@
from __future__ import annotations

import asyncio
import logging
import sys
from dataclasses import dataclass
from datetime import UTC, datetime
Expand Down Expand Up @@ -615,7 +616,7 @@ async def run() -> None:

structlog.configure(
wrapper_class=structlog.make_filtering_bound_logger(
structlog.get_level_from_name(settings.log_level)
logging.getLevelName(settings.log_level.upper())
),
)

Expand Down
Loading