-
Notifications
You must be signed in to change notification settings - Fork 0
0.2.0 rc #22
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Closed
0.2.0 rc #22
Changes from all commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
597d122
llangchain packages update, compatibility for gemini-3 models, anthro…
rostilos ca529f9
anthropic + openai + google providers support, mcp client error hand…
rostilos e31b132
feat: Adjust temperature setting for ChatGoogleGenerativeAI and add s…
rostilos 52701a2
feat: Add support for fetching full PR diffs in branch analysis and e…
rostilos 296f746
feat: Add job skipping functionality and update job status handling
rostilos 23c5c70
improved RAG indexing ( use llangchain language splitters )
rostilos d0f55cf
web-server dir structure fixes ( feature-first ). bitbucket-mcp -> vc…
rostilos 9bd2ab7
package name typo fix
rostilos 1c2c2f2
feat: Implement command authorization management with allowed users a…
rostilos 00b8341
feat: Add error handling for PR analysis failures in webhook handlers
rostilos e9ecef0
incremental PR analysis instead of full PR reanalyze.
rostilos 4967e32
feat: Adjust minimum delta diff size for incremental analysis and imp…
rostilos 72e31cc
feat: Implement job deletion for ignored webhooks to prevent DB clutter
rostilos cd5aa00
feat: Add AST-based code chunking support with new splitter and confi…
rostilos e7998ac
feat: Update branch handling in RAG queries and improve alias managem…
rostilos 46005f1
feat: Enhance language module mapping in AST splitter for improved dy…
rostilos 0e121fd
feat: Add pagination support for branch issues and enhance issue coun…
rostilos 997edf7
fix: Correct issue ID retrieval in BranchAnalysisProcessor for improv…
rostilos dc7c08c
feat: Update prompt builder to enhance error grouping and resolution …
rostilos dcb3a80
fix: Clarify instructions for error grouping in prompt builder to ens…
rostilos f67b6f5
feat: Implement JWT Bearer grant for refreshing Bitbucket Connect App…
rostilos 1f233d3
feat: Add Issue Post-Processor service for line number validation and…
rostilos 7cd9b05
Merge pull request #23 from rostilos/RAG-AST-based-chunking
rostilos 2b3a710
feat: Enhance branch reconciliation by restoring missing diffs from p…
rostilos f4474fc
Merge pull request #24 from rostilos/RAG-AST-based-chunking
rostilos b7e5aff
feat: Update .gitignore to include __pycache__ directories and remove…
rostilos 9694307
feat: Enhance issue analysis by adding detection info and filtering c…
rostilos aa48170
Merge pull request #25 from rostilos/RAG-AST-based-chunking
rostilos 10259f8
feat: Add GitLab support with configuration, client, and API actions …
rostilos fb9dd19
Merge pull request #26 from rostilos/gitlab-support
rostilos ccab716
feat: Implement webhook management and VCS connection change function…
rostilos 24f7b70
Merge pull request #27 from rostilos/bugfix/COC-001
rostilos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
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
Empty file.
Submodule frontend
updated
20 files
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
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
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
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
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
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
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
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
Oops, something went wrong.
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.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Consolidate frontend URL properties to avoid configuration ambiguity.
This introduces a third property for the frontend URL with inconsistent naming:
codecrow.frontend-url(dash notation)codecrow.frontend.url(dot notation, NEW)codecrow.email.frontend-url(dash notation)The inconsistent naming convention (dash vs. dot) creates ambiguity about which property should be used in different contexts and increases the risk of misconfiguration.
🔎 Recommended approach
Consider consolidating to a single canonical property:
Then reference the existing
codecrow.frontend-url(line 24) throughout the codebase, or establish a clear convention (all dots or all dashes) and update all properties consistently.📝 Committable suggestion
🤖 Prompt for AI Agents