Skip to content

1.8.0 rc - #227

Closed
rostilos wants to merge 8 commits into
mainfrom
1.8.0-rc
Closed

1.8.0 rc#227
rostilos wants to merge 8 commits into
mainfrom
1.8.0-rc

Conversation

@rostilos

Copy link
Copy Markdown
Owner

No description provided.

rostilos and others added 8 commits July 15, 2026 12:21
- Flags and shadow safety
- test framework and test coverage accross services/packages
- Execution and stage telemetry
- reject successful fixes, praise, INFO notes, and speculative findings
- preserve historical issue IDs and emit explicit lifecycle resolutions
- apply publication gates across classic, agentic, cross-file, and Stage 3 flows
- exclude resolved records from active issue counts and reports
- strengthen reconciliation and regression test coverage
- update review documentation and production build preparation
…orkflow

Agentic review mode & functionality fixes
@coderabbitai

coderabbitai Bot commented Jul 20, 2026

Copy link
Copy Markdown

Important

Review skipped

Too many files!

This PR contains 130 files, which is 30 over the limit of 100.

To get a review, narrow the scope:
• coderabbit review --type committed # exclude uncommitted changes
• coderabbit review --dir # limit to a subdirectory
• coderabbit review --base # compare against a closer base

Upgrade to a paid plan to raise the limit.

⚙️ Run configuration

Configuration used: defaults

Review profile: CHILL

Plan: Pro

Run ID: 4b8ec2e4-217c-41bf-9011-5a53bae1c1b2

📥 Commits

Reviewing files that changed from the base of the PR and between c50ea97 and be77dbf.

