Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion .github/workflows/renovate.yml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ jobs:
- name: Checkout
uses: actions/checkout@v4
- name: Self-hosted Renovate
uses: renovatebot/github-action@v43.0.8
uses: renovatebot/github-action@v43.0.14
with:
configurationFile: .github/renovate.json
token: ${{ secrets.RENOVATE_TOKEN }}
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/semantic-release.yml
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ jobs:
- name: setup-node
uses: actions/setup-node@v4
with:
node-version: "22.18.0"
node-version: "22.20.0"

- name: create-archives
run: |
Expand Down
10 changes: 5 additions & 5 deletions infrastructure/rag/Chart.lock
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
dependencies:
- name: langfuse
repository: https://langfuse.github.io/langfuse-k8s
version: 1.5.1
version: 1.5.4
- name: qdrant
repository: https://qdrant.github.io/qdrant-helm
version: 1.15.4
version: 1.15.5
- name: minio
repository: https://charts.bitnami.com/bitnami
version: 15.0.7
Expand All @@ -13,6 +13,6 @@ dependencies:
version: 0.48.0
- name: ollama
repository: https://otwld.github.io/ollama-helm/
version: 1.27.0
digest: sha256:86652599791c7f3ae4e66e6ed4404630d733cf35503c4b94b90da9c3c950c7fb
generated: "2025-10-07T10:23:59.709679+02:00"
version: 1.30.0
digest: sha256:bdcbd61348805d9135cabd97c80cd08e774f479eedcbc686dc851ca55fb4dc4c
generated: "2025-10-10T08:41:01.890585511Z"
6 changes: 3 additions & 3 deletions infrastructure/rag/Chart.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,10 @@ appVersion: "1.0.0"
dependencies:
- name: langfuse
repository: https://langfuse.github.io/langfuse-k8s
version: "1.5.1"
version: "1.5.4"
condition: features.langfuse.enabled
- name: qdrant
version: 1.15.4
version: 1.15.5
repository: "https://qdrant.github.io/qdrant-helm"
condition: features.qdrant.enabled
- name: minio
Expand All @@ -27,6 +27,6 @@ dependencies:
condition: features.keydb.enabled
- name: ollama
alias: ollama
version: 1.27.0
version: 1.30.0
repository: https://otwld.github.io/ollama-helm/
condition: features.ollama.enabled
16 changes: 8 additions & 8 deletions infrastructure/rag/values.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -75,15 +75,15 @@ backend:
image:
repository: ghcr.io/stackitcloud/rag-template/mcp-server
pullPolicy: Always
tag: "v2.2.2"
tag: "v2.3.0"

name: backend
replicaCount: 1

image:
repository: ghcr.io/stackitcloud/rag-template/rag-backend
pullPolicy: Always
tag: "v2.2.2"
tag: "v2.3.0"

command:
- "poetry"
Expand Down Expand Up @@ -229,7 +229,7 @@ frontend:
image:
repository: ghcr.io/stackitcloud/rag-template/frontend
pullPolicy: Always
tag: "v2.2.2"
tag: "v2.3.0"

service:
type: ClusterIP
Expand Down Expand Up @@ -264,7 +264,7 @@ adminBackend:
image:
repository: ghcr.io/stackitcloud/rag-template/admin-backend
pullPolicy: Always
tag: "v2.2.2"
tag: "v2.3.0"

command:
- "poetry"
Expand Down Expand Up @@ -352,7 +352,7 @@ extractor:
image:
repository: ghcr.io/stackitcloud/rag-template/document-extractor
pullPolicy: Always
tag: "v2.2.2"
tag: "v2.3.0"

command:
- "poetry"
Expand Down Expand Up @@ -400,7 +400,7 @@ adminFrontend:
image:
repository: ghcr.io/stackitcloud/rag-template/admin-frontend
pullPolicy: Always
tag: "v2.2.2"
tag: "v2.3.0"

service:
type: ClusterIP
Expand Down Expand Up @@ -489,14 +489,14 @@ langfuse:
web:
image:
repository: langfuse/langfuse
tag: "3.106.3"
tag: "3.115.0"
pullPolicy: Always

