Uh oh!
There was an error while loading. Please reload this page.
fix: backport JAR-bundling + release-workflow fixes to 2.0 (#284, #289, #290, #292) - #294
Merged
Merged
Conversation
, #290, #292) Ports the fixes shipped on main to the 2.0 line (2.0.0-rc.1 shipped jarless): - Force-include the codeanalyzer-java JAR via [tool.hatch.build] artifacts (#284) - Pipe-safe release guard that fails a jarless build before publishing (#284) - Source release notes from CHANGELOG.md and fail on blank; drop the label-based changelog scraper and orphaned release_config.json (#289) - Remove the obsolete native-binary test and its unused import (#290) - Fix the stale conftest docstring for the retired native binary (#292) Verified: build on this branch (with .git) yields a 32MB wheel+sdist containing the JAR; tests/analysis/java/test_jcodeanalyzer.py -> 42 passed.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for freeto join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Backports the JAR-bundling and release-workflow fixes from
mainto the 2.0 line.2.0.0-rc.1shipped jarless (188 KB wheel, no
codeanalyzer-javaJAR — same class of bug as 1.2.0–1.4.3), soCLDK.java(...)after a plainpip installfailed withcodeanalyzer jar not found.What's ported
[tool.hatch.build] artifactsforce-includes the JAR (hatchling drops it via the root*.jarignore, ignoring the nested negation)CHANGELOG.md+ fail-on-blank; label-based scraper andrelease_config.jsonremovedimport sysconftestdocstring for the retired native binaryHow it was ported
release/2.0'srelease.ymlwas byte-identical to pre-fixmain, so main's finished workflow wasapplied wholesale; the pyproject/test/conftest edits were re-applied (their blocks were identical to
main's). CHANGELOG gets an
[Unreleased]entry (the JAR fix is user-facing here).Verification
Built on this branch (with
.git, the CI condition):tests/analysis/java/test_jcodeanalyzer.py→ 42 passed. No 2.0 release cut here — this only updates the branch.