Skip to content

Commit bafd882

Browse files
authored
Merge branch 'main' into bugfix/prevent-cvss-score-and-severity-overwrite
2 parents 207cddc + 85160df commit bafd882

6 files changed

Lines changed: 478 additions & 203 deletions

File tree

backend/package.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -128,7 +128,7 @@
128128
"pg": "^8.7.3",
129129
"pg-promise": "^11.4.3",
130130
"sanitize-html": "^2.7.1",
131-
"sequelize": "6.21.2",
131+
"sequelize": "6.37.8",
132132
"sequelize-cli-typescript": "^3.2.0-c",
133133
"slack-block-builder": "^2.7.2",
134134
"socket.io": "^4.5.4",

pnpm-lock.yaml

Lines changed: 17 additions & 115 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

scripts/services/docker/Dockerfile.git_integration

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -82,6 +82,7 @@ FROM base AS runner
8282
RUN apt-get update && apt-get install -y \
8383
ca-certificates \
8484
git \
85+
ripgrep \
8586
--no-install-recommends \
8687
&& rm -rf /var/lib/apt/lists/* \
8788
&& apt-get clean \

services/apps/git_integration/src/crowdgit/models/maintainer_info.py

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -34,3 +34,6 @@ class MaintainerResult(BaseModel):
3434
maintainer_file: str | None = None
3535
maintainer_info: list[MaintainerInfoItem] | None = None
3636
total_cost: float = 0
37+
candidate_files: list[tuple[str, int]] = []
38+
ai_suggested_file: str | None = None
39+
not_found: bool = False

0 commit comments

Comments
 (0)