task_id stringlengths 10 58 | repo stringclasses 854
values | pr_number int32 1 321k | base_sha stringlengths 40 40 | head_sha stringlengths 40 40 | task stringlengths 2 105k | plan listlengths 1 100 | subagents listlengths 1 100 | revisions listlengths 0 100 | final_diff stringlengths 256 202M | num_subtasks int32 1 100 | num_changed_files int32 2 100 |
|---|---|---|---|---|---|---|---|---|---|---|---|
zhayujie/CowAgent#2800 | zhayujie/CowAgent | 2,800 | c322c0e3a54366b684d9d5d4f5302cf055383042 | fb7962c7f285999f6a0f3309d778873505f337e7 | Add Qianfan support to Vision tool
## What changed
- Added Qianfan vision model constants for `ernie-4.5-turbo-vl` and `ernie-4.5-turbo-vl-32k`.
- Added `QianfanBot.call_vision()` using Qianfan's OpenAI-compatible multimodal chat completions API.
- Added Qianfan to the Vision tool's provider auto-discovery and `tool.... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Add Qianfan support to Vision tool",
"scope_files": [
"README.md"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `agent/tools/vision/` needed for: Add Qianfan support to Vision tool",
... | [
{
"subtask_id": "s1",
"scope_files": [
"README.md"
],
"solution_diff": "diff --git a/README.md b/README.md\nindex e6b479ba3c..995488f524 100644\n--- a/README.md\n+++ b/README.md\n@@ -604,11 +604,12 @@ API Key 创建:在 [控制台](https://aistudio.google.com/app/apikey?hl=zh-cn\n ```json\n {\n \"model\... | [] | diff --git a/README.md b/README.md
index e6b479ba3c..995488f524 100644
--- a/README.md
+++ b/README.md
@@ -604,11 +604,12 @@ API Key 创建:在 [控制台](https://aistudio.google.com/app/apikey?hl=zh-cn
```json
{
"model": "ernie-5.0",
- "qianfan_api_key": ""
+ "qianfan_api_key": "",
+ "qianfan_api_base": "https://qianfan.... | 11 | 11 |
zhayujie/CowAgent#2797 | zhayujie/CowAgent | 2,797 | 1065c7e722bb79393bba93637c39d8c451f32edd | fc4f5077b03f8e6967b21d65208f9c94ba9745c9 | feat(translate): add Youdao as a new translation provider
## 简介 / Summary
为 `translate/` 模块新增 **有道翻译 (Youdao)** 提供商。此前 `translate/factory.py`
只支持 `baidu`,对其他翻译类型直接抛 `RuntimeError`。本次改动:
1. 新增 `YoudaoTranslator`,使用有道开放平台 v3 签名规范(SHA-256)。
2. 改进 `create_translator` 的错误信息——会列出当前支持的翻译类型,便于排查
配置错误。
3. 在默认配置中加入... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: feat(translate): add Youdao as a new translation provider",
"scope_files": [
"config.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `tests/` needed for: feat(translate): add Youdao... | [
{
"subtask_id": "s1",
"scope_files": [
"config.py"
],
"solution_diff": "diff --git a/config.py b/config.py\nindex 955e93cd79..5515b324c0 100644\n--- a/config.py\n+++ b/config.py\n@@ -123,10 +123,13 @@\n \"chat_start_time\": \"00:00\", # 服务开始时间\n \"chat_stop_time\": \"24:00\", # 服务结束时... | [] | diff --git a/config.py b/config.py
index 955e93cd79..5515b324c0 100644
--- a/config.py
+++ b/config.py
@@ -123,10 +123,13 @@
"chat_start_time": "00:00", # 服务开始时间
"chat_stop_time": "24:00", # 服务结束时间
# 翻译api
- "translate": "baidu", # 翻译api,支持baidu
+ "translate": "baidu", # 翻译api,支持baidu, youdao
... | 4 | 4 |
zhayujie/CowAgent#2791 | zhayujie/CowAgent | 2,791 | 02bfe308486696427e9a337f0e6a2bb04c9016a1 | 23bfc8d0bab815217b614137f04bf52f44dc7dde | 建议以飞书渠道为核心,打通流式反馈,语音的接收与语音的反馈
### ⚠️ 搜索是否存在类似issue
- [x] 我已经搜索过issues和disscussions,没有发现相似issue
### 总结
建议目前该项目使用一个渠道丰富,这样实现一个相对来说功能完善的渠道,才有可能对标获得与同类项目的相对特色,目前飞书生态有起来的意思,可以借此进行深度绑定
### 举例
_No response_
### 动机
目前我分析了最新飞书渠道的功能如下:
1. 是否支持流程反馈(流式反馈)
结论:目前不支持流式反馈 分析:
飞书渠道的 send 方法([feishu_channel.py:346]采用全量发送模式,AI生成... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: 建议以飞书渠道为核心,打通流式反馈,语音的接收与语音的反馈",
"scope_files": [
"config-template.json"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `channel/feishu/` needed for: 建议以飞书渠道为核心,打通流式反馈,语音的接收与语音的反馈",
... | [
{
"subtask_id": "s1",
"scope_files": [
"config-template.json"
],
"solution_diff": "diff --git a/config-template.json b/config-template.json\nindex 22942793a7..8f6d9f7a98 100644\n--- a/config-template.json\n+++ b/config-template.json\n@@ -24,8 +24,10 @@\n \"linkai_app_code\": \"\",\n \"feis... | [] | diff --git a/channel/feishu/feishu_channel.py b/channel/feishu/feishu_channel.py
index 52db985345..e9be8a3a1e 100644
--- a/channel/feishu/feishu_channel.py
+++ b/channel/feishu/feishu_channel.py
@@ -61,6 +61,10 @@ class FeiShuChanel(ChatChannel):
feishu_app_secret = conf().get('feishu_app_secret')
feishu_toke... | 3 | 4 |
zhayujie/CowAgent#2795 | zhayujie/CowAgent | 2,795 | 02bfe308486696427e9a337f0e6a2bb04c9016a1 | f150d7d83a3beda9990a4b13b24a6c6dd475ad49 | 定时任务结果建议进入接收者会话上下文,方便继续追问
我在看 scheduler 和会话持久化逻辑时注意到一个边界场景,感觉对飞书、QQ、Web 这类主动推送渠道会比较常见。
场景:
1. 用户在某个聊天里创建定时任务,例如每天汇总日报、监控某个事项、定时跑一个 tool/skill。
2. 任务按时执行,并把最终结果主动推送到这个聊天。
3. 用户马上回复:「你刚才那条里提到的第二点展开说说」或「按刚才的结论继续处理」。
期望:
Agent 能把刚刚主动发出的最终结果当成这个聊天的近期上下文,后续追问可以自然接上。
现在的实现里,`agent_task` / `skill_call` 会用 `scheduler_<rec... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `agent/tools/scheduler/` needed for: 定时任务结果建议进入接收者会话上下文,方便继续追问",
"scope_files": [
"agent/tools/scheduler/integration.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `bridge/` needed for: 定时任务结果建议进入接收者会话上... | [
{
"subtask_id": "s1",
"scope_files": [
"agent/tools/scheduler/integration.py"
],
"solution_diff": "diff --git a/agent/tools/scheduler/integration.py b/agent/tools/scheduler/integration.py\nindex 949c9ff338..ac16a46080 100644\n--- a/agent/tools/scheduler/integration.py\n+++ b/agent/tools/schedu... | [] | diff --git a/agent/tools/scheduler/integration.py b/agent/tools/scheduler/integration.py
index 949c9ff338..ac16a46080 100644
--- a/agent/tools/scheduler/integration.py
+++ b/agent/tools/scheduler/integration.py
@@ -84,6 +84,35 @@ def get_scheduler_service():
return _scheduler_service
+def _remember_delivered_o... | 2 | 2 |
zhayujie/CowAgent#2766 | zhayujie/CowAgent | 2,766 | da97e948cad77382ccd96b169827bbf36809cdeb | 90e4d494b231248f2108c249d298bae043ca81bc | feat(web): add multi-session management for web console | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `agent/memory/` needed for: feat(web): add multi-session management for web console",
"scope_files": [
"agent/memory/conversation_store.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `channel/web/` need... | [
{
"subtask_id": "s1",
"scope_files": [
"agent/memory/conversation_store.py"
],
"solution_diff": "diff --git a/agent/memory/conversation_store.py b/agent/memory/conversation_store.py\nindex 4ab0800b80..2462e56361 100644\n--- a/agent/memory/conversation_store.py\n+++ b/agent/memory/conversation_... | [] | diff --git a/agent/memory/conversation_store.py b/agent/memory/conversation_store.py
index 4ab0800b80..2462e56361 100644
--- a/agent/memory/conversation_store.py
+++ b/agent/memory/conversation_store.py
@@ -28,11 +28,13 @@
_DDL = """
CREATE TABLE IF NOT EXISTS sessions (
- session_id TEXT PRIMARY KEY,
- ... | 7 | 8 |
zhayujie/CowAgent#2763 | zhayujie/CowAgent | 2,763 | 070df826f15308d9ee59870cf791e172b0e33f52 | 4f7064575e72f90da6c422867ade974129e30c75 | feat(web): support scheduler push messages and enrich welcome screen
- Expand welcome screen from 3 to 6 example cards covering core capabilities
- Enable background polling on page load so scheduler task notifications are received in real-time
- Fix duplicate poll loops via generation-based cancellation, reduce pol... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `channel/web/` needed for: feat(web): support scheduler push messages and enrich welcome screen",
"scope_files": [
"channel/web/chat.html"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `channel/web/static/... | [
{
"subtask_id": "s1",
"scope_files": [
"channel/web/chat.html"
],
"solution_diff": "diff --git a/channel/web/chat.html b/channel/web/chat.html\nindex 233b681c4d..0083f2a909 100644\n--- a/channel/web/chat.html\n+++ b/channel/web/chat.html\n@@ -264,13 +264,13 @@ <h1 class=\"text-xl font-bold tex... | [] | diff --git a/channel/web/chat.html b/channel/web/chat.html
index 233b681c4d..0083f2a909 100644
--- a/channel/web/chat.html
+++ b/channel/web/chat.html
@@ -264,13 +264,13 @@ <h1 class="text-xl font-bold text-slate-800 dark:text-slate-100">CowAgent</h1>
<!-- Messages -->
<div id=... | 3 | 3 |
zhayujie/CowAgent#2762 | zhayujie/CowAgent | 2,762 | 4dd497fb6d7377818cf0b5559d716add32bfdd45 | fbe48a4b4e621991f0209000d66315a09b20a0d2 | feat(web): add password protection for web console
- Add `web_password` config to enable login authentication
- Use stateless HMAC-signed token (survives restart, invalidates on password change)
- Add `web_session_expire_days` config (default 30 days)
- Protect all API endpoints with auth check (401 on failure)
- ... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: feat(web): add password protection for web console",
"scope_files": [
"README.md",
"config-template.json",
"config.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `chann... | [
{
"subtask_id": "s1",
"scope_files": [
"README.md",
"config-template.json",
"config.py"
],
"solution_diff": "diff --git a/README.md b/README.md\nindex e86b783583..67f9b26ec0 100644\n--- a/README.md\n+++ b/README.md\n@@ -198,11 +198,12 @@ cow install-browser\n \"group_speech_recog... | [] | diff --git a/README.md b/README.md
index e86b783583..67f9b26ec0 100644
--- a/README.md
+++ b/README.md
@@ -198,11 +198,12 @@ cow install-browser
"group_speech_recognition": false, # 是否开启群组语音识别
"voice_reply_voice": false, # 是否使用语音回复语音
"use_linkai": false,... | 11 | 14 |
zhayujie/CowAgent#2761 | zhayujie/CowAgent | 2,761 | 3497f00cb4701fcfcfcee6daf03eced14601ce14 | 5162da5654a0f455d55c907671e64a3d15b3891a | feat: personal knowledge base system
Add a personal knowledge base system that enables the Agent to continuously accumulate and organize structured knowledge beyond session-based memory.
- **Knowledge skill & prompt**: Guide the Agent to autonomously organize valuable information into interlinked Markdown pages und... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: feat: personal knowledge base system",
"scope_files": [
"README.md",
"config-template.json",
"config.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `agent/chat/` needed... | [
{
"subtask_id": "s1",
"scope_files": [
"README.md",
"config-template.json",
"config.py"
],
"solution_diff": "diff --git a/README.md b/README.md\nindex 59609eccd1..c48f6a7219 100644\n--- a/README.md\n+++ b/README.md\n@@ -7,7 +7,7 @@\n [中文] | [<a href=\"docs/en/README.md\">English<... | [] | diff --git a/README.md b/README.md
index 59609eccd1..c48f6a7219 100644
--- a/README.md
+++ b/README.md
@@ -7,7 +7,7 @@
[中文] | [<a href="docs/en/README.md">English</a>] | [<a href="docs/ja/README.md">日本語</a>]
</p>
-**CowAgent** 是基于大模型的超级 AI 助理,能够主动思考和任务规划、操作计算机和外部资源、创造和执行 Skills、拥有长期记忆并不断成长,比 OpenClaw 更轻量和便捷。CowAg... | 33 | 51 |
zhayujie/CowAgent#2759 | zhayujie/CowAgent | 2,759 | 46e80dceeca1446a88492745931d7778bb17f55b | 26693acc3f8d299983bfbb63694ca3fe4b8ba323 | feat(vision): prioritize main model for image recognition
- Add call_vision method to all bot implementations (DashScope, Claude, Gemini, ZhipuAI, MiniMax, Doubao, Moonshot, OpenAICompatibleBot) using each vendor's native multimodal API format
- Remove call_with_tools/call_vision from Bot base class to fix MRO shadow... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `agent/tools/vision/` needed for: feat(vision): prioritize main model for image recognition",
"scope_files": [
"agent/tools/vision/vision.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `bridge/` needed ... | [
{
"subtask_id": "s1",
"scope_files": [
"agent/tools/vision/vision.py"
],
"solution_diff": "diff --git a/agent/tools/vision/vision.py b/agent/tools/vision/vision.py\nindex 3f8ad30893..8a2756c2f5 100644\n--- a/agent/tools/vision/vision.py\n+++ b/agent/tools/vision/vision.py\n@@ -1,7 +1,13 @@\n \... | [] | diff --git a/agent/tools/vision/vision.py b/agent/tools/vision/vision.py
index 3f8ad30893..8a2756c2f5 100644
--- a/agent/tools/vision/vision.py
+++ b/agent/tools/vision/vision.py
@@ -1,7 +1,13 @@
"""
-Vision tool - Analyze images using OpenAI-compatible Vision API.
+Vision tool - Analyze images using Vision API.
Supp... | 15 | 17 |
zhayujie/CowAgent#2756 | zhayujie/CowAgent | 2,756 | 46e80dceeca1446a88492745931d7778bb17f55b | c34308cbd4679110b1be98dfd4825af98552c66e | feat: add MiniMax-M2.7-highspeed model and MiniMax TTS support
## Summary
- **Add `MiniMax-M2.7-highspeed`** model constant to `common/const.py` and `MODEL_LIST` — the faster variant of the flagship M2.7 model
- **Update default model** in `MinimaxBot` from `MiniMax-M2.1` to `MiniMax-M2.7` (aligns with `config-templa... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: feat: add MiniMax-M2.7-highspeed model and MiniMax TTS support",
"scope_files": [
"README.md"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `common/` needed for: feat: add MiniMax-M2.... | [
{
"subtask_id": "s1",
"scope_files": [
"README.md"
],
"solution_diff": "diff --git a/README.md b/README.md\nindex 7478b99d16..59609eccd1 100644\n--- a/README.md\n+++ b/README.md\n@@ -213,6 +213,7 @@ cow install-browser\n + 添加 `\"speech_recognition\": true` 将开启语音识别,默认使用 openai 的 whisper 模型识别为文字... | [] | diff --git a/README.md b/README.md
index 7478b99d16..59609eccd1 100644
--- a/README.md
+++ b/README.md
@@ -213,6 +213,7 @@ cow install-browser
+ 添加 `"speech_recognition": true` 将开启语音识别,默认使用 openai 的 whisper 模型识别为文字,同时以文字回复,该参数仅支持私聊 (注意由于语音消息无法匹配前缀,一旦开启将对所有语音自动回复,支持语音触发画图);
+ 添加 `"group_speech_recognition": true` 将开启群... | 6 | 7 |
zhayujie/CowAgent#2595 | zhayujie/CowAgent | 2,595 | 8e6afa5614d4531b36d0edeb76a6a0a1ab2f50f9 | 8bf1aef8012e58fd1fba0252225cc59d33c0c5cb | feat: add agent plugin and optimize web channel | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: feat: add agent plugin and optimize web channel",
"scope_files": [
".gitignore",
"config-template.json",
"requirements.txt",
"simple_login_form_test.html"
]
},
{
"subtask_id": "s2",
"... | [
{
"subtask_id": "s1",
"scope_files": [
".gitignore",
"config-template.json",
"requirements.txt",
"simple_login_form_test.html"
],
"solution_diff": "diff --git a/.gitignore b/.gitignore\nindex dd4fdeb107..b88dc49a52 100644\n--- a/.gitignore\n+++ b/.gitignore\n@@ -15,6 +15,8 @@... | [] | diff --git a/.gitignore b/.gitignore
index dd4fdeb107..b88dc49a52 100644
--- a/.gitignore
+++ b/.gitignore
@@ -15,6 +15,8 @@ plugins.json
itchat.pkl
*.log
logs/
+workspace
+config.yaml
user_datas.pkl
chatgpt_tool_hub/
plugins/**/
@@ -31,4 +33,5 @@ plugins/banwords/lib/__pycache__
!plugins/role
!plugins/keyword
... | 5 | 14 |
zhayujie/CowAgent#2593 | zhayujie/CowAgent | 2,593 | 628f75009e6b01aedcfbfcc28855a87257657725 | a1ae3804e34ba7e999ae57bd9e9309bc31656430 | feat: web ui channel optimization | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `channel/web/` needed for: feat: web ui channel optimization",
"scope_files": [
"channel/web/chat.html",
"channel/web/web_channel.py"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
"channel/web/chat.html",
"channel/web/web_channel.py"
],
"solution_diff": "diff --git a/channel/web/chat.html b/channel/web/chat.html\nindex 5186a80a2b..1b1111c144 100644\n--- a/channel/web/chat.html\n+++ b/channel/web/chat.html\n@@ -197,27 +197,54 ... | [] | diff --git a/channel/web/chat.html b/channel/web/chat.html
index 5186a80a2b..1b1111c144 100644
--- a/channel/web/chat.html
+++ b/channel/web/chat.html
@@ -197,27 +197,54 @@
}
.user-container {
- width: 100%;
- margin: 0;
- padding: 20px;
- border-bottom: 1... | 1 | 2 |
zhayujie/CowAgent#1675 | zhayujie/CowAgent | 1,675 | eb809055d49efcc2036f7d89088aea7b50097162 | 40a10ee92628d949cd9788028cac3dfcae5d0f90 | feat: channel client | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: feat: channel client",
"scope_files": [
".gitignore",
"app.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `bot/linkai/` needed for: feat: channel client",
"scope_files": ... | [
{
"subtask_id": "s1",
"scope_files": [
".gitignore",
"app.py"
],
"solution_diff": "diff --git a/.gitignore b/.gitignore\nindex 9b3bcdf0fd..560e6151ae 100644\n--- a/.gitignore\n+++ b/.gitignore\n@@ -29,4 +29,5 @@ plugins/banwords/lib/__pycache__\n !plugins/hello\n !plugins/role\n !plugins... | [] | diff --git a/.gitignore b/.gitignore
index 9b3bcdf0fd..560e6151ae 100644
--- a/.gitignore
+++ b/.gitignore
@@ -29,4 +29,5 @@ plugins/banwords/lib/__pycache__
!plugins/hello
!plugins/role
!plugins/keyword
-!plugins/linkai
\ No newline at end of file
+!plugins/linkai
+client_config.json
diff --git a/app.py b/app.py
in... | 6 | 8 |
zhayujie/CowAgent#1598 | zhayujie/CowAgent | 1,598 | 219e9eca4f599d214a52f927880a6d761458eca2 | eca1892e2aa61a63d581f3cc74a9c76f9fb6f51e | feat: support gemini model | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: feat: support gemini model",
"scope_files": [
"config.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `bot/` needed for: feat: support gemini model",
"scope_files": [
"bot... | [
{
"subtask_id": "s1",
"scope_files": [
"config.py"
],
"solution_diff": "diff --git a/config.py b/config.py\nindex 83006999df..bc4d9f793a 100644\n--- a/config.py\n+++ b/config.py\n@@ -73,6 +73,8 @@\n \"qwen_agent_key\": \"\",\n \"qwen_app_id\": \"\",\n \"qwen_node_id\": \"\", # 流程编... | [] | diff --git a/bot/bot_factory.py b/bot/bot_factory.py
index a0edde11df..a103209def 100644
--- a/bot/bot_factory.py
+++ b/bot/bot_factory.py
@@ -47,4 +47,9 @@ def create_bot(bot_type):
elif bot_type == const.QWEN:
from bot.tongyi.tongyi_qwen_bot import TongyiQwenBot
return TongyiQwenBot()
+
+ el... | 7 | 7 |
zhayujie/CowAgent#1553 | zhayujie/CowAgent | 1,553 | 061d8a3a5f87df7cbcd6785774beff32781874b9 | a12507abbd9f110fac787d2cb82cb6e8c4e1de4c | feat: add image chat and fix session discard | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `bot/` needed for: feat: add image chat and fix session discard",
"scope_files": [
"bot/session_manager.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `bot/linkai/` needed for: feat: add image chat and ... | [
{
"subtask_id": "s1",
"scope_files": [
"bot/session_manager.py"
],
"solution_diff": "diff --git a/bot/session_manager.py b/bot/session_manager.py\nindex 8d70886e0d..a6e89f9565 100644\n--- a/bot/session_manager.py\n+++ b/bot/session_manager.py\n@@ -69,7 +69,7 @@ def session_query(self, query, s... | [] | diff --git a/bot/linkai/link_ai_bot.py b/bot/linkai/link_ai_bot.py
index 1dc5df20b9..22f5172daa 100644
--- a/bot/linkai/link_ai_bot.py
+++ b/bot/linkai/link_ai_bot.py
@@ -13,6 +13,9 @@
from common.log import logger
from config import conf, pconf
import threading
+from common import memory, utils
+import base64
+
... | 5 | 9 |
zhayujie/CowAgent#1358 | zhayujie/CowAgent | 1,358 | 176941ea3bdb0be0ede18a04f4e418e8886e5213 | 6b247ae880ac3e1210243f1e4d58bc9de5e431eb | feat: add midjourney variation and reset | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `plugins/linkai/` needed for: feat: add midjourney variation and reset",
"scope_files": [
"plugins/linkai/linkai.py",
"plugins/linkai/midjourney.py"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
"plugins/linkai/linkai.py",
"plugins/linkai/midjourney.py"
],
"solution_diff": "diff --git a/plugins/linkai/linkai.py b/plugins/linkai/linkai.py\nindex 9f21e600e6..a71b3b17bf 100644\n--- a/plugins/linkai/linkai.py\n+++ b/plugins/linkai/linkai.py\n@@... | [] | diff --git a/plugins/linkai/linkai.py b/plugins/linkai/linkai.py
index 9f21e600e6..a71b3b17bf 100644
--- a/plugins/linkai/linkai.py
+++ b/plugins/linkai/linkai.py
@@ -131,7 +131,9 @@ def get_help_text(self, verbose=False, **kwargs):
if not verbose:
return help_text
help_text += f'📖 知识库\n... | 1 | 2 |
zhisheng17/flink-learning#89 | zhisheng17/flink-learning | 89 | 574f0aa1fd4aa45044564e6effcfcb9aac157bea | 0a28a21f5dc2c020f7ef970ce7818ba5935a8b2e | Implement all empty flink-learning-project modules with comprehensive Flink examples
The 7 submodules under `flink-learning-project` were empty stubs (pom.xml only). This PR fills them with production-pattern Flink jobs covering the major APIs and real-world use cases.
### New shared infrastructure (`common`)
- Model... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `flink-learning-datalake/flink-learning-paimon/` needed for: Implement all empty flink-learning-project modules with comprehensive Flink examples",
"scope_files": [
"flink-learning-datalake/flink-learning-paimon/pom.xml"
]
},
{
... | [
{
"subtask_id": "s1",
"scope_files": [
"flink-learning-datalake/flink-learning-paimon/pom.xml"
],
"solution_diff": "diff --git a/flink-learning-datalake/flink-learning-paimon/pom.xml b/flink-learning-datalake/flink-learning-paimon/pom.xml\nindex 831e77dd..89e74917 100644\n--- a/flink-learning-... | [] | diff --git a/flink-learning-datalake/flink-learning-paimon/pom.xml b/flink-learning-datalake/flink-learning-paimon/pom.xml
index 831e77dd..89e74917 100644
--- a/flink-learning-datalake/flink-learning-paimon/pom.xml
+++ b/flink-learning-datalake/flink-learning-paimon/pom.xml
@@ -12,7 +12,5 @@
<artifactId>flink-lear... | 22 | 42 |
zhisheng17/flink-learning#85 | zhisheng17/flink-learning | 85 | 97e2c8eed235972263755582af11e5a59c747669 | b6255fa9fa775aaff80ec96fad300888dcfd3536 | Complete flink-learning-datalake module and resolve merge conflicts with master
The `flink-learning-datalake` module was a skeleton with four empty submodules (no dependencies, no source code). This PR fills them out with connector dependencies and Flink SQL examples, then resolves merge conflicts with master.
### Da... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `flink-learning-datalake/` needed for: Complete flink-learning-datalake module and resolve merge conflicts with master",
"scope_files": [
"flink-learning-datalake/README.md",
"flink-learning-datalake/pom.xml"
]
},
{
"subt... | [
{
"subtask_id": "s1",
"scope_files": [
"flink-learning-datalake/README.md",
"flink-learning-datalake/pom.xml"
],
"solution_diff": "diff --git a/flink-learning-datalake/README.md b/flink-learning-datalake/README.md\nindex 9b3c9b03..576def59 100644\n--- a/flink-learning-datalake/README.md\... | [] | diff --git a/flink-learning-datalake/README.md b/flink-learning-datalake/README.md
index 9b3c9b03..576def59 100644
--- a/flink-learning-datalake/README.md
+++ b/flink-learning-datalake/README.md
@@ -2,13 +2,7 @@
Flink Data Lake 项目里面包含了数据湖四大组件的基础、原理、实战、应用、源码相关内容
-+ [Hudi](https://github.com/apache/hudi)
-+ [Icebe... | 9 | 17 |
zhisheng17/flink-learning#86 | zhisheng17/flink-learning | 86 | a665d745354188984599d866ac30848c232e373f | cb5ee17f048046caac54a6cc95f345107d42de5f | Rename flink-learning-table-store to flink-learning-paimon
Apache Flink Table Store graduated to a top-level Apache project and was renamed to [Apache Paimon](https://paimon.apache.org/). This PR aligns the module naming and dependencies accordingly.
- **Module rename**: `flink-learning-table-store` → `flink-learning... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `flink-learning-datalake/` needed for: Rename flink-learning-table-store to flink-learning-paimon",
"scope_files": [
"flink-learning-datalake/README.md",
"flink-learning-datalake/pom.xml"
]
},
{
"subtask_id": "s2",
"g... | [
{
"subtask_id": "s1",
"scope_files": [
"flink-learning-datalake/README.md",
"flink-learning-datalake/pom.xml"
],
"solution_diff": "diff --git a/flink-learning-datalake/README.md b/flink-learning-datalake/README.md\nindex 4415a1d4..9b3c9b03 100644\n--- a/flink-learning-datalake/README.md\... | [] | diff --git a/flink-learning-datalake/README.md b/flink-learning-datalake/README.md
index 4415a1d4..9b3c9b03 100644
--- a/flink-learning-datalake/README.md
+++ b/flink-learning-datalake/README.md
@@ -8,7 +8,7 @@ Flink Data Lake 项目里面包含了数据湖四大组件的基础、原理、
+ [Delta lake](https://github.com/delta-io/delta)
-+ [Flink Table ... | 3 | 5 |
zhisheng17/flink-learning#84 | zhisheng17/flink-learning | 84 | f065f0635f3bbb9ac79d24ccedb64f5432ca5323 | e78d8fa3b291d60533d2c625d3d3d090baf7d8cc | [WIP] Implement missing modules in flink-learning-cdc
- [x] Explore repository structure and understand coding patterns
- [x] Analyze all 8 CDC submodules (all have pom.xml but no Java source code)
- [x] Update pom.xml files to add flink-table-planner dependency for Table API support
- [x] Implement flink-mysql-cdc: M... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `flink-learning-cdc/flink-db2-cdc/` needed for: [WIP] Implement missing modules in flink-learning-cdc",
"scope_files": [
"flink-learning-cdc/flink-db2-cdc/pom.xml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes u... | [
{
"subtask_id": "s1",
"scope_files": [
"flink-learning-cdc/flink-db2-cdc/pom.xml"
],
"solution_diff": "diff --git a/flink-learning-cdc/flink-db2-cdc/pom.xml b/flink-learning-cdc/flink-db2-cdc/pom.xml\nindex 44bdbfa3..6f5e9a49 100644\n--- a/flink-learning-cdc/flink-db2-cdc/pom.xml\n+++ b/flink-... | [] | diff --git a/flink-learning-cdc/flink-db2-cdc/pom.xml b/flink-learning-cdc/flink-db2-cdc/pom.xml
index 44bdbfa3..6f5e9a49 100644
--- a/flink-learning-cdc/flink-db2-cdc/pom.xml
+++ b/flink-learning-cdc/flink-db2-cdc/pom.xml
@@ -18,5 +18,11 @@
<artifactId>flink-sql-connector-db2-cdc</artifactId>
... | 16 | 16 |
zhisheng17/flink-learning#82 | zhisheng17/flink-learning | 82 | f3e6456c329cca6dfaaf7b99dbee9faf5ae88ef7 | b3c3835623c1d91fbd039b7aa4d84bf4d10dd7f4 | [WIP] Upgrade project dependencies to latest Flink version
- [x] **Phase 1: Root pom.xml** - Update flink.version (1.14.4→1.20.3), scala.binary.version (2.11→2.12), target.java.version (1.8→11), add connector version properties
- [x] **Phase 2: Core module pom.xml** - Fix artifact names (remove scala suffix from flink... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: [WIP] Upgrade project dependencies to latest Flink version",
"scope_files": [
"pom.xml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `flink-learning-basic/flink-learning-libraries/fl... | [
{
"subtask_id": "s1",
"scope_files": [
"pom.xml"
],
"solution_diff": "diff --git a/pom.xml b/pom.xml\nindex a75c219d..3499a942 100644\n--- a/pom.xml\n+++ b/pom.xml\n@@ -27,29 +27,40 @@\n \n <properties>\n <project.build.sourceEncoding>UTF-8</project.build.sourceEncoding>\n- ... | [] | diff --git a/flink-learning-basic/flink-learning-libraries/flink-learning-libraries-cep/pom.xml b/flink-learning-basic/flink-learning-libraries/flink-learning-libraries-cep/pom.xml
index 839a9c4a..36ce425c 100644
--- a/flink-learning-basic/flink-learning-libraries/flink-learning-libraries-cep/pom.xml
+++ b/flink-learni... | 46 | 53 |
zhisheng17/flink-learning#78 | zhisheng17/flink-learning | 78 | 3a1feed640734ce4b49680ef707efc5a8650bee2 | f9679a4fe3a06e4fc347a94a70ea691c71670508 | Bump org.apache.logging.log4j:log4j-core from 2.12.1 to 2.25.3
Bumps org.apache.logging.log4j:log4j-core from 2.12.1 to 2.25.3.
[/` needed for: Bump org.apache.logging.log4j:log4j-core from 2.12.1 to 2.25.3",
"scope_files": [
"pom.xml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `flink-learning-extends/FlinkLogKafkaAppender... | [
{
"subtask_id": "s1",
"scope_files": [
"pom.xml"
],
"solution_diff": "diff --git a/pom.xml b/pom.xml\nindex f1ccca1f..a75c219d 100644\n--- a/pom.xml\n+++ b/pom.xml\n@@ -32,7 +32,7 @@\n <maven.compiler.target>${target.java.version}</maven.compiler.target>\n <flink.version>1.14.4... | [] | diff --git a/flink-learning-extends/FlinkLogKafkaAppender/Log4j2KafkaAppender/pom.xml b/flink-learning-extends/FlinkLogKafkaAppender/Log4j2KafkaAppender/pom.xml
index f54a13a8..80cbfb4f 100644
--- a/flink-learning-extends/FlinkLogKafkaAppender/Log4j2KafkaAppender/pom.xml
+++ b/flink-learning-extends/FlinkLogKafkaAppend... | 2 | 2 |
zhisheng17/flink-learning#18 | zhisheng17/flink-learning | 18 | f58300d7e83c36926c646d1d32015b1467b2f3e1 | eb26f93b4cfb187c2a78d29f04fe8cac58aebf03 | Feature/parse metadata | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `flink-learning-state/src/main/java/com/zhisheng/state/metadata/` needed for: Feature/parse metadata",
"scope_files": [
"flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java"
]
},
{
"subtask_id... | [
{
"subtask_id": "s1",
"scope_files": [
"flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java"
],
"solution_diff": "diff --git a/flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java b/flink-learning-state/src/main/java/com/zhis... | [
{
"subtask_id": "s1",
"comment": "第二步?",
"revised_diff": "diff --git a/flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java b/flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java\nnew file mode 100644\nindex 00000000..1a48d771\n--- /dev... | diff --git a/flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java b/flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java
new file mode 100644
index 00000000..1a48d771
--- /dev/null
+++ b/flink-learning-state/src/main/java/com/zhisheng/state/metadata/Me... | 2 | 2 |
zhisheng17/flink-learning#16 | zhisheng17/flink-learning | 16 | bf5990b6bfe23468e876c840709dc1f0099ab8f5 | 764b31f5da6bbd6c1c73e5d9b9ec0fb4975a87d2 | NewFeature: 使用 LocalKeyBy 的方式解决 Flink 数据倾斜 | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/` needed for: NewFeature: 使用 LocalKeyBy 的方式解决 Flink 数据倾斜",
"scope_files": [
"flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint... | [
{
"subtask_id": "s1",
"scope_files": [
"flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatLocalKeyByExactlyOnce.java"
],
"solution_diff": "diff --git a/flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatLocalKeyByExactlyO... | [] | diff --git a/flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatLocalKeyByExactlyOnce.java b/flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatLocalKeyByExactlyOnce.java
new file mode 100644
index 00000000..1795caee
--- /dev/null
+++ b/flink-learn... | 3 | 3 |
zhisheng17/flink-learning#14 | zhisheng17/flink-learning | 14 | 2090b6684189644f748a1e80e1cf3fd36c2b1353 | 8a6f3244764019b94b71207d5da56c4f2480f8c8 | NewFeature:增加百亿去重相关代码 | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: NewFeature:增加百亿去重相关代码",
"scope_files": [
"pom.xml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `flink-learning-project/flink-learning-project-deduplication/` needed for: NewFeature:... | [
{
"subtask_id": "s1",
"scope_files": [
"pom.xml"
],
"solution_diff": "diff --git a/pom.xml b/pom.xml\nindex aaf3ccff..ca347367 100644\n--- a/pom.xml\n+++ b/pom.xml\n@@ -17,6 +17,7 @@\n <module>flink-learning-sql</module>\n <module>flink-learning-examples</module>\n <mod... | [] | diff --git a/flink-learning-project/flink-learning-project-deduplication/pom.xml b/flink-learning-project/flink-learning-project-deduplication/pom.xml
index 1ab9f660..b7f304ee 100644
--- a/flink-learning-project/flink-learning-project-deduplication/pom.xml
+++ b/flink-learning-project/flink-learning-project-deduplicati... | 5 | 6 |
zhisheng17/flink-learning#13 | zhisheng17/flink-learning | 13 | 788b26333b657b5230dc58e2617d574b8092e293 | be2f8ffff8ee99477669f2abc1e954db48f54cfd | NewFeature: 使用 Redis set、Flink KeyedState、Redis HyperLogLog 三种方式分别计算 UV
NewFeature: 使用 Redis set、Flink KeyedState、Redis HyperLogLog 三种方式分别计算 UV
| [
{
"subtask_id": "s1",
"goal": "Implement the changes under `flink-learning-monitor/` needed for: NewFeature: 使用 Redis set、Flink KeyedState、Redis HyperLogLog 三种方式分别计算 UV",
"scope_files": [
"flink-learning-monitor/pom.xml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes und... | [
{
"subtask_id": "s1",
"scope_files": [
"flink-learning-monitor/pom.xml"
],
"solution_diff": "diff --git a/flink-learning-monitor/pom.xml b/flink-learning-monitor/pom.xml\nindex f2db9aab..d22c5698 100644\n--- a/flink-learning-monitor/pom.xml\n+++ b/flink-learning-monitor/pom.xml\n@@ -16,6 +16,7... | [] | diff --git a/flink-learning-monitor/flink-learning-monitor-pvuv/README.md b/flink-learning-monitor/flink-learning-monitor-pvuv/README.md
new file mode 100644
index 00000000..109d0545
--- /dev/null
+++ b/flink-learning-monitor/flink-learning-monitor-pvuv/README.md
@@ -0,0 +1,1 @@
+## Flink 监控 pv uv
\ No newline at end o... | 5 | 8 |
zhisheng17/flink-learning#10 | zhisheng17/flink-learning | 10 | b33df9a162bd3e9b2373e3d584f5a60689002b18 | c3533edbe7509da4868572d320cc28bcaf71f8ba | NewFeature: 代码来验证 getUnionListState() 和 getListState() 的区别 | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `flink-learning-state/src/main/java/com/zhisheng/state/operator/state/` needed for: NewFeature: 代码来验证 getUnionListState() 和 getListState() 的区别",
"scope_files": [
"flink-learning-state/src/main/java/com/zhisheng/state/operator/state/UnionLi... | [
{
"subtask_id": "s1",
"scope_files": [
"flink-learning-state/src/main/java/com/zhisheng/state/operator/state/UnionListStateExample.java"
],
"solution_diff": "diff --git a/flink-learning-state/src/main/java/com/zhisheng/state/operator/state/UnionListStateExample.java b/flink-learning-state/src/... | [] | diff --git a/flink-learning-state/src/main/java/com/zhisheng/state/operator/state/UnionListStateExample.java b/flink-learning-state/src/main/java/com/zhisheng/state/operator/state/UnionListStateExample.java
new file mode 100644
index 00000000..2f1cbea6
--- /dev/null
+++ b/flink-learning-state/src/main/java/com/zhisheng... | 2 | 2 |
zhisheng17/flink-learning#9 | zhisheng17/flink-learning | 9 | 7b479fb6a464a6db384b2b91af6fc3138e2d0d0d | 76cb2f9b62161683ed272168c47f2fd09b327913 | NewFeature: 利用 ValueState 来维护各app的pv来保障 Exactly Once
增加了利用 ValueState 来维护各app的pv来保障 Exactly Once | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/` needed for: NewFeature: 利用 ValueState 来维护各app的pv来保障 Exactly Once",
"scope_files": [
"flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/... | [
{
"subtask_id": "s1",
"scope_files": [
"flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatExactlyOnce.java"
],
"solution_diff": "diff --git a/flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatExactlyOnce.java b/flink-lea... | [] | diff --git a/flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatExactlyOnce.java b/flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatExactlyOnce.java
new file mode 100644
index 00000000..a0ffb28c
--- /dev/null
+++ b/flink-learning-examples/src/mai... | 2 | 2 |
zio/zio-quill#2996 | zio/zio-quill | 2,996 | 0443030156ed9f2652b87b2d9b12c5686bb059dc | c5200be2aa6d2f1b929abd72dd5da08a013ef2fe | Update scalafmt-core to 3.8.0
## About this PR
📦 Updates [org.scalameta:scalafmt-core](https://github.com/scalameta/scalafmt) from `3.7.17` to `3.8.0`
📜 [GitHub Release Notes](https://github.com/scalameta/scalafmt/releases/tag/v3.8.0) - [Version Diff](https://github.com/scalameta/scalafmt/compare/v3.7.17...v3.8.0)
... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Update scalafmt-core to 3.8.0",
"scope_files": [
".scalafmt.conf",
"build.sbt"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
".scalafmt.conf",
"build.sbt"
],
"solution_diff": "diff --git a/.scalafmt.conf b/.scalafmt.conf\nindex ec325e1c1b..219e0d9ab1 100644\n--- a/.scalafmt.conf\n+++ b/.scalafmt.conf\n@@ -1,4 +1,4 @@\n-version = \"3.7.17\"\n+version = \"3.8.0\"\n maxColum... | [] | diff --git a/.scalafmt.conf b/.scalafmt.conf
index ec325e1c1b..219e0d9ab1 100644
--- a/.scalafmt.conf
+++ b/.scalafmt.conf
@@ -1,4 +1,4 @@
-version = "3.7.17"
+version = "3.8.0"
maxColumn = 240
align.preset = most
align.multiline = false
diff --git a/build.sbt b/build.sbt
index 40ec2b3b90..0189ea9b28 100644
--- a/bu... | 1 | 2 |
zio/zio-quill#2945 | zio/zio-quill | 2,945 | 5f42ebc88a9421f754305eafbf3c421bd217ef1b | e0e46aacf41f576dad4ea0187424346b13b7e684 | Update scalafmt-core to 3.7.15
## About this PR
📦 Updates [org.scalameta:scalafmt-core](https://github.com/scalameta/scalafmt) from `3.7.14` to `3.7.15`
📜 [GitHub Release Notes](https://github.com/scalameta/scalafmt/releases/tag/v3.7.15) - [Version Diff](https://github.com/scalameta/scalafmt/compare/v3.7.14...v3.7.... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Update scalafmt-core to 3.7.15",
"scope_files": [
".scalafmt.conf",
"build.sbt"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
".scalafmt.conf",
"build.sbt"
],
"solution_diff": "diff --git a/.scalafmt.conf b/.scalafmt.conf\nindex 6a1fab78fa..6c9a1e9113 100644\n--- a/.scalafmt.conf\n+++ b/.scalafmt.conf\n@@ -1,4 +1,4 @@\n-version = \"3.7.14\"\n+version = \"3.7.15\"\n maxColu... | [] | diff --git a/.scalafmt.conf b/.scalafmt.conf
index 6a1fab78fa..6c9a1e9113 100644
--- a/.scalafmt.conf
+++ b/.scalafmt.conf
@@ -1,4 +1,4 @@
-version = "3.7.14"
+version = "3.7.15"
maxColumn = 120
align.preset = most
align.multiline = false
diff --git a/build.sbt b/build.sbt
index 712684bd8e..2b05ac3ed7 100644
--- a/b... | 1 | 2 |
zio/zio-quill#2958 | zio/zio-quill | 2,958 | 03051caf060c1cc9bd3be1a87725bf0877ecce30 | c0ff6428a3a81dd94d829eef172884c99d51d47f | Update scalafmt-core to 3.7.17
## About this PR
📦 Updates [org.scalameta:scalafmt-core](https://github.com/scalameta/scalafmt) from `3.7.15` to `3.7.17`
📜 [GitHub Release Notes](https://github.com/scalameta/scalafmt/releases/tag/v3.7.17) - [Version Diff](https://github.com/scalameta/scalafmt/compare/v3.7.15...v3.7.... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Update scalafmt-core to 3.7.17",
"scope_files": [
".scalafmt.conf",
"build.sbt"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
".scalafmt.conf",
"build.sbt"
],
"solution_diff": "diff --git a/.scalafmt.conf b/.scalafmt.conf\nindex 6c9a1e9113..1d5a645010 100644\n--- a/.scalafmt.conf\n+++ b/.scalafmt.conf\n@@ -1,4 +1,4 @@\n-version = \"3.7.15\"\n+version = \"3.7.17\"\n maxColu... | [] | diff --git a/.scalafmt.conf b/.scalafmt.conf
index 6c9a1e9113..1d5a645010 100644
--- a/.scalafmt.conf
+++ b/.scalafmt.conf
@@ -1,4 +1,4 @@
-version = "3.7.15"
+version = "3.7.17"
maxColumn = 120
align.preset = most
align.multiline = false
diff --git a/build.sbt b/build.sbt
index 9ddce87de9..6f045912ea 100644
--- a/b... | 1 | 2 |
zio/zio-quill#3009 | zio/zio-quill | 3,009 | d29658016f8bc558fd6b5db94160497c74af4189 | f319297d360d67935d69134a10d7b32a7c4d72ee | Update scalafmt-core to 3.8.1
## About this PR
📦 Updates [org.scalameta:scalafmt-core](https://github.com/scalameta/scalafmt) from `3.8.0` to `3.8.1`
📜 [GitHub Release Notes](https://github.com/scalameta/scalafmt/releases/tag/v3.8.1) - [Version Diff](https://github.com/scalameta/scalafmt/compare/v3.8.0...v3.8.1)
#... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Update scalafmt-core to 3.8.1",
"scope_files": [
".scalafmt.conf",
"build.sbt"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
".scalafmt.conf",
"build.sbt"
],
"solution_diff": "diff --git a/.scalafmt.conf b/.scalafmt.conf\nindex 219e0d9ab1..31d8dbb3e2 100644\n--- a/.scalafmt.conf\n+++ b/.scalafmt.conf\n@@ -1,4 +1,4 @@\n-version = \"3.8.0\"\n+version = \"3.8.1\"\n maxColumn... | [] | diff --git a/.scalafmt.conf b/.scalafmt.conf
index 219e0d9ab1..31d8dbb3e2 100644
--- a/.scalafmt.conf
+++ b/.scalafmt.conf
@@ -1,4 +1,4 @@
-version = "3.8.0"
+version = "3.8.1"
maxColumn = 240
align.preset = most
align.multiline = false
diff --git a/build.sbt b/build.sbt
index 8a475f1a30..81496a4851 100644
--- a/bui... | 1 | 2 |
zio/zio-quill#2989 | zio/zio-quill | 2,989 | 5660d64e4215495e07c7b90a6ef431b760916f4b | 71ad5dbc4524cd64e1445468fccc50acb1b045b4 | Update zio-logging to 2.2.2
## About this PR
📦 Updates [dev.zio:zio-logging](https://github.com/zio/zio-logging) from `2.1.17` to `2.2.2`
📜 [GitHub Release Notes](https://github.com/zio/zio-logging/releases/tag/v2.2.2) - [Version Diff](https://github.com/zio/zio-logging/compare/v2.1.17...v2.2.2)
## Usage
✅ **Pleas... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Update zio-logging to 2.2.2",
"scope_files": [
"build.sbt"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `quill-core/src/main/scala/io/getquill/util/` needed for: Update zio-logging t... | [
{
"subtask_id": "s1",
"scope_files": [
"build.sbt"
],
"solution_diff": "diff --git a/build.sbt b/build.sbt\nindex f00816e81e..98c746e046 100644\n--- a/build.sbt\n+++ b/build.sbt\n@@ -219,7 +219,7 @@ lazy val `quill-core` =\n .settings(\n libraryDependencies ++= Seq(\n \"com.t... | [] | diff --git a/build.sbt b/build.sbt
index f00816e81e..98c746e046 100644
--- a/build.sbt
+++ b/build.sbt
@@ -219,7 +219,7 @@ lazy val `quill-core` =
.settings(
libraryDependencies ++= Seq(
"com.typesafe" % "config" % "1.4.3",
- "dev.zio" %% "zio-logging... | 3 | 3 |
zio/zio-quill#3269 | zio/zio-quill | 3,269 | 9c263c2665b5efb30f23d5160dea8a55537192e3 | 621aba372194692359277000a4e81038853d3bbe | Add default array en/decoder support to the H2 JdbcContext
Add default array en/decoder support to the H2 JdbcContext
### Problem
H2 supports array type
### Solution
Add the same default array en/decoder support as for Postgres
### Notes
Additional notes.
### Checklist
- [x] Unit test all chang... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `quill-jdbc-test-h2/src/test/scala/io/getquill/context/jdbc/h2/` needed for: Add default array en/decoder support to the H2 JdbcContext",
"scope_files": [
"quill-jdbc-test-h2/src/test/scala/io/getquill/context/jdbc/h2/ArrayJdbcEncodingSpec... | [
{
"subtask_id": "s1",
"scope_files": [
"quill-jdbc-test-h2/src/test/scala/io/getquill/context/jdbc/h2/ArrayJdbcEncodingSpec.scala"
],
"solution_diff": "diff --git a/quill-jdbc-test-h2/src/test/scala/io/getquill/context/jdbc/h2/ArrayJdbcEncodingSpec.scala b/quill-jdbc-test-h2/src/test/scala/io/... | [] | diff --git a/quill-jdbc/src/main/scala/io/getquill/context/jdbc/SimplifiedContexts.scala b/quill-jdbc/src/main/scala/io/getquill/context/jdbc/SimplifiedContexts.scala
index ce134ac148..cfbda6aec3 100644
--- a/quill-jdbc/src/main/scala/io/getquill/context/jdbc/SimplifiedContexts.scala
+++ b/quill-jdbc/src/main/scala/io/... | 3 | 3 |
zio/zio#10986 | zio/zio | 10,986 | 4e27adfe4c07a9ce827865460d3abafb582d708a | c931b50817dc5fc74c913f6390840ce6fe06b4eb | Enhance documentation with improved keywords and navigation sections (Part One)
This pull request enhances the ZIO documentation by adding structured metadata (descriptions and keywords) to many documentation files, improving SEO and discoverability. It also introduces "See Also" sections across several docs, providin... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Enhance documentation with improved keywords and navigation sections (Part One)",
"scope_files": [
".gitignore"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `docs/` needed for: Enhan... | [
{
"subtask_id": "s1",
"scope_files": [
".gitignore"
],
"solution_diff": "diff --git a/.gitignore b/.gitignore\nindex 7d76aa070fc4..966dc6253a45 100644\n--- a/.gitignore\n+++ b/.gitignore\n@@ -38,3 +38,4 @@ website/yarn-error.log\n website/ecosystem-sidebar.js\n .bsp/\n .vscode\n+docs/.crossref... | [] | diff --git a/.gitignore b/.gitignore
index 7d76aa070fc4..966dc6253a45 100644
--- a/.gitignore
+++ b/.gitignore
@@ -38,3 +38,4 @@ website/yarn-error.log
website/ecosystem-sidebar.js
.bsp/
.vscode
+docs/.crossref-state/state.json
diff --git a/docs/canfail.md b/docs/canfail.md
index 8195363682fc..c8b2463dd484 100644
--... | 34 | 94 |
zio/zio#10984 | zio/zio | 10,984 | 45b68c1197edadd2ba44316103c7a6a74327d3ab | 5aa6d9ad13951a486ee21f6ffc9391e30ae6bc5e | build(deps): bump actions/checkout from 6.0.2 to 6.0.3
Bumps [actions/checkout](https://github.com/actions/checkout) from 6.0.2 to 6.0.3.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v6.0... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/workflows/` needed for: build(deps): bump actions/checkout from 6.0.2 to 6.0.3",
"scope_files": [
".github/workflows/auto-approve.yml",
".github/workflows/ci.yml"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
".github/workflows/auto-approve.yml",
".github/workflows/ci.yml"
],
"solution_diff": "diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml\nindex cf3f726301ae..f4dffeed7880 100644\n--- a/.github/workflows/auto-approve... | [] | diff --git a/.github/workflows/auto-approve.yml b/.github/workflows/auto-approve.yml
index cf3f726301ae..f4dffeed7880 100644
--- a/.github/workflows/auto-approve.yml
+++ b/.github/workflows/auto-approve.yml
@@ -8,7 +8,7 @@ jobs:
if: github.actor == 'renovate[bot]'
steps:
- name: Git Checkout
- u... | 1 | 2 |
zio/zio#10977 | zio/zio | 10,977 | f2443f3f5ce81e2bfa102beba538a3e3538a6786 | 22c9492331e26130dd75dbcea516017116fcb647 | Kafka tutorial moved to the zio-kafka docs
This version of the zio-kafka tutorial is not up to date. Remove the tutorial and point to its new home in the zio-kafka docs with a redirect.
Replaces #10961. | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `docs/guides/` needed for: Kafka tutorial moved to the zio-kafka docs",
"scope_files": [
"docs/guides/index.md"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `docs/guides/tutorials/` needed for: Kafka tuto... | [
{
"subtask_id": "s1",
"scope_files": [
"docs/guides/index.md"
],
"solution_diff": "diff --git a/docs/guides/index.md b/docs/guides/index.md\nindex e7cbff1657e9..b60464e0f1b3 100644\n--- a/docs/guides/index.md\n+++ b/docs/guides/index.md\n@@ -24,7 +24,7 @@ The following guides have been written... | [] | diff --git a/docs/guides/index.md b/docs/guides/index.md
index e7cbff1657e9..b60464e0f1b3 100644
--- a/docs/guides/index.md
+++ b/docs/guides/index.md
@@ -24,7 +24,7 @@ The following guides have been written to help you get started with ZIO with min
7. [How to Build a RESTful Web Service](tutorials/build-a-restful-web... | 3 | 4 |
zio/zio#10973 | zio/zio | 10,973 | 6a3cd77acf58bcd690f83c71d02c4148d72c5d01 | 447c4e03f41bf107478d1236886d63b3e2e77e55 | docs: Add docusaurus-plugin-copy-page-button for page sharing
## Summary
Installs and configures the `docusaurus-plugin-copy-page-button` plugin to enhance documentation sharing capabilities. Adds a dropdown menu button on all documentation pages.
## Features
The plugin adds a dropdown menu with the following optio... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `website/` needed for: docs: Add docusaurus-plugin-copy-page-button for page sharing",
"scope_files": [
"website/docusaurus.config.js",
"website/package.json"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
"website/docusaurus.config.js",
"website/package.json"
],
"solution_diff": "diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js\nindex b93471a96514..0ba9f20cee0c 100644\n--- a/website/docusaurus.config.js\n+++ b/website/docusaur... | [] | diff --git a/website/docusaurus.config.js b/website/docusaurus.config.js
index b93471a96514..0ba9f20cee0c 100644
--- a/website/docusaurus.config.js
+++ b/website/docusaurus.config.js
@@ -319,6 +319,12 @@ const config = {
preserveDirectoryStructure: false,
}),
],
+ [
+ 'docusaurus-plugin-cop... | 1 | 2 |
zio/zio#10971 | zio/zio | 10,971 | d8ee52ed0a1846efef3b63b50bb7de49809f4218 | 58ff6e4174f18715a95dacb8b8fb9aab3b1ce0bf | docs: Add zio-knowledge skill section to homepage and getting-started guide
## Summary
Adds a prominent section to the zio.dev homepage teaching users about the `zio-knowledge` Claude Code skill, which allows coding agents to fetch live ZIO documentation instead of relying on stale training data.
### Changes
- Create... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `docs/overview/` needed for: docs: Add zio-knowledge skill section to homepage and getting-started guide",
"scope_files": [
"docs/overview/index.md"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `website/s... | [
{
"subtask_id": "s1",
"scope_files": [
"docs/overview/index.md"
],
"solution_diff": "diff --git a/docs/overview/index.md b/docs/overview/index.md\nindex ee2985bd8ba2..4397e5509077 100644\n--- a/docs/overview/index.md\n+++ b/docs/overview/index.md\n@@ -5,6 +5,16 @@ sidebar_label: \"Getting Star... | [] | diff --git a/docs/overview/index.md b/docs/overview/index.md
index ee2985bd8ba2..4397e5509077 100644
--- a/docs/overview/index.md
+++ b/docs/overview/index.md
@@ -5,6 +5,16 @@ sidebar_label: "Getting Started"
slug: "getting-started"
---
+## Teach Your Coding Agent Latest ZIO Knowledge
+
+The `zio-knowledge` skill t... | 4 | 5 |
zio/zio#10948 | zio/zio | 10,948 | 82dcda71d1de2ef535a7dfbd88e5dfed24f13c8d | fc191884d4e81113d7cf6b3b5816099854adb369 | docs: Update publishToNpm to use npm Trusted Publishing with OIDC
## Summary
Updates the contribution guide documentation to reflect the current best practice for publishing npm packages using npm Trusted Publishing with OpenID Connect (OIDC) instead of token-based authentication.
## Changes
- Replaced NPM_TOKEN se... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `docs/` needed for: docs: Update publishToNpm to use npm Trusted Publishing with OIDC",
"scope_files": [
"docs/contributing-to-zio-ecosystem-projects.md"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `webs... | [
{
"subtask_id": "s1",
"scope_files": [
"docs/contributing-to-zio-ecosystem-projects.md"
],
"solution_diff": "diff --git a/docs/contributing-to-zio-ecosystem-projects.md b/docs/contributing-to-zio-ecosystem-projects.md\nindex 26594f52816d..f3ebc4448199 100644\n--- a/docs/contributing-to-zio-eco... | [] | diff --git a/docs/contributing-to-zio-ecosystem-projects.md b/docs/contributing-to-zio-ecosystem-projects.md
index 26594f52816d..f3ebc4448199 100644
--- a/docs/contributing-to-zio-ecosystem-projects.md
+++ b/docs/contributing-to-zio-ecosystem-projects.md
@@ -279,6 +279,10 @@ To achieve this, the only thing that needs t... | 2 | 2 |
zio/zio#10693 | zio/zio | 10,693 | e0ef9652842cf2db43a896320e192a2077069c74 | f3ea89e87ac66b705dbb32c7bf5228ac87468992 | `ZIO.memoize` interrupts awaiting fibers
Hi. We have discovered the behavior of `ZIO.memoize` that may lead to an error: interrupting of running memoize can lead to interruptions of awaiting fibers. The code that reproduces the behavior:
```scala
//> using scala 2.13.18
//> using dep "dev.zio::zio:2.1.24"
import z... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core-tests/shared/src/test/scala/zio/` needed for: `ZIO.memoize` interrupts awaiting fibers",
"scope_files": [
"core-tests/shared/src/test/scala/zio/ZIOSpec.scala"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes ... | [
{
"subtask_id": "s1",
"scope_files": [
"core-tests/shared/src/test/scala/zio/ZIOSpec.scala"
],
"solution_diff": "diff --git a/core-tests/shared/src/test/scala/zio/ZIOSpec.scala b/core-tests/shared/src/test/scala/zio/ZIOSpec.scala\nindex 72f01e762221..c7a13a93424f 100644\n--- a/core-tests/share... | [
{
"subtask_id": "s2",
"comment": "You can avoid several iterations of the run loop in the 'missing' map case via `ZIO.fiberIdWith` and initializing the promise unsafely.",
"revised_diff": "diff --git a/core/shared/src/main/scala/zio/ZIO.scala b/core/shared/src/main/scala/zio/ZIO.scala\nindex ddd5389fb65... | diff --git a/core/shared/src/main/scala/zio/ZIO.scala b/core/shared/src/main/scala/zio/ZIO.scala
index ddd5389fb65a..aba44c5deb6c 100644
--- a/core/shared/src/main/scala/zio/ZIO.scala
+++ b/core/shared/src/main/scala/zio/ZIO.scala
@@ -23,6 +23,7 @@ import zio.stacktracer.TracingImplicits.disableAutoTrace
import java... | 2 | 2 |
zio/zio#10843 | zio/zio | 10,843 | 53e03283c7d9cd8b34bb43581b3d2733d142b290 | 8c896cad90bb1440a8b98963d92981a9ca22f68c | fix(test): assertTrue on Java static method calls (Scala 3)
`assertTrue(java.lang.Math.abs(-1) == 1)` failed at runtime with `NoClassDefFoundError: java/lang/Math$`. For a Java-static qualifier, Scala 3 synthesizes a fake module symbol with no real `MODULE$` field; the SmartAssert macro's default arrow-composition pat... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `test-tests/shared/src/test/scala-3/zio/test/` needed for: fix(test): assertTrue on Java static method calls (Scala 3)",
"scope_files": [
"test-tests/shared/src/test/scala-3/zio/test/SmartAssertionScala3Spec.scala"
]
},
{
"subt... | [
{
"subtask_id": "s1",
"scope_files": [
"test-tests/shared/src/test/scala-3/zio/test/SmartAssertionScala3Spec.scala"
],
"solution_diff": "diff --git a/test-tests/shared/src/test/scala-3/zio/test/SmartAssertionScala3Spec.scala b/test-tests/shared/src/test/scala-3/zio/test/SmartAssertionScala3Spe... | [] |
diff --git a/test-tests/shared/src/test/scala-3/zio/test/SmartAssertionScala3Spec.scala b/test-tests/shared/src/test/scala-3/zio/test/SmartAssertionScala3Spec.scala
index 609eaedb1402..f16f9f1bc884 100644
--- a/test-tests/shared/src/test/scala-3/zio/test/SmartAssertionScala3Spec.scala
+++ b/test-tests/shared/src/test/... | 2 | 2 |
zio/zio#10760 | zio/zio | 10,760 | 88c819fcb8ab71c43252d3926db7105bdbbf233f | d55a894454321701d1a9ac60a2ba1644e20b12e7 | Possible memory leak after 2.1.23
Hey community!
Recently we faced an issue at $work where a ZIO app was dying due to out of memory. It was strange because we barely touch this app, it has Scala Steward enabled and most of the releases are are automated and contain just version bumps.
I can't tell which ZIO version ... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `streams-tests/shared/src/test/scala/zio/stream/` needed for: Possible memory leak after 2.1.23",
"scope_files": [
"streams-tests/shared/src/test/scala/zio/stream/ZStreamSpec.scala"
]
},
{
"subtask_id": "s2",
"goal": "Imple... | [
{
"subtask_id": "s1",
"scope_files": [
"streams-tests/shared/src/test/scala/zio/stream/ZStreamSpec.scala"
],
"solution_diff": "diff --git a/streams-tests/shared/src/test/scala/zio/stream/ZStreamSpec.scala b/streams-tests/shared/src/test/scala/zio/stream/ZStreamSpec.scala\nindex eb7d780861b0..7... | [
{
"subtask_id": "s2",
"comment": "I actually wonder if we should execute `closeLastSubstream` here...",
"revised_diff": "diff --git a/streams/shared/src/main/scala/zio/stream/internal/ChannelExecutor.scala b/streams/shared/src/main/scala/zio/stream/internal/ChannelExecutor.scala\nindex 5447780463b8..1c6... | diff --git a/streams/shared/src/main/scala/zio/stream/internal/ChannelExecutor.scala b/streams/shared/src/main/scala/zio/stream/internal/ChannelExecutor.scala
index 5447780463b8..1c6a90634b55 100644
--- a/streams/shared/src/main/scala/zio/stream/internal/ChannelExecutor.scala
+++ b/streams/shared/src/main/scala/zio/str... | 2 | 2 |
zxing/zxing#2089 | zxing/zxing | 2,089 | 6dc847efc12c2aa0a8c803a0ecd5c93c6e31f170 | 7900f4db671e7479f19cb0ddeb3f65749dc0eaae | guard truncated symbol in rss expanded AI01AndOtherAIs decoder
- `AI01AndOtherAIs.parseInformation` reads the fixed 48-bit compressed GTIN without first checking the symbol is long enough, unlike the sibling AI decoders which all validate size up front
- a short RSS Expanded symbol whose second bit is set selects this... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/oned/rss/expanded/decoders/` needed for: guard truncated symbol in rss expanded AI01AndOtherAIs decoder",
"scope_files": [
"core/src/main/java/com/google/zxing/oned/rss/expanded/decoders/AI01AndOtherAIs... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/oned/rss/expanded/decoders/AI01AndOtherAIs.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/oned/rss/expanded/decoders/AI01AndOtherAIs.java b/core/src/main/java/com/google/zxing/oned/rss/expa... | [] | diff --git a/core/src/main/java/com/google/zxing/oned/rss/expanded/decoders/AI01AndOtherAIs.java b/core/src/main/java/com/google/zxing/oned/rss/expanded/decoders/AI01AndOtherAIs.java
index 27222a382e..a3e5db65d0 100644
--- a/core/src/main/java/com/google/zxing/oned/rss/expanded/decoders/AI01AndOtherAIs.java
+++ b/core/... | 2 | 2 |
zxing/zxing#2088 | zxing/zxing | 2,088 | 297c6b296e2c9a202bf39513c7d688f8c65a00f0 | 58fd5d8180cbf8c9badcedf071176349539693b4 | guard unterminated AI in ExpandedProductResultParser
treat an unterminated AI (no closing ')') as no match in findAIvalue, otherwise the (ai)value loop in parse advances past the end of the text and findValue calls substring out of range, throwing StringIndexOutOfBoundsException out of ResultParser.parseResult instead... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/client/result/` needed for: guard unterminated AI in ExpandedProductResultParser",
"scope_files": [
"core/src/main/java/com/google/zxing/client/result/ExpandedProductResultParser.java"
]
},
{
... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/client/result/ExpandedProductResultParser.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/client/result/ExpandedProductResultParser.java b/core/src/main/java/com/google/zxing/client/result/E... | [] | diff --git a/core/src/main/java/com/google/zxing/client/result/ExpandedProductResultParser.java b/core/src/main/java/com/google/zxing/client/result/ExpandedProductResultParser.java
index c021587585..cd6d8e8bf8 100644
--- a/core/src/main/java/com/google/zxing/client/result/ExpandedProductResultParser.java
+++ b/core/src... | 2 | 2 |
zxing/zxing#2086 | zxing/zxing | 2,086 | 39e24ff4734e415d4a5995795c9e1017856b6d58 | 51200b7de34c6be858bb57798438a5debf65b95c | guard trailing shift char in code39 decodeExtended
code39 extended mode reads one past the decoded text on a trailing escape char:
- decodeExtended does charAt(i + 1) for '+' '$' '%' '/' without checking a next char exists
- all four are valid code39 characters, so a symbol can end on one and throw StringIndexOutOfBou... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/oned/` needed for: guard trailing shift char in code39 decodeExtended",
"scope_files": [
"core/src/main/java/com/google/zxing/oned/Code39Reader.java"
]
},
{
"subtask_id": "s2",
"goal": "... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/oned/Code39Reader.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/oned/Code39Reader.java b/core/src/main/java/com/google/zxing/oned/Code39Reader.java\nindex 35dfb7a7fd..ecaf8dcd78 100644\n--... | [] | diff --git a/core/src/main/java/com/google/zxing/oned/Code39Reader.java b/core/src/main/java/com/google/zxing/oned/Code39Reader.java
index 35dfb7a7fd..ecaf8dcd78 100644
--- a/core/src/main/java/com/google/zxing/oned/Code39Reader.java
+++ b/core/src/main/java/com/google/zxing/oned/Code39Reader.java
@@ -275,6 +275,9 @@ p... | 2 | 2 |
zxing/zxing#2085 | zxing/zxing | 2,085 | 39e24ff4734e415d4a5995795c9e1017856b6d58 | aa34787482335ee506a7e1d66ab147fd45b507c8 | avoid out-of-bounds reads after control codewords in pdf417 parser
Several spots in the pdf417 parser read the codeword right after a control codeword without checking another one is there:
- decode: the byte value after a 913 mode shift, and the charset value after a 927 ECI
- textCompaction: same 913 and 927 cases
-... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/pdf417/decoder/` needed for: avoid out-of-bounds reads after control codewords in pdf417 parser",
"scope_files": [
"core/src/main/java/com/google/zxing/pdf417/decoder/DecodedBitStreamParser.java"
]
... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/pdf417/decoder/DecodedBitStreamParser.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/pdf417/decoder/DecodedBitStreamParser.java b/core/src/main/java/com/google/zxing/pdf417/decoder/DecodedB... | [
{
"subtask_id": "s1",
"comment": "I wonder if this should just be checked once, after line 108? why are these branches special? it seems like almost any branch would go on to deference codewords[codeIndex] next somehow",
"revised_diff": "diff --git a/core/src/main/java/com/google/zxing/pdf417/decoder/De... | diff --git a/core/src/main/java/com/google/zxing/pdf417/decoder/DecodedBitStreamParser.java b/core/src/main/java/com/google/zxing/pdf417/decoder/DecodedBitStreamParser.java
index 49a1412a54..f0778e9b63 100644
--- a/core/src/main/java/com/google/zxing/pdf417/decoder/DecodedBitStreamParser.java
+++ b/core/src/main/java/c... | 2 | 2 |
zxing/zxing#2084 | zxing/zxing | 2,084 | ddd4765ae4897b8b1bae32e6cd859bd6b6e681f6 | d171b82c54551b8684babf1be6c1df1b1d4bba4f | guard base256 length read in datamatrix decodeBase256Segment
In decodeBase256Segment a length codeword d1 of 250 or more signals a multi-byte length, so the code reads a second byte with bits.readBits(8) at DecodedBitStreamParser.java:533 without first checking one is available. A symbol that latches to Base 256 and e... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/datamatrix/decoder/` needed for: guard base256 length read in datamatrix decodeBase256Segment",
"scope_files": [
"core/src/main/java/com/google/zxing/datamatrix/decoder/DecodedBitStreamParser.java"
... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/datamatrix/decoder/DecodedBitStreamParser.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/datamatrix/decoder/DecodedBitStreamParser.java b/core/src/main/java/com/google/zxing/datamatrix/deco... | [] | diff --git a/core/src/main/java/com/google/zxing/datamatrix/decoder/DecodedBitStreamParser.java b/core/src/main/java/com/google/zxing/datamatrix/decoder/DecodedBitStreamParser.java
index e6a717240a..6d370b51f6 100644
--- a/core/src/main/java/com/google/zxing/datamatrix/decoder/DecodedBitStreamParser.java
+++ b/core/src... | 2 | 2 |
zxing/zxing#2077 | zxing/zxing | 2,077 | 62a33ca7a328907dee602798043692ff1f83b0c0 | c1ff3345388ec273242bbad5e038000b17c292da | QR encoding can trigger Android StrictMode disk reads via charset lookup
### Summary
Encoding a QR code with ZXing `core` can trigger Android `StrictMode` disk-read violations during charset / ECI initialization. This is not a QR correctness problem, but it is surprising for Android callers because a normal in-proces... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/common/` needed for: QR encoding can trigger Android StrictMode disk reads via charset lookup",
"scope_files": [
"core/src/main/java/com/google/zxing/common/CharacterSetECI.java"
]
},
{
"sub... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/common/CharacterSetECI.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/common/CharacterSetECI.java b/core/src/main/java/com/google/zxing/common/CharacterSetECI.java\nindex 6ea51f1e60..ae89e9... | [
{
"subtask_id": "s1",
"comment": "This feels complex. Maybe the enum class can have a field like \"standardCharset\" which is null by default, but can be given a reference to a StandardCharsets object in the constructor if applicable. Then return that here instead of calling forName(), if it exists.",
"... | diff --git a/core/src/main/java/com/google/zxing/common/CharacterSetECI.java b/core/src/main/java/com/google/zxing/common/CharacterSetECI.java
index 6ea51f1e60..ae89e9bd19 100644
--- a/core/src/main/java/com/google/zxing/common/CharacterSetECI.java
+++ b/core/src/main/java/com/google/zxing/common/CharacterSetECI.java
@... | 3 | 3 |
zxing/zxing#2061 | zxing/zxing | 2,061 | 3007faae3a91e98765305dd00cfd080887c41997 | dea964a4dc6c9e2f9f291e824a8ae4409986b51a | Unable to parse a QR code that was generated from ZXing itself after 110ef9e
In response to #1567, ZXing added 110ef9e. However, this has caused ZXing to fail to decode images that it itself has created. I have attached a minimal repro below. The problem may lie in `FinderPatternFinder::find`, as it seems to believe t... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/qrcode/detector/` needed for: Unable to parse a QR code that was generated from ZXing itself after 110ef9e",
"scope_files": [
"core/src/main/java/com/google/zxing/qrcode/detector/FinderPatternFinder.jav... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/qrcode/detector/FinderPatternFinder.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/qrcode/detector/FinderPatternFinder.java b/core/src/main/java/com/google/zxing/qrcode/detector/FinderPatte... | [] | diff --git a/core/src/main/java/com/google/zxing/qrcode/detector/FinderPatternFinder.java b/core/src/main/java/com/google/zxing/qrcode/detector/FinderPatternFinder.java
index 951bd197fc..2eeef5c8d7 100755
--- a/core/src/main/java/com/google/zxing/qrcode/detector/FinderPatternFinder.java
+++ b/core/src/main/java/com/goo... | 4 | 4 |
zxing/zxing#2066 | zxing/zxing | 2,066 | bf77cd238d849a5602958e687cae56e6876de0c9 | c1b4cd2f4e0b39a5f512009412b25db4873c8a14 | Add Aztec reader initialization support
This PR adds support for decoding "reader initialization" Aztec Code symbols. Without this change, these symbols result in a FormatException, because during decoding it looks like the layer count and data count aren't compatible. | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/` needed for: Add Aztec reader initialization support",
"scope_files": [
"core/src/main/java/com/google/zxing/ResultMetadataType.java"
]
},
{
"subtask_id": "s2",
"goal": "Implement the c... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/ResultMetadataType.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/ResultMetadataType.java b/core/src/main/java/com/google/zxing/ResultMetadataType.java\nindex 3fa2a864d9..06c231ae43 100644\... | [] | diff --git a/core/src/main/java/com/google/zxing/ResultMetadataType.java b/core/src/main/java/com/google/zxing/ResultMetadataType.java
index 3fa2a864d9..06c231ae43 100644
--- a/core/src/main/java/com/google/zxing/ResultMetadataType.java
+++ b/core/src/main/java/com/google/zxing/ResultMetadataType.java
@@ -94,6 +94,13 @... | 6 | 13 |
zxing/zxing#2069 | zxing/zxing | 2,069 | 577a919b8bdc975b52f72a3c1d3f18eaf9b2e65d | db204c608d9bcf23e6ef3e6c1d098c827e8cb957 | Add reader initialization support for Data Matrix and PDF417
This PR adds support for reader initialization to both Data Matrix and PDF417. They both needed a change to `DecoderResult`, so I decided to include them both here.
Per the Data Matrix spec, Data Matrix symbols are interpreted as reader initialization sym... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/common/` needed for: Add reader initialization support for Data Matrix and PDF417",
"scope_files": [
"core/src/main/java/com/google/zxing/common/DecoderResult.java"
]
},
{
"subtask_id": "s2"... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/common/DecoderResult.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/common/DecoderResult.java b/core/src/main/java/com/google/zxing/common/DecoderResult.java\nindex db2e7e0149..7996bc54c1 1... | [] | diff --git a/core/src/main/java/com/google/zxing/common/DecoderResult.java b/core/src/main/java/com/google/zxing/common/DecoderResult.java
index db2e7e0149..7996bc54c1 100644
--- a/core/src/main/java/com/google/zxing/common/DecoderResult.java
+++ b/core/src/main/java/com/google/zxing/common/DecoderResult.java
@@ -35,6 ... | 9 | 15 |
zxing/zxing#2068 | zxing/zxing | 2,068 | 494ed8dc7d143556bb6a3407db40ee768fb02e9b | bcca8202aa950049214b02e7e646c7b158f91778 | Add Code 128 reader initialization support
Adds reader initialization support to Code 128.
Per the spec, the presence of FNC3 anywhere in the symbol indicates that the symbol is a reader initialization symbol. | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/oned/` needed for: Add Code 128 reader initialization support",
"scope_files": [
"core/src/main/java/com/google/zxing/oned/Code128Reader.java"
]
},
{
"subtask_id": "s2",
"goal": "Impleme... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/oned/Code128Reader.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/oned/Code128Reader.java b/core/src/main/java/com/google/zxing/oned/Code128Reader.java\nindex a6322a395a..48703ca9f4 100644\... | [] | diff --git a/core/src/main/java/com/google/zxing/oned/Code128Reader.java b/core/src/main/java/com/google/zxing/oned/Code128Reader.java
index a6322a395a..48703ca9f4 100644
--- a/core/src/main/java/com/google/zxing/oned/Code128Reader.java
+++ b/core/src/main/java/com/google/zxing/oned/Code128Reader.java
@@ -240,6 +240,7 ... | 3 | 7 |
zxing/zxing#2022 | zxing/zxing | 2,022 | 802cc06562649ade69fafe562d2d8a70f9bd0864 | 328cdb13e47c531c263f19d9bf474d404b1de6cf | Bump actions/checkout from 5 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v6.0.0</h2>
<h2>What's Changed</h... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/workflows/` needed for: Bump actions/checkout from 5 to 6",
"scope_files": [
".github/workflows/codeql-analysis.yml",
".github/workflows/test_java_17.yml",
".github/workflows/test_java_21.yml",
".github/workflows... | [
{
"subtask_id": "s1",
"scope_files": [
".github/workflows/codeql-analysis.yml",
".github/workflows/test_java_17.yml",
".github/workflows/test_java_21.yml",
".github/workflows/test_java_8.yml"
],
"solution_diff": "diff --git a/.github/workflows/codeql-analysis.yml b/.github/wo... | [] | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index 0bc6ce476f..f228191c35 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -36,7 +36,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v5
+... | 1 | 4 |
zxing/zxing#2014 | zxing/zxing | 2,014 | 45b3a16e812cb08cd66d25b3bb4767f92b0833b3 | 08d3ffeca18433368cb7acab15ffb6f12061e45c | Loosen ITF max variance for 3x module widths
ITF can use 2x or 3x wide bars, and it is natural for the 3x bars to have larger variances than the 2x wide bars. This change takes this into account, so that fewer 3x ITF symbols are rejected. | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/oned/` needed for: Loosen ITF max variance for 3x module widths",
"scope_files": [
"core/src/main/java/com/google/zxing/oned/ITFReader.java"
]
},
{
"subtask_id": "s2",
"goal": "Implement... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/oned/ITFReader.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/oned/ITFReader.java b/core/src/main/java/com/google/zxing/oned/ITFReader.java\nindex a4e6ec318c..3f990b9c00 100644\n--- a/core/... | [] | diff --git a/core/src/main/java/com/google/zxing/oned/ITFReader.java b/core/src/main/java/com/google/zxing/oned/ITFReader.java
index a4e6ec318c..3f990b9c00 100644
--- a/core/src/main/java/com/google/zxing/oned/ITFReader.java
+++ b/core/src/main/java/com/google/zxing/oned/ITFReader.java
@@ -46,11 +46,12 @@
public final... | 3 | 4 |
zxing/zxing#1801 | zxing/zxing | 1,801 | 2326dd4ff3adb9cd7ecd0d2937e37b4babe0a1fe | 8e20b8c60e85482d38a719fc10e845f7e5b665ec | Promote renderResult method to public
This small commit makes public the "`renderResult`" method of the "`QRCodeWriter`" class.
The reason to promote this method as public is that I'm facing business case where, besides of generating the QR code as a PNG image, I also need to print information about the QR code its... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/qrcode/` needed for: Promote renderResult method to public",
"scope_files": [
"core/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java"
]
},
{
"subtask_id": "s2",
"goal": "Implement... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java b/core/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java\nindex ce7ee0736b..58c1eb11ca 1006... | [
{
"subtask_id": "s2",
"comment": "Oh, this fails style checks. Just `expectedSize`",
"revised_diff": "diff --git a/core/src/test/java/com/google/zxing/qrcode/QRCodeWriterTestCase.java b/core/src/test/java/com/google/zxing/qrcode/QRCodeWriterTestCase.java\nindex c16d2957c8..0b82430ffe 100644\n--- a/core/... | diff --git a/core/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java b/core/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java
index ce7ee0736b..58c1eb11ca 100644
--- a/core/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java
+++ b/core/src/main/java/com/google/zxing/qrcode/QRCodeWriter.java
@@ -79,9 +79,... | 2 | 2 |
zxing/zxing#1878 | zxing/zxing | 1,878 | e750aca9e53d80eb7c2d7ffc3ccdb4e7cf6a7aca | 434763d029094765b2000cd67b3b521dc9d62b5a | pdf417 encode error java.lang.ArrayIndexOutOfBoundsException when using CHARACTER_SET ISO-8859-15
Hello,
I encountered an error while attempting to create a PDF417 barcode with character set ISO-8859-15. Here's the relevant code snippet:
```java
String content = "€ 123,45";
Map<EncodeHintType, Object> hints = ... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/pdf417/encoder/` needed for: pdf417 encode error java.lang.ArrayIndexOutOfBoundsException when using CHARACTER_SET ISO-8859-15",
"scope_files": [
"core/src/main/java/com/google/zxing/pdf417/encoder/PDF4... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/pdf417/encoder/PDF417HighLevelEncoder.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417HighLevelEncoder.java b/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417Hi... | [
{
"subtask_id": "s1",
"comment": "The logic looks OK; minor request though: everywhere in the change, follow a comma with a space for consistency",
"revised_diff": "diff --git a/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417HighLevelEncoder.java b/core/src/main/java/com/google/zxing/pdf417/en... | diff --git a/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417HighLevelEncoder.java b/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417HighLevelEncoder.java
index 564d7c968c..8ac202b9db 100644
--- a/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417HighLevelEncoder.java
+++ b/core/src/main/java/c... | 2 | 2 |
zxing/zxing#2013 | zxing/zxing | 2,013 | 2b1499246b11415889e4a02d65023b86201a0610 | 669d0c7c26b79b5e6d233ba5b817d4c85cda355d | Add GrayscaleLuminanceSource
Adds a new class `GrayscaleLuminanceSource`, which is like `RGBLuminanceSource`, but is for grayscale pixel data instead of ARGB pixel data.
`RGBLuminanceSource` was already converting RGB data to grayscale data in the constructor, and then operating exclusively on grayscale data intern... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/` needed for: Add GrayscaleLuminanceSource",
"scope_files": [
"core/src/main/java/com/google/zxing/GrayscaleLuminanceSource.java",
"core/src/main/java/com/google/zxing/RGBLuminanceSource.java"
... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/GrayscaleLuminanceSource.java",
"core/src/main/java/com/google/zxing/RGBLuminanceSource.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/GrayscaleLuminanceSource.java b/core/src/main/ja... | [] | diff --git a/core/src/main/java/com/google/zxing/GrayscaleLuminanceSource.java b/core/src/main/java/com/google/zxing/GrayscaleLuminanceSource.java
new file mode 100644
index 0000000000..7941bad815
--- /dev/null
+++ b/core/src/main/java/com/google/zxing/GrayscaleLuminanceSource.java
@@ -0,0 +1,144 @@
+/*
+ * Copyright 2... | 2 | 3 |
zxing/zxing#2012 | zxing/zxing | 2,012 | 71b49acc53d311efc570a22cfdd694ba3dd95bc3 | 76360dfbc798f1e53d68134657e5f78db42ce334 | Add 90-degree rotation support to RGBLuminanceSource
Adds support for 90-degree rotation to `RGBLuminanceSource`, so that `OneDReader` can try harder, if asked to.
Does not add support for 45-degree rotation to `RGBLuminanceSource` (this type of rotation doesn't seem to be used anywhere). | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/` needed for: Add 90-degree rotation support to RGBLuminanceSource",
"scope_files": [
"core/src/main/java/com/google/zxing/RGBLuminanceSource.java"
]
},
{
"subtask_id": "s2",
"goal": "Im... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/RGBLuminanceSource.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/RGBLuminanceSource.java b/core/src/main/java/com/google/zxing/RGBLuminanceSource.java\nindex 3950ce8b81..4915f7f611 100644\... | [] | diff --git a/core/src/main/java/com/google/zxing/RGBLuminanceSource.java b/core/src/main/java/com/google/zxing/RGBLuminanceSource.java
index 3950ce8b81..4915f7f611 100644
--- a/core/src/main/java/com/google/zxing/RGBLuminanceSource.java
+++ b/core/src/main/java/com/google/zxing/RGBLuminanceSource.java
@@ -18,7 +18,7 @@... | 2 | 2 |
zxing/zxing#1961 | zxing/zxing | 1,961 | 90f503e0c255f55b2838c882a55fb754af15c315 | c78ee07d2867e4c4102d8734bafa73542c9371ab | Add input validation for pixel array length in RGBLuminanceSource to avoid ArrayIndexOutOfBoundsException
**Problem**:
The constructor of RGBLuminanceSource does not validate the length of the pixels array. If the array is shorter than [width * height], it throws an ArrayIndexOutOfBoundsException during initializatio... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/` needed for: Add input validation for pixel array length in RGBLuminanceSource to avoid ArrayIndexOutOfBoundsException",
"scope_files": [
"core/src/main/java/com/google/zxing/RGBLuminanceSource.java"
... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/RGBLuminanceSource.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/RGBLuminanceSource.java b/core/src/main/java/com/google/zxing/RGBLuminanceSource.java\nindex 3950ce8b81..7e201620fd 100644\... | [] | diff --git a/core/src/main/java/com/google/zxing/RGBLuminanceSource.java b/core/src/main/java/com/google/zxing/RGBLuminanceSource.java
index 3950ce8b81..7e201620fd 100644
--- a/core/src/main/java/com/google/zxing/RGBLuminanceSource.java
+++ b/core/src/main/java/com/google/zxing/RGBLuminanceSource.java
@@ -44,6 +44,9 @@... | 2 | 2 |
zxing/zxing#1879 | zxing/zxing | 1,879 | 3b189fc700c9c7c210f4b78fc66b01f4c13ae5d2 | f5ad4b5a50e4212ce3d55e7aa9af76a506851350 | Fixing issue #1831
- [x] fix issue #1831
- [x] make PDF417#determineDimensions static to enable finer UT
- [x] add UT coverage to validate fix for #1831 | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `core/src/main/java/com/google/zxing/pdf417/encoder/` needed for: Fixing issue #1831",
"scope_files": [
"core/src/main/java/com/google/zxing/pdf417/encoder/PDF417.java"
]
},
{
"subtask_id": "s2",
"goal": "Implement the chan... | [
{
"subtask_id": "s1",
"scope_files": [
"core/src/main/java/com/google/zxing/pdf417/encoder/PDF417.java"
],
"solution_diff": "diff --git a/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417.java b/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417.java\nindex a9d63dc232..3402bb3d1... | [] | diff --git a/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417.java b/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417.java
index a9d63dc232..3402bb3d1e 100644
--- a/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417.java
+++ b/core/src/main/java/com/google/zxing/pdf417/encoder/PDF417.java
@@ -6... | 2 | 2 |
zxing/zxing#1973 | zxing/zxing | 1,973 | f1500100fed5fd775861ccee55cebb461931e3ed | a97a6a35ca42e75b3892d1bb0102e48284f80a90 | Bump actions/checkout from 4 to 5
[//]: # (dependabot-start)
⚠️ **Dependabot is rebasing this PR** ⚠️
Rebasing might not happen immediately, so don't worry if this takes some time.
Note: if you make any changes to this PR yourself, they will take precedence over the rebase.
---
[//]: # (dependabot-end)
Bumps [a... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/workflows/` needed for: Bump actions/checkout from 4 to 5",
"scope_files": [
".github/workflows/codeql-analysis.yml",
".github/workflows/test_java_17.yml",
".github/workflows/test_java_21.yml",
".github/workflows... | [
{
"subtask_id": "s1",
"scope_files": [
".github/workflows/codeql-analysis.yml",
".github/workflows/test_java_17.yml",
".github/workflows/test_java_21.yml",
".github/workflows/test_java_8.yml"
],
"solution_diff": "diff --git a/.github/workflows/codeql-analysis.yml b/.github/wo... | [] | diff --git a/.github/workflows/codeql-analysis.yml b/.github/workflows/codeql-analysis.yml
index e94d571b1c..a7f5d321fc 100644
--- a/.github/workflows/codeql-analysis.yml
+++ b/.github/workflows/codeql-analysis.yml
@@ -36,7 +36,7 @@ jobs:
steps:
- name: Checkout repository
- uses: actions/checkout@v4
+... | 1 | 4 |
zylon-ai/private-gpt#2266 | zylon-ai/private-gpt | 2,266 | cfa12bb4c8d77290391d61c2d54051c8cc9d589b | 2e5beca89cd65234e5219f7362f3461ad656c14b | fix: ensure that the publisher is ready to publish new messages
# Description
When you run a celery worker, the callback messages were lost since the thread was closed. This PR ensure that the thread remains alive until it's deleted.
## Type of Change
Please delete options that are not relevant.
- [X] Bug ... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: fix: ensure that the publisher is ready to publish new messages",
"scope_files": [
"Dockerfile"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `private_gpt/` needed for: fix: ensure th... | [
{
"subtask_id": "s1",
"scope_files": [
"Dockerfile"
],
"solution_diff": "diff --git a/Dockerfile b/Dockerfile\nindex 22926587e..a225d2699 100644\n--- a/Dockerfile\n+++ b/Dockerfile\n@@ -17,12 +17,10 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \\\n ENABLE_WEB_SCRAPING=0; ... | [
{
"subtask_id": "s3",
"comment": "Avoid creating the BrokerInstanceRegistry at import time using settings(); it captures whatever global injector/settings happen to exist at import, which can ignore later injector overrides (e.g., tests or runtime reconfiguration) and forces early global injector initializa... | diff --git a/Dockerfile b/Dockerfile
index 22926587e..a225d2699 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -17,12 +17,10 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
ENABLE_WEB_SCRAPING=0; \
ENABLE_DATABASE=0; \
for extra in $EXTRAS; do \
- case "$extra" in \
- core|inges... | 4 | 5 |
zylon-ai/private-gpt#2268 | zylon-ai/private-gpt | 2,268 | cfa12bb4c8d77290391d61c2d54051c8cc9d589b | 18ba9848ad6414f8921697f7b5cfc769ec6fadf1 | chore(deps): bump astral-sh/setup-uv from 8.1.0 to 8.2.0
Bumps [astral-sh/setup-uv](https://github.com/astral-sh/setup-uv) from 8.1.0 to 8.2.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/astral-sh/setup-uv/releases">astral-sh/setup-uv's releases</a>.</em></p>
<blockquote... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/workflows/` needed for: chore(deps): bump astral-sh/setup-uv from 8.1.0 to 8.2.0",
"scope_files": [
".github/workflows/generate-release.yml",
".github/workflows/update-claude-specs.yml"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
".github/workflows/generate-release.yml",
".github/workflows/update-claude-specs.yml"
],
"solution_diff": "diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml\nindex 0ee0f85cb..83359afc0 100644\n--- a/.github... | [] | diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml
index 0ee0f85cb..83359afc0 100644
--- a/.github/workflows/generate-release.yml
+++ b/.github/workflows/generate-release.yml
@@ -30,7 +30,7 @@ jobs:
uses: actions/checkout@v6
- name: Install UV and set Python v... | 1 | 2 |
zylon-ai/private-gpt#2267 | zylon-ai/private-gpt | 2,267 | cfa12bb4c8d77290391d61c2d54051c8cc9d589b | acbbd7719894cee90b4eb75994dff1f02aa7c0ce | fix: use PGPT_HOME for local data, caches, and cleanup paths
# Description
Store local data, caches, and databases under `PGPT_HOME` instead of the current working or executable directory, so running `private-gpt` from other locations uses a consistent user-scoped storage location. This also aligns `make test`, `make... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: fix: use PGPT_HOME for local data, caches, and cleanup paths",
"scope_files": [
"Dockerfile",
"Makefile"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `fern/docs/pages/api-guide... | [
{
"subtask_id": "s1",
"scope_files": [
"Dockerfile",
"Makefile"
],
"solution_diff": "diff --git a/Dockerfile b/Dockerfile\nindex 22926587e..9c98baf9e 100644\n--- a/Dockerfile\n+++ b/Dockerfile\n@@ -122,7 +122,8 @@ ARG PGPT_DOWNLOAD_PLAYWRIGHT\n \n COPY pyproject.toml uv.lock ./\n \n-ENV ... | [
{
"subtask_id": "s5",
"comment": "`resolve_data_path()` treats only paths starting with \"/\" or \"~\" as absolute. This will mis-handle valid absolute paths on Windows (e.g. `C:\\...` or UNC `\\\\server\\share\\...`) by incorrectly prefixing them with `PGPT_HOME`.",
"revised_diff": "diff --git a/privat... | diff --git a/Dockerfile b/Dockerfile
index 22926587e..9c98baf9e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -122,7 +122,8 @@ ARG PGPT_DOWNLOAD_PLAYWRIGHT
COPY pyproject.toml uv.lock ./
-ENV HF_HOME=local_data
+ENV PGPT_HOME=/home/worker/app
+ENV HF_HOME=/home/worker/app/local_data
ENV PLAYWRIGHT_BROWSERS_PATH=/ho... | 9 | 14 |
zylon-ai/private-gpt#2262 | zylon-ai/private-gpt | 2,262 | 7595d25a4c9d71befe04882c93272efa19ebf97a | e6998e18004a29748f5848ecd4b86cfa0fd5980f | chore(deps): update Claude specs and anthropic SDK
Automated update of:
- `OPENAPI_SPEC_URL` in `tests/models/anthropic/test_openapi_schema.py` — fetched from [`anthropic-sdk-typescript/.stats.yml`](https://raw.githubusercontent.com/anthropics/anthropic-sdk-typescript/main/.stats.yml)
- `anthropic` minimum version... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: chore(deps): update Claude specs and anthropic SDK",
"scope_files": [
"pyproject.toml",
"uv.lock"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `tests/models/anthropic/` needed ... | [
{
"subtask_id": "s1",
"scope_files": [
"pyproject.toml",
"uv.lock"
],
"solution_diff": "diff --git a/pyproject.toml b/pyproject.toml\nindex 5423cccfc..7420cc709 100644\n--- a/pyproject.toml\n+++ b/pyproject.toml\n@@ -50,7 +50,7 @@ llm-mistral = [\n ]\n llm-anthropic = [\n \"langchain... | [] | diff --git a/pyproject.toml b/pyproject.toml
index 5423cccfc..7420cc709 100644
--- a/pyproject.toml
+++ b/pyproject.toml
@@ -50,7 +50,7 @@ llm-mistral = [
]
llm-anthropic = [
"langchain-anthropic>=1.4.3",
- "anthropic>=0.105.2",
+ "anthropic>=0.107.1",
]
# ----------------------------------------------... | 2 | 3 |
zylon-ai/private-gpt#2264 | zylon-ai/private-gpt | 2,264 | c120a90603f78bb28b19f758a9ba4b40c37480ff | a1e0db2e9a6fa0d5b931403b3d87c21bac6991e3 | fix: add missing docker database deps
# Description
In the current version, we are not installing database deps.
## Type of Change
Please delete options that are not relevant.
- [X] Bug fix (non-breaking change which fixes an issue)
- [ ] New feature (non-breaking change which adds functionality)
- [ ] B... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: fix: add missing docker database deps",
"scope_files": [
"Dockerfile",
"settings.yaml"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
"Dockerfile",
"settings.yaml"
],
"solution_diff": "diff --git a/Dockerfile b/Dockerfile\nindex 855c91d59..22926587e 100644\n--- a/Dockerfile\n+++ b/Dockerfile\n@@ -18,10 +18,10 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \\\n ... | [
{
"subtask_id": "s1",
"comment": "The current `case` patterns make `core` and `tools` match earlier branches and stop, so they won't consistently enable all expected flags (e.g., `tools` enables web scraping but not database; `core` only enables documents). This likely prevents database OS deps from being i... | diff --git a/Dockerfile b/Dockerfile
index 855c91d59..22926587e 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -18,10 +18,10 @@ RUN --mount=type=cache,target=/var/cache/apt,sharing=locked \
ENABLE_DATABASE=0; \
for extra in $EXTRAS; do \
case "$extra" in \
- ingest|ingest-core|ingest-documents|inge... | 1 | 2 |
zylon-ai/private-gpt#2261 | zylon-ai/private-gpt | 2,261 | 7595d25a4c9d71befe04882c93272efa19ebf97a | 3c5f34a74b3bdd42acf78cc68acfb022962d1d8f | [QUESTION]: Ollama embedding error
### Question
Hello,
Thank you for updating PrivateGPT! I installed the update with the Local with uv option. I created Model configuration. I tried to upload documents. I got an error. Unsure if I have the settings correctly. Would you be so kind as to provide config for ollama spec... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `private_gpt/components/embedding/factories/` needed for: [QUESTION]: Ollama embedding error",
"scope_files": [
"private_gpt/components/embedding/factories/openailike.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the ch... | [
{
"subtask_id": "s1",
"scope_files": [
"private_gpt/components/embedding/factories/openailike.py"
],
"solution_diff": "diff --git a/private_gpt/components/embedding/factories/openailike.py b/private_gpt/components/embedding/factories/openailike.py\nindex 4c812f0ea..0e745c92d 100644\n--- a/priv... | [] | diff --git a/private_gpt/components/embedding/factories/openailike.py b/private_gpt/components/embedding/factories/openailike.py
index 4c812f0ea..0e745c92d 100644
--- a/private_gpt/components/embedding/factories/openailike.py
+++ b/private_gpt/components/embedding/factories/openailike.py
@@ -27,7 +27,11 @@ def _create_... | 2 | 2 |
zylon-ai/private-gpt#2231 | zylon-ai/private-gpt | 2,231 | c438ba183f7e7528321f28b97a08922bba811c4d | 099e23faee5c5a79220137e5de637e4933818061 | chore(main): release 1.0.0
:robot: I have created a release *beep* *boop*
---
## [1.0.0](https://github.com/zylon-ai/private-gpt/compare/v0.6.2...v1.0.0) (2026-06-03)
### ⚠ BREAKING CHANGES
* PrivateGPT revamp v1 ([#2230](https://github.com/zylon-ai/private-gpt/issues/2230))
### Features
* add markdown table re... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: chore(main): release 1.0.0",
"scope_files": [
"CHANGELOG.md",
"pyproject.toml",
"uv.lock",
"version.txt"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `.github/relea... | [
{
"subtask_id": "s1",
"scope_files": [
"CHANGELOG.md",
"pyproject.toml",
"uv.lock",
"version.txt"
],
"solution_diff": "diff --git a/CHANGELOG.md b/CHANGELOG.md\nindex 946ccd192..4f3aa4117 100644\n--- a/CHANGELOG.md\n+++ b/CHANGELOG.md\n@@ -1,5 +1,37 @@\n # Changelog\n \n+## [... | [] | diff --git a/.github/release_please/.release-please-manifest.json b/.github/release_please/.release-please-manifest.json
index e3778b2c1..fea345409 100644
--- a/.github/release_please/.release-please-manifest.json
+++ b/.github/release_please/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.6.2"
+ ".": "1.0... | 3 | 6 |
zylon-ai/private-gpt#2233 | zylon-ai/private-gpt | 2,233 | 183cd038570d7e3138e9286463c74b7c7fc50a2a | 9e3dcce41015575a1bc57cce678659cdb74c0aa5 | chore: main README update
# Description
README content update | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: chore: main README update",
"scope_files": [
"README.md"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `fern/docs/assets/` needed for: chore: main README update",
"scope_files": [... | [
{
"subtask_id": "s1",
"scope_files": [
"README.md"
],
"solution_diff": "diff --git a/README.md b/README.md\nindex 4242a760f..cd4ddf95e 100644\n--- a/README.md\n+++ b/README.md\n@@ -1,135 +1,161 @@\n-# PrivateGPT\n+\n \n-<a href=\"https:/... | [] | diff --git a/README.md b/README.md
index 4242a760f..cd4ddf95e 100644
--- a/README.md
+++ b/README.md
@@ -1,135 +1,161 @@
-# PrivateGPT
+
-<a href="https://trendshift.io/repositories/8691" target="_blank"><img src="https://trendshift.io/api/badge/repositories/86... | 4 | 12 |
zylon-ai/private-gpt#2258 | zylon-ai/private-gpt | 2,258 | 80ff34b4230db2804b0d4f0249773af84dfc7866 | e421b3d6fbe62416ed370d9a0059efd47aed082c | style(ui): update favicon | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `ui/` needed for: style(ui): update favicon",
"scope_files": [
"ui/favicon.ico",
"ui/index.html"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
"ui/favicon.ico",
"ui/index.html"
],
"solution_diff": "diff --git a/ui/favicon.ico b/ui/favicon.ico\nnew file mode 100644\nindex 000000000..ab220adb2\nBinary files /dev/null and b/ui/favicon.ico differ\ndiff --git a/ui/index.html b/ui/index.html\nin... | [] | diff --git a/ui/favicon.ico b/ui/favicon.ico
new file mode 100644
index 000000000..ab220adb2
Binary files /dev/null and b/ui/favicon.ico differ
diff --git a/ui/index.html b/ui/index.html
index 1a467496a..14d22dd50 100644
--- a/ui/index.html
+++ b/ui/index.html
@@ -3,8 +3,7 @@
<head>
<meta charset="utf-8" />
<met... | 1 | 2 |
zylon-ai/private-gpt#2257 | zylon-ai/private-gpt | 2,257 | 80ff34b4230db2804b0d4f0249773af84dfc7866 | 3d6c6a73dcba03758a06f2b6353499b774d01e54 | fix: citation/thinking prompts | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `private_gpt/components/prompts/` needed for: fix: citation/thinking prompts",
"scope_files": [
"private_gpt/components/prompts/prompt_builder.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `private_gpt... | [
{
"subtask_id": "s1",
"scope_files": [
"private_gpt/components/prompts/prompt_builder.py"
],
"solution_diff": "diff --git a/private_gpt/components/prompts/prompt_builder.py b/private_gpt/components/prompts/prompt_builder.py\nindex 7ca4bca23..f76658894 100644\n--- a/private_gpt/components/promp... | [
{
"subtask_id": "s4",
"comment": "_get_citation_guidelines_content caches the rendered citation guidelines in a `@singleton` interceptor, but the rendered content now depends on the per-request `documents`. This can cause cross-request leakage of citation identifiers (and incorrect citation instructions) be... | diff --git a/private_gpt/components/prompts/prompt_builder.py b/private_gpt/components/prompts/prompt_builder.py
index 7ca4bca23..f76658894 100644
--- a/private_gpt/components/prompts/prompt_builder.py
+++ b/private_gpt/components/prompts/prompt_builder.py
@@ -87,31 +87,6 @@ def create_context_prompt(
)
... | 5 | 5 |
zylon-ai/private-gpt#2256 | zylon-ai/private-gpt | 2,256 | f2e668595123426834e8c055d7ad4b8b8a0a77a9 | 2d8864d4888d463f4bd1cd77a9b72f1596e198f0 | docs: add required libraries | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `fern/docs/pages/getting-started/` needed for: docs: add required libraries",
"scope_files": [
"fern/docs/pages/getting-started/quickstart.mdx"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `fern/docs/page... | [
{
"subtask_id": "s1",
"scope_files": [
"fern/docs/pages/getting-started/quickstart.mdx"
],
"solution_diff": "diff --git a/fern/docs/pages/getting-started/quickstart.mdx b/fern/docs/pages/getting-started/quickstart.mdx\nindex 8c8369627..1d8ada252 100644\n--- a/fern/docs/pages/getting-started/qu... | [
{
"subtask_id": "s2",
"comment": "This sentence implies *all* listed Python drivers require OS-level database client libraries, but at least some of the drivers in the table (e.g., `asyncpg`, `pymysql`) do not. Reword to avoid overstatement.",
"revised_diff": "diff --git a/fern/docs/pages/tools/database... | diff --git a/fern/docs/pages/getting-started/quickstart.mdx b/fern/docs/pages/getting-started/quickstart.mdx
index 8c8369627..1d8ada252 100644
--- a/fern/docs/pages/getting-started/quickstart.mdx
+++ b/fern/docs/pages/getting-started/quickstart.mdx
@@ -12,17 +12,6 @@ PrivateGPT connects to any OpenAI-compatible LLM ser... | 2 | 2 |
zylon-ai/private-gpt#2254 | zylon-ai/private-gpt | 2,254 | d257fbf22879fbdb32187a775b872db65e61a587 | 0b9495824cf99ae71ffe60156a3c15c468373222 | feat: change logo app | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `ui/` needed for: feat: change logo app",
"scope_files": [
"ui/index.html"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `ui/references/` needed for: feat: change logo app",
"scope_files": [
"ui/... | [
{
"subtask_id": "s1",
"scope_files": [
"ui/index.html"
],
"solution_diff": "diff --git a/ui/index.html b/ui/index.html\nindex 38544e737..a614d2db2 100644\n--- a/ui/index.html\n+++ b/ui/index.html\n@@ -276,23 +276,27 @@\n display: flex;\n flex-direction: column;\n align-items:... | [
{
"subtask_id": "s1",
"comment": "`brandLogo`'s accessible name is hard-coded to \"PrivateGPT\" via the `<img>` `alt`, but the UI supports a configurable `appearance.brandName` (used for `document.title` and `#brandNameText`). When users change the brand name, assistive tech will still announce \"PrivateGPT... | diff --git a/ui/index.html b/ui/index.html
index 38544e737..a614d2db2 100644
--- a/ui/index.html
+++ b/ui/index.html
@@ -276,23 +276,27 @@
display: flex;
flex-direction: column;
align-items: flex-start;
- gap: 8px;
margin: 0 10px 24px;
}
- .logo svg {
+ .logo img {
d... | 2 | 3 |
zylon-ai/private-gpt#2251 | zylon-ai/private-gpt | 2,251 | 64b25ef43bf9b12b2857fca7d0b67adef4b041c5 | e2cfa3201c120f64c68de82079a397a1b7aa611d | chore(deps): bump actions/upload-artifact from 4 to 7
Bumps [actions/upload-artifact](https://github.com/actions/upload-artifact) from 4 to 7.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/upload-artifact/releases">actions/upload-artifact's releases</a>.</em></p>
<b... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/workflows/` needed for: chore(deps): bump actions/upload-artifact from 4 to 7",
"scope_files": [
".github/workflows/generate-release.yml",
".github/workflows/tests.yml",
".github/workflows/update-claude-specs.yml"
... | [
{
"subtask_id": "s1",
"scope_files": [
".github/workflows/generate-release.yml",
".github/workflows/tests.yml",
".github/workflows/update-claude-specs.yml"
],
"solution_diff": "diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml\nindex ba520... | [] | diff --git a/.github/workflows/actions/install_dependencies/action.yml b/.github/workflows/actions/install_dependencies/action.yml
index 7d03c90d4..dd77ca542 100644
--- a/.github/workflows/actions/install_dependencies/action.yml
+++ b/.github/workflows/actions/install_dependencies/action.yml
@@ -21,7 +21,7 @@ runs:
... | 2 | 4 |
zylon-ai/private-gpt#2250 | zylon-ai/private-gpt | 2,250 | 20cddb170c4839cf40f53d8ca16e89fbc37dc6e1 | e780abf07b4798a4a06621bb88454da0fc53c76a | chore(deps): bump actions/checkout from 4 to 6
Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/checkout/releases">actions/checkout's releases</a>.</em></p>
<blockquote>
<h2>v6.0.0</h2>
<h2>What... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/workflows/` needed for: chore(deps): bump actions/checkout from 4 to 6",
"scope_files": [
".github/workflows/fern-check.yml",
".github/workflows/generate-release.yml",
".github/workflows/post-release-please.yml",
... | [
{
"subtask_id": "s1",
"scope_files": [
".github/workflows/fern-check.yml",
".github/workflows/generate-release.yml",
".github/workflows/post-release-please.yml",
".github/workflows/preview-docs.yml",
".github/workflows/publish-docs.yml",
".github/workflows/tests.yml",
... | [] | diff --git a/.github/workflows/fern-check.yml b/.github/workflows/fern-check.yml
index 2fd86e12c..236321942 100644
--- a/.github/workflows/fern-check.yml
+++ b/.github/workflows/fern-check.yml
@@ -12,7 +12,7 @@ jobs:
runs-on: ubuntu-latest
steps:
- name: Checkout repo
- uses: actions/checkout@v4... | 1 | 7 |
zylon-ai/private-gpt#2252 | zylon-ai/private-gpt | 2,252 | 64b25ef43bf9b12b2857fca7d0b67adef4b041c5 | 2203b2be0b7167ce6e5515bb707ce8dfa4b4b2ab | chore(deps): bump actions/setup-node from 4 to 6
Bumps [actions/setup-node](https://github.com/actions/setup-node) from 4 to 6.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/actions/setup-node/releases">actions/setup-node's releases</a>.</em></p>
<blockquote>
<h2>v6.0.0</h2... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/workflows/` needed for: chore(deps): bump actions/setup-node from 4 to 6",
"scope_files": [
".github/workflows/fern-check.yml",
".github/workflows/preview-docs.yml",
".github/workflows/publish-docs.yml"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
".github/workflows/fern-check.yml",
".github/workflows/preview-docs.yml",
".github/workflows/publish-docs.yml"
],
"solution_diff": "diff --git a/.github/workflows/fern-check.yml b/.github/workflows/fern-check.yml\nindex c04be4534..2fd86e12c 10... | [] | diff --git a/.github/workflows/fern-check.yml b/.github/workflows/fern-check.yml
index c04be4534..2fd86e12c 100644
--- a/.github/workflows/fern-check.yml
+++ b/.github/workflows/fern-check.yml
@@ -15,7 +15,7 @@ jobs:
uses: actions/checkout@v4
- name: Setup Node.js
- uses: actions/setup-node@v4
... | 1 | 3 |
zylon-ai/private-gpt#2247 | zylon-ai/private-gpt | 2,247 | a6ab856c2b03fca4dfabdf20654d639f7d97b66d | 9a48c0e91ce04867c7ce7391ebdf2f8f44b58798 | chore: update github actions | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/` needed for: chore: update github actions",
"scope_files": [
".github/dependabot.yml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `.github/workflows/` needed for: chore: update github actions",... | [
{
"subtask_id": "s1",
"scope_files": [
".github/dependabot.yml"
],
"solution_diff": "diff --git a/.github/dependabot.yml b/.github/dependabot.yml\nnew file mode 100644\nindex 000000000..faafa24a9\n--- /dev/null\n+++ b/.github/dependabot.yml\n@@ -0,0 +1,14 @@\n+version: 2\n+updates:\n+ - packa... | [
{
"subtask_id": "s2",
"comment": "`workflow_dispatch` runs will have an empty `github.head_ref`, so this job-level `if` makes the job a no-op when manually dispatched (even if you select the `release-please--branches--main` branch). If manual dispatch should remain supported, include `github.ref_name` in th... | diff --git a/.github/dependabot.yml b/.github/dependabot.yml
new file mode 100644
index 000000000..faafa24a9
--- /dev/null
+++ b/.github/dependabot.yml
@@ -0,0 +1,14 @@
+version: 2
+updates:
+ - package-ecosystem: "github-actions"
+ directory: "/"
+ schedule:
+ interval: "weekly"
+ - package-ecosystem: "uv... | 3 | 8 |
zylon-ai/private-gpt#2245 | zylon-ai/private-gpt | 2,245 | feb11e45cb67ce5f9c2e9d39fdf84e8771cb7ed0 | ba5f9bd4b0caa5c2fbeb9eecd33b8fc02cdad676 | fix: claude desktop after changes yesterday | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `fern/docs/pages/integrations/` needed for: fix: claude desktop after changes yesterday",
"scope_files": [
"fern/docs/pages/integrations/claude-desktop.mdx"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `p... | [
{
"subtask_id": "s1",
"scope_files": [
"fern/docs/pages/integrations/claude-desktop.mdx"
],
"solution_diff": "diff --git a/fern/docs/pages/integrations/claude-desktop.mdx b/fern/docs/pages/integrations/claude-desktop.mdx\nindex 505a64902..d0211dc96 100644\n--- a/fern/docs/pages/integrations/cl... | [
{
"subtask_id": "s2",
"comment": "`extract_system_messages` appends new `System(...)` blocks with default config. Because `ChatBody.merged_system()` merges system blocks and uses the *last* block’s `blob_visibility` (and also re-materializes `System` during merge), a request that sets `system` options (e.g.... | diff --git a/fern/docs/pages/integrations/claude-desktop.mdx b/fern/docs/pages/integrations/claude-desktop.mdx
index 505a64902..d0211dc96 100644
--- a/fern/docs/pages/integrations/claude-desktop.mdx
+++ b/fern/docs/pages/integrations/claude-desktop.mdx
@@ -4,7 +4,7 @@ description: "Connect Claude Desktop (Cowork) to yo... | 3 | 3 |
zylon-ai/private-gpt#2246 | zylon-ai/private-gpt | 2,246 | 3dbadc0b328b7baad1b6991e8e29434a3846958d | ff2e7ba2f7cff73ec5506481887bfc5e52c5fc0b | fix: update claude api spec | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: fix: update claude api spec",
"scope_files": [
"Makefile",
"pyproject.toml",
"uv.lock"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `.github/workflows/` needed for: fix: ... | [
{
"subtask_id": "s1",
"scope_files": [
"Makefile",
"pyproject.toml",
"uv.lock"
],
"solution_diff": "diff --git a/Makefile b/Makefile\nindex 14c35bc7e..72594c080 100644\n--- a/Makefile\n+++ b/Makefile\n@@ -7,7 +7,7 @@ PROD_BINARY ?= .venv/bin/private-gpt\n PROD_ARGS ?= serve\n PROD_... | [
{
"subtask_id": "s1",
"comment": "`make update-openapi-spec` currently invokes `scripts/update_claude_openapi.py`, but this file doesn’t exist in the repo (the new script added in this PR is `scripts/update_claude_specs.py`). As-is, the Make target will fail with a file-not-found error.",
"revised_diff"... | diff --git a/.github/workflows/update-claude-specs.yml b/.github/workflows/update-claude-specs.yml
new file mode 100644
index 000000000..c85444ce1
--- /dev/null
+++ b/.github/workflows/update-claude-specs.yml
@@ -0,0 +1,41 @@
+name: update-claude-specs
+
+on:
+ schedule:
+ - cron: "0 3 * * *" # daily at 03:00 UTC
... | 14 | 21 |
zylon-ai/private-gpt#2244 | zylon-ai/private-gpt | 2,244 | e4d69a7efc1d90d87e100098c293fbf7db9d8c69 | 81d41df7d8caa08b8a6012e01932ab457569a7a3 | fix: code agents | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `private_gpt/cli/commands/` needed for: fix: code agents",
"scope_files": [
"private_gpt/cli/commands/run.py",
"private_gpt/cli/commands/serve.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `priva... | [
{
"subtask_id": "s1",
"scope_files": [
"private_gpt/cli/commands/run.py",
"private_gpt/cli/commands/serve.py"
],
"solution_diff": "diff --git a/private_gpt/cli/commands/run.py b/private_gpt/cli/commands/run.py\nindex 84c66a8fd..fc82ec534 100644\n--- a/private_gpt/cli/commands/run.py\n+++... | [
{
"subtask_id": "s1",
"comment": "`/v1/models` is protected by the server's `authenticated` dependency, which expects the `Authorization` header to match `settings().server.auth.secret` exactly (no `Bearer` prefix). Sending `Authorization: Bearer <secret>` will 401 when auth is enabled, causing model discov... | diff --git a/private_gpt/cli/commands/run.py b/private_gpt/cli/commands/run.py
index 84c66a8fd..fc82ec534 100644
--- a/private_gpt/cli/commands/run.py
+++ b/private_gpt/cli/commands/run.py
@@ -50,13 +50,31 @@ def _wait_for_server(base_url: str, timeout: float = _HEALTH_TIMEOUT) -> bool:
return False
+def _serv... | 2 | 3 |
zylon-ai/private-gpt#2242 | zylon-ai/private-gpt | 2,242 | e4d69a7efc1d90d87e100098c293fbf7db9d8c69 | bbffb95640964471651e4c2ee819760b8ac6779f | fix: ui auth header | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `private_gpt/` needed for: fix: ui auth header",
"scope_files": [
"private_gpt/launcher.py"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `private_gpt/settings/` needed for: fix: ui auth header",
"scop... | [
{
"subtask_id": "s1",
"scope_files": [
"private_gpt/launcher.py"
],
"solution_diff": "diff --git a/private_gpt/launcher.py b/private_gpt/launcher.py\nindex 287a4f67b..14273a692 100644\n--- a/private_gpt/launcher.py\n+++ b/private_gpt/launcher.py\n@@ -11,7 +11,7 @@\n from fastapi import FastAPI... | [
{
"subtask_id": "s1",
"comment": "The injected DEFAULT_BASE_URL is currently hardcoded to a computed http://{host}:{port} URL for *all* cases. This breaks deployments where the UI is accessed from another machine or via HTTPS (it forces clients to call 127.0.0.1/http), and it also drops the original behavio... | diff --git a/private_gpt/launcher.py b/private_gpt/launcher.py
index 287a4f67b..14273a692 100644
--- a/private_gpt/launcher.py
+++ b/private_gpt/launcher.py
@@ -11,7 +11,7 @@
from fastapi import FastAPI, Request
from fastapi.exceptions import RequestValidationError
from fastapi.middleware.cors import CORSMiddleware
... | 3 | 3 |
zylon-ai/private-gpt#2240 | zylon-ai/private-gpt | 2,240 | e8d4ea3e366b1f8bf5d88b80713ca38da2cb79e3 | 41f21f6f86225757c08e37c5d63634349dba09ef | chore: ignore issue | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: chore: ignore issue",
"scope_files": [
".gitignore"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `scripts/` needed for: chore: ignore issue",
"scope_files": [
"scripts/set_... | [
{
"subtask_id": "s1",
"scope_files": [
".gitignore"
],
"solution_diff": "diff --git a/.gitignore b/.gitignore\nindex 55cc911ae..91f711905 100644\n--- a/.gitignore\n+++ b/.gitignore\n@@ -3,9 +3,9 @@\n .uv-cache\n .dist\n \n-models/\n-tiktoken_cache/\n-local_data/\n+/models/\n+/tiktoken_cache/\n... | [
{
"subtask_id": "s2",
"comment": "`subprocess.run([\"uv\", \"lock\"])` will raise FileNotFoundError when `uv` is not installed, which currently escapes the RuntimeError handler and results in a traceback. Since this script already supports `--no-lock`, it should fail with a clear, actionable message when `u... | diff --git a/.gitignore b/.gitignore
index 55cc911ae..91f711905 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,9 +3,9 @@
.uv-cache
.dist
-models/
-tiktoken_cache/
-local_data/
+/models/
+/tiktoken_cache/
+/local_data/
settings-me.yaml
diff --git a/scripts/set_version.py b/scripts/set_version.py
new file mode 1... | 2 | 2 |
zylon-ai/private-gpt#2239 | zylon-ai/private-gpt | 2,239 | e19cd87b24f95c56c6f55dbdd129d0bde4736069 | 47cb006fa853f5761fdad93bbb3426adbd3d65ae | chore: remove empty folders | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: chore: remove empty folders",
"scope_files": [
".gitignore"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `local_data/` needed for: chore: remove empty folders",
"scope_files": [
... | [
{
"subtask_id": "s1",
"scope_files": [
".gitignore"
],
"solution_diff": "diff --git a/.gitignore b/.gitignore\nindex 2f466f2ed9..55cc911ae7 100644\n--- a/.gitignore\n+++ b/.gitignore\n@@ -3,8 +3,8 @@\n .uv-cache\n .dist\n \n-./models/**\n-tiktoken_cache\n+models/\n+tiktoken_cache/\n local_data... | [] | diff --git a/.gitignore b/.gitignore
index 2f466f2ed9..55cc911ae7 100644
--- a/.gitignore
+++ b/.gitignore
@@ -3,8 +3,8 @@
.uv-cache
.dist
-./models/**
-tiktoken_cache
+models/
+tiktoken_cache/
local_data/
settings-me.yaml
@@ -47,4 +47,4 @@ celery.pidbox.exchange
.coverage.*
# Websearch cache
-.cache/
\ No ... | 4 | 4 |
zylon-ai/private-gpt#2238 | zylon-ai/private-gpt | 2,238 | e19cd87b24f95c56c6f55dbdd129d0bde4736069 | 1945531179ca983aafe215f0244cd01af243154a | docs: fix index url | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/workflows/` needed for: docs: fix index url",
"scope_files": [
".github/workflows/generate-release.yml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `fern/docs/pages/getting-started/` needed for:... | [
{
"subtask_id": "s1",
"scope_files": [
".github/workflows/generate-release.yml"
],
"solution_diff": "diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml\nindex 43dead61d..aec99680b 100644\n--- a/.github/workflows/generate-release.yml\n+++ b/.github/work... | [] | diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml
index 43dead61d..aec99680b 100644
--- a/.github/workflows/generate-release.yml
+++ b/.github/workflows/generate-release.yml
@@ -11,7 +11,7 @@ env:
HOMEBREW_TAP_REPOSITORY: zylon-ai/homebrew-tap
RELEASE_PACKAGE_EXTRA: "cor... | 4 | 4 |
zylon-ai/private-gpt#2236 | zylon-ai/private-gpt | 2,236 | 183cd038570d7e3138e9286463c74b7c7fc50a2a | 834b00247d04354400cf79060738da5e1cea1a0c | docs: fix broken links | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `.github/workflows/` needed for: docs: fix broken links",
"scope_files": [
".github/workflows/generate-release.yml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `fern/` needed for: docs: fix broken links"... | [
{
"subtask_id": "s1",
"scope_files": [
".github/workflows/generate-release.yml"
],
"solution_diff": "diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml\nindex 3d8152d4e..43dead61d 100644\n--- a/.github/workflows/generate-release.yml\n+++ b/.github/work... | [
{
"subtask_id": "s13",
"comment": "`window.location.origin` is the string \"null\" when the workbench is opened from a local `file://` URL, which makes the default API base URL become `null` and breaks all fetch calls until the user edits settings. Provide a fallback default for non-HTTP(S) origins (keeping... | diff --git a/.github/workflows/generate-release.yml b/.github/workflows/generate-release.yml
index 3d8152d4e..43dead61d 100644
--- a/.github/workflows/generate-release.yml
+++ b/.github/workflows/generate-release.yml
@@ -11,7 +11,7 @@ env:
HOMEBREW_TAP_REPOSITORY: zylon-ai/homebrew-tap
RELEASE_PACKAGE_EXTRA: "cor... | 13 | 19 |
zylon-ai/private-gpt#2235 | zylon-ai/private-gpt | 2,235 | 183cd038570d7e3138e9286463c74b7c7fc50a2a | b5dcc197d1e52ca8fbb7c174fb90e4208ceaf6a5 | chore: update post update release | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: chore: update post update release",
"scope_files": [
"pyproject.toml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `.github/workflows/` needed for: chore: update post update release"... | [
{
"subtask_id": "s1",
"scope_files": [
"pyproject.toml"
],
"solution_diff": "diff --git a/pyproject.toml b/pyproject.toml\nindex 7fc6616f3..70dcb2470 100644\n--- a/pyproject.toml\n+++ b/pyproject.toml\n@@ -348,6 +348,7 @@ packages = [\"private_gpt\"]\n \n [tool.hatch.build.targets.wheel.force-... | [
{
"subtask_id": "s2",
"comment": "`update-openapi` and `update-uv-lock` both create commits and `git push` to the same PR branch, but jobs run in parallel by default. This can lead to non-fast-forward push failures (whichever job pushes second) and make the workflow flaky. Serializing the jobs avoids this r... | diff --git a/.github/workflows/fern-check.yml b/.github/workflows/fern-check.yml
index 6b021abc7..c04be4534 100644
--- a/.github/workflows/fern-check.yml
+++ b/.github/workflows/fern-check.yml
@@ -14,6 +14,11 @@ jobs:
- name: Checkout repo
uses: actions/checkout@v4
+ - name: Setup Node.js
+ ... | 3 | 6 |
zylon-ai/private-gpt#2092 | zylon-ai/private-gpt | 2,092 | 5fbb402477c41e09f56a3e5adc32f316341772bf | 847f48dd63a747c89ca393b870fbe2c1bd7c8bca | feat: update llama-index + dependencies | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: feat: update llama-index + dependencies",
"scope_files": [
"docker-compose.yaml",
"poetry.lock",
"pyproject.toml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `private_gp... | [
{
"subtask_id": "s1",
"scope_files": [
"docker-compose.yaml",
"poetry.lock",
"pyproject.toml"
],
"solution_diff": "diff --git a/docker-compose.yaml b/docker-compose.yaml\nindex 2d6dff2e0a..e1e8b88d24 100644\n--- a/docker-compose.yaml\n+++ b/docker-compose.yaml\n@@ -61,7 +61,7 @@ se... | [] | diff --git a/docker-compose.yaml b/docker-compose.yaml
index 2d6dff2e0a..e1e8b88d24 100644
--- a/docker-compose.yaml
+++ b/docker-compose.yaml
@@ -61,7 +61,7 @@ services:
ollama:
image: traefik:v2.10
ports:
- - "11434:11434"
+ - "8080:8080"
command:
- "--providers.file.filename=/etc/r... | 11 | 16 |
zylon-ai/private-gpt#2078 | zylon-ai/private-gpt | 2,078 | 42628596b28efccaef9d1b39fa94e6d47ba397be | f89be62e2c159228b0d29bcb876d600c2f430b51 | Add default mode option to settings
# Description
Add default mode to settings files
## Type of Change
- [*] New feature (non-breaking change which adds functionality)
## How Has This Been Tested?
- [*] I stared at the code and made sure it makes sense
- [*] Tested functionality within UI
**Test Con... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Add default mode option to settings",
"scope_files": [
"settings.yaml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `private_gpt/settings/` needed for: Add default mode option to set... | [
{
"subtask_id": "s1",
"scope_files": [
"settings.yaml"
],
"solution_diff": "diff --git a/settings.yaml b/settings.yaml\nindex f030604a30..eda1af8601 100644\n--- a/settings.yaml\n+++ b/settings.yaml\n@@ -25,21 +25,23 @@ data:\n ui:\n enabled: true\n path: /\n+ # \"RAG\", \"Search\", \"Basi... | [
{
"subtask_id": "s2",
"comment": "It's better idea configure like literal (enum)",
"revised_diff": "diff --git a/private_gpt/settings/settings.py b/private_gpt/settings/settings.py\nindex 4cf192a3e0..0dbef9e2ca 100644\n--- a/private_gpt/settings/settings.py\n+++ b/private_gpt/settings/settings.py\n@@ -3... | diff --git a/private_gpt/settings/settings.py b/private_gpt/settings/settings.py
index 4cf192a3e0..0dbef9e2ca 100644
--- a/private_gpt/settings/settings.py
+++ b/private_gpt/settings/settings.py
@@ -350,6 +350,10 @@ class AzureOpenAISettings(BaseModel):
class UISettings(BaseModel):
enabled: bool
path: str
+ ... | 3 | 3 |
zylon-ai/private-gpt#2065 | zylon-ai/private-gpt | 2,065 | 77461b96cf2e18b88b592fff441206a49826db97 | 4b74aa47665538048d0ead361713e69452b55734 | Adding MistralAI mode
# Description
Please include a summary of the change and which issue is fixed. Please also include relevant motivation and context. List any dependencies that are required for this change.
I added a Mistral mode where users can interact with Mistral's API for chat completion and generating ... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Adding MistralAI mode",
"scope_files": [
"poetry.lock",
"pyproject.toml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `private_gpt/components/embedding/` needed for: Adding Mis... | [
{
"subtask_id": "s1",
"scope_files": [
"poetry.lock",
"pyproject.toml"
],
"solution_diff": "diff --git a/poetry.lock b/poetry.lock\nindex 8310e1ec1f..25e0bbda1e 100644\n--- a/poetry.lock\n+++ b/poetry.lock\n@@ -2238,6 +2238,17 @@ files = [\n {file = \"joblib-1.4.2.tar.gz\", hash = \"... | [
{
"subtask_id": "s2",
"comment": "Please switch to `mistralai` or another literal. This may cause confusion",
"revised_diff": "diff --git a/private_gpt/components/embedding/embedding_component.py b/private_gpt/components/embedding/embedding_component.py\nindex 5d3e997491..b55cef8738 100644\n--- a/privat... | diff --git a/poetry.lock b/poetry.lock
index 8310e1ec1f..25e0bbda1e 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -2238,6 +2238,17 @@ files = [
{file = "joblib-1.4.2.tar.gz", hash = "sha256:2382c5816b2636fbd20a09e0f4e9dad4736765fdfb7dca582943b9c1366b3f0e"},
]
+[[package]]
+name = "jsonpath-python"
+version = "1... | 3 | 4 |
zylon-ai/private-gpt#2059 | zylon-ai/private-gpt | 2,059 | 89477ea9d3a83181b0222b732a81c71db9edf142 | 6c018cf2669bb79358297e11acd10047a43cb4a2 | fix: docker permissions | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: fix: docker permissions",
"scope_files": [
"Dockerfile.llamacpp-cpu",
"Dockerfile.ollama",
"docker-compose.yaml"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
"Dockerfile.llamacpp-cpu",
"Dockerfile.ollama",
"docker-compose.yaml"
],
"solution_diff": "diff --git a/Dockerfile.llamacpp-cpu b/Dockerfile.llamacpp-cpu\nindex fce9915afc..feab1659bb 100644\n--- a/Dockerfile.llamacpp-cpu\n+++ b/Dockerfile.lla... | [] | diff --git a/Dockerfile.llamacpp-cpu b/Dockerfile.llamacpp-cpu
index fce9915afc..feab1659bb 100644
--- a/Dockerfile.llamacpp-cpu
+++ b/Dockerfile.llamacpp-cpu
@@ -1,6 +1,6 @@
### IMPORTANT, THIS IMAGE CAN ONLY BE RUN IN LINUX DOCKER
### You will run into a segfault in mac
-FROM python:3.11.6-slim-bookworm as base
+FR... | 1 | 3 |
zylon-ai/private-gpt#2084 | zylon-ai/private-gpt | 2,084 | 42628596b28efccaef9d1b39fa94e6d47ba397be | 61779135445d0690413ffca8232ad063a2d5b223 | feat: add retry connection to ollama
When Ollama is running in the docker-compose, traefik is not ready sometimes to route the request, and it fails
[#2066](https://github.com/zylon-ai/private-gpt/issues/2066)
[#2071](https://github.com/zylon-ai/private-gpt/issues/2071) | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: feat: add retry connection to ollama",
"scope_files": [
"poetry.lock",
"pyproject.toml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `private_gpt/utils/` needed for: feat: add ... | [
{
"subtask_id": "s1",
"scope_files": [
"poetry.lock",
"pyproject.toml"
],
"solution_diff": "diff --git a/poetry.lock b/poetry.lock\nindex df76533670..8310e1ec1f 100644\n--- a/poetry.lock\n+++ b/poetry.lock\n@@ -1060,6 +1060,17 @@ files = [\n marshmallow = \">=3.18.0,<4.0.0\"\n typing-ins... | [] | diff --git a/poetry.lock b/poetry.lock
index df76533670..8310e1ec1f 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -1060,6 +1060,17 @@ files = [
marshmallow = ">=3.18.0,<4.0.0"
typing-inspect = ">=0.4.0,<1"
+[[package]]
+name = "decorator"
+version = "5.1.1"
+description = "Decorators for Humans"
+optional = false
+... | 2 | 4 |
zylon-ai/private-gpt#2062 | zylon-ai/private-gpt | 2,062 | 89477ea9d3a83181b0222b732a81c71db9edf142 | 2eee2d28250f443df1aeb9c18200e4e5495471de | Fix: Rectify ffmpy poetry config; update version from 0.3.2 to 0.4.0
# Description
The current `poetry install` is broken for first installers:

The reason:
- https://github.com/EuDs63/ffmpy is ... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: Fix: Rectify ffmpy poetry config; update version from 0.3.2 to 0.4.0",
"scope_files": [
"poetry.lock",
"pyproject.toml"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
"poetry.lock",
"pyproject.toml"
],
"solution_diff": "diff --git a/poetry.lock b/poetry.lock\nindex 2ff1186aec..df76533670 100644\n--- a/poetry.lock\n+++ b/poetry.lock\n@@ -1248,18 +1248,14 @@ standard = [\"fastapi\", \"uvicorn[standard] (>=0.15.0)\"... | [] | diff --git a/poetry.lock b/poetry.lock
index 2ff1186aec..df76533670 100644
--- a/poetry.lock
+++ b/poetry.lock
@@ -1248,18 +1248,14 @@ standard = ["fastapi", "uvicorn[standard] (>=0.15.0)"]
[[package]]
name = "ffmpy"
-version = "0.3.2"
-description = "A simple Python wrapper for ffmpeg"
+version = "0.4.0"
+descript... | 1 | 2 |
zylon-ai/private-gpt#2049 | zylon-ai/private-gpt | 2,049 | 7fefe408b4267684c6e3c1a43c5dc2b73ec61fe4 | 9aa0b2182f06770220dfd4bf8644908ada7ddf36 | chore(main): release 0.6.2
:robot: I have created a release *beep* *boop*
---
## [0.6.2](https://github.com/zylon-ai/private-gpt/compare/v0.6.1...v0.6.2) (2024-08-08)
### Bug Fixes
* add numpy issue to troubleshooting ([#2048](https://github.com/zylon-ai/private-gpt/issues/2048)) ([4ca6d0c](https://github.com/zyl... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: chore(main): release 0.6.2",
"scope_files": [
"CHANGELOG.md",
"docker-compose.yaml",
"pyproject.toml",
"version.txt"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `.... | [
{
"subtask_id": "s1",
"scope_files": [
"CHANGELOG.md",
"docker-compose.yaml",
"pyproject.toml",
"version.txt"
],
"solution_diff": "diff --git a/CHANGELOG.md b/CHANGELOG.md\nindex 34362b0a93..e37d34133f 100644\n--- a/CHANGELOG.md\n+++ b/CHANGELOG.md\n@@ -1,5 +1,15 @@\n # Chang... | [] | diff --git a/.github/release_please/.release-please-manifest.json b/.github/release_please/.release-please-manifest.json
index ac0317144e..e3778b2c1e 100644
--- a/.github/release_please/.release-please-manifest.json
+++ b/.github/release_please/.release-please-manifest.json
@@ -1,3 +1,3 @@
{
- ".": "0.6.1"
+ ".": "0... | 2 | 5 |
zylon-ai/private-gpt#2052 | zylon-ai/private-gpt | 2,052 | b1acf9dc2cbca2047cd0087f13254ff5cda6e570 | ca4d5c99c9fc9c5abbe07e47159193d4763ac729 | fix: auto-update version
## No more manual bump version!
This PR takes care of automatic version upgrades using release-please version.
1. To do that, I need to update release-please version from v3 to v4.
2. This will update:
- `version.txt` as before
- `CHANGELOG.md` as before
- `pyproject.toml`... | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `(root)/` needed for: fix: auto-update version",
"scope_files": [
"docker-compose.yaml"
]
},
{
"subtask_id": "s2",
"goal": "Implement the changes under `.github/release_please/` needed for: fix: auto-update version",
"s... | [
{
"subtask_id": "s1",
"scope_files": [
"docker-compose.yaml"
],
"solution_diff": "diff --git a/docker-compose.yaml b/docker-compose.yaml\nindex a5df4647e3..1698605dfd 100644\n--- a/docker-compose.yaml\n+++ b/docker-compose.yaml\n@@ -7,7 +7,7 @@ services:\n # Private-GPT service for the Ollam... | [] | diff --git a/.github/release_please/.release-please-config.json b/.github/release_please/.release-please-config.json
new file mode 100644
index 0000000000..97f3170092
--- /dev/null
+++ b/.github/release_please/.release-please-config.json
@@ -0,0 +1,19 @@
+{
+ "$schema": "https://raw.githubusercontent.com/googleapis/... | 3 | 4 |
zylon-ai/private-gpt#2048 | zylon-ai/private-gpt | 2,048 | b16abbefe49527ac038d235659854b98345d5387 | 83427431f7fc5cfad504881674022641aef73bf7 | docs: add numpy issue to troubleshooting
Add https://github.com/zylon-ai/private-gpt/issues/1979#issuecomment-2183000116 to official documentation | [
{
"subtask_id": "s1",
"goal": "Implement the changes under `fern/docs/pages/installation/` needed for: docs: add numpy issue to troubleshooting",
"scope_files": [
"fern/docs/pages/installation/installation.mdx",
"fern/docs/pages/installation/troubleshooting.mdx"
]
}
] | [
{
"subtask_id": "s1",
"scope_files": [
"fern/docs/pages/installation/installation.mdx",
"fern/docs/pages/installation/troubleshooting.mdx"
],
"solution_diff": "diff --git a/fern/docs/pages/installation/installation.mdx b/fern/docs/pages/installation/installation.mdx\nindex f7457b34b5..e7... | [] | diff --git a/fern/docs/pages/installation/installation.mdx b/fern/docs/pages/installation/installation.mdx
index f7457b34b5..e7f80c87de 100644
--- a/fern/docs/pages/installation/installation.mdx
+++ b/fern/docs/pages/installation/installation.mdx
@@ -307,11 +307,12 @@ If you have all required dependencies properly conf... | 1 | 2 |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.