# Worker deployment configuration
worker:
image:
repository: langfuse/langfuse-worker
tag: "3.106.3"
tag: "3.115.0"
pullPolicy: Always
port: 3030

Expand Down
2 changes: 1 addition & 1 deletion infrastructure/terraform/main.tf
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ terraform {
required_providers {
stackit = {
source = "stackitcloud/stackit"
version = "~> 0.61.0"
version = "~> 0.67.0"
}
}
}
Expand Down
658 changes: 364 additions & 294 deletions libs/admin-api-lib/poetry.lock

Large diffs are not rendered by default.

8 changes: 4 additions & 4 deletions libs/admin-api-lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ debugpy = "^1.8.14"
pytest = "^8.3.5"
coverage = "^7.8.0"
flake8 = "^7.2.0"
flake8-black = "^0.3.6"
flake8-black = "^0.4.0"
flake8-pyproject = "^1.2.3"
flake8-quotes = "^3.4.0"
flake8-return = "^1.2.0"
Expand All @@ -97,14 +97,14 @@ pytest-asyncio = "^1.0.0"
[tool.poetry.dependencies]
rag-core-lib = {path = "../rag-core-lib"}
python = "^3.13"
uvicorn = "^0.35.0"
fastapi = "^0.116.0"
uvicorn = "^0.37.0"
fastapi = "^0.118.0"
dependency-injector = "^4.46.0"
python-dateutil = "^2.9.0.post0"
tenacity = "9.1.2"
boto3 = "^1.38.10"
tqdm = "^4.67.1"
langfuse = "3.3.4"
langfuse = "3.6.1"
redis = "^6.0.0"
pyyaml = "^6.0.2"
python-multipart = "^0.0.20"
Expand Down
731 changes: 407 additions & 324 deletions libs/extractor-api-lib/poetry.lock

Large diffs are not rendered by default.

10 changes: 5 additions & 5 deletions libs/extractor-api-lib/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -72,8 +72,8 @@ wheel = "^0.45.1"
botocore = "^1.38.10"
fasttext = {git = "https://github.com/cfculhane/fastText", rev = "4a4451337ae6b476b9c584b97776c8c3eb4b27c5"}
pytesseract = "^0.3.10"
fastapi = "^0.116.0"
uvicorn = "^0.35.0"
fastapi = "^0.118.0"
uvicorn = "^0.37.0"
dependency-injector = "^4.46.0"
pydantic-settings = "^2.9.1"
boto3 = "^1.38.10"
Expand All @@ -92,12 +92,12 @@ partial = "^1.0"
pyyaml = "^6.0.2"
numpy = "^2.2.5"
docx2txt = "^0.9"
unstructured = {extras = ["docx", "pptx"], version = "0.18.13"}
unstructured = {extras = ["docx", "pptx"], version = "0.18.15"}
html5lib = "^1.1"
langchain-community = "^0.3.23"
atlassian-python-api = "^4.0.3"
markdownify = "^1.1.0"
langchain-core = "0.3.74"
langchain-core = "0.3.77"
camelot-py = {extras = ["cv"], version = "^1.0.0"}
fake-useragent = "^2.2.0"
pypdfium2 = "4.30.0"
Expand All @@ -109,7 +109,7 @@ pytest = "^8.3.5"
pytest-asyncio = "^0.26.0"
coverage = "^7.8.0"
flake8 = "^7.2.0"
flake8-black = "^0.3.6"
flake8-black = "^0.4.0"
flake8-pyproject = "^1.2.3"
flake8-quotes = "^3.4.0"
flake8-return = "^1.2.0"
Expand Down
84 changes: 50 additions & 34 deletions libs/poetry.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion libs/pyproject.toml
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ build-backend = "poetry.core.masonry.api"
[tool.poetry.dependencies]
python = "^3.13"
flake8 = "^7.2.0"
flake8-black = "^0.3.6"
flake8-black = "^0.4.0"
flake8-pyproject = "^1.2.3"
flake8-quotes = "^3.4.0"
flake8-return = "^1.2.0"
Expand Down
Loading