Changelog¶
All notable changes to this project will be documented in this file.
The format is based on Keep a Changelog,
[0.2.2] - 2026-03-14¶
Added¶
- Unified tooling: Ruff (lint + format), pre-commit hooks, standardized Makefile
- Comprehensive documentation overhaul (17 MkDocs pages)
- 5 runnable example scripts with smoke tests
- Translated README files (Korean, Japanese, Chinese)
- Standardized nav structure and documentation quality across ecosystem
- pyproject.toml metadata (classifiers, project URLs)
- Project metadata in logging output
0.2.1 - 2026-03-12¶
Added¶
py.typedmarker file for PEP 561 type checking support, enabling downstream projects to use type information from this package with mypy, pyright, and other type checkers
0.2.0 - 2026-03-12¶
Added¶
JsonFormatterfor structured NDJSON log output, compatible with Azure Log Analytics and other log aggregation systemsFunctionLoggerclass with context binding viabind()for persistent per-request context- Invocation context injection via
inject_context(context), automatically extractinginvocation_id,function_name, andtrace_idfrom the Azure Functions context object - Automatic cold start detection without manual instrumentation -- first invocation per process is flagged as
cold_start=True host.jsonlog level conflict warning -- detects when Azure's host configuration might silently suppress log outputContextFilterfor propagating context fields fromcontextvarsto log records- Translated README files: Korean, Japanese, Chinese
Changed¶
- Expanded documentation with MkDocs site infrastructure (11 documentation pages)
0.1.0 - 2026-03-11¶
Added¶
setup_logging()one-liner for environment-aware log configuration with automatic Azure detectionget_logger(__name__)helper for creatingFunctionLoggerinstances from standard loggersColorFormatterwith colorized log levels for local development:- DEBUG: gray
- INFO: blue
- WARNING: yellow
- ERROR: red
- CRITICAL: bold red
- Clean
[TIME] [LEVEL] [LOGGER] messageformat for human-readable output - Exception-friendly output with readable stack traces
- Idempotent setup -- calling
setup_logging()multiple times is safe - Compatible with Python's standard
loggingmodule - Support for Python 3.10, 3.11, 3.12, 3.13, 3.14