repo stringlengths 5 53 | pr_number int32 1 321k | task_type stringclasses 2
values | issue_text stringlengths 0 81.2k | pr_title stringlengths 1 319 | pr_body stringlengths 0 105k | base_sha stringlengths 40 40 | head_sha stringlengths 40 40 | gold_diff stringlengths 0 202M | changed_files listlengths 0 100 | review_threads listlengths 0 100 | test_patch stringlengths 0 23.4M | merged bool 1
class |
|---|---|---|---|---|---|---|---|---|---|---|---|---|
zhayujie/CowAgent | 2,868 | issue_to_patch | feat(evolution): add self-evolution subsystem | ## What does this PR do?
Add a self-evolution subsystem that reviews idle conversations in an isolated agent and durably learns from them — patching/creating skills, finishing unfinished tasks, and backfilling missed memory.
- Trigger: background idle scan, fires when a session is idle >= N min AND (>= N turns OR... | 0e4da1d1c58ad4be34e4d54ae5cdaf0b760c7e3a | ff584f8421a8d5ba0a62fb9b79d7e07819c177d6 | diff --git a/agent/evolution/__init__.py b/agent/evolution/__init__.py
new file mode 100644
index 0000000000..f9f665f324
--- /dev/null
+++ b/agent/evolution/__init__.py
@@ -0,0 +1,19 @@
+"""
+Self-evolution subsystem for CowAgent.
+
+Runs a lightweight, isolated review pass after a conversation goes idle to
+decide whe... | [
"agent/evolution/__init__.py",
"agent/evolution/backup.py",
"agent/evolution/config.py",
"agent/evolution/executor.py",
"agent/evolution/prompts.py",
"agent/evolution/record.py",
"agent/evolution/trigger.py",
"agent/memory/conversation_store.py",
"agent/memory/service.py",
"agent/protocol/agent_st... | [] | diff --git a/tests/test_evolution.py b/tests/test_evolution.py
new file mode 100644
index 0000000000..4ebc47e95f
--- /dev/null
+++ b/tests/test_evolution.py
@@ -0,0 +1,798 @@
+"""Self-evolution test harness.
+
+Simulates multiple realistic conversations and checks the evolution pass behaves
+correctly: stays silent whe... | true | |
zhayujie/CowAgent | 2,865 | issue_to_patch | feat: message management and code block enhancements | ## What does this PR do?
This PR adds message management features to the web console (edit, regenerate, delete), enhances code blocks with language labels and copy buttons, and extends drag-and-drop file upload to the entire chat view. All message operations are fully synchronized between DOM and database.
Key im... | fde4b6f590826d95bb6d1d3b271a4f0c55de5e74 | c62175c06ba98d8a82e78f8582526a960c1b5034 | diff --git a/agent/memory/conversation_store.py b/agent/memory/conversation_store.py
index 48148f61b5..a286efc4f2 100644
--- a/agent/memory/conversation_store.py
+++ b/agent/memory/conversation_store.py
@@ -291,7 +291,7 @@ class ConversationStore:
def __init__(self, db_path: Path):
self._db_path = db_pa... | [
"agent/memory/conversation_store.py",
"channel/web/static/css/console.css",
"channel/web/static/js/console.js",
"channel/web/web_channel.py"
] | [] | true | ||
zhayujie/CowAgent | 2,863 | issue_to_patch | fix(bash): narrow credential-file block to ~/.cow/.env only | ## Summary
Addresses the three points raised in the review on #2861:
- **Narrowed `~/.cow` check** — replaced the broad `"~/.cow" in command` string match with `re.search(r'\.cow[/\\]\.env', command)`. This blocks only direct access to the credential file itself, so `ls ~/.cow/skills` and other legitimate subdirector... | 2b670e73f38393364ee397904b60373e1b504b14 | 2a16c562a8c06352f10ad17b66dde799e486d2bf | diff --git a/agent/tools/bash/bash.py b/agent/tools/bash/bash.py
index 890cf04609..5e02832eef 100644
--- a/agent/tools/bash/bash.py
+++ b/agent/tools/bash/bash.py
@@ -69,8 +69,8 @@ def execute(self, args: Dict[str, Any]) -> ToolResult:
if not command:
return ToolResult.fail("Error: command paramet... | [
"agent/tools/bash/bash.py",
"tests/test_invariant_bash.py"
] | [] | diff --git a/tests/test_invariant_bash.py b/tests/test_invariant_bash.py
new file mode 100644
index 0000000000..776f33cf8f
--- /dev/null
+++ b/tests/test_invariant_bash.py
@@ -0,0 +1,24 @@
+import pytest
+from agent.tools.bash.bash import Bash
+
+
+@pytest.mark.parametrize("command", [
+ "cat ~/.cow/.env",
+ "cat... | true | |
zhayujie/CowAgent | 2,859 | issue_to_patch | fix(mcp): replace select.select with queue.Queue for cross-platform stdio I/O | fix(mcp): replace select.select with queue.Queue for cross-platform stdio I/O
- Use reader thread + queue.Queue instead of select.select() which does not work with pipes on Windows (only sockets)
- Make MCP server timeout configurable via mcp.json (default 120s)
- Validate JSON-RPC response id to skip stal... | 79323358e59bf31eb8197714402c4343d47ef304 | 4cc57cc08d202e7859c6a66da1e99df1256227ff | diff --git a/agent/tools/mcp/mcp_client.py b/agent/tools/mcp/mcp_client.py
index be93c71604..81d81004e6 100644
--- a/agent/tools/mcp/mcp_client.py
+++ b/agent/tools/mcp/mcp_client.py
@@ -7,7 +7,7 @@
import json
import os
-import select
+import queue
import subprocess
import threading
import urllib.request
@@ -34... | [
"agent/tools/mcp/mcp_client.py"
] | [] | true | ||
zhayujie/CowAgent | 2,853 | issue_to_patch | chore:add group task board plugin source | ## Summary
This PR adds a third-party plugin source entry for `group_task_board` in `plugins/source.json`.
The plugin source code is maintained in a separate repository:
https://github.com/Wyh-max-star/cowagent-plugin-group-task-board
This PR only registers the plugin source URL and description. It does not... | 1dbf41f384f3ea71c0454a19e7f4abff454d4af0 | 04d28f9d2d94ad54d53fc07a32ed0717f40f8611 | diff --git a/plugins/source.json b/plugins/source.json
index 34f82dbed1..0e231bab2f 100644
--- a/plugins/source.json
+++ b/plugins/source.json
@@ -24,6 +24,10 @@
"url": "https://github.com/dividduang/blackroom.git",
"desc": "小黑屋插件,被拉进小黑屋的人将不能使用@bot的功能的插件"
},
+ "group_task_board": {
+ "url": "... | [
"plugins/source.json"
] | [] | true | ||
zhayujie/CowAgent | 2,857 | issue_to_patch | Fix ASR model persistence in models API | ## Summary
- Persist ASR provider and model together when `/api/models` handles `set_capability(asr)`
- Refresh voice routing after ASR model changes so runtime switches without restart
- Add a regression test for ASR provider/model persistence
## Test Plan
- `python3 -m unittest tests.test_models_handler -v` | 33eabf937bfdf28b232966b3f9c5f6892ff05ef5 | cd88b23b5d8d1a858f5cc890386d5f289ed84aba | diff --git a/channel/web/web_channel.py b/channel/web/web_channel.py
index bfc038cbca..6000d8a17e 100644
--- a/channel/web/web_channel.py
+++ b/channel/web/web_channel.py
@@ -2613,7 +2613,7 @@ def _handle_set_capability(self, data: dict) -> str:
if capability == "vision":
return self._set_vision(p... | [
"channel/web/web_channel.py",
"tests/test_models_handler.py"
] | [
{
"comment": "This PR starts persisting `voice_to_text_model`, but the capability overview code shown in context (`_asr_capability`) always returns `current_model: \\\"\\\"`. As a result, a saved ASR model won’t be reflected in the Models console GET response (and may appear as if it didn’t save). Update `_asr_... | diff --git a/tests/test_models_handler.py b/tests/test_models_handler.py
new file mode 100644
index 0000000000..cd36c1c926
--- /dev/null
+++ b/tests/test_models_handler.py
@@ -0,0 +1,59 @@
+# encoding:utf-8
+import json
+import os
+import sys
+import types
+import unittest
+from unittest.mock import patch
+
+sys.path.i... | true | |
zhayujie/CowAgent | 2,855 | issue_to_patch | feat(minimax): add MiniMax-M3 as default, drop older M2.5/M2.1/M2 | ## Summary
Add `MiniMax-M3` as the new default chat model for the MiniMax provider, keep `MiniMax-M2.7` and `MiniMax-M2.7-highspeed` as legacy options, and remove the older `MiniMax-M2.5 / M2.1 / M2.1-lightning / M2` from the registered model list.
## Changes
- **`common/const.py`**: add `MINIMAX_M3 = "MiniMax-M3"`,... | 1f6859d78f83b69111a4c537d4381d454f48d6ce | 7fa743f01ab350c0b21ada2f069825c37b8f8b65 | diff --git a/README.md b/README.md
index ad7823d4a5..0310d5d63b 100644
--- a/README.md
+++ b/README.md
@@ -102,7 +102,7 @@ CowAgent supports all mainstream LLM providers. **Chat, vision, image generation
| [GLM](https://docs.cowagent.ai/models/glm) | glm-5.1, glm-5v-turbo | ✅ | ✅ | | ✅ | | ✅ |
| [Doubao](https://docs... | [
"README.md",
"channel/web/web_channel.py",
"common/const.py",
"docs/ja/README.md",
"docs/ja/models/coding-plan.mdx",
"docs/ja/models/index.mdx",
"docs/ja/models/minimax.mdx",
"docs/models/coding-plan.mdx",
"docs/models/index.mdx",
"docs/models/minimax.mdx",
"docs/zh/README.md",
"docs/zh/cli/ge... | [] | diff --git a/tests/test_minimax_provider.py b/tests/test_minimax_provider.py
index cfad7fd732..bd4cc572b1 100644
--- a/tests/test_minimax_provider.py
+++ b/tests/test_minimax_provider.py
@@ -1,7 +1,7 @@
# encoding:utf-8
"""
Unit tests for MiniMax provider additions:
- - MiniMax-M2.7-highspeed constant in const.py
+... | true | |
zhayujie/CowAgent | 2,850 | issue_to_patch | feat: /command matching | ## 关联 Issue
- 关联 #2849
---
## 概述
本 PR 实现了基于 `/` 前缀命令的模糊解析系统与自定义别名
基于 `plugins/cow_cli/cow_cli.py` 的解析与分发逻辑,支持内置快捷别名(如 `/c`, `/cc`, `/s` 等)、唯一前缀快捷匹配(如 `/mem` -> `memory`)以及用户在 `config.json` 中自定义的别名。同时提供完善的防冲突校验与歧义匹配拦截,避免无效大模型请求及关键命令误执行。
---
## 主要改动
### 1. 核心解析器
- 在 `cow_cli.py` 中实现了纯函数解析器 `_resolve(... | 29c4be6a3afa4586d5138913886c43bfa9496ee0 | 0994a3586dfbe8ca0f4a7f16234747114ee26118 | diff --git a/plugins/cow_cli/cow_cli.py b/plugins/cow_cli/cow_cli.py
index b7dc637191..f3fee96adb 100644
--- a/plugins/cow_cli/cow_cli.py
+++ b/plugins/cow_cli/cow_cli.py
@@ -23,6 +23,7 @@
from bridge.context import ContextType
from bridge.reply import Reply, ReplyType
from common.log import logger
+from config impo... | [
"plugins/cow_cli/cow_cli.py"
] | [] | true | ||
zhayujie/CowAgent | 2,840 | issue_to_patch | feat: add wechatcom kf channel | 3c161df5266bb4fd424f5050b6cb56ff36ee2aa9 | b0ac0731c76c6ec1d0dc9f00818ea08bb7e9e9fb | diff --git a/app.py b/app.py
index eeb44e4570..dbb152097e 100644
--- a/app.py
+++ b/app.py
@@ -231,6 +231,7 @@ def _clear_singleton_cache(channel_name: str):
"wechatmp": "channel.wechatmp.wechatmp_channel.WechatMPChannel",
"wechatmp_service": "channel.wechatmp.wechatmp_channel.WechatMPChannel",
... | [
"app.py",
"channel/channel_factory.py",
"channel/web/web_channel.py",
"channel/wechat_kf/README.md",
"channel/wechat_kf/wechat_kf_channel.py",
"channel/wechat_kf/wechat_kf_cursor_store.py",
"channel/wechat_kf/wechat_kf_message.py",
"common/const.py",
"config.py",
"docs/channels/wechat-kf.mdx",
"... | [] | true | |||
zhayujie/CowAgent | 2,848 | issue_to_patch | fix(wechatmp): improve passive reply multi-turn output and local image sending | - Merge consecutive cached text segments into a single passive reply
- Flush cached segments while the agent task is still running
- Support local file:// images in send() (fixes InvalidSchema error) | 3dd4b8417926dc73faba215fe0bd88409a19edfb | fe8b8fe831340bbd0414f6a1904ac4635957ed38 | diff --git a/channel/wechatmp/passive_reply.py b/channel/wechatmp/passive_reply.py
index d03efc4d19..85b3b4026e 100644
--- a/channel/wechatmp/passive_reply.py
+++ b/channel/wechatmp/passive_reply.py
@@ -103,14 +103,21 @@ def POST(self):
task_running = True
waiting_until = request_time ... | [
"channel/wechatmp/passive_reply.py",
"channel/wechatmp/wechatmp_channel.py"
] | [] | true | ||
zhayujie/CowAgent | 2,843 | issue_to_patch | feat(channel): support telegram bot | f39380cea74e30134ac26812a15149b954548eb7 | e3eacc77d751a1932dd8f678a055e911cc5a66c4 | diff --git a/README.md b/README.md
index 8b9e044e21..70b2707f56 100644
--- a/README.md
+++ b/README.md
@@ -30,7 +30,7 @@ CowAgent is lightweight, easy to deploy, and built to extend. Plug in any major
| [Knowledge](https://docs.cowagent.ai/en/knowledge/index) | Auto-curates structured knowledge into a Markdown wiki, b... | [
"README.md",
"channel/channel_factory.py",
"channel/telegram/__init__.py",
"channel/telegram/telegram_channel.py",
"channel/telegram/telegram_message.py",
"channel/web/web_channel.py",
"common/const.py",
"config.py",
"docs/channels/index.mdx",
"docs/channels/telegram.mdx",
"docs/docs.json",
"d... | [] | true | |||
zhayujie/CowAgent | 2,841 | issue_to_patch | feat(models): support xiaomi mimo | 83cd6ad1588b4d6114e10a5f11dc8fbb9d0ca6bb | bccce2d7cbde47f221eac886855687c03c8819fc | diff --git a/README.md b/README.md
index 2a72f5130c..8b9e044e21 100644
--- a/README.md
+++ b/README.md
@@ -104,6 +104,7 @@ CowAgent supports all mainstream LLM providers. **Chat, vision, image generation
| [Kimi](https://docs.cowagent.ai/en/models/kimi) | kimi-k2.6 | ✅ | ✅ | | | | |
| [MiniMax](https://docs.cowagent.... | [
"README.md",
"agent/tools/vision/vision.py",
"bridge/bridge.py",
"channel/web/web_channel.py",
"common/const.py",
"config.py",
"docs/README.md",
"docs/docs.json",
"docs/en/models/index.mdx",
"docs/en/models/mimo.mdx",
"docs/ja/README.md",
"docs/ja/models/mimo.mdx",
"docs/models/index.mdx",
... | [] | true | |||
zhayujie/CowAgent | 2,832 | issue_to_patch | fix(memory): CJK keyword search + vector search optimization | ## fix(memory): CJK/mixed search, BM25 ranking, FTS5 rowid stability, numpy vectorization
### 背景
CowAgent 的记忆模块(`agent/memory/`)存在两个影响搜索质量的系统性缺陷:
**缺陷一:中文/日文/韩文关键词搜索完全无效**
`search_keyword` 的搜索策略中,FTS5 的 unicode61 分词器将 CJK 字符视为独立标记,无法构成有意义的检索单元,导致:
- `_build_fts_query` 只提取 ASCII token,中文查询永远返回空
- 所有 CJK 查询... | 73bf83d2ffc8ae9f446dd63823a8ffe41958a08b | fd571ac53931917a5c4e47377cfa4a675367ab5b | diff --git a/agent/memory/embedding/state.py b/agent/memory/embedding/state.py
index 3fb60b2300..5efffef2b1 100644
--- a/agent/memory/embedding/state.py
+++ b/agent/memory/embedding/state.py
@@ -31,9 +31,13 @@ def detect_index_dim(storage) -> Optional[int]:
if not row or not row["embedding"]:
return None
... | [
"agent/memory/embedding/state.py",
"agent/memory/manager.py",
"agent/memory/storage.py",
"requirements.txt"
] | [] | true | ||
zhayujie/CowAgent | 2,831 | issue_to_patch | docs: README refactoring | bd85fee7d79d83c9269fbb9586e38a3464768d00 | 29af855ecdb19d974d3ad236a5aecaa56ff011af | diff --git a/README.md b/README.md
index aeb0f560f3..b46c22e7c4 100644
--- a/README.md
+++ b/README.md
@@ -1,920 +1,254 @@
-<p align="center"><img src= "https://github.com/user-attachments/assets/eca9a9ec-8534-4615-9e0f-96c5ac1d10a3" alt="CowAgent" width="550" /></p>
+<p align="center"><img src="https://github.com/user... | [
"README.md",
"docs/en/README.md",
"docs/en/intro/architecture.mdx",
"docs/intro/architecture.mdx",
"docs/ja/README.md",
"docs/ja/intro/architecture.mdx",
"docs/zh/README.md"
] | [] | true | |||
zhayujie/CowAgent | 2,826 | issue_to_patch | feat: multi-provider model console | ## Highlights
- **Console**: redesigned model management page; configure chat / vision / image / ASR / TTS / embedding / search providers from the UI
- **Models**: add `gpt-5.5`, `gemini-3.5-flash`, `qwen3.7-max` as new recommended defaults; fix `temperature` rejection for GPT-5 / GPT-5.5 / o1 series under Agent
-... | ac9d0f18c5a19ff8c4c069e032efeb11eb3e7ecd | 2517f2add8f5dc2d0512f2baf3b1c52a02255213 | diff --git a/agent/memory/conversation_store.py b/agent/memory/conversation_store.py
index c5d215bf7d..48148f61b5 100644
--- a/agent/memory/conversation_store.py
+++ b/agent/memory/conversation_store.py
@@ -44,6 +44,7 @@
role TEXT NOT NULL,
content TEXT NOT NULL,
created_at INTEGER N... | [
"agent/memory/conversation_store.py",
"agent/protocol/agent_stream.py",
"agent/tools/vision/vision.py",
"agent/tools/web_search/web_search.py",
"bridge/agent_initializer.py",
"bridge/bridge.py",
"channel/chat_channel.py",
"channel/dingtalk/dingtalk_channel.py",
"channel/feishu/feishu_channel.py",
... | [] | diff --git a/tests/test_qianfan_provider.py b/tests/test_qianfan_provider.py
index 4c7900e52a..99eb41308a 100644
--- a/tests/test_qianfan_provider.py
+++ b/tests/test_qianfan_provider.py
@@ -394,7 +394,7 @@ def _fake_conf(self, values=None):
"open_ai_api_key": "",
"linkai_api_key": "",
... | true | |
zhayujie/CowAgent | 2,822 | issue_to_patch | fix: persist tool error status in conversation history reload | ## Summary
Persist tool error status when reloading conversation history, so that failed tool calls are properly displayed with error indicators instead of appearing as successful.
## Changes
- **conversation_store.py**: Changed `_extract_tool_results` to return `Dict[str, dict]` with `is_error` field, and propagate... | a0dfdb79df0a05dd287664522546dd08448eea03 | 4e42f2a017f94ccf8833d60b27b9b07f61caa5ef | diff --git a/agent/memory/conversation_store.py b/agent/memory/conversation_store.py
index b620986d78..c5d215bf7d 100644
--- a/agent/memory/conversation_store.py
+++ b/agent/memory/conversation_store.py
@@ -116,9 +116,10 @@ def _extract_tool_calls(content: Any) -> List[Dict[str, Any]]:
]
-def _extract_tool_res... | [
"agent/memory/conversation_store.py",
"channel/web/static/js/console.js"
] | [] | true | ||
zhayujie/CowAgent | 2,815 | issue_to_patch | feat(web): support folder upload | 主要支持本地文件夹上传 | f5479c56afd1a40e8b09c0759798e5d9a38c9790 | 83def1db30e7f73de6d830b5cc25584fae072808 | diff --git a/channel/web/chat.html b/channel/web/chat.html
index 0b15e21c0c..ecc957f3ea 100644
--- a/channel/web/chat.html
+++ b/channel/web/chat.html
@@ -398,12 +398,24 @@ <h1 id="welcome-title" class="text-2xl font-bold text-slate-800 dark:text-slate-
<button id="attach-btn" class... | [
"channel/web/chat.html",
"channel/web/static/css/console.css",
"channel/web/static/js/console.js",
"channel/web/web_channel.py"
] | [] | true | ||
zhayujie/CowAgent | 2,810 | issue_to_patch | fix(wecom_bot): Invalid control character |
### 现象
日志中出现类似错误:
```text
JSONDecodeError: Invalid control character at: line 1 column 512 (char 511)
```
出现在 `wecom_bot_channel.py` 对 WebSocket 消息做 `json.loads` 时。
### 原因
企业微信网关下发的 JSON 中,**字符串字段内**有时含有**未转义的控制字符**,例如:
- 消息正文里的真实换行 `\n`、回车 `\r`;
- 从串口/终端复制来的 **ANSI 颜色与控制序列**(以 `ESC` / `0x1B` 开头,... | 20d8ae19a72b818732c238a245e04f7bf7fcd7c9 | 249ea40ae3c262ca71a6a07a02c072ecf0777529 | diff --git a/channel/wecom_bot/wecom_bot_channel.py b/channel/wecom_bot/wecom_bot_channel.py
index a69e37ea36..7aaca56b08 100644
--- a/channel/wecom_bot/wecom_bot_channel.py
+++ b/channel/wecom_bot/wecom_bot_channel.py
@@ -34,6 +34,50 @@
MEDIA_CHUNK_SIZE = 512 * 1024 # 512KB per chunk (before base64 encoding)
+de... | [
"channel/wecom_bot/wecom_bot_channel.py"
] | [] | true | ||
zhayujie/CowAgent | 2,804 | issue_to_patch | feat(web): auto-switch port on conflict and open browser on startup | ## 背景
Web 控制台默认监听 `9899` 端口。当该端口已被占用时(例如上一个进程未正常退出),`cow start` 会抛出 `OSError: Address already in use` 异常并直接崩溃,导致 Web 控制台完全不可用,用户需要手动排查端口占用才能重启。
此外,服务启动成功后用户需要手动打开浏览器并输入地址,体验不够流畅。
## 改动动机
- 消除因端口冲突导致的启动失败,提升可用性
- 减少用户操作步骤,服务就绪后自动打开控制台页面
## 改动内容
**`channel/web/web_channel.py`**
1. 新增 `_find_available_port(start_po... | fb341b869b14339e92aa110d019ded7a90707817 | ad51aabfd7b1ec5155260ebf4a31b096bc073d4a | diff --git a/channel/web/web_channel.py b/channel/web/web_channel.py
index 6823c02d46..98087deb8b 100644
--- a/channel/web/web_channel.py
+++ b/channel/web/web_channel.py
@@ -554,6 +554,13 @@ def startup(self):
logger.info(f"[WebChannel] 🌐 本地访问: http://localhost:{port}")
logger.info(f"[WebChannel] 🌍... | [
"channel/web/web_channel.py"
] | [] | true | ||
zhayujie/CowAgent | 2,807 | issue_to_patch | feat(log): add level coloring, multiline inherit, and filter checkboxes | ## 背景
Web 控制台的日志页面(run.log)以纯文本显示所有日志,DEBUG/INFO/WARNING/ERROR/CRITICAL 全部同色,难以快速定位问题。多行日志(如带缩进的错误详情)的续行也没有任何样式,视觉上与正文混淆。
## 改动动机
- 通过颜色区分日志级别,让关键信息(WARNING/ERROR/CRITICAL)一眼可见
- 续行继承上一行的级别样式,保持多行日志视觉完整性
- 支持按级别过滤,减少信息噪音
## 改动内容
**`channel/web/static/css/console.css`**
新增 5 个日志级别样式类:
| 级别 | 样式 |
|------|------|
... | fb341b869b14339e92aa110d019ded7a90707817 | 83f2aea1235620c0ad523a17c271d62cbd978200 | diff --git a/channel/web/chat.html b/channel/web/chat.html
index 01e1d0e4a8..0b15e21c0c 100644
--- a/channel/web/chat.html
+++ b/channel/web/chat.html
@@ -907,6 +907,28 @@ <h2 class="text-xl font-bold text-slate-800 dark:text-slate-100" data-i18n="logs
</div>
... | [
"channel/web/chat.html",
"channel/web/static/css/console.css",
"channel/web/static/js/console.js"
] | [] | true | ||
zhayujie/CowAgent | 2,806 | issue_to_patch | fix(app): suppress KeyboardInterrupt traceback on Ctrl+C | ## 背景
使用 `python app.py` 启动后按 Ctrl+C,终端会打印如下 traceback,看起来像是程序崩溃:
```
^C[INFO][2026-05-10 17:05:30][app.py:268] - signal 2 received, exiting...
[INFO][2026-05-10 17:05:30][config.py:291] - [Config] User datas saved.
Traceback (most recent call last):
File "app.py", line 369, in <module>
run()
File "app.py", l... | fb341b869b14339e92aa110d019ded7a90707817 | eca9b60235becd73fddfbab9b534ba92934a95b5 | diff --git a/app.py b/app.py
index c442e07184..be4ad2ebff 100644
--- a/app.py
+++ b/app.py
@@ -360,6 +360,8 @@ def run():
while True:
time.sleep(1)
+ except KeyboardInterrupt:
+ pass
except Exception as e:
logger.error("App startup failed!")
logger.exception(e)
| [
"app.py"
] | [] | true | ||
zhayujie/CowAgent | 2,808 | issue_to_patch | docs: update contributor username from ooaaooaa123 to yangluxin613 | ## 背景
贡献者 @ooaaooaa123 已将 GitHub 用户名更改为 @yangluxin613。
## 改动内容
更新 v2.0.8 release notes 中三个语言版本的贡献者署名:
- `docs/releases/v2.0.8.mdx`(中文)
- `docs/en/releases/v2.0.8.mdx`(英文)
- `docs/ja/releases/v2.0.8.mdx`(日文)
🤖 Generated with [Claude Code](https://claude.com/claude-code) | fb341b869b14339e92aa110d019ded7a90707817 | c2ec26910a9bac5926a377e83693173575f9be62 | diff --git a/docs/en/releases/v2.0.8.mdx b/docs/en/releases/v2.0.8.mdx
index a9b325b6e3..13a63d3a37 100644
--- a/docs/en/releases/v2.0.8.mdx
+++ b/docs/en/releases/v2.0.8.mdx
@@ -24,7 +24,7 @@ Integrated with Feishu CardKit streaming cards, **enabled by default**, matching
- Falls back to plain text replies automatica... | [
"docs/en/releases/v2.0.8.mdx",
"docs/ja/releases/v2.0.8.mdx",
"docs/releases/v2.0.8.mdx"
] | [] | true | ||
zhayujie/CowAgent | 2,801 | issue_to_patch | feat(mcp): add MCP (Model Context Protocol) tool integration | ## 概述
- 新增轻量级 MCP 客户端(支持 `stdio` 和 `SSE` 两种传输方式),基于标准库实现,零额外依赖
- 通过 `McpTool` 将每个 MCP 工具包装为 `BaseTool`,无缝接入现有工具系统
- `ToolManager` 在启动时自动加载 MCP 工具;发生错误时优雅降级;未配置时无任何副作用
## 背景
CowAgent 目前的工具系统是一套固定的内置工具集。MCP(模型上下文协议)是连接 Agent 与外部工具提供方的新兴标准,已被 Claude Code、Cursor 及越来越多的生态项目原生支持。本 PR 在不引入任何强制依赖的前提下,将 CowAgent 从**固定工具集**升级... | 55aaf60a57ea6e9f4b8a54797572d98f65e88d2f | b861eef26f6cace05bf736cee0e80ca9c7fe0ce7 | diff --git a/agent/tools/__init__.py b/agent/tools/__init__.py
index 8bfc6de92d..78e7b979f0 100644
--- a/agent/tools/__init__.py
+++ b/agent/tools/__init__.py
@@ -107,6 +107,22 @@ def _import_browser_tool():
BrowserTool = _import_browser_tool()
+# MCP Tools (no extra dependencies, loaded on demand)
+def _import_mc... | [
"agent/tools/__init__.py",
"agent/tools/mcp/__init__.py",
"agent/tools/mcp/mcp_client.py",
"agent/tools/mcp/mcp_tool.py",
"agent/tools/tool_manager.py",
"bridge/agent_initializer.py",
"config.py"
] | [] | true | ||
zhayujie/CowAgent | 2,790 | issue_to_patch | Add first-class Baidu Qianfan / ERNIE provider | ## What changed
- Added a first-class `qianfan` model provider backed by Baidu Qianfan's OpenAI-compatible `/chat/completions` API.
- Added ERNIE model constants and routing for `qianfan` / `ernie-*` across Bridge, AgentBridge, Cow CLI model switching, and bot factory creation.
- Added dedicated `qianfan_api_key` and ... | 02bfe308486696427e9a337f0e6a2bb04c9016a1 | bc7f953fccf0015dcab5158da9408b65414a6d00 | diff --git a/README.md b/README.md
index e0529359f5..4cf23bce82 100644
--- a/README.md
+++ b/README.md
@@ -115,7 +115,7 @@ irm https://cdn.link-ai.tech/code/cow/run.ps1 | iex
项目支持国内外主流厂商的模型接口,可选模型及配置说明参考:[模型说明](#模型说明)。
-> 注:Agent 模式下推荐使用以下模型,可根据效果及成本综合选择:deepseek-v4-flash、MiniMax-M2.7、glm-5.1、kimi-k2.6、qwen3.5-plu... | [
"README.md",
"bridge/agent_bridge.py",
"bridge/bridge.py",
"channel/web/web_channel.py",
"common/const.py",
"config-template.json",
"config.py",
"docs/en/models/index.mdx",
"docs/en/models/qianfan.mdx",
"docs/ja/models/index.mdx",
"docs/ja/models/qianfan.mdx",
"docs/models/index.mdx",
"docs/... | [] | diff --git a/tests/test_qianfan_provider.py b/tests/test_qianfan_provider.py
new file mode 100644
index 0000000000..e2c3d4fe9d
--- /dev/null
+++ b/tests/test_qianfan_provider.py
@@ -0,0 +1,281 @@
+# encoding:utf-8
+import os
+import sys
+import unittest
+from unittest.mock import MagicMock, patch
+
+sys.path.insert(0, ... | true | |
zhayujie/CowAgent | 2,800 | issue_to_patch | 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.vision.model` routing.
- Updated Vis... | c322c0e3a54366b684d9d5d4f5302cf055383042 | fb7962c7f285999f6a0f3309d778873505f337e7 | 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.... | [
"README.md",
"agent/tools/vision/vision.py",
"common/const.py",
"docs/en/models/qianfan.mdx",
"docs/en/tools/vision.mdx",
"docs/ja/models/qianfan.mdx",
"docs/ja/tools/vision.mdx",
"docs/models/qianfan.mdx",
"docs/tools/vision.mdx",
"models/qianfan/qianfan_bot.py",
"tests/test_qianfan_provider.py... | [] | diff --git a/tests/test_qianfan_provider.py b/tests/test_qianfan_provider.py
index 7f638e9e54..211d3acdbe 100644
--- a/tests/test_qianfan_provider.py
+++ b/tests/test_qianfan_provider.py
@@ -19,10 +19,20 @@ def test_ernie_constants_are_in_model_list(self):
self.assertEqual(const.ERNIE_45_TURBO_128K, "ernie-4.5... | true | |
zhayujie/CowAgent | 2,797 | issue_to_patch | 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. 在默认配置中加入 `youdao_translate_app_key` / `youdao_translate_app_secret`... | 1065c7e722bb79393bba93637c39d8c451f32edd | fc4f5077b03f8e6967b21d65208f9c94ba9745c9 | 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
... | [
"config.py",
"tests/test_youdao_translator.py",
"translate/factory.py",
"translate/youdao/youdao_translate.py"
] | [] | diff --git a/tests/test_youdao_translator.py b/tests/test_youdao_translator.py
new file mode 100644
index 0000000000..5c50ffc764
--- /dev/null
+++ b/tests/test_youdao_translator.py
@@ -0,0 +1,260 @@
+# encoding:utf-8
+"""
+Unit tests for the Youdao translator integration:
+ - YoudaoTranslator class behavior (signature... | true | |
zhayujie/CowAgent | 2,791 | issue_to_patch | 建议以飞书渠道为核心,打通流式反馈,语音的接收与语音的反馈
### ⚠️ 搜索是否存在类似issue
- [x] 我已经搜索过issues和disscussions,没有发现相似issue
### 总结
建议目前该项目使用一个渠道丰富,这样实现一个相对来说功能完善的渠道,才有可能对标获得与同类项目的相对特色,目前飞书生态有起来的意思,可以借此进行深度绑定
### 举例
_No response_
### 动机
目前我分析了最新飞书渠道的功能如下:
1. 是否支持流程反馈(流式反馈)
结论:目前不支持流式反馈 分析:
飞书渠道的 send 方法([feishu_channel.py:346]采用全量发送模式,AI生成... | feat(feishu): 支持语音消息收发与流式打字机回复 | Closes zhayujie/CowAgent#2697
## Background
飞书渠道长期缺失三项核心能力(见 #2697 的分析):
| 功能 | 改动前 |... | 02bfe308486696427e9a337f0e6a2bb04c9016a1 | 23bfc8d0bab815217b614137f04bf52f44dc7dde | 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... | [
"channel/feishu/feishu_channel.py",
"channel/feishu/feishu_message.py",
"config-template.json",
"voice/audio_convert.py"
] | [] | true | |
zhayujie/CowAgent | 2,795 | issue_to_patch | 定时任务结果建议进入接收者会话上下文,方便继续追问
我在看 scheduler 和会话持久化逻辑时注意到一个边界场景,感觉对飞书、QQ、Web 这类主动推送渠道会比较常见。
场景:
1. 用户在某个聊天里创建定时任务,例如每天汇总日报、监控某个事项、定时跑一个 tool/skill。
2. 任务按时执行,并把最终结果主动推送到这个聊天。
3. 用户马上回复:「你刚才那条里提到的第二点展开说说」或「按刚才的结论继续处理」。
期望:
Agent 能把刚刚主动发出的最终结果当成这个聊天的近期上下文,后续追问可以自然接上。
现在的实现里,`agent_task` / `skill_call` 会用 `scheduler_<rec... | fix: remember scheduled task outputs with correct session mapping (v2) | ## Summary
V2 addressing review feedback on #2794:
### 1. Fixed: `receiver` ≠ `session_id` in group chats
- `_remember_delivered_output` now reads `action.notify_session_id` (the real chat session_id stored at task creation time) instead of raw `receiver`
- Falls back to `receiver` for backward compatibility with exi... | 02bfe308486696427e9a337f0e6a2bb04c9016a1 | f150d7d83a3beda9990a4b13b24a6c6dd475ad49 | 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... | [
"agent/tools/scheduler/integration.py",
"bridge/agent_bridge.py"
] | [] | true | |
zhayujie/CowAgent | 2,772 | issue_to_patch | fix: bot_type change notification never shown after model switch | d4e5ecd4974b0f8f197e8efa222ff46eae5c0a20 | 8fa95f058a87c78ef42f4b75a9ea00057c89ad80 | diff --git a/plugins/cow_cli/cow_cli.py b/plugins/cow_cli/cow_cli.py
index 8addc9c4e8..9dda19cc1d 100644
--- a/plugins/cow_cli/cow_cli.py
+++ b/plugins/cow_cli/cow_cli.py
@@ -379,11 +379,11 @@ def _config_set(self, key: str, value_str: str) -> str:
new_val = value_str
updates = {key: new_val... | [
"plugins/cow_cli/cow_cli.py"
] | [] | true | |||
zhayujie/CowAgent | 2,766 | issue_to_patch | feat(web): add multi-session management for web console | da97e948cad77382ccd96b169827bbf36809cdeb | 90e4d494b231248f2108c249d298bae043ca81bc | 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,
- ... | [
"agent/memory/conversation_store.py",
"channel/web/chat.html",
"channel/web/static/css/console.css",
"channel/web/static/js/console.js",
"channel/web/web_channel.py",
"docs/channels/web.mdx",
"docs/en/channels/web.mdx",
"docs/ja/channels/web.mdx"
] | [] | true | |||
zhayujie/CowAgent | 2,764 | issue_to_patch | fix: Fix run.sh for MacOS via add timeout fallback | ### Problem
The `timeout` command (GNU Coreutils) is not available by default on macOS, causing the installation script to fail with:
```
/dev/fd/11: line 178: timeout: command not found
⚠️ GitHub clone failed or timed out, switching to Gitee mirror...
/dev/fd/11: line 182: timeout: command not found
❌ Project clone... | 12e8c3d449a3d432047eeaf2519fba0c62e775d3 | f79a915136c5e62c3752598ce9c1e157a18acd6c | diff --git a/run.sh b/run.sh
index 7ad6f85daf..8693ac0691 100755
--- a/run.sh
+++ b/run.sh
@@ -28,6 +28,20 @@ if [ -z "$BASH_VERSION" ]; then
exit 1
fi
+# Fallback for 'timeout' on macOS where GNU Coreutils is not installed by default.
+# If 'gtimeout' (Homebrew's coreutils) is present, we use it. Otherwise, we... | [
"run.sh"
] | [] | true | ||
zhayujie/CowAgent | 2,763 | issue_to_patch | 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 poll frequency to 5s/10s
- Ensure equal card height and adjust layout po... | 070df826f15308d9ee59870cf791e172b0e33f52 | 4f7064575e72f90da6c422867ade974129e30c75 | 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=... | [
"channel/web/chat.html",
"channel/web/static/css/console.css",
"channel/web/static/js/console.js"
] | [] | true | ||
zhayujie/CowAgent | 2,762 | issue_to_patch | 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)
- Add login page UI with auto-redirect on session expi... | 4dd497fb6d7377818cf0b5559d716add32bfdd45 | fbe48a4b4e621991f0209000d66315a09b20a0d2 | 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,... | [
"README.md",
"channel/web/chat.html",
"channel/web/static/css/console.css",
"channel/web/static/js/console.js",
"channel/web/web_channel.py",
"config-template.json",
"config.py",
"docker/docker-compose.yml",
"docs/channels/web.mdx",
"docs/en/README.md",
"docs/en/knowledge/index.mdx",
"docs/int... | [] | true | ||
zhayujie/CowAgent | 2,761 | issue_to_patch | 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 under `~/cow/knowledge/`, maintaining `in... | 3497f00cb4701fcfcfcee6daf03eced14601ce14 | 5162da5654a0f455d55c907671e64a3d15b3891a | 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... | [
"README.md",
"agent/chat/service.py",
"agent/knowledge/__init__.py",
"agent/knowledge/service.py",
"agent/memory/conversation_store.py",
"agent/memory/manager.py",
"agent/memory/summarizer.py",
"agent/prompt/builder.py",
"agent/prompt/workspace.py",
"agent/protocol/agent_stream.py",
"agent/skill... | [] | true | ||
zhayujie/CowAgent | 2,759 | issue_to_patch | 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 shadowing issue with OpenAICompatibleBot mixin
- Refactor vision... | 46e80dceeca1446a88492745931d7778bb17f55b | 26693acc3f8d299983bfbb63694ca3fe4b8ba323 | 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... | [
"agent/tools/vision/vision.py",
"bridge/agent_bridge.py",
"bridge/agent_initializer.py",
"channel/web/static/js/console.js",
"channel/web/web_channel.py",
"docs/en/tools/vision.mdx",
"docs/ja/tools/vision.mdx",
"docs/tools/vision.mdx",
"models/bot.py",
"models/claudeapi/claude_api_bot.py",
"mode... | [] | true | ||
zhayujie/CowAgent | 2,756 | issue_to_patch | 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-template.json`)
- **Add MiniMax TTS provider** (`voice/minimax/minimax... | 46e80dceeca1446a88492745931d7778bb17f55b | c34308cbd4679110b1be98dfd4825af98552c66e | 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` 将开启群... | [
"README.md",
"common/const.py",
"models/minimax/minimax_bot.py",
"tests/test_minimax_provider.py",
"voice/factory.py",
"voice/minimax/__init__.py",
"voice/minimax/minimax_voice.py"
] | [] | diff --git a/tests/test_minimax_provider.py b/tests/test_minimax_provider.py
new file mode 100644
index 0000000000..cfad7fd732
--- /dev/null
+++ b/tests/test_minimax_provider.py
@@ -0,0 +1,184 @@
+# encoding:utf-8
+"""
+Unit tests for MiniMax provider additions:
+ - MiniMax-M2.7-highspeed constant in const.py
+ - Def... | true | |
zhayujie/CowAgent | 2,755 | issue_to_patch | fix: send generic file types (tar.gz, zip, etc.) as FILE instead of TEXT | Previously, files with extensions not in the known categories (image, document, video, audio) fell through to a fallback that returned ReplyType.TEXT, causing the file to never actually be sent to the user. Now the fallback uses ReplyType.FILE so all file types are delivered.
#2752 | 3cd92ccda3e746f7315fe1f8db9a71962041dafa | 90d18353534ed8baff2562ad3c3bd9020e3b0ce8 | diff --git a/bridge/agent_bridge.py b/bridge/agent_bridge.py
index 84b7aad645..665abd2215 100644
--- a/bridge/agent_bridge.py
+++ b/bridge/agent_bridge.py
@@ -498,10 +498,14 @@ def _create_file_reply(self, file_info: dict, text_response: str, context: Conte
reply.text_content = text_response
... | [
"bridge/agent_bridge.py"
] | [] | true | ||
zhayujie/CowAgent | 2,595 | issue_to_patch | feat: add agent plugin and optimize web channel | 8e6afa5614d4531b36d0edeb76a6a0a1ab2f50f9 | 8bf1aef8012e58fd1fba0252225cc59d33c0c5cb | 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
... | [
".gitignore",
"channel/web/README.md",
"channel/web/chat.html",
"channel/web/static/axios.min.js",
"channel/web/static/github.png",
"channel/web/web_channel.py",
"config-template.json",
"plugins/agent/README.md",
"plugins/agent/__init__.py",
"plugins/agent/agent.py",
"plugins/agent/config-templa... | [] | diff --git a/simple_login_form_test.html b/simple_login_form_test.html
new file mode 100644
index 0000000000..286a008a51
--- /dev/null
+++ b/simple_login_form_test.html
@@ -0,0 +1,278 @@
+<!DOCTYPE html>
+<html lang="zh-CN">
+<head>
+<meta charset="UTF-8" />
+<meta name="viewport" content="width=device-width, initial-s... | true | ||
zhayujie/CowAgent | 2,593 | issue_to_patch | feat: web ui channel optimization | 628f75009e6b01aedcfbfcc28855a87257657725 | a1ae3804e34ba7e999ae57bd9e9309bc31656430 | 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... | [
"channel/web/chat.html",
"channel/web/web_channel.py"
] | [] | true | |||
zhayujie/CowAgent | 1,675 | issue_to_patch | feat: channel client | eb809055d49efcc2036f7d89088aea7b50097162 | 40a10ee92628d949cd9788028cac3dfcae5d0f90 | 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... | [
".gitignore",
"app.py",
"bot/linkai/link_ai_bot.py",
"channel/channel.py",
"channel/channel_factory.py",
"channel/feishu/feishu_channel.py",
"channel/wechat/wechat_channel.py",
"common/linkai_client.py"
] | [] | true | |||
zhayujie/CowAgent | 1,598 | issue_to_patch | feat: support gemini model | 219e9eca4f599d214a52f927880a6d761458eca2 | eca1892e2aa61a63d581f3cc74a9c76f9fb6f51e | 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... | [
"bot/bot_factory.py",
"bot/chatgpt/chat_gpt_session.py",
"bot/gemini/google_gemini_bot.py",
"bridge/bridge.py",
"common/const.py",
"config.py",
"plugins/godcmd/godcmd.py"
] | [] | true | |||
zhayujie/CowAgent | 1,553 | issue_to_patch | feat: add image chat and fix session discard | 061d8a3a5f87df7cbcd6785774beff32781874b9 | a12507abbd9f110fac787d2cb82cb6e8c4e1de4c | 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
+
... | [
"bot/linkai/link_ai_bot.py",
"bot/session_manager.py",
"channel/chat_channel.py",
"common/memory.py",
"common/utils.py",
"plugins/linkai/README.md",
"plugins/linkai/config.json.template",
"plugins/linkai/linkai.py",
"plugins/linkai/summary.py"
] | [] | true | |||
zhayujie/CowAgent | 1,485 | issue_to_patch | feat: show thought and plugin in agent process | 5e007041523353a131f3084dbad2d387d9302135 | 63313502391eae1a1c99d38f20a4d58dafde85ef | diff --git a/bot/linkai/link_ai_bot.py b/bot/linkai/link_ai_bot.py
index 089e387f58..00ad0e9cf0 100644
--- a/bot/linkai/link_ai_bot.py
+++ b/bot/linkai/link_ai_bot.py
@@ -96,9 +96,14 @@ def _chat(self, query, context, retry_count=0) -> Reply:
total_tokens = response["usage"]["total_tokens"]
... | [
"bot/linkai/link_ai_bot.py"
] | [] | true | |||
zhayujie/CowAgent | 1,358 | issue_to_patch | feat: add midjourney variation and reset | 176941ea3bdb0be0ede18a04f4e418e8886e5213 | 6b247ae880ac3e1210243f1e4d58bc9de5e431eb | 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... | [
"plugins/linkai/linkai.py",
"plugins/linkai/midjourney.py"
] | [] | true | |||
zhisheng17/flink-learning | 89 | issue_to_patch | 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`)
- Models: `AlertEvent`, `AlertRule`, `TransactionEvent`, `ServerMetric`, `PageAccessEvent`
- ... | 574f0aa1fd4aa45044564e6effcfcb9aac157bea | 0a28a21f5dc2c020f7ef970ce7818ba5935a8b2e | 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... | [
"flink-learning-datalake/flink-learning-paimon/pom.xml",
"flink-learning-project/flink-learning-project-common/src/main/java/com/zhisheng/project/common/constant/ProjectConstants.java",
"flink-learning-project/flink-learning-project-common/src/main/java/com/zhisheng/project/common/model/AlertEvent.java",
"fli... | [] | true | ||
zhisheng17/flink-learning | 91 | issue_to_patch | Bump com.squareup.okhttp3:okhttp from 3.12.1 to 4.9.2 in /flink-learning-k8s/flink-k8s | Bumps [com.squareup.okhttp3:okhttp](https://github.com/square/okhttp) from 3.12.1 to 4.9.2.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/square/okhttp/blob/master/CHANGELOG.md">com.squareup.okhttp3:okhttp's changelog</a>.</em></p>
<blockquote>
<h1>Change Log</h1>
<h2>Version 5.... | 574f0aa1fd4aa45044564e6effcfcb9aac157bea | 1ce4eaee1565689abf0469e17cee904184944695 | diff --git a/flink-learning-k8s/flink-k8s/pom.xml b/flink-learning-k8s/flink-k8s/pom.xml
index 9b0c3263..187629dd 100644
--- a/flink-learning-k8s/flink-k8s/pom.xml
+++ b/flink-learning-k8s/flink-k8s/pom.xml
@@ -23,7 +23,7 @@
<dependency>
<groupId>com.squareup.okhttp3</groupId>
... | [
"flink-learning-k8s/flink-k8s/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 90 | issue_to_patch | Bump com.alibaba:fastjson from 1.2.54 to 1.2.83 in /flink-learning-sql/flink-learning-sql-client | Bumps [com.alibaba:fastjson](https://github.com/alibaba/fastjson) from 1.2.54 to 1.2.83.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/alibaba/fastjson/releases">com.alibaba:fastjson's releases</a>.</em></p>
<blockquote>
<h2>FASTJSON 1.2.83版本发布(安全修复)</h2>
<p>这是一个安全修复版本,修复最近收... | 574f0aa1fd4aa45044564e6effcfcb9aac157bea | 18a23004bb1f7587e62c9f86b43ea4859eabd99e | diff --git a/flink-learning-sql/flink-learning-sql-client/pom.xml b/flink-learning-sql/flink-learning-sql-client/pom.xml
index fd211b58..1db8b6da 100644
--- a/flink-learning-sql/flink-learning-sql-client/pom.xml
+++ b/flink-learning-sql/flink-learning-sql-client/pom.xml
@@ -17,7 +17,7 @@
<dependency>
... | [
"flink-learning-sql/flink-learning-sql-client/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 92 | issue_to_patch | Bump io.netty:netty-all from 4.1.6.Final to 4.1.42.Final in /flink-learning-connectors/flink-learning-connectors-netty | Bumps [io.netty:netty-all](https://github.com/netty/netty) from 4.1.6.Final to 4.1.42.Final.
<details>
<summary>Commits</summary>
<ul>
<li><a href="https://github.com/netty/netty/commit/bd907c3b3acf3d746ad1143270224aa0f784cd1b"><code>bd907c3</code></a> [maven-release-plugin] prepare release netty-4.1.42.Final</li>
<li>... | 574f0aa1fd4aa45044564e6effcfcb9aac157bea | 55a61f6b87c4acc878b128735175d2f8d1a05e37 | diff --git a/flink-learning-connectors/flink-learning-connectors-netty/pom.xml b/flink-learning-connectors/flink-learning-connectors-netty/pom.xml
index 30630d0b..36c6e083 100644
--- a/flink-learning-connectors/flink-learning-connectors-netty/pom.xml
+++ b/flink-learning-connectors/flink-learning-connectors-netty/pom.x... | [
"flink-learning-connectors/flink-learning-connectors-netty/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 85 | issue_to_patch | 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.
### Datalake module implementation
Each submodule gets proper Maven dependencies and e... | 97e2c8eed235972263755582af11e5a59c747669 | b6255fa9fa775aaff80ec96fad300888dcfd3536 | 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... | [
"flink-learning-datalake/README.md",
"flink-learning-datalake/flink-learning-datalake-deltalake/pom.xml",
"flink-learning-datalake/flink-learning-datalake-deltalake/src/main/java/com/zhisheng/datalake/delta/DeltaLakeExample.java",
"flink-learning-datalake/flink-learning-datalake-hudi/pom.xml",
"flink-learni... | [] | true | ||
zhisheng17/flink-learning | 86 | issue_to_patch | 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-paimon` (directory, artifactId, parent module reference)
- ... | a665d745354188984599d866ac30848c232e373f | cb5ee17f048046caac54a6cc95f345107d42de5f | 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 ... | [
"flink-learning-datalake/README.md",
"flink-learning-datalake/flink-learning-paimon/README.md",
"flink-learning-datalake/flink-learning-paimon/pom.xml",
"flink-learning-datalake/flink-learning-table-store/README.md",
"flink-learning-datalake/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 87 | issue_to_patch | Bump com.alibaba.nacos:nacos-common from 1.4.1 to 1.4.5 in /flink-learning-configuration-center/flink-learning-configuration-center-nacos | Bumps [com.alibaba.nacos:nacos-common](https://github.com/alibaba/nacos) from 1.4.1 to 1.4.5.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/alibaba/nacos/releases">com.alibaba.nacos:nacos-common's releases</a>.</em></p>
<blockquote>
<h2>1.4.5 (Mar 17th, 2023)</h2>
<p>This ve... | a665d745354188984599d866ac30848c232e373f | 49e9674596597edf32097cda245b4e27a24eafae | diff --git a/flink-learning-configuration-center/flink-learning-configuration-center-nacos/pom.xml b/flink-learning-configuration-center/flink-learning-configuration-center-nacos/pom.xml
index f9b21598..b90e94a8 100644
--- a/flink-learning-configuration-center/flink-learning-configuration-center-nacos/pom.xml
+++ b/fli... | [
"flink-learning-configuration-center/flink-learning-configuration-center-nacos/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 88 | issue_to_patch | Bump org.apache.kafka:kafka-clients from 2.4.1 to 3.9.1 in /flink-learning-extends/FlinkLogKafkaAppender | Bumps org.apache.kafka:kafka-clients from 2.4.1 to 3.9.1.
[](https://docs.github.com/en/github/managing-sec... | a665d745354188984599d866ac30848c232e373f | e56ab2fc1f9272a66ed53a4f2f651f71fc3a4383 | diff --git a/flink-learning-extends/FlinkLogKafkaAppender/pom.xml b/flink-learning-extends/FlinkLogKafkaAppender/pom.xml
index 079ff337..288b175d 100644
--- a/flink-learning-extends/FlinkLogKafkaAppender/pom.xml
+++ b/flink-learning-extends/FlinkLogKafkaAppender/pom.xml
@@ -21,7 +21,7 @@
<properties>
<mav... | [
"flink-learning-extends/FlinkLogKafkaAppender/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 84 | issue_to_patch | [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: MysqlCDCExample.java
- [x] Implement flink-postgres-cdc:... | f065f0635f3bbb9ac79d24ccedb64f5432ca5323 | e78d8fa3b291d60533d2c625d3d3d090baf7d8cc | 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>
... | [
"flink-learning-cdc/flink-db2-cdc/pom.xml",
"flink-learning-cdc/flink-db2-cdc/src/main/java/com/zhisheng/cdc/db2/Db2CDCExample.java",
"flink-learning-cdc/flink-mongodb-cdc/pom.xml",
"flink-learning-cdc/flink-mongodb-cdc/src/main/java/com/zhisheng/cdc/mongodb/MongoDBCDCExample.java",
"flink-learning-cdc/flin... | [] | true | ||
zhisheng17/flink-learning | 82 | issue_to_patch | [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-streaming-java, flink-clients, flink-cep, flink-table-api-j... | f3e6456c329cca6dfaaf7b99dbee9faf5ae88ef7 | b3c3835623c1d91fbd039b7aa4d84bf4d10dd7f4 | 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... | [
"flink-learning-basic/flink-learning-libraries/flink-learning-libraries-cep/pom.xml",
"flink-learning-basic/flink-learning-libraries/flink-learning-libraries-state-processor-api/pom.xml",
"flink-learning-cdc/flink-db2-cdc/pom.xml",
"flink-learning-cdc/flink-mongodb-cdc/pom.xml",
"flink-learning-cdc/flink-my... | [] | diff --git a/flink-learning-sql/flink-learning-sql-blink/src/test/java/test/TableEnvironmentExample1.java b/flink-learning-sql/flink-learning-sql-blink/src/test/java/test/TableEnvironmentExample1.java
index 1031900a..8f35bb3e 100644
--- a/flink-learning-sql/flink-learning-sql-blink/src/test/java/test/TableEnvironmentEx... | true | |
zhisheng17/flink-learning | 83 | issue_to_patch | Bump org.apache.hadoop:hadoop-common from 2.7.4 to 3.4.0 in /flink-learning-connectors/flink-learning-connectors-hbase | Bumps org.apache.hadoop:hadoop-common from 2.7.4 to 3.4.0.
[](https://docs.github.com/en/github/managing-s... | f3e6456c329cca6dfaaf7b99dbee9faf5ae88ef7 | 7a4a896c84dbbadcc8c7284c45691e6bc8804521 | diff --git a/flink-learning-connectors/flink-learning-connectors-hbase/pom.xml b/flink-learning-connectors/flink-learning-connectors-hbase/pom.xml
index 625a85d2..9f3bd276 100644
--- a/flink-learning-connectors/flink-learning-connectors-hbase/pom.xml
+++ b/flink-learning-connectors/flink-learning-connectors-hbase/pom.x... | [
"flink-learning-connectors/flink-learning-connectors-hbase/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 81 | issue_to_patch | Bump org.apache.kafka:kafka-clients from 2.4.1 to 3.9.1 in /flink-learning-extends/flink-metrics/flink-metrics-kafka | Bumps org.apache.kafka:kafka-clients from 2.4.1 to 3.9.1.
[](https://docs.github.com/en/github/managing-sec... | 7fd5c5d41e69afc1188672c1330dc4421b0d85f1 | 1d57f2bde39d9ef462bfaa45bab92b2b0144537f | diff --git a/flink-learning-extends/flink-metrics/flink-metrics-kafka/pom.xml b/flink-learning-extends/flink-metrics/flink-metrics-kafka/pom.xml
index 16d9a8ea..4cb0053c 100644
--- a/flink-learning-extends/flink-metrics/flink-metrics-kafka/pom.xml
+++ b/flink-learning-extends/flink-metrics/flink-metrics-kafka/pom.xml
@... | [
"flink-learning-extends/flink-metrics/flink-metrics-kafka/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 80 | issue_to_patch | Bump org.apache.hadoop:hadoop-common from 2.7.4 to 3.4.0 in /flink-learning-sql/flink-learning-sql-blink | Bumps org.apache.hadoop:hadoop-common from 2.7.4 to 3.4.0.
[](https://docs.github.com/en/github/managing-s... | 9ee682b23c6d67a612eaddce65a2a301fdcf553a | 70fb1690a08ab5aac14caa96cf81356d3919fb65 | diff --git a/flink-learning-sql/flink-learning-sql-blink/pom.xml b/flink-learning-sql/flink-learning-sql-blink/pom.xml
index 895a0ab8..5dcd3997 100644
--- a/flink-learning-sql/flink-learning-sql-blink/pom.xml
+++ b/flink-learning-sql/flink-learning-sql-blink/pom.xml
@@ -50,7 +50,7 @@
<dependency>
... | [
"flink-learning-sql/flink-learning-sql-blink/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 79 | issue_to_patch | Bump org.postgresql:postgresql from 42.2.8 to 42.3.9 in /flink-learning-sql/flink-learning-sql-client | Bumps [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) from 42.2.8 to 42.3.9.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/pgjdbc/pgjdbc/releases">org.postgresql:postgresql's releases</a>.</em></p>
<blockquote>
<h2>v42.3.8</h2>
<h2>What's Changed</h2>
<ul>
<li>... | 3a1feed640734ce4b49680ef707efc5a8650bee2 | 215b4fb5e45a023822e0d7419a5f3415fe901a24 | diff --git a/flink-learning-sql/flink-learning-sql-client/pom.xml b/flink-learning-sql/flink-learning-sql-client/pom.xml
index 6afdb9a6..ff8ad5c0 100644
--- a/flink-learning-sql/flink-learning-sql-client/pom.xml
+++ b/flink-learning-sql/flink-learning-sql-client/pom.xml
@@ -112,7 +112,7 @@
<dependency>
... | [
"flink-learning-sql/flink-learning-sql-client/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 78 | issue_to_patch | 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.
[](https://docs.github.com/en/githu... | 3a1feed640734ce4b49680ef707efc5a8650bee2 | f9679a4fe3a06e4fc347a94a70ea691c71670508 | 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... | [
"flink-learning-extends/FlinkLogKafkaAppender/Log4j2KafkaAppender/pom.xml",
"pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 77 | issue_to_patch | Bump com.jayway.jsonpath:json-path from 2.4.0 to 2.9.0 in /flink-learning-common | Bumps [com.jayway.jsonpath:json-path](https://github.com/jayway/JsonPath) from 2.4.0 to 2.9.0.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/jayway/JsonPath/releases">com.jayway.jsonpath:json-path's releases</a>.</em></p>
<blockquote>
<h2>json-path-2.9.0</h2>
<h2>What's Chan... | a941b297e85417914a5b7088eaa58dd860fe7d36 | ce752ce32410b81f683846ccbc24944be2907f7f | diff --git a/flink-learning-common/pom.xml b/flink-learning-common/pom.xml
index 0a24a18d..269d8a5f 100644
--- a/flink-learning-common/pom.xml
+++ b/flink-learning-common/pom.xml
@@ -36,7 +36,7 @@
<dependency>
<groupId>com.jayway.jsonpath</groupId>
<artifactId>json-path</artifactId>
-... | [
"flink-learning-common/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 50 | issue_to_patch | Bump postgresql from 42.2.8 to 42.3.3 in /flink-learning-sql/flink-learning-sql-blink | Bumps [postgresql](https://github.com/pgjdbc/pgjdbc) from 42.2.8 to 42.3.3.
<details>
<summary>Changelog</summary>
<p><em>Sourced from <a href="https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md">postgresql's changelog</a>.</em></p>
<blockquote>
<h1>Changelog</h1>
<p>Notable changes since version 42.0.0, read th... | f310fc684019daf1d0ff2e5da8e8b218c56ebb3b | e0ef8644af0b4aa529939fb06513cca7cb328c21 | diff --git a/flink-learning-sql/flink-learning-sql-blink/pom.xml b/flink-learning-sql/flink-learning-sql-blink/pom.xml
index e1471046..895a0ab8 100644
--- a/flink-learning-sql/flink-learning-sql-blink/pom.xml
+++ b/flink-learning-sql/flink-learning-sql-blink/pom.xml
@@ -61,7 +61,7 @@
<dependency>
... | [
"flink-learning-sql/flink-learning-sql-blink/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 39 | issue_to_patch | Bump log4j-api from 2.14.1 to 2.17.0 | Bumps log4j-api from 2.14.1 to 2.17.0.
[](https://docs.github.com/en/github/managing-security-vulnera... | 8e0e1df06541ab8c9426c0e3287be17628ea9a56 | 6cd97a1558f86861360ed6726f379e95248b097c | diff --git a/pom.xml b/pom.xml
index 477ca75a..cf118615 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,7 +34,7 @@
<maven.compiler.target>${target.java.version}</maven.compiler.target>
<flink.version>1.13.2</flink.version>
<scala.binary.version>2.11</scala.binary.version>
- <log4j.version>2.... | [
"pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 40 | issue_to_patch | Bump log4j-core from 2.14.1 to 2.17.0 | Bumps log4j-core from 2.14.1 to 2.17.0.
[](https://docs.github.com/en/github/managing-security-vulne... | 8e0e1df06541ab8c9426c0e3287be17628ea9a56 | ed3a240e6a4590bbb66dbbdf5be33d320a38f83c | diff --git a/pom.xml b/pom.xml
index 477ca75a..cf118615 100644
--- a/pom.xml
+++ b/pom.xml
@@ -34,7 +34,7 @@
<maven.compiler.target>${target.java.version}</maven.compiler.target>
<flink.version>1.13.2</flink.version>
<scala.binary.version>2.11</scala.binary.version>
- <log4j.version>2.... | [
"pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 34 | issue_to_patch | Update CEPMain.java | 在当前版本13.x下,CEP source须加上watermark才能生效 | 8e0e1df06541ab8c9426c0e3287be17628ea9a56 | 5406358f5108de803e22cceb7fb96e05a8ce1c33 | diff --git a/flink-learning-libraries/flink-learning-libraries-cep/src/main/java/com/zhisheng/libraries/cep/CEPMain.java b/flink-learning-libraries/flink-learning-libraries-cep/src/main/java/com/zhisheng/libraries/cep/CEPMain.java
index bbf88f85..88fe2687 100644
--- a/flink-learning-libraries/flink-learning-libraries-c... | [
"flink-learning-libraries/flink-learning-libraries-cep/src/main/java/com/zhisheng/libraries/cep/CEPMain.java"
] | [] | true | ||
zhisheng17/flink-learning | 29 | issue_to_patch | Bump nacos-common from 1.1.4 to 1.4.1 in /flink-learning-configration-center/flink-learning-configration-center-nacos | Bumps [nacos-common](https://github.com/alibaba/nacos) from 1.1.4 to 1.4.1.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/alibaba/nacos/releases">nacos-common's releases</a>.</em></p>
<blockquote>
<h2>1.4.1 (Jan 15, 2021)</h2>
<p>This version mainly support IPv6 service regi... | bc4e1ddd4d18eeba6943b3d96ca03927b1bb7320 | d2a2cc025cd4d395227fa7033424bd2ba3d2dac2 | diff --git a/flink-learning-configration-center/flink-learning-configration-center-nacos/pom.xml b/flink-learning-configration-center/flink-learning-configration-center-nacos/pom.xml
index 70a215e9..b3f5e9b8 100644
--- a/flink-learning-configration-center/flink-learning-configration-center-nacos/pom.xml
+++ b/flink-lea... | [
"flink-learning-configration-center/flink-learning-configration-center-nacos/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 28 | issue_to_patch | Bump guava from 24.1.1-jre to 29.0-jre in /flink-learning-common | Bumps [guava](https://github.com/google/guava) from 24.1.1-jre to 29.0-jre.
<details>
<summary>Release notes</summary>
<p><em>Sourced from <a href="https://github.com/google/guava/releases">guava's releases</a>.</em></p>
<blockquote>
<h2>29.0</h2>
<h3>Maven</h3>
<pre lang="xml"><code><dependency>
<groupId>... | bc4e1ddd4d18eeba6943b3d96ca03927b1bb7320 | c4804cfa5c7c7465066483528e8f710c01d01912 | diff --git a/flink-learning-common/pom.xml b/flink-learning-common/pom.xml
index 5096ff82..086f3528 100644
--- a/flink-learning-common/pom.xml
+++ b/flink-learning-common/pom.xml
@@ -16,7 +16,7 @@
<dependency>
<groupId>com.google.guava</groupId>
<artifactId>guava</artifactId>
- ... | [
"flink-learning-common/pom.xml"
] | [] | true | ||
zhisheng17/flink-learning | 20 | issue_to_patch | com.zhisheng.data.sinks.sinks.MySink 賦值失敗修復 | 賦值失敗的原因是沒有在tx前加上this. | ab028f4452e6eda49af509077fbb97b53a589e68 | b78d48ffacdefc886c11c9811c07f2d3067ad120 | diff --git a/flink-learning-data-sinks/src/main/java/com/zhisheng/data/sinks/sinks/MySink.java b/flink-learning-data-sinks/src/main/java/com/zhisheng/data/sinks/sinks/MySink.java
index d1b60483..ed6e25c8 100644
--- a/flink-learning-data-sinks/src/main/java/com/zhisheng/data/sinks/sinks/MySink.java
+++ b/flink-learning-... | [
"flink-learning-data-sinks/src/main/java/com/zhisheng/data/sinks/sinks/MySink.java"
] | [] | true | ||
zhisheng17/flink-learning | 18 | issue_to_patch | Feature/parse metadata | f58300d7e83c36926c646d1d32015b1467b2f3e1 | eb26f93b4cfb187c2a78d29f04fe8cac58aebf03 | 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... | [
"flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java",
"flink-learning-state/src/main/resources/_metadata"
] | [
{
"comment": "第二步?",
"path": "flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java",
"hunk": "@@ -0,0 +1,101 @@\n+package com.zhisheng.state.metadata;\n+\n+import org.apache.flink.core.fs.Path;\n+import org.apache.flink.runtime.checkpoint.Checkpoints;\n+import org.apach... | true | |||
zhisheng17/flink-learning | 18 | comment_to_fix | Feature/parse metadata | 第二步? | f58300d7e83c36926c646d1d32015b1467b2f3e1 | eb26f93b4cfb187c2a78d29f04fe8cac58aebf03 | 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... | [
"flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java"
] | [
{
"comment": "第二步?",
"path": "flink-learning-state/src/main/java/com/zhisheng/state/metadata/MetadataSerializer.java",
"hunk": "@@ -0,0 +1,101 @@\n+package com.zhisheng.state.metadata;\n+\n+import org.apache.flink.core.fs.Path;\n+import org.apache.flink.runtime.checkpoint.Checkpoints;\n+import org.apach... | true | ||
zhisheng17/flink-learning | 16 | issue_to_patch | NewFeature: 使用 LocalKeyBy 的方式解决 Flink 数据倾斜 | bf5990b6bfe23468e876c840709dc1f0099ab8f5 | 764b31f5da6bbd6c1c73e5d9b9ec0fb4975a87d2 | 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... | [
"flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatLocalKeyByExactlyOnce.java",
"flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/util/PvStatExactlyOnceKafkaUtil.java",
"flink-learning-state/src/main/java/com/zhisheng/state/operator/state/Unio... | [] | true | |||
zhisheng17/flink-learning | 15 | issue_to_patch | fixed part of download links which were out of use | I fixed part of download links of the papers which were out of use. | e7b7af222869556fa461dab526f2a3388586e453 | 1bccfa0ad4bdbc8956068b5539155c813a7f412e | diff --git a/paper/paper.md b/paper/paper.md
index 142e3529..9135cbfb 100644
--- a/paper/paper.md
+++ b/paper/paper.md
@@ -25,7 +25,7 @@
- [The Dataflow Model: A Practical Approach to Balancing Correctness, Latency, and Cost in Massive-Scale, Unbounded, Out-of-Order Data Processing](http://people.csail.mit.edu/matei/c... | [
"paper/paper.md"
] | [] | true | ||
zhisheng17/flink-learning | 14 | issue_to_patch | NewFeature:增加百亿去重相关代码 | 2090b6684189644f748a1e80e1cf3fd36c2b1353 | 8a6f3244764019b94b71207d5da56c4f2480f8c8 | 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... | [
"flink-learning-project/flink-learning-project-deduplication/pom.xml",
"flink-learning-project/flink-learning-project-deduplication/src/main/java/com/zhisheng/pvuv/KeyedStateDeduplication.java",
"flink-learning-project/flink-learning-project-deduplication/src/main/java/com/zhisheng/pvuv/TuningKeyedStateDeduplic... | [] | true | |||
zhisheng17/flink-learning | 13 | issue_to_patch | NewFeature: 使用 Redis set、Flink KeyedState、Redis HyperLogLog 三种方式分别计算 UV | NewFeature: 使用 Redis set、Flink KeyedState、Redis HyperLogLog 三种方式分别计算 UV
| 788b26333b657b5230dc58e2617d574b8092e293 | be2f8ffff8ee99477669f2abc1e954db48f54cfd | 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... | [
"flink-learning-monitor/flink-learning-monitor-pvuv/README.md",
"flink-learning-monitor/flink-learning-monitor-pvuv/pom.xml",
"flink-learning-monitor/flink-learning-monitor-pvuv/src/main/java/com/zhisheng/pvuv/HyperLogLogUvExample.java",
"flink-learning-monitor/flink-learning-monitor-pvuv/src/main/java/com/zh... | [] | true | ||
zhisheng17/flink-learning | 10 | issue_to_patch | NewFeature: 代码来验证 getUnionListState() 和 getListState() 的区别 | b33df9a162bd3e9b2373e3d584f5a60689002b18 | c3533edbe7509da4868572d320cc28bcaf71f8ba | 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... | [
"flink-learning-state/src/main/java/com/zhisheng/state/operator/state/UnionListStateExample.java",
"flink-learning-state/src/main/java/com/zhisheng/state/operator/state/util/UnionListStateUtil.java"
] | [] | true | |||
zhisheng17/flink-learning | 9 | issue_to_patch | NewFeature: 利用 ValueState 来维护各app的pv来保障 Exactly Once | 增加了利用 ValueState 来维护各app的pv来保障 Exactly Once | 7b479fb6a464a6db384b2b91af6fc3138e2d0d0d | 76cb2f9b62161683ed272168c47f2fd09b327913 | 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... | [
"flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/PvStatExactlyOnce.java",
"flink-learning-examples/src/main/java/com/zhisheng/examples/streaming/checkpoint/util/PvStatExactlyOnceKafkaUtil.java"
] | [] | true | ||
zhisheng17/flink-learning | 3 | issue_to_patch | Add unit tests for com.zhisheng.common.utils.DateUtil | I've analysed your codebase and noticed that `com.zhisheng.common.utils.DateUtil` is not fully tested.
I've written some tests for the methods in this class with the help of [Diffblue Cover](https://www.diffblue.com/opensource).
Hopefully, these tests will help you detect any regressions caused by future code chang... | cdc1db16ef3e6348cf2d2349b922a2a5da407ee6 | 299d7a197772576252f2926539aac83bf7f3df65 | [
"flink-learning-common/src/test/java/com/zhisheng/common/utils/DateUtilTests.java"
] | [] | diff --git a/flink-learning-common/src/test/java/com/zhisheng/common/utils/DateUtilTests.java b/flink-learning-common/src/test/java/com/zhisheng/common/utils/DateUtilTests.java
new file mode 100644
index 00000000..ea40947e
--- /dev/null
+++ b/flink-learning-common/src/test/java/com/zhisheng/common/utils/DateUtilTests.j... | true | ||
zio/zio-quill | 2,966 | issue_to_patch | Update logback-classic to 1.4.14 | ## About this PR
📦 Updates [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from `1.4.11` to `1.4.14`
## Usage
✅ **Please merge!**
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
If you'd like to skip this version, you can just close this PR. If you... | 2e8a6d5d592d60b5ae260f4564fd7992bd279f2a | 23e27fa2e114cda3a0ba38d5d739b1b8a30584ab | diff --git a/build.sbt b/build.sbt
index 977b929214..efe3617935 100644
--- a/build.sbt
+++ b/build.sbt
@@ -656,7 +656,7 @@ val scalaCollectionCompatVersion = "2.11.0"
lazy val loggingSettings = Seq(
libraryDependencies ++= Seq(
- "ch.qos.logback" % "logback-classic" % "1.4.11" % Test
+ "ch.qos.logback" % "l... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 3,002 | issue_to_patch | Update sqlite-jdbc to 3.45.2.0 | ## About this PR
📦 Updates [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) from `3.45.1.0` to `3.45.2.0`
📜 [GitHub Release Notes](https://github.com/xerial/sqlite-jdbc/releases/tag/3.45.2.0) - [Version Diff](https://github.com/xerial/sqlite-jdbc/compare/3.45.1.0...3.45.2.0)
## Usage
✅ **Please merge... | 46c37d92e6916d5b168728ce5f86c97d1f2bcc0b | 24d9e8d22c313c149ade9b0cc3ec820350cbc948 | diff --git a/build.sbt b/build.sbt
index e4aff7e06f..17a5ed36cb 100644
--- a/build.sbt
+++ b/build.sbt
@@ -586,7 +586,7 @@ lazy val jdbcTestingLibraries = Seq(
"com.mysql" % "mysql-connector-j" % "8.3.0" % Test,
"com.h2database" % "h2" % "2.2.224" % ... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,990 | issue_to_patch | Update pekko-connectors-cassandra, ... to 1.0.2 | ## About this PR
📦 Updates
* [org.apache.pekko:pekko-connectors-cassandra](https://github.com/apache/incubator-pekko-connectors)
* [org.apache.pekko:pekko-testkit](https://github.com/apache/incubator-pekko)
from `1.0.1` to `1.0.2`
📜 [GitHub Release Notes](https://github.com/apache/incubator-pekko-connectors/relea... | 0443030156ed9f2652b87b2d9b12c5686bb059dc | e7ba57dea7292d6e9b8dce7913cdcd128f5118a9 | diff --git a/build.sbt b/build.sbt
index 40ec2b3b90..8c8eb1dbeb 100644
--- a/build.sbt
+++ b/build.sbt
@@ -548,8 +548,8 @@ lazy val `quill-cassandra-pekko` =
.settings(
Test / fork := true,
libraryDependencies ++= Seq(
- "org.apache.pekko" %% "pekko-connectors-cassandra" % "1.0.1",
- "o... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,987 | issue_to_patch | Update logback-classic to 1.5.3 | ## About this PR
📦 Updates [ch.qos.logback:logback-classic](https://github.com/qos-ch/logback) from `1.4.14` to `1.5.3`
## Usage
✅ **Please merge!**
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
If you'd like to skip this version, you can just close this PR. If you ... | 0443030156ed9f2652b87b2d9b12c5686bb059dc | f928f190c62f3d256df4ef1ba009c8c7696fa4ac | diff --git a/build.sbt b/build.sbt
index 40ec2b3b90..45dfd4f22b 100644
--- a/build.sbt
+++ b/build.sbt
@@ -656,7 +656,7 @@ val scalaCollectionCompatVersion = "2.11.0"
lazy val loggingSettings = Seq(
libraryDependencies ++= Seq(
- "ch.qos.logback" % "logback-classic" % "1.4.14" % Test
+ "ch.qos.logback" % "l... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,996 | issue_to_patch | 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)
## Usage
✅ **Please merge!**
... | 0443030156ed9f2652b87b2d9b12c5686bb059dc | c5200be2aa6d2f1b929abd72dd5da08a013ef2fe | 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... | [
".scalafmt.conf",
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,954 | issue_to_patch | Update zio, zio-streams to 2.0.19 | ## About this PR
📦 Updates
* [dev.zio:zio](https://github.com/zio/zio)
* [dev.zio:zio-streams](https://github.com/zio/zio)
from `2.0.15` to `2.0.19`
📜 [GitHub Release Notes](https://github.com/zio/zio/releases/tag/v2.0.19) - [Version Diff](https://github.com/zio/zio/compare/v2.0.15...v2.0.19)
## Usage
✅ **Please... | 059fec427b71324053f6873a18d67b1f7f5b611a | a067344b1a6ae35a4a8bc5c07818e742d677593f | diff --git a/project/Dependencies.scala b/project/Dependencies.scala
index eb255dd57f..7f33a6113d 100644
--- a/project/Dependencies.scala
+++ b/project/Dependencies.scala
@@ -2,7 +2,7 @@ import sbt.*
import sbt.Keys.*
object Version {
- val zio = "2.0.15"
+ val zio = "2.0.19"
}
sealed trait ExcludeTests
| [
"project/Dependencies.scala"
] | [] | true | ||
zio/zio-quill | 2,961 | issue_to_patch | Update zio-logging to 2.1.16 | ## About this PR
📦 Updates [dev.zio:zio-logging](https://github.com/zio/zio-logging) from `2.1.15` to `2.1.16`
📜 [GitHub Release Notes](https://github.com/zio/zio-logging/releases/tag/v2.1.16) - [Version Diff](https://github.com/zio/zio-logging/compare/v2.1.15...v2.1.16)
## Usage
✅ **Please merge!**
I'll automatic... | 03051caf060c1cc9bd3be1a87725bf0877ecce30 | 706ae8fdfbdbcc45ac2338b331b52101ee8ea314 | diff --git a/build.sbt b/build.sbt
index 9ddce87de9..0f8f8ec849 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... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,960 | issue_to_patch | Update postgresql to 42.7.0 | ## About this PR
📦 Updates [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) from `42.6.0` to `42.7.0`
📜 [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md)
## Usage
✅ **Please merge!**
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
I... | 03051caf060c1cc9bd3be1a87725bf0877ecce30 | e95d07bf1eeddd9b695a9ef6a60b6b3aa786ec5c | diff --git a/build.sbt b/build.sbt
index 9ddce87de9..6dbdf4ad29 100644
--- a/build.sbt
+++ b/build.sbt
@@ -463,7 +463,7 @@ lazy val `quill-jdbc-zio` =
.settings(
libraryDependencies ++= Seq(
// Needed for PGObject in JsonExtensions but not necessary if user is not using postgres
- "org.postg... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,946 | issue_to_patch | Update mysql-connector-j to 8.2.0 | ## About this PR
📦 Updates [com.mysql:mysql-connector-j](https://github.com/mysql/mysql-connector-j) from `8.1.0` to `8.2.0`
📜 [GitHub Release Notes](https://github.com/mysql/mysql-connector-j/releases/tag/8.2.0) - [Version Diff](https://github.com/mysql/mysql-connector-j/compare/8.1.0...8.2.0)
## Usage
✅ **Please ... | 5f42ebc88a9421f754305eafbf3c421bd217ef1b | 4fccc0a85f396a0a4fc230a03a20e592fd6a9738 | diff --git a/build.sbt b/build.sbt
index 712684bd8e..9db8d578a1 100644
--- a/build.sbt
+++ b/build.sbt
@@ -244,8 +244,8 @@ lazy val `quill-sql-test` =
.settings(noPublishSettings: _*)
.dependsOn(
`quill-sql`,
- `quill-core` % "test->test",
- `quill-test-kit` % "test->test",
+ `quill-core... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,997 | issue_to_patch | Update scalatest to 3.2.18 | ## About this PR
📦 Updates [org.scalatest:scalatest](https://github.com/scalatest/scalatest) from `3.2.17` to `3.2.18`
📜 [GitHub Release Notes](https://github.com/scalatest/scalatest/releases/tag/release-3.2.18) - [Version Diff](https://github.com/scalatest/scalatest/compare/release-3.2.17...release-3.2.18)
## Usag... | 0443030156ed9f2652b87b2d9b12c5686bb059dc | 0db67032de08e41f4ba58cc3b4f451928c271d40 | diff --git a/build.sbt b/build.sbt
index 40ec2b3b90..e5af94043c 100644
--- a/build.sbt
+++ b/build.sbt
@@ -665,7 +665,7 @@ lazy val basicSettings = excludeFilterSettings ++ Seq(
scalaVersion := scala_v_13,
crossScalaVersions := Seq(scala_v_12, scala_v_13, scala_v_30),
libraryDependencies ++= Seq(
- "o... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,945 | issue_to_patch | 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.15)
## Usage
✅ **Please merge!*... | 5f42ebc88a9421f754305eafbf3c421bd217ef1b | e0e46aacf41f576dad4ea0187424346b13b7e684 | 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... | [
".scalafmt.conf",
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,958 | issue_to_patch | 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.17)
## Usage
✅ **Please merge!*... | 03051caf060c1cc9bd3be1a87725bf0877ecce30 | c0ff6428a3a81dd94d829eef172884c99d51d47f | 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... | [
".scalafmt.conf",
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,918 | issue_to_patch | Update scala-java8-compat to 0.9.1 | ## About this PR
📦 Updates [org.scala-lang.modules:scala-java8-compat](https://github.com/scala/scala-java8-compat) from `0.8.0` to `0.9.1`
📜 [GitHub Release Notes](https://github.com/scala/scala-java8-compat/releases/tag/v0.9.1) - [Version Diff](https://github.com/scala/scala-java8-compat/compare/v0.8.0...v0.9.1)
... | 631b6f638c0da61a5a8c9b24836677c48d21254e | 1ec39acf9fadb8435fbc5f0986e9b967ec356e73 | diff --git a/build.sbt b/build.sbt
index 9f9a79c1e7..176728c36b 100644
--- a/build.sbt
+++ b/build.sbt
@@ -418,7 +418,7 @@ lazy val `quill-cassandra` =
libraryDependencies ++= Seq(
"com.datastax.oss" % "java-driver-core" % "4.17.0",
(CrossVersion.partialVersion(scalaVersion.value) match {
- ... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,993 | issue_to_patch | Update scala-compiler, scala-library to 2.13.13 | ## About this PR
📦 Updates
* [org.scala-lang:scala-compiler](https://github.com/scala/scala)
* [org.scala-lang:scala-library](https://github.com/scala/scala)
from `2.13.12` to `2.13.13`
📜 [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.13.13) - [Version Diff](https://github.com/scala/scala/c... | 46c37d92e6916d5b168728ce5f86c97d1f2bcc0b | be791d8b950ad7e298787d23d49a8a74bdab4092 | diff --git a/build.sbt b/build.sbt
index e4aff7e06f..30a8a0378e 100644
--- a/build.sbt
+++ b/build.sbt
@@ -649,7 +649,7 @@ def excludePaths(paths: Seq[String]) = {
}
val scala_v_12 = "2.12.18"
-val scala_v_13 = "2.13.12"
+val scala_v_13 = "2.13.13"
val scala_v_30 = "3.3.3"
val scalaCollectionCompatVersion = "2.... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 3,003 | issue_to_patch | Update postgresql to 42.7.3 | ## About this PR
📦 Updates [org.postgresql:postgresql](https://github.com/pgjdbc/pgjdbc) from `42.7.2` to `42.7.3`
📜 [Changelog](https://github.com/pgjdbc/pgjdbc/blob/master/CHANGELOG.md)
## Usage
✅ **Please merge!**
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
I... | 72a95cd4f9fad232812735a0b3c3426af3da2b69 | 7a8bdaee34c20c16f68888bac90f570c97e5064e | diff --git a/build.sbt b/build.sbt
index ae931b18a2..8a475f1a30 100644
--- a/build.sbt
+++ b/build.sbt
@@ -463,7 +463,7 @@ lazy val `quill-jdbc-zio` =
.settings(
libraryDependencies ++= Seq(
// Needed for PGObject in JsonExtensions but not necessary if user is not using postgres
- "org.postg... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 3,009 | issue_to_patch | 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)
## Usage
✅ **Please merge!**
I'... | d29658016f8bc558fd6b5db94160497c74af4189 | f319297d360d67935d69134a10d7b32a7c4d72ee | 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... | [
".scalafmt.conf",
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,992 | issue_to_patch | Update scala-compiler, scala-library to 2.12.19 | ## About this PR
📦 Updates
* [org.scala-lang:scala-compiler](https://github.com/scala/scala)
* [org.scala-lang:scala-library](https://github.com/scala/scala)
from `2.12.18` to `2.12.19`
📜 [GitHub Release Notes](https://github.com/scala/scala/releases/tag/v2.12.19) - [Version Diff](https://github.com/scala/scala/c... | 0732327f323de9f498920d948b6a56289773c4db | 505d5287ed673ddde865357976bf1319da60c870 | diff --git a/build.sbt b/build.sbt
index 26e9324d43..f00816e81e 100644
--- a/build.sbt
+++ b/build.sbt
@@ -648,7 +648,7 @@ def excludePaths(paths: Seq[String]) = {
})
}
-val scala_v_12 = "2.12.18"
+val scala_v_12 = "2.12.19"
val scala_v_13 = "2.13.13"
val scala_v_30 = "3.3.3"
| [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,998 | issue_to_patch | Update sbt-scoverage to 2.0.11 | ## About this PR
📦 Updates [org.scoverage:sbt-scoverage](https://github.com/scoverage/sbt-scoverage) from `2.0.9` to `2.0.11`
📜 [GitHub Release Notes](https://github.com/scoverage/sbt-scoverage/releases/tag/v2.0.11) - [Version Diff](https://github.com/scoverage/sbt-scoverage/compare/v2.0.9...v2.0.11)
## Usage
✅ **P... | 0443030156ed9f2652b87b2d9b12c5686bb059dc | 34dfb9da30edeedcd8e02125423c530756e88b0a | diff --git a/project/plugins.sbt b/project/plugins.sbt
index 0f8118549a..fa9cc2e11d 100644
--- a/project/plugins.sbt
+++ b/project/plugins.sbt
@@ -5,7 +5,7 @@ resolvers += "Typesafe repository" at "https://repo.typesafe.com/typesafe/releas
addDependencyTreePlugin
addSbtPlugin("org.scalameta" % "sbt-scalafmt" ... | [
"project/plugins.sbt"
] | [] | true | ||
zio/zio-quill | 2,916 | issue_to_patch | Update typesafe:config to 1.4.3 | ## About this PR
📦 Updates [com.typesafe:config](https://github.com/lightbend/config) from `1.4.2` to `1.4.3`
📜 [GitHub Release Notes](https://github.com/lightbend/config/releases/tag/v1.4.3) - [Version Diff](https://github.com/lightbend/config/compare/v1.4.2...v1.4.3)
## Usage
✅ **Please merge!**
I'll automatical... | 800a5408741c3d04fcc72cb24b1fcbd0959e5039 | d7cc1453afab603ea4c66411eafabe79a197cf81 | diff --git a/build.sbt b/build.sbt
index 9e94ae48bc..ac95b5b0d7 100644
--- a/build.sbt
+++ b/build.sbt
@@ -206,7 +206,7 @@ lazy val `quill-engine` =
.settings(commonSettings: _*)
.settings(
libraryDependencies ++= Seq(
- "com.typesafe" % "config" % "1.4.2",
+ "com.... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,871 | issue_to_patch | Update orientdb-graphdb to 3.2.23 | ## About this PR
📦 Updates com.orientechnologies:orientdb-graphdb from `3.2.22` to `3.2.23`
## Usage
✅ **Please merge!**
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
If you'd like to skip this version, you can just close this PR. If you have any feedback, just ment... | 6054a94587da1542cc20c0abdee4b313464a587b | e229b2cfe4329ed37e222ebb744fd493bd11bd83 | diff --git a/build.sbt b/build.sbt
index e814c49158..8112bfc13e 100644
--- a/build.sbt
+++ b/build.sbt
@@ -678,7 +678,7 @@ lazy val `quill-orientdb` =
.settings(
Test / fork := true,
libraryDependencies ++= Seq(
- "com.orientechnologies" % "orientdb-graphdb" % "3.2.22"
+ "com.orientechn... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,906 | issue_to_patch | Update mssql-jdbc to 7.4.1.jre11 | ## About this PR
📦 Updates [com.microsoft.sqlserver:mssql-jdbc](https://github.com/Microsoft/mssql-jdbc) from `7.2.2.jre11` to `7.4.1.jre12`
📜 [Changelog](https://github.com/Microsoft/mssql-jdbc/blob/master/CHANGELOG.md)
## Usage
✅ **Please merge!**
I'll automatically update this PR to resolve conflicts as long as... | 6ee536136f4239a5154382558db3919a5591628a | 3244f9f80adc3c4b204c7ec8566cf82d970bb7f6 | diff --git a/build.sbt b/build.sbt
index ee6b0b4afd..602d6b356c 100644
--- a/build.sbt
+++ b/build.sbt
@@ -554,13 +554,13 @@ lazy val `quill-orientdb` =
lazy val jdbcTestingLibraries = Seq(
libraryDependencies ++= Seq(
"com.zaxxer" % "HikariCP" % "5.0.1" exclude ("org.slf4j", "*"),
... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,994 | issue_to_patch | Update scala3-library to 3.3.3 | ## About this PR
📦 Updates org.scala-lang:scala3-library from `3.3.1` to `3.3.3`
## Usage
✅ **Please merge!**
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
If you'd like to skip this version, you can just close this PR. If you have any feedback, just mention me in t... | 0443030156ed9f2652b87b2d9b12c5686bb059dc | 0dde4573e3aa3d3d605479ccbf5ab832b0ed6c03 | diff --git a/build.sbt b/build.sbt
index 40ec2b3b90..3e5b05fd1e 100644
--- a/build.sbt
+++ b/build.sbt
@@ -650,7 +650,7 @@ def excludePaths(paths: Seq[String]) = {
val scala_v_12 = "2.12.18"
val scala_v_13 = "2.13.12"
-val scala_v_30 = "3.3.1"
+val scala_v_30 = "3.3.3"
val scalaCollectionCompatVersion = "2.11.0"... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,999 | issue_to_patch | Update sqlite-jdbc to 3.45.1.0 | ## About this PR
📦 Updates [org.xerial:sqlite-jdbc](https://github.com/xerial/sqlite-jdbc) from `3.45.0.0` to `3.45.1.0`
📜 [GitHub Release Notes](https://github.com/xerial/sqlite-jdbc/releases/tag/3.45.1.0) - [Version Diff](https://github.com/xerial/sqlite-jdbc/compare/3.45.0.0...3.45.1.0)
## Usage
✅ **Please merge... | 0443030156ed9f2652b87b2d9b12c5686bb059dc | 41ef075800d4c76d07d759d0c79a7a036685a2ef | diff --git a/build.sbt b/build.sbt
index 40ec2b3b90..dd7d8fb910 100644
--- a/build.sbt
+++ b/build.sbt
@@ -586,7 +586,7 @@ lazy val jdbcTestingLibraries = Seq(
"com.mysql" % "mysql-connector-j" % "8.3.0" % Test,
"com.h2database" % "h2" % "2.2.224" % ... | [
"build.sbt"
] | [] | true | ||
zio/zio-quill | 2,977 | issue_to_patch | Update orientdb-graphdb to 3.2.26 | ## About this PR
📦 Updates com.orientechnologies:orientdb-graphdb from `3.2.24` to `3.2.26`
## Usage
✅ **Please merge!**
I'll automatically update this PR to resolve conflicts as long as you don't change it yourself.
If you'd like to skip this version, you can just close this PR. If you have any feedback, just ment... | e11582b3ced9beaaecf2b0df84ac8ea337ebefe2 | 009b60c67518018aca11af1069eabb49ffeb8fb4 | diff --git a/build.sbt b/build.sbt
index d1a8ac2c81..838ee5fc68 100644
--- a/build.sbt
+++ b/build.sbt
@@ -561,7 +561,7 @@ lazy val `quill-orientdb` =
.settings(
Test / fork := true,
libraryDependencies ++= Seq(
- "com.orientechnologies" % "orientdb-graphdb" % "3.2.24"
+ "com.orientechn... | [
"build.sbt"
] | [] | true |
Subsets and Splits
No community queries yet
The top public SQL queries from the community will appear here once available.