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
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line numberDiff line numberDiff line change
Expand Up@@ -7,6 +7,21 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [v1.4.1] - 2026-07-14

### Fixed
- **Module-level functions are now resolvable through `get_method` (Python and TypeScript, both
backends).** Previously `get_method` searched class scope only, so module-level functions were
unreachable and `get_all_callers`/`get_all_callees` returned a silent empty result for them even
when the call graph contained the edges. The scope argument now accepts a module name as well as
a qualified class name; callers/callees, `get_method_parameters`, and comment lookups inherit the
fix. (#250, #251)
- **Java lookups no longer crash on a miss.** `get_method`/`get_class`/`get_java_file` are honestly
annotated `... | None` (ABC, both backends, and the public facade), `get_method_parameters`
returns an empty list instead of raising `AttributeError` for an unknown class or signature, and
all internal call-graph/comment lookups are guarded. No behavior change on successful lookups.
(#252)

## [v1.4.0] - 2026-06-27

### Changed
Expand Down
2 changes: 1 addition & 1 deletion pyproject.toml
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
[project]
name = "cldk"
version = "1.4.0"
version = "1.4.1"
description = "The official Python SDK for Codellm-Devkit."
readme = "README.md"
license = { text = "Apache-2.0" }
Expand Down
2 changes: 1 addition & 1 deletion uv.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.