Skip to content

v1.4.4

Latest

Choose a tag to compare

@github-actions github-actions released this 22 Jul 15:55
438738e

cldk 1.4.4

A packaging fix release — no API or behavior changes, but an important upgrade if you use the Java backend from a pip-installed cldk.

Fixed: pip install cldk bundles the codeanalyzer-java JAR again

Every wheel published from 1.2.0 through 1.4.3 shipped without the bundled codeanalyzer-java JAR, so calling CLDK.java(...) after a plain pip install cldk failed at runtime with:

CodeanalyzerExecutionException: codeanalyzer jar not found

The JAR is tracked in git, but the build backend (hatchling) applied the repo's root *.jar ignore rule at build time and dropped it from the wheel and sdist. 1.4.4 force-includes the JAR, and the release pipeline now hard-fails if any build is ever missing it — so this can't silently regress again.

If you installed any of 1.2.0–1.4.3 and hit the "jar not found" error, upgrading fixes it.

Upgrade

pip install -U "cldk==1.4.4"

Links