You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Auto-generated summary unavailable; review changelog and commit details below.
Release scope: v0.2.1.
Validation recommendation: run regression tests before production rollout.
Changelog Extract
Changed
Documentation refreshed to match current repository state, including unified ai_docs/ guidance and script usage docs.
README updated with frontend setup and verification commands (pnpm --prefix frontend ...) and corrected release workflow path.
rename_package.py now covers frontend assets/config and AI-tooling config files when renaming project/package identifiers.
update_version.py now updates backend + frontend version targets and auto-detects package directory under src/.
Breaking: refactored module layout by moving setting/context/protocols/logger_util out of utils into config/settings, core/context, contracts/protocols, and observability/log_config; removed legacy import paths.
Simplified default app configuration: removed APP_NAME/APP_VERSION and kept only ENVIRONMENT (dropped DEBUG) from baseline runtime mode env vars.
Unified retry implementation by reusing decorator_utils retry internals from common_utils.
Removed Settings/get_settings/reload_settings re-exports from common_utils to reduce cross-module coupling.
Unified JSON write contracts so write_json and async_write_json both return bool.
Unified current date/time defaults to UTC in date_utils (get_current_date/get_current_time), with use_utc=False for local time.
3c79bca docs: Add SDK usage guide and update README. (Tendo33)
4b06c14 feat: Add initial unit tests for date, decorator, and JSON utilities, and update dependency lock to support Python 3.10+ and pydantic-settings. (Tendo33)
5966bcd feat: Introduce a new utils package providing common helpers for logging, data manipulation, file operations, and more, along with initial tests. (Tendo33)