Skip to content

Commit 0de3030

Browse files
edelvalleclaude
andcommitted
Release version 1.3.0
This release improves HTMX module discovery with better error handling. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
1 parent 152748e commit 0de3030

File tree

2 files changed

+7
-1
lines changed

2 files changed

+7
-1
lines changed

CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
77

88
## [Unreleased]
99

10+
## [1.3.0] - 2026-01-07
11+
12+
### Changed
13+
- **HTMX Module Discovery**: Improved module discovery mechanism to use `find_spec` instead of try/except for checking module existence. This allows ImportErrors from within HTMX modules to propagate properly, preventing silent failures and making debugging easier. Previously, import errors from within the module itself were silently caught, masking real bugs.
14+
- Removed warning messages about missing HTMX modules for cleaner logging
15+
1016
## [1.2.9] - 2026-01-07
1117

1218
### Added

src/djhtmx/__init__.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
11
from .middleware import middleware
22

3-
__version__ = "1.2.9"
3+
__version__ = "1.3.0"
44
__all__ = ("middleware",)

0 commit comments

Comments
 (0)