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

## [Unreleased]

## [0.5.1] - 2026-03-22

### Added
- **`env_nested_delimiter` implementation** - Previously declared but not functional, now fully implemented with delimiter-aware env var scanning, recursive type resolution, and nested dict unfolding (contributed by [@FatJun](https://github.com/FatJun) in [#49](https://github.com/msgflux/msgspec-ext/pull/49))
- `env_nested_max_depth` config option to limit nesting depth (0 = unlimited)
- `load_dotenv` exported in public API (`from msgspec_ext import load_dotenv`)
- 10 new tests for nested delimiter functionality

### Changed
- `env_nested_delimiter` default changed from `"__"` to `None` (opt-in behavior)

### Fixed
- `env_nested_delimiter` was declared in `SettingsConfigDict` but never used ([#48](https://github.com/msgflux/msgspec-ext/issues/48))

## [0.5.0] - 2025-12-03

### Added
Expand Down Expand Up @@ -150,7 +164,9 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
- Bulk validation in C via msgspec (zero Python loops)
- Cached encoders/decoders for repeated use

[Unreleased]: https://github.com/msgflux/msgspec-ext/compare/v0.4.0...HEAD
[Unreleased]: https://github.com/msgflux/msgspec-ext/compare/v0.5.1...HEAD
[0.5.1]: https://github.com/msgflux/msgspec-ext/compare/v0.5.0...v0.5.1
[0.5.0]: https://github.com/msgflux/msgspec-ext/compare/v0.4.0...v0.5.0
[0.4.0]: https://github.com/msgflux/msgspec-ext/compare/v0.3.4...v0.4.0
[0.3.4]: https://github.com/msgflux/msgspec-ext/compare/v0.3.3...v0.3.4
[0.3.3]: https://github.com/msgflux/msgspec-ext/compare/v0.3.2...v0.3.3
Expand Down
2 changes: 1 addition & 1 deletion src/msgspec_ext/version.py
Original file line number Diff line number Diff line change
@@ -1 +1 @@
__version__ = "0.5.0"
__version__ = "0.5.1"
Loading