-
Notifications
You must be signed in to change notification settings - Fork 0
1.2.0 rc #65
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
Open
rostilos
wants to merge
12
commits into
main
Choose a base branch
from
1.2.0-rc
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
1.2.0 rc #65
Changes from all commits
Commits
Show all changes
12 commits
Select commit
Hold shift + click to select a range
484b644
feat: Add delta indexing support with RAG delta index table and relat…
rostilos 982281a
feat: Add GitLab webhook handlers for branch and merge request events
rostilos f75e01c
Merge pull request #64 from rostilos/delta-indexes
rostilos 33dcb11
Unit test suite. 80% coverage for a java-ecosystem libs packages
rostilos 38aebf7
feat: Enhance VCS integration with branch listing search and limit su…
rostilos f2f7c26
Merge pull request #67 from rostilos/unit-tests
rostilos 85b4104
Merge pull request #66 from rostilos/bugfix/branch-list-pagination-an…
rostilos 19d8a95
refactor: Remove unused classes and related files from analysis-api m…
rostilos 0723b1d
Refactor RAG query services for multi-branch support and improved ded…
rostilos d0a1697
Merge pull request #68 from rostilos/multi-branch-indexes
rostilos 3d1e1de
feat: Enhance OpenRouterEmbedding with debug logging and batch size h…
rostilos fdc6a02
Merge pull request #69 from rostilos/multi-branch-indexes
rostilos File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
There are no files selected for viewing
Submodule frontend
updated
14 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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,40 @@ | ||
| target/ | ||
| !.mvn/wrapper/maven-wrapper.jar | ||
| !**/src/main/**/target/ | ||
| !**/src/test/**/target/ | ||
| /src/main/resources/application.properties | ||
|
|
||
| ### IntelliJ IDEA ### | ||
| .idea | ||
| *.iws | ||
| *.iml | ||
| *.ipr | ||
|
|
||
| ### Eclipse ### | ||
| .apt_generated | ||
| .classpath | ||
| .factorypath | ||
| .project | ||
| .settings | ||
| .springBeans | ||
| .sts4-cache | ||
|
|
||
| ### NetBeans ### | ||
| /nbproject/private/ | ||
| /nbbuild/ | ||
| /dist/ | ||
| /nbdist/ | ||
| /.nb-gradle/ | ||
| build/ | ||
| !**/src/main/**/build/ | ||
| !**/src/test/**/build/ | ||
|
|
||
| ### VS Code ### | ||
| .vscode/ | ||
|
|
||
| ### Mac OS ### | ||
| .DS_Store | ||
|
|
||
| index.ts | ||
| .env | ||
| server.log | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,49 @@ | ||
| <?xml version="1.0" encoding="UTF-8"?> | ||
| <project xmlns="http://maven.apache.org/POM/4.0.0" | ||
| xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" | ||
| xsi:schemaLocation="http://maven.apache.org/POM/4.0.0 http://maven.apache.org/xsd/maven-4.0.0.xsd"> | ||
| <modelVersion>4.0.0</modelVersion> | ||
|
|
||
| <parent> | ||
| <groupId>org.rostilos.codecrow</groupId> | ||
| <artifactId>codecrow-parent</artifactId> | ||
| <version>1.0</version> | ||
| <relativePath>../../pom.xml</relativePath> | ||
| </parent> | ||
|
|
||
| <artifactId>codecrow-analysis-api</artifactId> | ||
| <packaging>jar</packaging> | ||
| <version>1.0</version> | ||
| <name>CodeCrow Analysis API</name> | ||
| <description>API interfaces for analysis services - allows modules to depend on interfaces without implementations</description> | ||
|
|
||
| <properties> | ||
| <java.version>17</java.version> | ||
| </properties> | ||
|
|
||
| <dependencies> | ||
| <!-- Core library for model classes (Project, etc.) --> | ||
| <dependency> | ||
| <groupId>org.rostilos.codecrow</groupId> | ||
| <artifactId>codecrow-core</artifactId> | ||
| </dependency> | ||
|
|
||
| <!-- SLF4J for logging in default implementations --> | ||
| <dependency> | ||
| <groupId>org.slf4j</groupId> | ||
| <artifactId>slf4j-api</artifactId> | ||
| </dependency> | ||
| </dependencies> | ||
|
|
||
| <build> | ||
| <plugins> | ||
| <plugin> | ||
| <artifactId>maven-compiler-plugin</artifactId> | ||
| <configuration> | ||
| <source>${java.version}</source> | ||
| <target>${java.version}</target> | ||
| </configuration> | ||
| </plugin> | ||
| </plugins> | ||
| </build> | ||
| </project> |
6 changes: 6 additions & 0 deletions
6
java-ecosystem/libs/analysis-api/src/main/java/module-info.java
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,6 @@ | ||
| module org.rostilos.codecrow.analysisapi { | ||
| requires org.rostilos.codecrow.core; | ||
| requires org.slf4j; | ||
|
|
||
| exports org.rostilos.codecrow.analysisapi.rag; | ||
| } |
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.
index.tsseems out of place in a Java module.This is a Java Maven module (
analysis-api), butindex.tsis a TypeScript entry point file. This appears to be copy-pasted from a Node.js project template. Consider removing it if not applicable to this module..envandserver.logare reasonable entries for any project.🤖 Prompt for AI Agents