Tags

Tags give the ability to mark specific points in history as being important
  • v2.5.0

    72195942 · ## [2.5.0] - 2026-06-13 ·
    - **Native Dotenv Strategy Support:** Implemented complete strategy for dotenv configuration file ingestion (via `.env`).
    - **Native Java Properties Strategy Support:** Implemented complete strategy for Java properties configuration file ingestion (via `.properties`).
    - **Underscore & Dot Delimiter Path Tokenization**: Integrated automatic hierarchy tokenization where `.env` files split flat keys by underscore `_` and `.properties` files split flat keys by dot `.`.
    - **Properties & Env Strategy Test Suites**: Integrated full test suites validating parsing, dynamic type casting, deep merging, logging safety, and loader integration for both formats.
    - **Factory Registration**: Registered `.env` and `.properties` extensions in the central Strategy Factory registry.
  • v2.4.0

    20a4258b · ## [2.4.0] - 2026-06-13 ·
    - **Native TOML Strategy Support:** Implemented complete strategy for TOML configuration file ingestion (via `.toml`).
    - **Native INI and Conf Strategy Support:** Implemented complete strategy for INI and Conf configuration file ingestion (via `.ini` and `.conf`).
    - **TOML Dependency Fallback:** Declared the `tomli` dependency fallback for Python versions older than 3.11 in `pyproject.toml`.
    - **INI Primitive Value Casting:** Integrated automatic casting of INI string values into standard Python primitive types (booleans, integers, floats, and strings).
    - **TOML & INI Strategy Test Suites:** Integrated complete test suites validating parsing, deep merging, logging safety, and loader integration for both formats.
    - **Factory Registration:** Registered `.toml`, `.ini`, and `.conf` extensions in the central Strategy Factory registry.