Open
Conversation
Compilation fixes: - Fix Anthropic SDK API usage in TestImprover (ContentBlock.isText/asText instead of instanceof TextBlock) - Fix PitReportParser XML deserialization by configuring Jackson field visibility and disabling fail-on-unknown-properties Bug fixes: - Fix StringIndexOutOfBoundsException in MutantAnalyzer.findTestFile() and TestImprovement.createNewTestFile() for default-package classes - Fix TestImprovement.createNewTestFile() null parent path from sourceFile (was using simple filename as a path) - Fix mvnw script to use correct MavenWrapperMain class invocation instead of broken -jar flag Security improvements: - Sanitize git tokens from error messages in RepositoryManager - Override MutantKillerConfig.toString() to exclude API key - Rename --github-token to --token with GIT_TOKEN env var support (backwards compatible, --github-token still works) Code quality: - Extract DEFAULT_MODEL constant to MutantKillerConfig, eliminating triple duplication across KillCommand, RunCommand, and Builder - Deduplicate findMutationsXml() by moving to parent BuildExecutor - Deduplicate extractRepoName() by making RepositoryManager's public - Add response status checking to addComment() in all three git providers - Add ServicesResourceTransformer and signature exclusion filters to shade plugin for correct uber-jar packaging - Add warning log when custom prompt file cannot be read - Sync version string between pom.xml and MutantKiller.java - Remove emoji from CLI output Documentation: - Add TODO.md documenting remaining issues (missing verification of generated code, resource leaks, retry logic, rate limiting, config file support, multi-module projects, and more) Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
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 free
to 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.
Summary
Fixes 3 compilation errors and 6 test failures to get a green build (102 tests passing).
Build Fixes
Architecture Fixes
Remaining
See TODO.md for 30+ documented issues across security, retry logic, rate limiting, resource leaks, config file support, and multi-module projects.