⛔ Files ignored due to path filters (1)
  • java-ecosystem/services/web-server/TestHibernate.class is excluded by !**/*.class
📒 Files selected for processing (133)
  • .github/workflows/deploy.yml
  • .github/workflows/test.yml
  • .gitignore
  • RELEASE_NOTES.md
  • deployment/.env.sample
  • deployment/build/development-build.sh
  • deployment/build/production-build.sh
  • deployment/ci/ci-build.sh
  • deployment/ci/server-deploy.sh
  • deployment/ci/server-init.sh
  • deployment/ci/service-selection.sh
  • deployment/config/inference-orchestrator/.env.sample
  • deployment/docker-compose.prod.yml
  • deployment/docker-compose.yml
  • frontend
  • java-ecosystem/libs/analysis-engine/pom.xml
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/aiclient/AiAnalysisClient.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/dto/request/ai/AgenticRepositoryArchive.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/dto/request/ai/AiAnalysisRequest.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/dto/request/ai/AiAnalysisRequestImpl.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/dto/request/ai/enrichment/FileContentDto.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/processor/analysis/BranchAnalysisProcessor.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/processor/analysis/PullRequestAnalysisProcessor.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/service/branch/BranchAnalysisGateService.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/service/pr/PullRequestDiffPreparationService.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/service/vcs/VcsAiClientService.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/util/AnalysisLimitEnforcer.java
  • java-ecosystem/libs/analysis-engine/src/main/java/org/rostilos/codecrow/analysisengine/util/ExactDiffParser.java
  • java-ecosystem/libs/analysis-engine/src/test/java/org/rostilos/codecrow/analysisengine/aiclient/AiAnalysisClientTest.java
  • java-ecosystem/libs/analysis-engine/src/test/java/org/rostilos/codecrow/analysisengine/dto/request/ai/AiAnalysisRequestImplTest.java
  • java-ecosystem/libs/analysis-engine/src/test/java/org/rostilos/codecrow/analysisengine/dto/request/ai/enrichment/EnrichmentDtoTest.java
  • java-ecosystem/libs/analysis-engine/src/test/java/org/rostilos/codecrow/analysisengine/processor/analysis/PullRequestAnalysisProcessorTest.java
  • java-ecosystem/libs/analysis-engine/src/test/java/org/rostilos/codecrow/analysisengine/service/branch/BranchAnalysisGateServiceTest.java
  • java-ecosystem/libs/analysis-engine/src/test/java/org/rostilos/codecrow/analysisengine/service/pr/PullRequestDiffPreparationServiceTest.java
  • java-ecosystem/libs/core/src/main/java/org/rostilos/codecrow/core/dto/project/ProjectDTO.java
  • java-ecosystem/libs/core/src/main/java/org/rostilos/codecrow/core/model/project/config/ProjectConfig.java
  • java-ecosystem/libs/core/src/main/java/org/rostilos/codecrow/core/model/project/config/ReviewApproach.java
  • java-ecosystem/libs/core/src/main/java/org/rostilos/codecrow/core/persistence/repository/job/JobRepository.java
  • java-ecosystem/libs/core/src/main/java/org/rostilos/codecrow/core/service/CodeAnalysisService.java
  • java-ecosystem/libs/core/src/test/java/org/rostilos/codecrow/core/dto/project/ProjectDTOTest.java
  • java-ecosystem/libs/core/src/test/java/org/rostilos/codecrow/core/model/project/config/ProjectConfigTest.java
  • java-ecosystem/libs/core/src/test/java/org/rostilos/codecrow/core/service/CodeAnalysisServiceTest.java
  • java-ecosystem/libs/rag-engine/src/test/java/org/rostilos/codecrow/ragengine/service/VcsRagIndexingServiceTest.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/VcsClient.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/bitbucket/cloud/BitbucketCloudClient.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/bitbucket/cloud/actions/GetCommitRangeDiffAction.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/bitbucket/cloud/actions/GetCommitRangeDiffStatAction.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/bitbucket/cloud/actions/GetMergeBaseAction.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/bitbucket/cloud/actions/GetPullRequestAction.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/bitbucket/service/ReportGenerator.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/github/GitHubClient.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/github/actions/GetCommitComparisonAction.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/gitlab/GitLabClient.java
  • java-ecosystem/libs/vcs-client/src/main/java/org/rostilos/codecrow/vcsclient/gitlab/actions/GetCommitRangeDiffAction.java
  • java-ecosystem/libs/vcs-client/src/test/java/org/rostilos/codecrow/vcsclient/VcsClientArchiveDownloadLimitTest.java
  • java-ecosystem/libs/vcs-client/src/test/java/org/rostilos/codecrow/vcsclient/bitbucket/cloud/actions/GetCommitRangeDiffActionTest.java
  • java-ecosystem/libs/vcs-client/src/test/java/org/rostilos/codecrow/vcsclient/bitbucket/cloud/actions/GetCommitRangeDiffStatActionTest.java
  • java-ecosystem/libs/vcs-client/src/test/java/org/rostilos/codecrow/vcsclient/bitbucket/cloud/actions/GetMergeBaseActionTest.java
  • java-ecosystem/libs/vcs-client/src/test/java/org/rostilos/codecrow/vcsclient/bitbucket/cloud/actions/GetPullRequestActionTest.java
  • java-ecosystem/libs/vcs-client/src/test/java/org/rostilos/codecrow/vcsclient/bitbucket/service/ReportGeneratorTest.java
  • java-ecosystem/libs/vcs-client/src/test/java/org/rostilos/codecrow/vcsclient/github/actions/GetCommitComparisonActionTest.java
  • java-ecosystem/libs/vcs-client/src/test/java/org/rostilos/codecrow/vcsclient/gitlab/actions/GetCommitRangeDiffActionTest.java
  • java-ecosystem/pom.xml
  • java-ecosystem/services/pipeline-agent/pom.xml
  • java-ecosystem/services/pipeline-agent/src/main/java/org/rostilos/codecrow/pipelineagent/agentic/AgenticRepositoryArchiveService.java
  • java-ecosystem/services/pipeline-agent/src/main/java/org/rostilos/codecrow/pipelineagent/bitbucket/service/BitbucketAiClientService.java
  • java-ecosystem/services/pipeline-agent/src/main/java/org/rostilos/codecrow/pipelineagent/generic/processor/WebhookAsyncProcessor.java
  • java-ecosystem/services/pipeline-agent/src/main/java/org/rostilos/codecrow/pipelineagent/generic/service/AbstractVcsAiClientService.java
  • java-ecosystem/services/pipeline-agent/src/main/java/org/rostilos/codecrow/pipelineagent/generic/service/BackendRuntimeRecoveryService.java
  • java-ecosystem/services/pipeline-agent/src/main/java/org/rostilos/codecrow/pipelineagent/generic/service/ExactDiffIntegrityValidator.java
  • java-ecosystem/services/pipeline-agent/src/main/java/org/rostilos/codecrow/pipelineagent/github/service/GitHubAiClientService.java
  • java-ecosystem/services/pipeline-agent/src/main/java/org/rostilos/codecrow/pipelineagent/gitlab/service/GitLabAiClientService.java
  • java-ecosystem/services/pipeline-agent/src/test/java/org/rostilos/codecrow/pipelineagent/agentic/AgenticRepositoryArchiveServiceTest.java
  • java-ecosystem/services/pipeline-agent/src/test/java/org/rostilos/codecrow/pipelineagent/generic/processor/WebhookAsyncProcessorBranchGateTest.java
  • java-ecosystem/services/pipeline-agent/src/test/java/org/rostilos/codecrow/pipelineagent/generic/service/AbstractVcsAiClientServiceAgenticTest.java
  • java-ecosystem/services/pipeline-agent/src/test/java/org/rostilos/codecrow/pipelineagent/generic/service/BackendRuntimeRecoveryServiceTest.java
  • java-ecosystem/services/pipeline-agent/src/test/java/org/rostilos/codecrow/pipelineagent/generic/service/VcsProviderExactMetadataTest.java
  • java-ecosystem/services/web-server/src/main/java/org/rostilos/codecrow/webserver/project/controller/ProjectController.java
  • java-ecosystem/services/web-server/src/main/java/org/rostilos/codecrow/webserver/project/service/IProjectService.java
  • java-ecosystem/services/web-server/src/main/java/org/rostilos/codecrow/webserver/project/service/ProjectService.java
  • python-ecosystem/inference-orchestrator/.coverage
  • python-ecosystem/inference-orchestrator/integration/conftest.py
  • python-ecosystem/inference-orchestrator/integration/test_health.py
  • python-ecosystem/inference-orchestrator/pytest.ini
  • python-ecosystem/inference-orchestrator/src/.coverage
  • python-ecosystem/inference-orchestrator/src/.dockerignore
  • python-ecosystem/inference-orchestrator/src/Dockerfile
  • python-ecosystem/inference-orchestrator/src/Dockerfile.observable
  • python-ecosystem/inference-orchestrator/src/README.MD
  • python-ecosystem/inference-orchestrator/src/api/routers/health.py
  • python-ecosystem/inference-orchestrator/src/model/__init__.py
  • python-ecosystem/inference-orchestrator/src/model/dtos.py
  • python-ecosystem/inference-orchestrator/src/model/multi_stage.py
  • python-ecosystem/inference-orchestrator/src/model/output_schemas.py
  • python-ecosystem/inference-orchestrator/src/server/command_queue_consumer.py
  • python-ecosystem/inference-orchestrator/src/server/queue_consumer.py
  • python-ecosystem/inference-orchestrator/src/service/review/agentic/__init__.py
  • python-ecosystem/inference-orchestrator/src/service/review/agentic/engine.py
  • python-ecosystem/inference-orchestrator/src/service/review/agentic/tool_gateway.py
  • python-ecosystem/inference-orchestrator/src/service/review/agentic/workspace.py
  • python-ecosystem/inference-orchestrator/src/service/review/orchestrator/orchestrator.py
  • python-ecosystem/inference-orchestrator/src/service/review/orchestrator/reconciliation.py
  • python-ecosystem/inference-orchestrator/src/service/review/orchestrator/stage_0_planning.py
  • python-ecosystem/inference-orchestrator/src/service/review/orchestrator/stage_2_cross_file.py
  • python-ecosystem/inference-orchestrator/src/service/review/orchestrator/stage_3_aggregation.py
  • python-ecosystem/inference-orchestrator/src/service/review/orchestrator/verification_agent.py
  • python-ecosystem/inference-orchestrator/src/service/review/review_service.py
  • python-ecosystem/inference-orchestrator/src/utils/git_diff_paths.py
  • python-ecosystem/inference-orchestrator/src/utils/prompts/constants_shared.py
  • python-ecosystem/inference-orchestrator/src/utils/prompts/constants_stage_0.py
  • python-ecosystem/inference-orchestrator/src/utils/prompts/constants_stage_1.py
  • python-ecosystem/inference-orchestrator/src/utils/prompts/constants_stage_2.py
  • python-ecosystem/inference-orchestrator/src/utils/response_parser.py
  • python-ecosystem/inference-orchestrator/tests/test_agentic_review_engine.py
  • python-ecosystem/inference-orchestrator/tests/test_agentic_tool_gateway.py
  • python-ecosystem/inference-orchestrator/tests/test_agentic_workspace.py
  • python-ecosystem/inference-orchestrator/tests/test_dtos.py
  • python-ecosystem/inference-orchestrator/tests/test_git_diff_paths.py
  • python-ecosystem/inference-orchestrator/tests/test_orchestrator_helpers.py
  • python-ecosystem/inference-orchestrator/tests/test_output_schemas.py
  • python-ecosystem/inference-orchestrator/tests/test_prompt_builder.py
  • python-ecosystem/inference-orchestrator/tests/test_reconciliation.py
  • python-ecosystem/inference-orchestrator/tests/test_response_parser.py
  • python-ecosystem/inference-orchestrator/tests/test_review_service_agentic.py
  • python-ecosystem/inference-orchestrator/tests/test_stage_0_branch.py
  • python-ecosystem/inference-orchestrator/tests/test_stage_2_helpers.py
  • python-ecosystem/inference-orchestrator/tests/test_stage_3_helpers.py
  • python-ecosystem/inference-orchestrator/tests/test_verification_full.py
  • python-ecosystem/rag-pipeline/.coverage
  • python-ecosystem/rag-pipeline/.dockerignore
  • python-ecosystem/rag-pipeline/src/rag_pipeline/api/middleware.py
  • python-ecosystem/rag-pipeline/src/rag_pipeline/api/models.py
  • python-ecosystem/rag-pipeline/src/rag_pipeline/core/loader.py

You can disable this status message by setting the reviews.review_status to false in the CodeRabbit configuration file.

Use the checkbox below for a quick retry:

  • Review on demand using usage pricing
✨ Finishing Touches
🧪 Generate unit tests (beta)
  • Create PR with unit tests
  • Commit unit tests in branch 1.8.0-rc

Thanks for using CodeRabbit! It's free for OSS, and your support helps us grow. If you like it, consider giving us a shout-out.

❤️ Share

Comment @coderabbitai help to get the list of available commands.

@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 20, 2026
@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 20, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

1 similar comment
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 20, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 20, 2026
@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 20, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 21, 2026
@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 21, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 21, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 21, 2026
@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 21, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 21, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 21, 2026
@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 22, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 22, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 22, 2026
@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 22, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 22, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 22, 2026
@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 22, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 22, 2026
@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 22, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 22, 2026
@codecrow-local

Copy link
Copy Markdown

⚠️ Code Analysis Results

Quality Gate Default Quality Gate: 🔴 FAILED

  • HIGH Issues by Severity > 0 (actual: 1) - FAILED

Summary

Pull Request Review: 1.8.0 rc

Status PASS WITH WARNINGS
Risk Level HIGH
Review Coverage 121 files analyzed in depth
Confidence HIGH

Executive Summary

PR #227 is a release candidate for version 1.8.0, encompassing 130 changed files across the Java and Python ecosystems. Key changes include the introduction of agentic review workspaces and tool gateways, exact diff parser enhancements, and updated VCS client handling. While the core codebase changes are well-engineered, a syntax error in the deployment script poses a high risk of breaking automated server deployments.

Recommendation

Decision: PASS WITH WARNINGS

Merge approval is granted subject to resolving the deployment script configuration bug in deployment/ci/server-deploy.sh. Once fixed, the release candidate is ready for deployment.

Issues Overview

Severity Count
🔴 High 1 Critical issues requiring immediate attention

Analysis completed on 2026-07-22 14:30:49 | View Full Report | Pull Request


📋 Detailed Issues (1)

🔴 High Severity Issues

Id on Platform: 3873

Category: 🐛 Bug Risk

File: .../ci/server-deploy.sh:57

Premature closing of REQUIRED_CONFIGS array causes deployment script execution failure

Premature closing of REQUIRED_CONFIGS array causes deployment script execution failure
In deployment/ci/server-deploy.sh, the REQUIRED_CONFIGS array declaration is closed prematurely on its first element: REQUIRED_CONFIGS=("$DEPLOY_ENV_FILE"). The subsequent line containing the path to the GitHub App private key PEM file is interpreted as a standalone command rather than an element of the array. When the deployment script runs under set -e, executing the non-executable PEM key file as a command will fail with a Permission denied or Exec format error, terminating the deployment immediately before any services are updated.
Evidence: In deployment/ci/server-deploy.sh:

REQUIRED_CONFIGS=("$DEPLOY_ENV_FILE")
    "$CONFIG_DIR/java-shared/github-private-key/github-app-private-key.pem"

Because the array is closed on the first line, bash attempts to execute $CONFIG_DIR/java-shared/github-private-key/github-app-private-key.pem as a command.
Business impact: Server deployments via server-deploy.sh will break during startup, preventing deployments and updates to production environments.

💡 Suggested Fix

Move the closing parenthesis to wrap all array items:

REQUIRED_CONFIGS=(
    "$DEPLOY_ENV_FILE"
    "$CONFIG_DIR/java-shared/github-private-key/github-app-private-key.pem"
)

View Issue Details


Files Affected

  • .../ci/server-deploy.sh: 1 issue

@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 22, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

1 similar comment
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 24, 2026
@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 24, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-ai codecrow-ai Bot deleted a comment from codecrow-local Bot Jul 24, 2026
@rostilos

Copy link
Copy Markdown
Owner Author

/codecrow analyze

@codecrow-local

Copy link
Copy Markdown

🔄 CodeCrow is analyzing this PR...

This may take a few minutes depending on the size of the changes.
I'll update this comment with the results when the analysis is complete.

@codecrow-local codecrow-local Bot deleted a comment from codecrow-ai Bot Jul 24, 2026
@rostilos rostilos closed this Jul 27, 2026
@rostilos
rostilos deleted the 1.8.0-rc branch July 27, 2026 14:15
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant