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
YunaiV/ruoyi-vue-pro
1,037
issue_to_patch
quartz定时任务失效问题
项目依赖自动使用了Quartz 2.5.1,满足以下条件 Quartz 2.5.1 数据库 PostgreSQL 这正好踩中了 Quartz 官方刚刚认领的一个 bug: 在 2.5.1 里,引入了新的 Util.areNull/containsColumnNames,对 ResultSet 里的列名用大小写敏感比较, 而 PostgreSQL 把列名全变成小写,结果就导致: 明明库里有 trigger 记录,代码却觉得「没有」,抛 NoRecordFoundException导致无法调度,进而定时任务失效 通过把Quartz 版本更新到2.5.2解决定时任务失效问题
ee8a5bf822b56b7e736900def0402a9ce19345d0
84d241657de78fc3ed22e750addf479727388a6f
diff --git a/pom.xml b/pom.xml index 1de1b27e922..52bf76cc72d 100644 --- a/pom.xml +++ b/pom.xml @@ -56,6 +56,13 @@ <type>pom</type> <scope>import</scope> </dependency> + + <!-- 强制指定quartz版本 --> + <dependency> + <groupId>org.quartz-sche...
[ "pom.xml" ]
[]
true
YunaiV/ruoyi-vue-pro
1,013
issue_to_patch
Fix WeChat Pay V3 public key incorrectly set as private certificate path
When using WeChat Pay V3 with public key ID mode, payments fail with "无可用的平台证书" (no available platform certificate) because the public key content is incorrectly assigned to the private certificate path. ## Changes - **Fixed key configuration in `AbstractWxPayClient.java:73`**: Changed `setPrivateCertPath()` to `setP...
2c41d5622c6800a9cf2b5628102940afbb1a60e0
4723b80785ca2f2d826d66fd795aeecb3961503c
diff --git a/yudao-module-pay/src/main/java/cn/iocoder/yudao/module/pay/framework/pay/core/client/impl/weixin/AbstractWxPayClient.java b/yudao-module-pay/src/main/java/cn/iocoder/yudao/module/pay/framework/pay/core/client/impl/weixin/AbstractWxPayClient.java index 4ee904bbb1e..3b54862a7dc 100644 --- a/yudao-module-pay/...
[ "yudao-module-pay/src/main/java/cn/iocoder/yudao/module/pay/framework/pay/core/client/impl/weixin/AbstractWxPayClient.java" ]
[]
true
YunaiV/ruoyi-vue-pro
981
issue_to_patch
支持 GROK
INSERT INTO coin.system_dict_data (id, sort, label, value, dict_type, status, color_type, css_class, remark, creator, create_time, updater, update_time, deleted) VALUES (3031, 17, 'Grok', 'Grok', 'ai_platform', 0, '', '', null, '1', '2025-09-27 14:23:50', '1', '2025-09-27 14:23:50', false); 第一次pr不知道对不对
d11ffb14204600ff2cd77254b54df243a268d6c0
2208396ee4164c9de67ae039b0719e886b831912
diff --git a/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/enums/model/AiPlatformEnum.java b/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/enums/model/AiPlatformEnum.java index 47a4d2d719b..612a91338a4 100644 --- a/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/enums/model/AiPlatformEnum...
[ "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/enums/model/AiPlatformEnum.java", "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/AiAutoConfiguration.java", "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/YudaoAiProperties.java", "yudao-mod...
[ { "comment": "这里不要有空 \\n 空行", "path": "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/core/model/grok/GrokChatModel.java", "hunk": "@@ -0,0 +1,45 @@\n+package cn.iocoder.yudao.module.ai.framework.ai.core.model.grok;\n+\n+import lombok.RequiredArgsConstructor;\n+import lombok.exter...
true
YunaiV/ruoyi-vue-pro
981
comment_to_fix
支持 GROK
这里不要有空 \n 空行
d11ffb14204600ff2cd77254b54df243a268d6c0
2208396ee4164c9de67ae039b0719e886b831912
diff --git a/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/core/model/grok/GrokChatModel.java b/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/core/model/grok/GrokChatModel.java new file mode 100644 index 00000000000..06eed2504ff --- /dev/null +++ b/yudao-module-ai/src/mai...
[ "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/core/model/grok/GrokChatModel.java" ]
[ { "comment": "这里不要有空 \\n 空行", "path": "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/core/model/grok/GrokChatModel.java", "hunk": "@@ -0,0 +1,45 @@\n+package cn.iocoder.yudao.module.ai.framework.ai.core.model.grok;\n+\n+import lombok.RequiredArgsConstructor;\n+import lombok.exter...
true
YunaiV/ruoyi-vue-pro
981
comment_to_fix
支持 GROK
这里顺序调整下,按照枚举的顺序
d11ffb14204600ff2cd77254b54df243a268d6c0
2208396ee4164c9de67ae039b0719e886b831912
diff --git a/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/util/AiUtils.java b/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/util/AiUtils.java index d209c62d44c..ccda6a39550 100644 --- a/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/util/AiUtils.java +++ b/yudao-module-ai/src/main/java/...
[ "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/util/AiUtils.java" ]
[ { "comment": "这里顺序调整下,按照枚举的顺序", "path": "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/util/AiUtils.java", "hunk": "@@ -65,6 +65,7 @@ public static ChatOptions buildChatOptions(AiPlatformEnum platform, String model\n case MOONSHOT:\n return MoonshotChatOptions.buil...
true
YunaiV/ruoyi-vue-pro
981
comment_to_fix
支持 GROK
这里多了一个空行
d11ffb14204600ff2cd77254b54df243a268d6c0
2208396ee4164c9de67ae039b0719e886b831912
diff --git a/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/YudaoAiProperties.java b/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/YudaoAiProperties.java index 67d3bb5f3ac..986c24c18cf 100644 --- a/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/fram...
[ "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/YudaoAiProperties.java" ]
[ { "comment": "这里多了一个空行", "path": "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/YudaoAiProperties.java", "hunk": "@@ -160,6 +160,21 @@ public static class Suno {\n \n }\n \n+ @Data\n+ public static class Grok {\n+\n+ private String enable;\n+ privat...
true
YunaiV/ruoyi-vue-pro
981
comment_to_fix
支持 GROK
这里多了个空行。
d11ffb14204600ff2cd77254b54df243a268d6c0
2208396ee4164c9de67ae039b0719e886b831912
diff --git a/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/AiAutoConfiguration.java b/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/AiAutoConfiguration.java index 26fbe0ad410..fc965c70742 100644 --- a/yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/...
[ "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/AiAutoConfiguration.java" ]
[ { "comment": "这里多了个空行。", "path": "yudao-module-ai/src/main/java/cn/iocoder/yudao/module/ai/framework/ai/config/AiAutoConfiguration.java", "hunk": "@@ -286,4 +289,26 @@ public List<ToolCallback> toolCallbacks(PersonService personService) {\n return List.of(ToolCallbacks.from(personService));\n ...
true
YunaiV/ruoyi-vue-pro
1,023
issue_to_patch
Postgres 数据库初始化时未设置 id 为默认自增长 碰到问题,请在 <https://github.com/YunaiV/ruoyi-vue-pro/issues> 搜索是否存在相似的 issue。 不按照模板提交的 issue,会被系统自动删除。 ### 基本信息 - ruoyi-vue-pro 版本:2025.09 - 操作系统:不相关 - 数据库:PG ### 你猜测可能的原因 `sql/postgresql/ruoyi-vue-pro.sql` 中定义 system_menu 表时使用了: <img width="1237" height="883" alt="Image" src="https://g...
Fix postgresql init script
close #985
9061706cc23a4f625fd9dc9b7df7f6576f0dbaed
3630ce898623d7cde3e6796135aa60293f568901
diff --git a/sql/postgresql/ruoyi-vue-pro.sql b/sql/postgresql/ruoyi-vue-pro.sql index f85884776e3..859c6c383d9 100644 --- a/sql/postgresql/ruoyi-vue-pro.sql +++ b/sql/postgresql/ruoyi-vue-pro.sql @@ -33,7 +33,7 @@ INSERT INTO dual VALUES (1); DROP TABLE IF EXISTS infra_api_access_log; CREATE TABLE infra_api_access_l...
[ "sql/postgresql/ruoyi-vue-pro.sql" ]
[]
true
YunaiV/ruoyi-vue-pro
1,009
issue_to_patch
fix: 重置 currentRow 时没有对模板类型进行判断
2c41d5622c6800a9cf2b5628102940afbb1a60e0
243ec76df958f479fef9dd0f3ec03b554d25cd56
diff --git a/yudao-module-infra/src/main/resources/codegen/vue3/views/index.vue.vm b/yudao-module-infra/src/main/resources/codegen/vue3/views/index.vue.vm index fb7485d6d50..857972a85d2 100644 --- a/yudao-module-infra/src/main/resources/codegen/vue3/views/index.vue.vm +++ b/yudao-module-infra/src/main/resources/codegen...
[ "yudao-module-infra/src/main/resources/codegen/vue3/views/index.vue.vm" ]
[]
true
YunaiV/ruoyi-vue-pro
1,019
issue_to_patch
增加对LocalDateTime类型格式化不生效问题
优化Field获取方式
2769f774a08f9f571ff57018a93133d95e1f46b8
cc3ea86419a1bbf0b374ad367b7855ae87a7a752
diff --git a/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/json/databind/TimestampLocalDateTimeSerializer.java b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/json/databind/TimestampLocalDateTimeSerializer.java index ef767a5585a..ba411078c7c 100644...
[ "yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/json/databind/TimestampLocalDateTimeSerializer.java" ]
[]
true
YunaiV/ruoyi-vue-pro
983
issue_to_patch
feat: 允许通过参数转换自定义数据库脚本文件
d11ffb14204600ff2cd77254b54df243a268d6c0
9335b7a052ab98820cb42cdf40f4ab420e8a1bd9
diff --git a/sql/tools/convertor.py b/sql/tools/convertor.py index d286d3b238d..b54d1337c87 100644 --- a/sql/tools/convertor.py +++ b/sql/tools/convertor.py @@ -6,12 +6,12 @@ pip install simple-ddl-parser or with uv -uv run --with simple-ddl-parser convertor.py postgres > ../postgresql/ruoyi-vue-pro.sql ...
[ "sql/tools/convertor.py" ]
[]
true
YunaiV/ruoyi-vue-pro
935
issue_to_patch
fix:【system 系统功能】解决登录未禁用数据权限,前端带上旧token导致报错
用户反馈正确的账号密码报错账号密码不正确: <img width="1119" height="155" alt="image" src="https://github.com/user-attachments/assets/1e11b026-abad-42ce-969f-2ab5bb1acd51" /> 本地使用相同的账密一切正常,经过检查发现操作为:A用户登陆后不退出,打开登录页,输入B用户账密登录,前端带入A用户token时后台报错账密不正确。 检查代码原因为: <img width="2000" height="898" alt="image" src="https://github.com/user-attachm...
e91fc70f87b8f02f6013ee5170635a2e7f1eb3d8
b68dd1e1f1560ac7248e455af7762adf31561db1
diff --git a/yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java b/yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java index 94e589de5e2..22d159a8ce2 100644 --- a/yudao-module-system/src/main/java/cn/iocoder/yudao/mo...
[ "yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/auth/AdminAuthServiceImpl.java" ]
[]
true
YunaiV/ruoyi-vue-pro
925
issue_to_patch
Update TenantDatabaseInterceptor.java
修正注释,使其准确反映代码行为。
199467a70d6ef7163c347c98ef73cb97e2b40eeb
c2e1bc470a06d1c0dcd28f37500f2706f3723ef1
diff --git a/yudao-framework/yudao-spring-boot-starter-biz-tenant/src/main/java/cn/iocoder/yudao/framework/tenant/core/db/TenantDatabaseInterceptor.java b/yudao-framework/yudao-spring-boot-starter-biz-tenant/src/main/java/cn/iocoder/yudao/framework/tenant/core/db/TenantDatabaseInterceptor.java index 47e5df004c5..11f0a4...
[ "yudao-framework/yudao-spring-boot-starter-biz-tenant/src/main/java/cn/iocoder/yudao/framework/tenant/core/db/TenantDatabaseInterceptor.java" ]
[]
true
YunaiV/ruoyi-vue-pro
852
issue_to_patch
feat(dict): 实现参数数据字典校验注解 @InDict(#785)
新增注解 @InDict,用于在参数校验阶段判断传入值是否存在于指定的数据字典中。 添加对应的缓存监控管理 BREAKING CHANGE: 无 Closes #785
501cfe5afa7fc951e8d92dcdb80bfc8a5406543a
ce2a7d2c96df8f41ffc1557bea00bd4bbd34d09e
diff --git a/yudao-framework/yudao-spring-boot-starter-excel/pom.xml b/yudao-framework/yudao-spring-boot-starter-excel/pom.xml index 0413986a647..0316c62e50d 100644 --- a/yudao-framework/yudao-spring-boot-starter-excel/pom.xml +++ b/yudao-framework/yudao-spring-boot-starter-excel/pom.xml @@ -46,6 +46,12 @@ ...
[ "yudao-framework/yudao-spring-boot-starter-excel/pom.xml", "yudao-framework/yudao-spring-boot-starter-excel/src/main/java/cn/iocoder/yudao/framework/dict/core/DictFrameworkUtils.java", "yudao-framework/yudao-spring-boot-starter-excel/src/main/java/cn/iocoder/yudao/framework/dict/validation/InDict.java", "yuda...
[ { "comment": "这里加的目的是啥哈?", "path": "yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/cache/CacheUtils.java", "hunk": "@@ -31,6 +31,8 @@ public static <K, V> LoadingCache<K, V> buildAsyncReloadingCache(Duration durati\n return CacheBuilder.newBuilder()\n ...
true
YunaiV/ruoyi-vue-pro
894
issue_to_patch
Feature/ai
e6fecd8efeb674473b560df64c1f357c030a1e2a
ea5b12f21e2c0eb3e9e833b12e1af3bfad0681f1
diff --git a/pom.xml b/pom.xml index f5f0a32e361..b271f1d4b95 100644 --- a/pom.xml +++ b/pom.xml @@ -87,6 +87,13 @@ <artifactId>lombok</artifactId> <version>${lombok.version}</version> </path> + <pa...
[ "pom.xml", "sql/postgresql/quartz.sql", "yudao-dependencies/pom.xml", "yudao-framework/yudao-spring-boot-starter-job/src/main/java/cn/iocoder/yudao/framework/quartz/config/YudaoAsyncAutoConfiguration.java", "yudao-framework/yudao-spring-boot-starter-mybatis/pom.xml", "yudao-framework/yudao-spring-boot-sta...
[]
diff --git a/yudao-module-ai/src/test/java/cn/iocoder/yudao/module/ai/framework/ai/core/model/chat/AzureOpenAIChatModelTests.java b/yudao-module-ai/src/test/java/cn/iocoder/yudao/module/ai/framework/ai/core/model/chat/AzureOpenAIChatModelTests.java index 5c924a58233..69776d8e688 100644 --- a/yudao-module-ai/src/test/ja...
true
YunaiV/ruoyi-vue-pro
869
issue_to_patch
fix: ERP统计查询在多租户关闭时的NullPointerException问题
## 问题描述 在ERP系统的统计查询中,当关闭多租户功能(`yudao.tenant.enable=false`)时,会出现以下错误: ``` NullPointerException: TenantContextHolder 不存在租户编号! ``` ## 问题原因 在 `ErpSaleStatisticsMapper.xml` 和 `ErpPurchaseStatisticsMapper.xml` 中,直接使用了: ```xml AND tenant_id = ${@cn.iocoder.yudao.framework.tenant.core.context.TenantContextHolder@getRequir...
837f1556684be77495a84828a575fb6b27a217b5
3b2a3dd0ea75b4288b615436af0c1c98f32e1118
diff --git a/yudao-module-erp/src/main/resources/mapper/statistics/ErpPurchaseStatisticsMapper.xml b/yudao-module-erp/src/main/resources/mapper/statistics/ErpPurchaseStatisticsMapper.xml index 699286b5da2..a88fb3a88cb 100644 --- a/yudao-module-erp/src/main/resources/mapper/statistics/ErpPurchaseStatisticsMapper.xml +++...
[ "yudao-module-erp/src/main/resources/mapper/statistics/ErpPurchaseStatisticsMapper.xml", "yudao-module-erp/src/main/resources/mapper/statistics/ErpSaleStatisticsMapper.xml", "yudao-module-erp/src/test/java/cn/iocoder/yudao/module/erp/service/statistics/ErpStatisticsServiceTest.java" ]
[]
diff --git a/yudao-module-erp/src/test/java/cn/iocoder/yudao/module/erp/service/statistics/ErpStatisticsServiceTest.java b/yudao-module-erp/src/test/java/cn/iocoder/yudao/module/erp/service/statistics/ErpStatisticsServiceTest.java new file mode 100644 index 00000000000..c96f2d35fab --- /dev/null +++ b/yudao-module-erp/...
true
YunaiV/ruoyi-vue-pro
850
issue_to_patch
fix(微信小程序确认收货提醒接口): 修复 #839 - received_time 时间戳单位错误(应为秒)
根据微信小程序接口要求,订单签收时间 received_time 应为秒级时间戳,但现有实现传入了毫秒,导致微信接口返回错误代码 10060029(签收时间不合理)。 新增 LocalDateUtils.toEpochSecond 方法,统一将 LocalDateTime 转换为秒级时间戳,用于接口参数转换。 BREAKING CHANGE: 无 Closes #839
501cfe5afa7fc951e8d92dcdb80bfc8a5406543a
41b17d4faf69eb7ea5a1cb7b06683324901c6b0e
diff --git a/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/date/LocalDateTimeUtils.java b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/date/LocalDateTimeUtils.java index 6d19a3cc758..8d18479c81f 100644 --- a/yudao-framework/yudao-common/src/main/j...
[ "yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/date/LocalDateTimeUtils.java", "yudao-module-system/src/main/java/cn/iocoder/yudao/module/system/service/social/SocialClientServiceImpl.java" ]
[]
true
YunaiV/ruoyi-vue-pro
853
issue_to_patch
Excel导出时,下拉选择列错位问题修改
501cfe5afa7fc951e8d92dcdb80bfc8a5406543a
b17015db09a73905a3b07a9021f2a84049cfdefc
diff --git a/yudao-framework/yudao-spring-boot-starter-excel/src/main/java/cn/iocoder/yudao/framework/excel/core/handler/SelectSheetWriteHandler.java b/yudao-framework/yudao-spring-boot-starter-excel/src/main/java/cn/iocoder/yudao/framework/excel/core/handler/SelectSheetWriteHandler.java index ef1eb65bcd4..0dac0c6c1db ...
[ "yudao-framework/yudao-spring-boot-starter-excel/src/main/java/cn/iocoder/yudao/framework/excel/core/handler/SelectSheetWriteHandler.java" ]
[]
true
YunaiV/ruoyi-vue-pro
848
issue_to_patch
Fix: 当流程ID配置没有中缀的时候不设置过期时间
e00bfd02a1008a2a9a832c37b94dec7ac3d0cf2c
ea283dd85ad7287a8b1f25fc00cf2336fb5faaf9
diff --git a/yudao-module-bpm/src/main/java/cn/iocoder/yudao/module/bpm/dal/redis/BpmProcessIdRedisDAO.java b/yudao-module-bpm/src/main/java/cn/iocoder/yudao/module/bpm/dal/redis/BpmProcessIdRedisDAO.java index 60e0fb15d6e..adabbc86188 100644 --- a/yudao-module-bpm/src/main/java/cn/iocoder/yudao/module/bpm/dal/redis/Bp...
[ "yudao-module-bpm/src/main/java/cn/iocoder/yudao/module/bpm/dal/redis/BpmProcessIdRedisDAO.java" ]
[]
true
YunaiV/ruoyi-vue-pro
777
issue_to_patch
【Simple设计器】流程模型->基本信息->谁可以发起,支持指定多个部门
指定部门可以在部门新增成员后无需重新修改相关流程 前端代码也提了[pr139](https://github.com/yudaocode/yudao-ui-admin-vue3/pull/139) 表结构改动 ```sql alter table bpm_process_definition_info add start_dept_ids varchar(256) null comment '可发起部门编号数组'; ```
39916475600675569e9b7ca1245720d369f20f68
6fbcac3c13f5604605b4390c7f17c947abcafced
diff --git a/yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/base/dept/DeptSimpleBaseVO.java b/yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/base/dept/DeptSimpleBaseVO.java new file mode 100644 index 00000000000..f6a9c12...
[ "yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/base/dept/DeptSimpleBaseVO.java", "yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/controller/admin/definition/BpmModelController.java", "yudao-module-bpm/yudao-module-bpm-biz/src/ma...
[]
true
YunaiV/ruoyi-vue-pro
731
issue_to_patch
添加项目前缀,日志无法插入
知识星球关于访问日志无法插入的问题。 当项目添加servlet.context-path的时候,过滤器进行前缀检测,无法检测到相关路径,会导致日志记录出现问题。 <img width="823" alt="iShot_2025-01-03_10 43 36" src="https://github.com/user-attachments/assets/d270a43f-3bd0-485d-b11f-12f88b45c966" />
b1459824a61be8816c05d37596047a2037b5297a
256b40b3882a029a75fe217344f91612cda6f188
diff --git a/.DS_Store b/.DS_Store index 8406d508bca..a0cc682e9fc 100644 Binary files a/.DS_Store and b/.DS_Store differ diff --git a/yudao-framework/yudao-spring-boot-starter-web/src/main/java/cn/iocoder/yudao/framework/web/core/filter/ApiRequestFilter.java b/yudao-framework/yudao-spring-boot-starter-web/src/main/java...
[ ".DS_Store", "yudao-framework/yudao-spring-boot-starter-web/src/main/java/cn/iocoder/yudao/framework/web/core/filter/ApiRequestFilter.java" ]
[ { "comment": "```\r\nString apiUri = request.getRequestURI().substring(request.getContextPath().length());\r\nreturn !StrUtil.startWithAny(apiUri, webProperties.getAdminApi().getPrefix(), webProperties.getAppApi().getPrefix());\r\n```\r\n\r\n可以考虑优化下", "path": "yudao-framework/yudao-spring-boot-starter-web/s...
true
YunaiV/ruoyi-vue-pro
747
issue_to_patch
fix typo: adminTenentId -> adminTenantId, appTenentId -> appTenantId
06634a426584d663a58c57b35c9aaffbd9757810
4e43958fe3000b2cda46ff34b28fb010eadd806e
diff --git a/script/idea/http-client.env.json b/script/idea/http-client.env.json index 4a4cb5221e2..e6e8a7cf869 100644 --- a/script/idea/http-client.env.json +++ b/script/idea/http-client.env.json @@ -2,16 +2,16 @@ "local": { "baseUrl": "http://127.0.0.1:48080/admin-api", "token": "test1", - "adminTenen...
[ "script/idea/http-client.env.json", "yudao-module-ai/yudao-module-ai-biz/src/main/java/cn/iocoder/yudao/module/ai/controller/admin/chat/AiChatMessageController.http", "yudao-module-crm/yudao-module-crm-biz/src/main/java/cn/iocoder/yudao/module/crm/controller/admin/permission/CrmPermissionController.http", "yu...
[]
true
YunaiV/ruoyi-vue-pro
745
issue_to_patch
【代码优化】 简化滑动脱敏处理器实现
String.repeat需要java11
44bba85a341ff6bbebac07f485d7f1d85456b643
408f88da54bb5b2b89a730e93fc2e6c48cdfa6bd
diff --git a/yudao-framework/yudao-spring-boot-starter-web/src/main/java/cn/iocoder/yudao/framework/desensitize/core/slider/handler/AbstractSliderDesensitizationHandler.java b/yudao-framework/yudao-spring-boot-starter-web/src/main/java/cn/iocoder/yudao/framework/desensitize/core/slider/handler/AbstractSliderDesensitiza...
[ "yudao-framework/yudao-spring-boot-starter-web/src/main/java/cn/iocoder/yudao/framework/desensitize/core/slider/handler/AbstractSliderDesensitizationHandler.java" ]
[]
true
YunaiV/ruoyi-vue-pro
694
issue_to_patch
修复由于多租户定时任务方法返回 void 导致的 xxlJob 任务执行失败的问题
8aaa96c887321e52152d9d1969244b6744963a7b
72d2d81d6a4d940a3f1d19929159b0184c3b2f21
diff --git a/yudao-framework/yudao-spring-boot-starter-biz-tenant/src/main/java/cn/iocoder/yudao/framework/tenant/core/job/TenantJobAspect.java b/yudao-framework/yudao-spring-boot-starter-biz-tenant/src/main/java/cn/iocoder/yudao/framework/tenant/core/job/TenantJobAspect.java index de409a4a3a8..a58887a78e5 100644 --- a...
[ "yudao-framework/yudao-spring-boot-starter-biz-tenant/src/main/java/cn/iocoder/yudao/framework/tenant/core/job/TenantJobAspect.java" ]
[]
true
YunaiV/ruoyi-vue-pro
525
issue_to_patch
修复 TradeOrderUpdateService 的单元测试
97e8c35f70afed96a380531bdea815ba83683ef6
8e2cd77af7f4c7c04f72836e307ff1ad6b312930
diff --git a/yudao-module-mall/yudao-module-trade-biz/src/main/java/cn/iocoder/yudao/module/trade/dal/dataobject/order/TradeOrderDO.java b/yudao-module-mall/yudao-module-trade-biz/src/main/java/cn/iocoder/yudao/module/trade/dal/dataobject/order/TradeOrderDO.java index b127004aaa0..ba7e689f8f8 100644 --- a/yudao-module-...
[ "yudao-module-mall/yudao-module-trade-biz/src/main/java/cn/iocoder/yudao/module/trade/dal/dataobject/order/TradeOrderDO.java", "yudao-module-mall/yudao-module-trade-biz/src/test/java/cn/iocoder/yudao/module/trade/service/order/TradeOrderUpdateServiceTest.java", "yudao-module-mall/yudao-module-trade-biz/src/test...
[ { "comment": "要 @TableId,不然多 DB 无法兼容", "path": "yudao-module-mall/yudao-module-trade-biz/src/main/java/cn/iocoder/yudao/module/trade/dal/dataobject/delivery/DeliveryExpressDO.java", "hunk": "@@ -20,7 +21,7 @@ public class DeliveryExpressDO extends BaseDO {\n /**\n * 编号,自增\n */\n- @Table...
diff --git a/yudao-module-mall/yudao-module-trade-biz/src/test/java/cn/iocoder/yudao/module/trade/service/order/TradeOrderUpdateServiceTest.java b/yudao-module-mall/yudao-module-trade-biz/src/test/java/cn/iocoder/yudao/module/trade/service/order/TradeOrderUpdateServiceTest.java index 3f05f555914..108c68a2c54 100644 ---...
true
YunaiV/ruoyi-vue-pro
525
comment_to_fix
修复 TradeOrderUpdateService 的单元测试
可以使用 IdUtil 的 simpleUUID 替代
97e8c35f70afed96a380531bdea815ba83683ef6
8e2cd77af7f4c7c04f72836e307ff1ad6b312930
diff --git a/yudao-module-mall/yudao-module-trade-biz/src/test/java/cn/iocoder/yudao/module/trade/service/order/TradeOrderUpdateServiceTest.java b/yudao-module-mall/yudao-module-trade-biz/src/test/java/cn/iocoder/yudao/module/trade/service/order/TradeOrderUpdateServiceTest.java index 3f05f555914..108c68a2c54 100644 ---...
[ "yudao-module-mall/yudao-module-trade-biz/src/test/java/cn/iocoder/yudao/module/trade/service/order/TradeOrderUpdateServiceTest.java" ]
[ { "comment": "可以使用 IdUtil 的 simpleUUID 替代", "path": "yudao-module-mall/yudao-module-trade-biz/src/test/java/cn/iocoder/yudao/module/trade/service/order/TradeOrderUpdateServiceTest.java", "hunk": "@@ -66,11 +86,22 @@ public class TradeOrderUpdateServiceTest extends BaseDbUnitTest {\n \n @MockBean\n ...
true
YunaiV/ruoyi-vue-pro
568
issue_to_patch
fix: 修复被禁用的账户可以通过短信验证码再次登录的问题
3da2449a151143333985f739545b762459e5aafe
e1f98c977787ead93089ea5dd654d8265dae3252
diff --git a/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java b/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java index 7fb1926ce1a..69d9252b89a 100644 --- a/yud...
[ "yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java" ]
[ { "comment": "真细致哈。\r\n\r\nCommonStatusEnum 里面有个判断 isDisable 的地方", "path": "yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java", "hunk": "@@ -88,6 +88,12 @@ public AppAuthLoginRespVO smsLogin(AppAuthSmsLoginReqVO reqVO) {\n ...
true
YunaiV/ruoyi-vue-pro
568
comment_to_fix
fix: 修复被禁用的账户可以通过短信验证码再次登录的问题
真细致哈。 CommonStatusEnum 里面有个判断 isDisable 的地方
3da2449a151143333985f739545b762459e5aafe
e1f98c977787ead93089ea5dd654d8265dae3252
diff --git a/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java b/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java index 7fb1926ce1a..69d9252b89a 100644 --- a/yud...
[ "yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java" ]
[ { "comment": "真细致哈。\r\n\r\nCommonStatusEnum 里面有个判断 isDisable 的地方", "path": "yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/service/auth/MemberAuthServiceImpl.java", "hunk": "@@ -88,6 +88,12 @@ public AppAuthLoginRespVO smsLogin(AppAuthSmsLoginReqVO reqVO) {\n ...
true
YunaiV/ruoyi-vue-pro
680
issue_to_patch
postgresql数据库建表sql文件添加相关AI功能的菜单
9ad95223d1787e39818140d7562fb89165236ed3
14e3ca8ef02541ecc9ae661bb3d3c604a3b0d3a3
diff --git a/sql/postgresql/ruoyi-vue-pro.sql b/sql/postgresql/ruoyi-vue-pro.sql index 526d5a40df2..e5e6d1e2de0 100644 --- a/sql/postgresql/ruoyi-vue-pro.sql +++ b/sql/postgresql/ruoyi-vue-pro.sql @@ -1126,6 +1126,55 @@ INSERT INTO system_dict_data (id, sort, label, value, dict_type, status, color_t INSERT INTO system...
[ "sql/postgresql/ruoyi-vue-pro.sql" ]
[]
true
YunaiV/ruoyi-vue-pro
637
issue_to_patch
bugfix: S3 客服端 VirtualStyle 判断逻辑错误
这里逻辑应该是 腾讯云或者火山云就开启 VritualStyle URI <img width="656" alt="image" src="https://github.com/user-attachments/assets/475fda82-988a-4987-852a-2919294ae56f">
13be8f3a051c1aa8b6f3158bdaf7fec5b6837277
d23279994b485d36c12571dcc7b0da5940de07f6
diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/framework/file/core/client/s3/S3FileClient.java b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/framework/file/core/client/s3/S3FileClient.java index 43ff2733b1d..29f6fc34f91 100644...
[ "yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/framework/file/core/client/s3/S3FileClient.java" ]
[]
true
YunaiV/ruoyi-vue-pro
619
issue_to_patch
fix: insertOrUpdate死循环问题
BaseMapper已经有insertOrUpdate方法,DB.saveOrUpdate本质是调用BaseMapperX.insertOrUpdate就会造成死循环,堆栈溢出。
7ba3b123131bdd792bbca9e46e7a7497895e101e
fd42e1711d37f9127e94ab9bec34d758bd8e8af4
diff --git a/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/mapper/BaseMapperX.java b/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/mapper/BaseMapperX.java index 3f1cb3e2b22..99a6c514796 100644 --- a/yudao...
[ "yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/mapper/BaseMapperX.java" ]
[]
true
YunaiV/ruoyi-vue-pro
605
issue_to_patch
【优化】数据脱敏支持 Spring el 表达式,支持根据权限控制脱敏
1eb07b83894c8d11abf33d6d7df80a42dd254987
08e1c69d10a5c946ab9d32d7d605fe7ffc93c96f
diff --git a/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/spring/SpringExpressionUtils.java b/yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/spring/SpringExpressionUtils.java index 9a7f8812b4f..e9670d88d6b 100644 --- a/yudao-framework/yudao-common/...
[ "yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/spring/SpringExpressionUtils.java", "yudao-framework/yudao-spring-boot-starter-web/pom.xml", "yudao-framework/yudao-spring-boot-starter-web/src/main/java/cn/iocoder/yudao/framework/desensitize/core/regex/annotation/EmailDesensiti...
[]
true
YunaiV/ruoyi-vue-pro
582
issue_to_patch
Update mapper_sub.vm
在“基础设施-代码生成”模块中,当选主子表ERP模式时,补充主表与子表一对一情况下需要生成的接口:default ${subTable.className}DO selectBy${SubJoinColumnName}
cd99a369e7e91811b66828bca7b09d2199bdda25
7a42b3fab7801e54fbd6723af2993759feff6f79
diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/mapper_sub.vm b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/mapper_sub.vm index e5589e99df6..6ccaea79ea8 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal...
[ "yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/dal/mapper_sub.vm" ]
[]
true
YunaiV/ruoyi-vue-pro
585
issue_to_patch
fix: 修复区域工具类单元测试
cd99a369e7e91811b66828bca7b09d2199bdda25
167e4153fb3b5ccdbc4e11bd6bc3d898207acdb1
[ "yudao-framework/yudao-spring-boot-starter-biz-ip/src/test/java/cn/iocoder/yudao/framework/ip/core/utils/AreaUtilsTest.java" ]
[]
diff --git a/yudao-framework/yudao-spring-boot-starter-biz-ip/src/test/java/cn/iocoder/yudao/framework/ip/core/utils/AreaUtilsTest.java b/yudao-framework/yudao-spring-boot-starter-biz-ip/src/test/java/cn/iocoder/yudao/framework/ip/core/utils/AreaUtilsTest.java index 8f5646b337a..cc23819c49f 100644 --- a/yudao-framework...
true
YunaiV/ruoyi-vue-pro
563
issue_to_patch
【fix】ERP:采购金额计算逻辑错误
ERP:采购totalPrice金额计算逻辑错误(括号错位引起)
41ea482f8db6bae07cc7fe8bd042b364ec154362
cb1bf8c91a3e12866780eae176ad721a28b015dc
diff --git a/yudao-module-erp/yudao-module-erp-biz/src/main/java/cn/iocoder/yudao/module/erp/service/purchase/ErpPurchaseInServiceImpl.java b/yudao-module-erp/yudao-module-erp-biz/src/main/java/cn/iocoder/yudao/module/erp/service/purchase/ErpPurchaseInServiceImpl.java index 58f4952081a..a0017aed649 100644 --- a/yudao-m...
[ "yudao-module-erp/yudao-module-erp-biz/src/main/java/cn/iocoder/yudao/module/erp/service/purchase/ErpPurchaseInServiceImpl.java", "yudao-module-erp/yudao-module-erp-biz/src/main/java/cn/iocoder/yudao/module/erp/service/purchase/ErpPurchaseReturnServiceImpl.java" ]
[]
true
YunaiV/ruoyi-vue-pro
562
issue_to_patch
fix: Remove duplicate package imports
41ea482f8db6bae07cc7fe8bd042b364ec154362
60bdb178a896ecf554647e14b56d3ad197130c8f
diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/controller/vo/respVO.vm b/yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/controller/vo/respVO.vm index 54c16671d6c..24c35194510 100644 --- a/yudao-module-infra/yudao-module-infra-biz/src/main/resources/code...
[ "yudao-module-infra/yudao-module-infra-biz/src/main/resources/codegen/java/controller/vo/respVO.vm" ]
[]
true
YunaiV/ruoyi-vue-pro
565
issue_to_patch
修复 后台获取商品 SPU 分页列表数据时,数据会出现错乱问题。
后台获取商品 SPU 分页列表数据时,只用了sort排序,当排序值相同时,分页时数据会出现错乱问题。
3da2449a151143333985f739545b762459e5aafe
144bfb85a4faec1089dd7b32b52c6148d1406f81
diff --git a/yudao-module-mall/yudao-module-product-biz/src/main/java/cn/iocoder/yudao/module/product/dal/mysql/spu/ProductSpuMapper.java b/yudao-module-mall/yudao-module-product-biz/src/main/java/cn/iocoder/yudao/module/product/dal/mysql/spu/ProductSpuMapper.java index 68f2d210f42..cf8ae64837b 100755 --- a/yudao-modul...
[ "yudao-module-mall/yudao-module-product-biz/src/main/java/cn/iocoder/yudao/module/product/dal/mysql/spu/ProductSpuMapper.java" ]
[]
true
YunaiV/ruoyi-vue-pro
571
issue_to_patch
fix: 修改了函数名拼写
函数名 OAuth2GranTypeEnum 中 Gran 应该修改成 Grant
41ea482f8db6bae07cc7fe8bd042b364ec154362
792823198c7c1ef5e5d7bba5fea3cd21556d20ab
diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/oauth2/OAuth2GrantTypeEnum.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/oauth2/OAuth2GrantTypeEnum.java index 80ce4610bcb..0b09fe5b028 100644 --- a/yudao-m...
[ "yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/oauth2/OAuth2GrantTypeEnum.java", "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/oauth2/OAuth2OpenController.java" ]
[]
true
YunaiV/ruoyi-vue-pro
561
issue_to_patch
【修复】获取菜单精简信息列表接口没有排除父 ID 非 0 的节点
在查询菜单列表时, 在服务端对菜单树进行构建, 将所有父 ID 非 0 的根菜单全部排除后返回给客户端. 缺点是管理端每次加载树的时候服务端都要重新进行一次过滤. 涉及接口: /system/menu/list-all-simple /system/auth/get-permission-info
088871d083cd03f25682e02cc2aedebefa0998d1
fbfa1050d2d587784ae33cf229bf9fbc79c39bf5
diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java index cb002d3a2bd..afdf8248160 100644 --- a...
[ "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java", "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/permission/MenuController.java", "yudao-module-system/yudao-module-syst...
[ { "comment": "这里,如果直接去掉,禁用的菜单,可能没被移除掉", "path": "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java", "hunk": "@@ -109,7 +109,6 @@ public CommonResult<AuthPermissionInfoRespVO> getPermissionInfo() {\n // 1.3 获得菜单列表\n...
true
YunaiV/ruoyi-vue-pro
561
comment_to_fix
【修复】获取菜单精简信息列表接口没有排除父 ID 非 0 的节点
这里,如果直接去掉,禁用的菜单,可能没被移除掉
088871d083cd03f25682e02cc2aedebefa0998d1
fbfa1050d2d587784ae33cf229bf9fbc79c39bf5
diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java index cb002d3a2bd..afdf8248160 100644 --- a...
[ "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java" ]
[ { "comment": "这里,如果直接去掉,禁用的菜单,可能没被移除掉", "path": "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/auth/AuthController.java", "hunk": "@@ -109,7 +109,6 @@ public CommonResult<AuthPermissionInfoRespVO> getPermissionInfo() {\n // 1.3 获得菜单列表\n...
true
YunaiV/ruoyi-vue-pro
561
comment_to_fix
【修复】获取菜单精简信息列表接口没有排除父 ID 非 0 的节点
建议是,提供一个 filter 关闭菜单的 Service 方法,需要的 Controller 主动去调用哈。
088871d083cd03f25682e02cc2aedebefa0998d1
fbfa1050d2d587784ae33cf229bf9fbc79c39bf5
diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java index beee296d114..7cc293258a1 100644 --- a/yud...
[ "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java" ]
[ { "comment": "建议是,提供一个 filter 关闭菜单的 Service 方法,需要的 Controller 主动去调用哈。", "path": "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java", "hunk": "@@ -106,12 +108,60 @@ public List<MenuDO> getMenuList() {\n \n @Override\n ...
true
YunaiV/ruoyi-vue-pro
561
comment_to_fix
【修复】获取菜单精简信息列表接口没有排除父 ID 非 0 的节点
实现逻辑没问题,感觉遍历的复杂度有点高(次数略多)
088871d083cd03f25682e02cc2aedebefa0998d1
fbfa1050d2d587784ae33cf229bf9fbc79c39bf5
diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java index beee296d114..7cc293258a1 100644 --- a/yud...
[ "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java" ]
[ { "comment": "实现逻辑没问题,感觉遍历的复杂度有点高(次数略多)", "path": "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java", "hunk": "@@ -106,12 +108,60 @@ public List<MenuDO> getMenuList() {\n \n @Override\n public List<MenuDO> getMenuLis...
true
YunaiV/ruoyi-vue-pro
561
comment_to_fix
【修复】获取菜单精简信息列表接口没有排除父 ID 非 0 的节点
这个注释不用加哈。因为是否过滤,通过是 status 搞的哈
088871d083cd03f25682e02cc2aedebefa0998d1
fbfa1050d2d587784ae33cf229bf9fbc79c39bf5
diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java index beee296d114..7cc293258a1 100644 --- a/yud...
[ "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java" ]
[ { "comment": "这个注释不用加哈。因为是否过滤,通过是 status 搞的哈", "path": "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java", "hunk": "@@ -106,12 +108,66 @@ public List<MenuDO> getMenuList() {\n \n @Override\n public List<MenuDO> getMe...
true
YunaiV/ruoyi-vue-pro
561
comment_to_fix
【修复】获取菜单精简信息列表接口没有排除父 ID 非 0 的节点
1. menuList => list 2. @return 和 @param 注释写下。避免 idea 黄色告警 3. 方法名改成 filterDisableMenuList。原因是:1)closed 相当于新出的概念,我们需要过滤的是 DISABLE;2)目前一般列表用 List 居多哈,保持统一
088871d083cd03f25682e02cc2aedebefa0998d1
fbfa1050d2d587784ae33cf229bf9fbc79c39bf5
diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuService.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuService.java index adc2b315180..5c3700db9c6 100644 --- a/yudao-modul...
[ "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuService.java" ]
[ { "comment": "1. menuList => list\r\n2. @return 和 @param 注释写下。避免 idea 黄色告警\r\n3. 方法名改成 filterDisableMenuList。原因是:1)closed 相当于新出的概念,我们需要过滤的是 DISABLE;2)目前一般列表用 List 居多哈,保持统一", "path": "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuService.java"...
true
YunaiV/ruoyi-vue-pro
561
comment_to_fix
【修复】获取菜单精简信息列表接口没有排除父 ID 非 0 的节点
可以简化逻辑,提升效率。 1. 构建父子关系:Map<Long, List<MenuDO>> childrenMap = menuList.stream() .collect(Collectors.groupingBy(MenuDO::getParentId)); 但是要注意,这个里面,要过滤掉 status 为禁用的 2. 遍历 childrenMap,那 id 递归查询它的 parent 直到为 0 (根),但凡有 disable 或者不存在,说明是被禁用的节点。满足条件的情况下,直接该 id 对应的 childrenMap 的 value 添加到 result 结果。 ps:...
088871d083cd03f25682e02cc2aedebefa0998d1
fbfa1050d2d587784ae33cf229bf9fbc79c39bf5
diff --git a/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java b/yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java index beee296d114..7cc293258a1 100644 --- a/yud...
[ "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/service/permission/MenuServiceImpl.java" ]
[ { "comment": "可以简化逻辑,提升效率。\r\n1. 构建父子关系:Map<Long, List<MenuDO>> childrenMap = menuList.stream()\r\n .collect(Collectors.groupingBy(MenuDO::getParentId));\r\n 但是要注意,这个里面,要过滤掉 status 为禁用的\r\n2. 遍历 childrenMap,那 id 递归查询它的 parent 直到为 0 (根),但凡有 disable 或者不存在,说明是被禁用的节点。满足条件的情况下,直接该 id 对应的 childrenMap...
true
YunaiV/ruoyi-vue-pro
541
issue_to_patch
【优化】根据给出的建议优化部分代码逻辑、风格
aced20bd0dd58cd271bbc04294a4932691329c9c
5f278ac23b392d6ecd9452cc50fdfc9e77af97e8
diff --git a/yudao-framework/yudao-spring-boot-starter-protection/pom.xml b/yudao-framework/yudao-spring-boot-starter-protection/pom.xml index bbb5b12ebee..46326c63aa4 100644 --- a/yudao-framework/yudao-spring-boot-starter-protection/pom.xml +++ b/yudao-framework/yudao-spring-boot-starter-protection/pom.xml @@ -12,7 +1...
[ "yudao-framework/yudao-spring-boot-starter-protection/pom.xml", "yudao-framework/yudao-spring-boot-starter-protection/src/main/java/cn/iocoder/yudao/framework/signature/config/YudaoSignatureAutoConfiguration.java", "yudao-framework/yudao-spring-boot-starter-protection/src/main/java/cn/iocoder/yudao/framework/si...
[]
diff --git a/yudao-framework/yudao-spring-boot-starter-protection/src/test/java/cn/iocoder/yudao/framework/signature/core/SignatureTest.java b/yudao-framework/yudao-spring-boot-starter-protection/src/test/java/cn/iocoder/yudao/framework/signature/core/SignatureTest.java new file mode 100644 index 00000000000..a253cd51a...
true
YunaiV/ruoyi-vue-pro
534
issue_to_patch
fix:上传文件测试时pg数据库字段与FileContentDO类型不一致报错修复
文件管理-文件配置页面,数据库点击测试,错误详情Caused by: org.postgresql.util.PSQLException: ERROR: column "id" is of type bigint but expression is of type character varying
64aab9ea1b4953440637e59cca7fd15a9f36ca84
9cc6528eba87cfe7539da4a61a69eb3fc31ef10c
diff --git a/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/dal/dataobject/file/FileContentDO.java b/yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/dal/dataobject/file/FileContentDO.java index eda8a726499..80e18fc5699 100644 --- a/yudao-modul...
[ "yudao-module-infra/yudao-module-infra-biz/src/main/java/cn/iocoder/yudao/module/infra/dal/dataobject/file/FileContentDO.java" ]
[]
true
YunaiV/ruoyi-vue-pro
509
issue_to_patch
SexEnum.UNKNOWN.value 与 memeber_user.sex 的默认值不一致 ### 基本信息 - ruoyi-vue-pro 版本:2.1.0 - 操作系统:不相关 - 数据库:不相关 ### 你猜测可能的原因 不相关 ### 复现步骤 https://github.com/YunaiV/ruoyi-vue-pro/blob/8428cc5b9922080661626d241d1e745117ff9491/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/syst...
修复性别未知时的枚举值与 member_user.sex 默认值不一致的问题
fix: https://github.com/YunaiV/ruoyi-vue-pro/issues/508
c52ec92b050f955dfba5f04e26da900a32aa0248
3da7885514c19aafbd7318fb87cffd3d514fde0b
diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/common/SexEnum.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/common/SexEnum.java index f6120c41872..40ac3cab138 100644 --- a/yudao-module-system/yudao-modul...
[ "yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/common/SexEnum.java" ]
[]
true
YunaiV/ruoyi-vue-pro
518
issue_to_patch
【修复】商城首页销售额查询错误
使用了错误的字段枚举做了查询条件,导致查询不到数据,payWalletStatisticsMapper中也存在同样的问题,一并修复了
a8aead3049b9c9542d23f06c34caec713ad26b28
eac9d91a7fe15736332c749d7e9437311b3ce757
diff --git a/yudao-module-mall/yudao-module-statistics-biz/src/main/java/cn/iocoder/yudao/module/statistics/dal/mysql/pay/PayWalletStatisticsMapper.java b/yudao-module-mall/yudao-module-statistics-biz/src/main/java/cn/iocoder/yudao/module/statistics/dal/mysql/pay/PayWalletStatisticsMapper.java index b9b38fbbec5..f2399f...
[ "yudao-module-mall/yudao-module-statistics-biz/src/main/java/cn/iocoder/yudao/module/statistics/dal/mysql/pay/PayWalletStatisticsMapper.java", "yudao-module-mall/yudao-module-statistics-biz/src/main/java/cn/iocoder/yudao/module/statistics/dal/mysql/trade/TradeOrderStatisticsMapper.java", "yudao-module-mall/yuda...
[]
true
YunaiV/ruoyi-vue-pro
510
issue_to_patch
修复 MemberUserBaseVO.sex 与 SexEnum.value 不一致的问题
fix: https://github.com/YunaiV/ruoyi-vue-pro/issues/507
c52ec92b050f955dfba5f04e26da900a32aa0248
546821d9491039e99f9fd9a71a79057210444867
diff --git a/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/admin/user/vo/MemberUserBaseVO.java b/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/admin/user/vo/MemberUserBaseVO.java index db8c809d08a..b2406026176 10...
[ "yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/admin/user/vo/MemberUserBaseVO.java" ]
[]
true
YunaiV/ruoyi-vue-pro
487
issue_to_patch
修复错误拼写的注释
"Redisson 自动高配置类" 改为 "Redisson 自动配置类"
6f42da1b77436daab71b3a85089217c328d5071f
bc6775d64b40b058024d5e27823ffa027cba6fac
[ "yudao-framework/yudao-spring-boot-starter-test/src/main/java/cn/iocoder/yudao/framework/test/core/ut/BaseDbAndRedisUnitTest.java", "yudao-framework/yudao-spring-boot-starter-test/src/main/java/cn/iocoder/yudao/framework/test/core/ut/BaseRedisUnitTest.java", "yudao-module-pay/yudao-module-pay-biz/src/test-integ...
[]
diff --git a/yudao-framework/yudao-spring-boot-starter-test/src/main/java/cn/iocoder/yudao/framework/test/core/ut/BaseDbAndRedisUnitTest.java b/yudao-framework/yudao-spring-boot-starter-test/src/main/java/cn/iocoder/yudao/framework/test/core/ut/BaseDbAndRedisUnitTest.java index 71f1db55377..d30cf6b3e75 100644 --- a/yud...
true
YunaiV/ruoyi-vue-pro
496
issue_to_patch
修复短信模板中关于 type 字段的描述
6f42da1b77436daab71b3a85089217c328d5071f
e133c28da5aa09ef4ebf37031037dce63d2f5b37
diff --git a/sql/mysql/ruoyi-vue-pro.sql b/sql/mysql/ruoyi-vue-pro.sql index 3da8b1ad60a..1e9b91f2988 100644 --- a/sql/mysql/ruoyi-vue-pro.sql +++ b/sql/mysql/ruoyi-vue-pro.sql @@ -5100,7 +5100,7 @@ CREATE TABLE `system_sms_channel` ( `id` bigint NOT NULL AUTO_INCREMENT COMMENT '编号', `signature` varchar(12) CHAR...
[ "sql/mysql/ruoyi-vue-pro.sql", "yudao-module-system/yudao-module-system-biz/src/main/java/cn/iocoder/yudao/module/system/controller/admin/sms/SmsCallbackController.java" ]
[]
true
YunaiV/ruoyi-vue-pro
462
issue_to_patch
fix: [issue-401]修复中山市
fix: 修复issue-401
f623156829a6e25b5b872c7b2729dc33dbd2d5ac
7d26d63dba50ff72708cd478b7c3d40a8066b4ee
diff --git a/yudao-framework/yudao-spring-boot-starter-biz-ip/src/main/resources/area.csv b/yudao-framework/yudao-spring-boot-starter-biz-ip/src/main/resources/area.csv index c9a3a0e7483..06954ba6cac 100644 --- a/yudao-framework/yudao-spring-boot-starter-biz-ip/src/main/resources/area.csv +++ b/yudao-framework/yudao-sp...
[ "yudao-framework/yudao-spring-boot-starter-biz-ip/src/main/resources/area.csv" ]
[]
true
YunaiV/ruoyi-vue-pro
414
issue_to_patch
fix: 错误码bug
1.错误码相同
123a009394cdcfc9377e81514a31cce89caa6743
9878ebbf3bf982bbbb74ca8655fe8b829dc6a048
diff --git a/yudao-module-bpm/yudao-module-bpm-api/src/main/java/cn/iocoder/yudao/module/bpm/enums/ErrorCodeConstants.java b/yudao-module-bpm/yudao-module-bpm-api/src/main/java/cn/iocoder/yudao/module/bpm/enums/ErrorCodeConstants.java index 51eebda236e..a9219ca692b 100644 --- a/yudao-module-bpm/yudao-module-bpm-api/src...
[ "yudao-module-bpm/yudao-module-bpm-api/src/main/java/cn/iocoder/yudao/module/bpm/enums/ErrorCodeConstants.java" ]
[]
true
YunaiV/ruoyi-vue-pro
344
issue_to_patch
fix: 使初始化数据脚本兼容 mysql5.7
官方文档中,推荐使用 mysql5.7 "项目使用 MySQL 存储数据,所以需要启动一个 MySQL 服务,建议使用 5.7 版本。" 但实际上,现在的初始化数据脚本中包含 mysql8.0 才引入的排序规则,与 5.7 不兼容。 故修改排序规则,将 utf8mb4_0900_ai_ci 均改为 utf8mb4_unicode_ci,以支持 mysql5.7
1f327ef8ca343919702e405e362b705aeef1ddcb
a2ba5518e0cb4ce873b45a206cc28a588c82b3fe
diff --git a/sql/mysql/ruoyi-vue-pro.sql b/sql/mysql/ruoyi-vue-pro.sql index 443be2c2c73..5b60f45d2f4 100644 --- a/sql/mysql/ruoyi-vue-pro.sql +++ b/sql/mysql/ruoyi-vue-pro.sql @@ -828,7 +828,7 @@ CREATE TABLE `member_point_config` ( `deleted` bit(1) NOT NULL DEFAULT b'0' COMMENT '是否删除', `tenant_id` bigint NOT N...
[ "sql/mysql/ruoyi-vue-pro.sql" ]
[]
true
YunaiV/ruoyi-vue-pro
342
issue_to_patch
🌈 style: 描述错误, 社交类型的枚举为 SocialTypeEnum 而不是 SysUserSocialTypeEnum
描述错误, 社交类型的枚举为 SocialTypeEnum 而不是 SysUserSocialTypeEnum
36b3cfafd2f6d92fb779cccaebc262107aef23b8
2fd201c7fa944894c7a393075fff568404b5a1f4
diff --git a/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/app/auth/vo/AppAuthLoginReqVO.java b/yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/app/auth/vo/AppAuthLoginReqVO.java index 41762da678d..e64209de8ec 1006...
[ "yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/app/auth/vo/AppAuthLoginReqVO.java", "yudao-module-member/yudao-module-member-biz/src/main/java/cn/iocoder/yudao/module/member/controller/app/auth/vo/AppAuthSmsLoginReqVO.java", "yudao-module-member/yudao-module...
[]
true
YunaiV/yudao-cloud
273
issue_to_patch
fix:【bpm工作流】BpmProcessInstanceCopyServiceImpl抄送时参数顺序错误的问题
5ede07de097a9ae9e3f79e63304cf3ef7d662839
9b891ecf3cd1ab813aa32ab8e5289a1a45d50e6b
diff --git a/yudao-module-bpm/yudao-module-bpm-server/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceCopyServiceImpl.java b/yudao-module-bpm/yudao-module-bpm-server/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceCopyServiceImpl.java index ed89cfe9db..584479d088 100644...
[ "yudao-module-bpm/yudao-module-bpm-server/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmProcessInstanceCopyServiceImpl.java" ]
[]
true
YunaiV/yudao-cloud
196
issue_to_patch
feat(excel): 添加自适应列宽处理器并替换默认列宽策略
- 新增 ColumnWidthMatchStyleStrategy 类实现自适应列宽功能。增加了日期类型数据的自适应支持 - 在 ExcelUtils 类中使用新的列宽处理器替换原有的 LongestMatchColumnWidthStyleStrategy - LongestMatchColumnWidthStyleStrategy默认的自适应宽度效果如下(列宽偏小+不支持日期类型) ​​​​ ![Uploading 1733363085909.png…]()
c322c53b45a2724233c8392686f2df2544e4447a
c10d96d0c784eea112529381decceb342fda31a5
diff --git a/yudao-framework/yudao-spring-boot-starter-excel/src/main/java/cn/iocoder/yudao/framework/excel/core/handler/ColumnWidthMatchStyleStrategy.java b/yudao-framework/yudao-spring-boot-starter-excel/src/main/java/cn/iocoder/yudao/framework/excel/core/handler/ColumnWidthMatchStyleStrategy.java new file mode 10064...
[ "yudao-framework/yudao-spring-boot-starter-excel/src/main/java/cn/iocoder/yudao/framework/excel/core/handler/ColumnWidthMatchStyleStrategy.java", "yudao-framework/yudao-spring-boot-starter-excel/src/main/java/cn/iocoder/yudao/framework/excel/core/util/ExcelUtils.java" ]
[]
true
YunaiV/yudao-cloud
213
issue_to_patch
refactor(gateway): 调整灰度负载均衡过滤器的执行顺序
- 将 GrayReactiveLoadBalancerClientFilter 的执行顺序调整到 ReactiveLoadBalancerClientFilter之前。避免相同 order 产生潜在的冲突。
407aa5908feb61e286ca00278b9678c786956922
fc70c12a26e597181e0dbab8475b58ca07808fae
diff --git a/yudao-gateway/src/main/java/cn/iocoder/yudao/gateway/filter/grey/GrayReactiveLoadBalancerClientFilter.java b/yudao-gateway/src/main/java/cn/iocoder/yudao/gateway/filter/grey/GrayReactiveLoadBalancerClientFilter.java index 91c2260201..8d252bca99 100644 --- a/yudao-gateway/src/main/java/cn/iocoder/yudao/gate...
[ "yudao-gateway/src/main/java/cn/iocoder/yudao/gateway/filter/grey/GrayReactiveLoadBalancerClientFilter.java" ]
[]
true
YunaiV/yudao-cloud
223
issue_to_patch
feat(mybatis): 增强MPJLambdaWrapperX 类,左连接后可以使用betweenIfPresent等
- 添加了新的 betweenIfPresent 方法,支持更灵活的条件判断 -重写了 leftJoin、rightJoin 和 innerJoin 方法,使它们返回当前类型,使得连接后可以使用betweenIfPresent等MPJLambdaWrapperX的方法。 - 新增了带有扩展参数的 Join 方法,支持更复杂的查询需求
18e4b1f33eb5bb803bc35100f80b61fd82642645
2890279e3d59ee0572169c290e2ef12aba9e0724
diff --git a/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/query/MPJLambdaWrapperX.java b/yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/query/MPJLambdaWrapperX.java index 933451865f..1f0b74bf3f 100644 ---...
[ "yudao-framework/yudao-spring-boot-starter-mybatis/src/main/java/cn/iocoder/yudao/framework/mybatis/core/query/MPJLambdaWrapperX.java" ]
[]
true
YunaiV/yudao-cloud
167
issue_to_patch
工作流-代办任务查询-时间范围字段
结束日期的字段
a4ca9800a4b25fa62b2eec2754fb8ba8db3fd37e
0c7d5682442e16be6e8b0f3f6bdf2b57cf2a168e
diff --git a/yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java b/yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java index 411b7fa8e2..b91bae3115 100644 --- a/yudao-module-bpm/yudao-module...
[ "yudao-module-bpm/yudao-module-bpm-biz/src/main/java/cn/iocoder/yudao/module/bpm/service/task/BpmTaskServiceImpl.java" ]
[]
true
YunaiV/yudao-cloud
171
issue_to_patch
修复nacos-client=2.0.4控制台异常,升级spring.cloud.alibaba.version=2021.0.5.0
f63b75241bf05203afc2bc464476bbfba7e14692
63833c9d61c850d17867e09fc62c9b6c1c9a9235
[]
[]
true
YunaiV/yudao-cloud
157
issue_to_patch
fix: docker build yudao-module-pay-biz image fail
[+] Building 4.7s (8/8) FINISHED => [internal] load build definition from Dockerfile 0.0s => => transferring dockerfile: 805B ...
4ca583cbe8ed81f14603068d66bc54a64a611024
f9be4f7448582bb3979b5549d0b2c7b6307ff779
diff --git a/yudao-module-pay/yudao-module-pay-biz/Dockerfile b/yudao-module-pay/yudao-module-pay-biz/Dockerfile index e49321f391..fb2caae257 100644 --- a/yudao-module-pay/yudao-module-pay-biz/Dockerfile +++ b/yudao-module-pay/yudao-module-pay-biz/Dockerfile @@ -7,7 +7,7 @@ FROM eclipse-temurin:8-jre RUN mkdir -p /yud...
[ "yudao-module-pay/yudao-module-pay-biz/Dockerfile" ]
[]
true
YunaiV/yudao-cloud
159
issue_to_patch
fix: Remove duplicate dependencies in pom.xml
328445f7c0afdb82b383aae09d30d0aa8fc7306e
ab642c615e9d207133f0a0aee252cf290a61db41
diff --git a/yudao-framework/yudao-spring-boot-starter-security/pom.xml b/yudao-framework/yudao-spring-boot-starter-security/pom.xml index 9cca4eedeb..18d4c73b97 100644 --- a/yudao-framework/yudao-spring-boot-starter-security/pom.xml +++ b/yudao-framework/yudao-spring-boot-starter-security/pom.xml @@ -74,12 +74,6 @@ ...
[ "yudao-framework/yudao-spring-boot-starter-security/pom.xml" ]
[]
true
YunaiV/yudao-cloud
138
issue_to_patch
fix: [issue-137]修复ErrorCodeConstants
9c60f128ee38ca5252a3b25c02c6379d2c191ec2
aa5c864dc1a5f8f4608ae0c79e08ab0fc1e3d514
diff --git a/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java b/yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java index 2f41f67e99..481c9be54c 100644 --- a/yudao-module-system/yudao...
[ "yudao-module-system/yudao-module-system-api/src/main/java/cn/iocoder/yudao/module/system/enums/ErrorCodeConstants.java" ]
[]
true
YunaiV/yudao-cloud
120
issue_to_patch
Update Dockerfile base image to 21-jre
bca3d0c691b7d2822a4d95402ef399ec6576ffd4
8e97e38050cde579dcd1f067cc69e9d1d45ce03d
diff --git a/yudao-gateway/Dockerfile b/yudao-gateway/Dockerfile index 9ffb1b9222..46037b7d78 100644 --- a/yudao-gateway/Dockerfile +++ b/yudao-gateway/Dockerfile @@ -1,6 +1,6 @@ ## AdoptOpenJDK 停止发布 OpenJDK 二进制,而 Eclipse Temurin 是它的延伸,提供更好的稳定性 ## 感谢复旦核博士的建议!灰子哥,牛皮! -FROM eclipse-temurin:8-jre +FROM eclipse-temurin:2...
[ "yudao-gateway/Dockerfile", "yudao-module-bpm/yudao-module-bpm-biz/Dockerfile", "yudao-module-infra/yudao-module-infra-biz/Dockerfile", "yudao-module-mall/yudao-module-product-biz/Dockerfile", "yudao-module-mall/yudao-module-promotion-biz/Dockerfile", "yudao-module-mall/yudao-module-trade-biz/Dockerfile",...
[]
true
YunaiV/yudao-cloud
123
issue_to_patch
fix 腾讯云上传bug
Endpoint 以cos. 开头,截取region 时前面多了个点.
e007a44315ee45c600d3979444930b98eadf4e32
8bdddd719dc177c7be6069e68f62a89bf38b5907
diff --git a/yudao-framework/yudao-spring-boot-starter-file/src/main/java/cn/iocoder/yudao/framework/file/core/client/s3/S3FileClient.java b/yudao-framework/yudao-spring-boot-starter-file/src/main/java/cn/iocoder/yudao/framework/file/core/client/s3/S3FileClient.java index f554e0b529..49238f8f9c 100644 --- a/yudao-frame...
[ "yudao-framework/yudao-spring-boot-starter-file/src/main/java/cn/iocoder/yudao/framework/file/core/client/s3/S3FileClient.java" ]
[]
true
YunaiV/yudao-cloud
72
issue_to_patch
集成aj-captcha
https://gitee.com/zhijiantianya/ruoyi-vue-pro/pulls/246
03c4f6508152d14252602062f62d3da372e379fb
98ad02744ba77d2d4b4006611eac887e5cf7da0f
diff --git a/yudao-dependencies/pom.xml b/yudao-dependencies/pom.xml index 45c45937e4..3bf41dcc8c 100644 --- a/yudao-dependencies/pom.xml +++ b/yudao-dependencies/pom.xml @@ -47,15 +47,14 @@ <jedis-mock.version>0.1.16</jedis-mock.version> <mockito-inline.version>4.0.0</mockito-inline.version> ...
[ "yudao-dependencies/pom.xml", "yudao-framework/pom.xml", "yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/collection/ArrayUtils.java", "yudao-framework/yudao-common/src/main/java/cn/iocoder/yudao/framework/common/util/date/DateUtils.java", "yudao-framework/yudao-common/src/...
[]
diff --git a/yudao-framework/yudao-spring-boot-starter-biz-pay/src/test/java/cn.iocoder.yudao.framework.pay.core.client.impl/alipay/AlipayQrPayClientTest.java b/yudao-framework/yudao-spring-boot-starter-biz-pay/src/test/java/cn.iocoder.yudao.framework.pay.core.client.impl/alipay/AlipayQrPayClientTest.java index a4c14f6...
true
YunaiV/yudao-cloud
111
issue_to_patch
typo: Correcting typos
244edf67e2b38c9cbf1d2774bf7fad3377468c93
f0dae8f1c627a1e7fa784054a05cf20a1963eae9
diff --git a/yudao-framework/yudao-spring-boot-starter-biz-error-code/pom.xml b/yudao-framework/yudao-spring-boot-starter-biz-error-code/pom.xml index 0f5db966c8..755ede13be 100644 --- a/yudao-framework/yudao-spring-boot-starter-biz-error-code/pom.xml +++ b/yudao-framework/yudao-spring-boot-starter-biz-error-code/pom.x...
[ "yudao-framework/yudao-spring-boot-starter-biz-error-code/pom.xml" ]
[]
true
YunaiV/yudao-cloud
96
issue_to_patch
Bump guava from 31.1-jre to 32.0.0-jre in /yudao-dependencies
Bumps [guava](https://github.com/google/guava) from 31.1-jre to 32.0.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>32.0.0</h2> <h3>Maven</h3> <pre lang="xml"><code>&lt;dependency&gt; &lt;groupId&...
5f8129d65b68624e82173690ddf1f92817ad8a59
ab062f35b12d8000bd1d2c667e42968719aacced
diff --git a/yudao-dependencies/pom.xml b/yudao-dependencies/pom.xml index 255517daa8..6ee557d78e 100644 --- a/yudao-dependencies/pom.xml +++ b/yudao-dependencies/pom.xml @@ -60,7 +60,7 @@ <velocity.version>2.3</velocity.version> <screw.version>1.0.5</screw.version> <fastjson.version>1.2.83</...
[ "yudao-dependencies/pom.xml" ]
[]
true
YunaiV/yudao-cloud
98
issue_to_patch
fix(sec): upgrade commons-net:commons-net to
### What happened? There are 1 security vulnerabilities found in commons-net:commons-net 3.8.0 - [CVE-2021-37533](https://www.oscs1024.com/hd/CVE-2021-37533) ### What did I do? Upgrade commons-net:commons-net from 3.8.0 to for vulnerability fix ### What did you expect to happen? Ideally, no insecure libs should be ...
5f8129d65b68624e82173690ddf1f92817ad8a59
aea35a2021e26f54f34c6878d97617d24fcfcd11
diff --git a/yudao-dependencies/pom.xml b/yudao-dependencies/pom.xml index 255517daa8..1bf66547f4 100644 --- a/yudao-dependencies/pom.xml +++ b/yudao-dependencies/pom.xml @@ -63,7 +63,7 @@ <guava.version>31.1-jre</guava.version> <guice.version>5.1.0</guice.version> <transmittable-thread-local...
[ "yudao-dependencies/pom.xml" ]
[]
true
YunaiV/yudao-cloud
92
issue_to_patch
修复发送时间sendTime字段类型错误
5f8129d65b68624e82173690ddf1f92817ad8a59
518dd30fb255e8d9a7ba9d8bd17800b0786d2f76
[ "yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/mail/MailLogServiceImplTest.java" ]
[]
diff --git a/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/mail/MailLogServiceImplTest.java b/yudao-module-system/yudao-module-system-biz/src/test/java/cn/iocoder/yudao/module/system/service/mail/MailLogServiceImplTest.java index 53acd0ef01..921438576e 100755 --- a/yud...
true
YunaiV/yudao-cloud
71
issue_to_patch
集成aj-captcha
https://gitee.com/zhijiantianya/ruoyi-vue-pro/pulls/246
6b4bc47d085d016bb6fa37676bb7142f62bd78e3
03c4f6508152d14252602062f62d3da372e379fb
[]
[]
true
YunaiV/yudao-cloud
62
issue_to_patch
Spring Cloud Alibaba 完成 system 和 infra 的迁移
9ce0814e2b11315d995cb1ed726a331820a639c7
441330e455466f99689a0c350bc7aab0a005f19e
diff --git a/README.md b/README.md index 20de435d79..f72d46699a 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,18 @@ -[toc] - -> 友情提示:近期在升级和优化该项目,建议先 Star 本项目。主要在做几个事情: -> -> * 1、微服务技术选型以 Spring Cloud Alibaba 为中心。 -> * 2、修改项目分层,并合并部分服务,简化整体服务的复杂性。 -> * 3、将管理后台从 React 重构到 Vue 框架。 -> -> 交流群:[传送门](http://www.iocoder...
[ "README.md" ]
[]
true
YunaiV/yudao-cloud
7
issue_to_patch
Update ServiceExceptionUtil.java
自定义一个接口,声明方法getCode(),枚举实现这个接口并实现getCod()方法返回枚举实例的code,此处error方法的参数声明为该接口类型,然后error方法内部调用getCode方法获取code,这样,对于error方法来说,使用更安全了,避免传一个不存在的code,调用error方法的地方直接传枚举即可,省去大量枚举.getCode()调用,其他方法同,不知道我说清楚了么
9b08c5918c9a17b394e46f72818d5a5a18a74505
31b0bd081e809fc028ca4203a96ab604f825da14
diff --git a/common/common-framework/src/main/java/cn/iocoder/common/framework/util/ServiceExceptionUtil.java b/common/common-framework/src/main/java/cn/iocoder/common/framework/util/ServiceExceptionUtil.java index 7a4e886f0d..4a3d458789 100644 --- a/common/common-framework/src/main/java/cn/iocoder/common/framework/uti...
[ "common/common-framework/src/main/java/cn/iocoder/common/framework/util/ServiceExceptionUtil.java" ]
[]
true
YunaiV/yudao-cloud
21
issue_to_patch
Bump vant from 1.6.28 to 2.2.14 in /mobile-web
Bumps [vant](https://github.com/youzan/vant) from 1.6.28 to 2.2.14. <details> <summary>Release notes</summary> *Sourced from [vant's releases](https://github.com/youzan/vant/releases).* > ## v2.0.9 > **Improvements** > > - add Sticky component [\#3888](https://github-redirect.dependabot.com/youzan/vant/pull/3888) ...
73af7c3932e21b4a2c247597a392228562709d22
eda5facc53ca1e07222363baabd49b23c5c2e1cb
diff --git a/mobile-web/package.json b/mobile-web/package.json index e80d54cc81..3a8b773ca8 100644 --- a/mobile-web/package.json +++ b/mobile-web/package.json @@ -12,7 +12,7 @@ "axios": "^0.18.0", "moment": "^2.24.0", "pingpp-js": "^2.2.13", - "vant": "^1.3.1", + "vant": "^2.2.14", "vue": "^2....
[ "mobile-web/package.json" ]
[]
true
YunaiV/yudao-cloud
4
issue_to_patch
Add unit tests for cn.iocoder.common.framework.util.DateUtil
Hi, I've analysed your code base and noticed that `cn.iocoder.common.framework.util.DateUtil` in the `common` module is not fully tested. I've written some tests that cover this class with the help of [Diffblue Cover](https://www.diffblue.com/opensource). Hopefully, these tests should help you detect any regre...
74724637b7408461e6570855172c753337293b30
da493f29c8a4e82df0349ab0dcaffb44f77f823f
diff --git a/common/common-framework/pom.xml b/common/common-framework/pom.xml index 0aa12f44db..537bd606fb 100644 --- a/common/common-framework/pom.xml +++ b/common/common-framework/pom.xml @@ -74,6 +74,12 @@ <groupId>com.fasterxml.jackson.core</groupId> <artifactId>jackson-databind</artifact...
[ "common/common-framework/pom.xml", "common/common-framework/src/test/java/cn/iocoder/common/framework/util/DateUtilTest.java" ]
[]
diff --git a/common/common-framework/src/test/java/cn/iocoder/common/framework/util/DateUtilTest.java b/common/common-framework/src/test/java/cn/iocoder/common/framework/util/DateUtilTest.java new file mode 100644 index 0000000000..4302d1eb13 --- /dev/null +++ b/common/common-framework/src/test/java/cn/iocoder/common/f...
true
Z4nzu/hackingtool
590
issue_to_patch
Restructure for v2.0.0 with new tools, features, and UI updates
This pull request introduces significant improvements to the development workflow, containerization, and documentation for the project. The main changes include a modernized and robust Docker setup, enhanced GitHub issue and PR templates, updated CI workflows for Python linting and installation testing, and a comprehen...
7df27d8383095257e05c9dfd5af3ea696039d793
536568b72d0a67d4af18829b5e4ff2c709fad121
diff --git a/.dockerignore b/.dockerignore new file mode 100644 index 00000000..a087df4d --- /dev/null +++ b/.dockerignore @@ -0,0 +1,30 @@ +# Version control +.git/ +.gitignore + +# GitHub / docs +.github/ +images/ +*.md + +# Python cache +__pycache__/ +*.py[cod] +*.pyo +.mypy_cache/ +.ruff_cache/ +.pytest_cache/ + +#...
[ ".dockerignore", ".github/FUNDING.yml", ".github/ISSUE_TEMPLATE/bug_report.md", ".github/ISSUE_TEMPLATE/feature_request.md", ".github/ISSUE_TEMPLATE/tool_request.md", ".github/PULL_REQUEST_TEMPLATE.md", ".github/workflows/lint_python.yml", ".github/workflows/test_install.yml", "Dockerfile", "READM...
[ { "comment": "`subprocess` is used in `TheFatRat.update()`/`troubleshoot()` but is never imported in this module, which will raise a `NameError` when those menu actions run. Import `subprocess` at the top-level (or inside the methods) before calling it.", "path": "tools/payload_creator.py", "hunk": "@@ ...
diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 353b9b65..148761bc 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -9,28 +9,20 @@ jobs: runs-on: ubuntu-latest env: TERM: "linux" - strategy: - fail-fast: false...
true
Z4nzu/hackingtool
567
issue_to_patch
Feat/rich UI menu lovely
c43f290df520d886d87e9db212eb946a0799f61c
d274ca0dbc92645b190f7a751b0d260681fae645
diff --git a/README.md b/README.md index bf69339d..c951a542 100644 --- a/README.md +++ b/README.md @@ -204,11 +204,11 @@ - [Crivo](https://github.com/GMDSantana/crivo) -![](https://github.com/Z4nzu/hackingtool/blob/master/images/A00.png) -![](https://github.com/Z4nzu/hackingtool/blob/master/images/A0.png) -![](htt...
[ ".github/workflows/test_install.yml", "README.md", "README_template.md", "core.py", "generate_readme.py", "hackingtool.py", "images/A.png", "images/A0.png", "images/A00.png", "images/A1.png", "images/A2.png", "images/A4.png", "images/AA.png", "images/AAA.png", "images/AAAA.png", "image...
[ { "comment": "Inconsistent input method usage. This line uses plain `input()` while most other user inputs in the updated code use Rich's `Prompt.ask()` for consistent styling.\n```suggestion\n from_file = Prompt.ask(\"Enter Filename to Extract Data From\")\n```", "path": "tools/steganography.py"...
diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index edf2f3d2..353b9b65 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -26,7 +26,7 @@ jobs: cache: 'pip' - run: pip install --upgrade pip - run: pwd && ls -hal - ...
true
Z4nzu/hackingtool
350
issue_to_patch
Typos found by codespell ./tools/xss_attack.py:107: vulnerabilites ==> vulnerabilities ./tools/information_gathering_tools.py:87: Scaning ==> Scanning ./tools/information_gathering_tools.py:117: informations ==> information ./tools/information_gathering_tools.py:168: informations ==> information ./tools/forensic_t...
[FIX] #Fixed Typos by codespell
Close #347
1e088ad35b66dda0ee9139a5220627f86cb54365
00bb2db47f54f39c0f5ed69e8c61f36af22b06af
diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index d082fa3b..4cb86f6e 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -22,7 +22,7 @@ jobs: --statistics --target-version=py37 . | grep "\[\*\]" - run: pip install bla...
[ ".github/workflows/lint_python.yml", "tools/forensic_tools.py", "tools/information_gathering_tools.py", "tools/others/socialmedia_finder.py", "tools/payload_creator.py", "tools/phising_attack.py", "tools/webattack.py", "tools/wireless_attack_tools.py", "tools/xss_attack.py" ]
[ { "comment": "]】", "path": "tools/information_gathering_tools.py", "hunk": "@@ -84,7 +84,7 @@ class RedHawk(HackingTool):\n \n \n class ReconSpider(HackingTool):\n- TITLE = \"ReconSpider(For All Scaning)\"\n+ TITLE = \"ReconSpider(For All Scanning)\"\n DESCRIPTION = \"ReconSpider is most Advan...
true
Z4nzu/hackingtool
528
issue_to_patch
Update Takeover and add Crivo
Takeover's original project no longer exists, but @edoardottt fork is up-to-date.
fbffd2ef27f66ed8d47a97c6b49659c8740806cb
2739ec2a9080f41b2f423f232743c83e0dd496ee
diff --git a/README.md b/README.md index c82a5a15..bf69339d 100644 --- a/README.md +++ b/README.md @@ -113,7 +113,7 @@ - [SubDomain Finder](https://github.com/aboul3la/Sublist3r) - [CheckURL](https://github.com/UndeadSec/checkURL) - [Blazy(Also Find ClickJacking)](https://github.com/UltimateHackers/Blazy) -- [Sub-Do...
[ "README.md", "tools/others/mix_tools.py", "tools/webattack.py" ]
[]
true
Z4nzu/hackingtool
310
issue_to_patch
Add Docker
With this PR any users can try the software without need install them in his local instance. Documentation are added to advise of this. Additionally i recommend that the image are uploaded to Z4nzu/hackingtool Docker repository but, i don't have a problem to store the images.
6bc9d34be87368dbcfef0f244bdd6615b5a39e10
108bf2327234e06fc7905760572299987928f152
diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 00000000..b7abb99a --- /dev/null +++ b/Dockerfile @@ -0,0 +1,24 @@ +FROM kalilinux/kali-rolling + +RUN apt-get update && \ +apt-get install -y git python3-pip figlet sudo; + +#Install packages dependencies +RUN true && \ +apt-get install -y boxes php curl ...
[ "Dockerfile", "README.md", "docker-compose.yml" ]
[]
true
Z4nzu/hackingtool
394
issue_to_patch
Test install, run, uninstall
This is _finally_ ready for review... ``` strategy: fail-fast: false matrix: commands: # Enter hackingtool starting from the main menu with \n as the delimiter. - '17\n0\n1\n\n99\n99\n99' # Install, run, update, update system, press ENTER to continue, back to ma...
d7251643a8f062c3379a140241f849c5e0ccf695
8b14aa5ba13daa0363fb205dae79c69c857e16c3
diff --git a/tools/tool_manager.py b/tools/tool_manager.py index f0fa2aa3..79250f4a 100644 --- a/tools/tool_manager.py +++ b/tools/tool_manager.py @@ -1,5 +1,6 @@ # coding=utf-8 import os +import sys from time import sleep from core import HackingTool @@ -53,9 +54,8 @@ def uninstall(self): "sud...
[ ".github/workflows/test_install.yml", "tools/tool_manager.py" ]
[]
diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index 3a5230a8..d7526647 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -9,6 +9,15 @@ jobs: runs-on: ubuntu-latest env: TERM: "linux" + strategy: + fail-fast: false ...
true
Z4nzu/hackingtool
408
issue_to_patch
New Forensic tool
[+] Volatility3 > Volatility is the world's most widely used framework for extracting digital artifacts from volatile memory (RAM) samples. Source: https://github.com/volatilityfoundation/volatility3/
f5aff5547a4506cfc62008cced6055a354ac70b9
ddd0101b09621bfd6e3381735dfa9a4abcd96953
diff --git a/README.md b/README.md index 7f803864..5b560177 100644 --- a/README.md +++ b/README.md @@ -124,6 +124,7 @@ - [Bulk extractor](https://github.com/simsong/bulk_extractor) - [Disk Clone and ISO Image Acquire](https://guymager.sourceforge.io/) - [Toolsley](https://www.toolsley.com/) +- [Volatility3](https://...
[ "README.md" ]
[]
true
Z4nzu/hackingtool
413
issue_to_patch
Optimized Dockerfile for layer cache and moved all the installations …
Dockerfile layers cache for apt packages, for every code change we don't need to install apt package.
f5aff5547a4506cfc62008cced6055a354ac70b9
1c2cbbbe2afd7d3329b172a8fb8042ac75d26aa1
diff --git a/Dockerfile b/Dockerfile index 5656a50a..f7b0f2b5 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,21 +1,12 @@ -FROM kalilinux/kali-rolling - +FROM kalilinux/kali-rolling:latest RUN apt-get update && \ -apt-get install -y git python3-pip figlet sudo; - -#Install packages dependencies -RUN true && \ -apt-get ...
[ "Dockerfile", "README.md", "docker-compose.yml" ]
[]
true
Z4nzu/hackingtool
416
issue_to_patch
Issue #415: Added code to access parent directory for fixing import error for core.py
The initial code was trying to import core.py current directory, which drew error as it is not present in current directory, instead in parent directory. So added code to import core.py from parent directory. Fixed Import Error: Issue #415
f5aff5547a4506cfc62008cced6055a354ac70b9
cd25c260215381efeb6133ad5c9c7dc78828f8d1
diff --git a/tools/forensic_tools.py b/tools/forensic_tools.py index 84d6b7db..4b2cc693 100644 --- a/tools/forensic_tools.py +++ b/tools/forensic_tools.py @@ -1,6 +1,13 @@ # coding=utf-8 import os +import sys + +# Fetching parent directory for importing core.py +current_dir = os.path.dirname(__file__) +parent_dir =...
[ "tools/forensic_tools.py" ]
[]
true
Z4nzu/hackingtool
395
issue_to_patch
Add test for install, run, and uninstall
```diff - # - "17\n1\n1\n" # Install, run, uninstall, press ENTER to continue + - "17\n1\n1\n" # Install, run, uninstall, press ENTER to continue ``` We can uncomment/enable this test now that #394 has been merged. It would be interesting to add more of these tests to run some of the tools in...
0232498f8f8e5b1e0f3ba84f895918abf7dc8505
aa67417b6540e661206b3f0acac2631ed0d71d9c
[ ".github/workflows/test_install.yml" ]
[]
diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index d7526647..edf2f3d2 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -16,7 +16,7 @@ jobs: # Enter hackingtool starting from the main menu with \n as the delimiter. ...
true
Z4nzu/hackingtool
393
issue_to_patch
Complete the test_install GitHub Action
ca8dcdbca739a852a838e934db8163a6687b3fd9
6d52db486117a2426b42b1041f710c3bf6b7598d
[ ".github/workflows/test_install.yml" ]
[]
diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml index dc75a267..3a5230a8 100644 --- a/.github/workflows/test_install.yml +++ b/.github/workflows/test_install.yml @@ -17,10 +17,11 @@ jobs: cache: 'pip' - run: pip install --upgrade pip - run: pwd && ls -hal - ...
true
Z4nzu/hackingtool
391
issue_to_patch
I need help solving this issue I keep getting this error when opening hackingtools: Traceback (most recent call last): File "/usr/share/hackingtool/hackingtool.py", line 105, in <module> os.mkdirs(archive, exist_ok=True) ^^^^^^^^^ AttributeError: module 'os' has no attribute 'mkdirs'. Did you mean: 'm...
Fix AttributeError: module 'os' has no attribute 'mkdirs'.
Fixes #390 Fixes #392 ``` Traceback (most recent call last): File "/usr/share/hackingtool/hackingtool.py", line 105, in os.mkdirs(archive, exist_ok=True) ^^^^^^^^^ AttributeError: module 'os' has no attribute 'mkdirs'. ``` https://docs.python.org/3/library/os.html#os.makedirs @Z4nzu This is an **urgent** fi...
c188fe023526a6f1aea77cabaf9a215f5d66ce0a
8cd67f7a8e3f97c87dedc1e8acc78d8ba0d13dc1
diff --git a/hackingtool.py b/hackingtool.py index 88dbf02a..1e433e89 100755 --- a/hackingtool.py +++ b/hackingtool.py @@ -102,7 +102,7 @@ def show_info(self): with open(fpath) as f: archive = f.readline() - os.mkdirs(archive, exist_ok=True) + os.makedirs(ar...
[ "hackingtool.py" ]
[]
true
Z4nzu/hackingtool
388
issue_to_patch
GitHub Action to test the install process
64a46031b9c22e2a0526d0216eef627a91da880d
c7e73b1d1359cb3dbfd15df83f169adb65bf53a1
diff --git a/hackingtool.py b/hackingtool.py index 76264009..2334456a 100755 --- a/hackingtool.py +++ b/hackingtool.py @@ -74,7 +74,7 @@ def show_info(self): if __name__ == "__main__": try: if system() == 'Linux': - fpath = "/home/hackingtoolpath.txt" + fpath = os.path.expanduser("~...
[ ".github/workflows/test_install.yml", "hackingtool.py", "install.sh" ]
[]
diff --git a/.github/workflows/test_install.yml b/.github/workflows/test_install.yml new file mode 100644 index 00000000..dc75a267 --- /dev/null +++ b/.github/workflows/test_install.yml @@ -0,0 +1,26 @@ +name: test_install +on: + pull_request: + branches: [master] + push: + branches: [master] +jobs: + test_ins...
true
Z4nzu/hackingtool
389
issue_to_patch
Tools Installation error Tools installation error, Facing the following error @] Set Path (All your tools will be installed in that directory) [1] Manual [2] Default Z4nzu =>> 2 Traceback (most recent call last): File "/usr/share/hacking...
Do not hardcode the home directory
Fixes #369 Use [`os.path.expanduser()`](https://docs.python.org/3/library/os.path.html#os.path.expanduser) to avoid hardcoding the home directory.
c9deb216fdd9d16270d609434de26c2c68692366
562d50c9017130b01460366102ce933a47b9f2a8
diff --git a/hackingtool.py b/hackingtool.py index 921912f7..88dbf02a 100755 --- a/hackingtool.py +++ b/hackingtool.py @@ -74,7 +74,7 @@ def show_info(self): if __name__ == "__main__": try: if system() == 'Linux': - fpath = "/home/hackingtoolpath.txt" + fpath = os.path.expanduser("~...
[ "hackingtool.py" ]
[]
true
Z4nzu/hackingtool
387
issue_to_patch
Brute Force not working ![image](https://user-images.githubusercontent.com/17286417/226240632-5ed902af-b9fc-4cec-a061-4f52d1399997.png) Brute_Force.py not found and unable to run install error Traceback (most recent call last): File "/usr/share/hackingtool/hackingtool.py", line 106, in <module> os.mkdir(a...
Use Python os.makedirs() instead of os.makedir()
Fixes #384 [`os.makedir()`](https://docs.python.org/3/library/os.html#os.makedir) is raising `FileNotFoundError` because a parent directory in the path `archive` does not exist so let's use [`os.makedirs()`](https://docs.python.org/3/library/os.html#os.makedirs) which will create any missing parent directories. ...
64a46031b9c22e2a0526d0216eef627a91da880d
84bd8407da19977c5cd8ba173dc9c77cf1adc605
diff --git a/hackingtool.py b/hackingtool.py index 76264009..921912f7 100755 --- a/hackingtool.py +++ b/hackingtool.py @@ -102,8 +102,7 @@ def show_info(self): with open(fpath) as f: archive = f.readline() - if not os.path.exists(archive): - os.mkdir(arc...
[ "hackingtool.py", "tools/others/socialmedia.py" ]
[]
true
Z4nzu/hackingtool
386
issue_to_patch
Update ddos.py to fix SyntaxError
Ran `black ddos.py` to fix the Python Syntax Error and spelled `Saphyra` correctly on the last line. * https://github.com/psf/black#readme @Z4nzu Your review, please.
3164a249c2c7da24a356f2ddfa048c6d5bd816ae
3a00eb0ac52e911340743b952ebda87dc35dee17
diff --git a/tools/ddos.py b/tools/ddos.py index de70cacd..f9e93372 100644 --- a/tools/ddos.py +++ b/tools/ddos.py @@ -5,15 +5,18 @@ from core import HackingTool from core import HackingToolsCollection + class ddos(HackingTool): - TITLE ="ddos" - DESCRIPTION = "Best DDoS Attack Script With 36 Plus Methods." ...
[ "tools/ddos.py" ]
[]
true
Z4nzu/hackingtool
326
issue_to_patch
Update ddos.py and fixed typo
8af26be04fd173113448347c778c7b0edde9a794
373be7237168d1141ad1a2ac468a7fb7895606c1
diff --git a/tools/ddos.py b/tools/ddos.py index 7cf37ea4..de70cacd 100644 --- a/tools/ddos.py +++ b/tools/ddos.py @@ -76,7 +76,7 @@ class UFONet(HackingTool): class GoldenEye(HackingTool): TITLE = "GoldenEye" - DESCRIPTION = "GoldenEye is an python3 app for SECURITY TESTING PURPOSES ONLY!\n" \ + DESCRIPT...
[ "tools/ddos.py" ]
[ { "comment": "https://realpython.com/the-most-diabolical-python-antipattern", "path": "tools/ddos.py", "hunk": "@@ -87,14 +87,32 @@ class GoldenEye(HackingTool):\n def run(self):\n os.system(\"cd GoldenEye ;sudo ./goldeneye.py\")\n print(\"\\033[96m Go to Directory \\n \"\n- ...
true
Z4nzu/hackingtool
326
comment_to_fix
Update ddos.py and fixed typo
https://realpython.com/the-most-diabolical-python-antipattern
8af26be04fd173113448347c778c7b0edde9a794
373be7237168d1141ad1a2ac468a7fb7895606c1
diff --git a/tools/ddos.py b/tools/ddos.py index 7cf37ea4..de70cacd 100644 --- a/tools/ddos.py +++ b/tools/ddos.py @@ -76,7 +76,7 @@ class UFONet(HackingTool): class GoldenEye(HackingTool): TITLE = "GoldenEye" - DESCRIPTION = "GoldenEye is an python3 app for SECURITY TESTING PURPOSES ONLY!\n" \ + DESCRIPT...
[ "tools/ddos.py" ]
[ { "comment": "https://realpython.com/the-most-diabolical-python-antipattern", "path": "tools/ddos.py", "hunk": "@@ -87,14 +87,32 @@ class GoldenEye(HackingTool):\n def run(self):\n os.system(\"cd GoldenEye ;sudo ./goldeneye.py\")\n print(\"\\033[96m Go to Directory \\n \"\n- ...
true
Z4nzu/hackingtool
385
issue_to_patch
Added steps for installing tool
Added a proper steps for better understanding for user to run tool
8aabfdacb29baaca37e10432c89d080d3a8f86d4
011db11064148537f2bc4dec84e345c086096c24
diff --git a/README.md b/README.md index 016c4ed7..7f803864 100644 --- a/README.md +++ b/README.md @@ -210,19 +210,33 @@ ## Installation For Linux <img src="https://konpa.github.io/devicon/devicon.git/icons/linux/linux-original.svg" alt="linux" width="25" height="25"/></p><p align="center"> -#### This Tool Must Ru...
[ "README.md" ]
[]
true
Z4nzu/hackingtool
365
issue_to_patch
Hack https://www.github/login/oauth/authorize?redirect_uri=github%3A%2F%2Fcom.github.android%2Foauth&client_id=3f8b8834a91f0caad392&response_type=code&state=bi6IWH6LOe0SrtdeBivOgA&nonce=M8fgYlG8-7A3nTkWevfVpg&scope=user%20repo%20notifications%20admin%3Aorg%20read%3Adiscussion%20user%3Aassets%20project%20workflow&code_...
Run lint_python tests on branches: [development, master]
0bf9f1fe372836c5e8ab46f3ecffc2620c32cff6
3c065d89f6a17e95a393cdfa4156bf63647c3cdc
diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index fff9533a..d4bac874 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -1,9 +1,9 @@ name: lint_python on: pull_request: - branches: [master] + branches: [development, master] push...
[ ".github/workflows/lint_python.yml" ]
[]
true
Z4nzu/hackingtool
382
issue_to_patch
Update phising_attack.py
8aabfdacb29baaca37e10432c89d080d3a8f86d4
c33500a1b3b58f8d9562010282a0797dc587d884
diff --git a/tools/phising_attack.py b/tools/phising_attack.py index e4d2ac67..44513463 100644 --- a/tools/phising_attack.py +++ b/tools/phising_attack.py @@ -220,5 +220,6 @@ class PhishingAttackTools(HackingToolsCollection): Thanos(), QRLJacking(), BlackPhish(), - Maskphish() + ...
[ "tools/phising_attack.py" ]
[]
true
Z4nzu/hackingtool
343
issue_to_patch
dnstwist
add dnstwist
74eebac6f889a447474e5a1f58b9e0277c287490
10a8fdbe89830795356304cb43f379e4c48f5d40
diff --git a/tools/phising_attack.py b/tools/phising_attack.py index 88186074..d8a87f9e 100644 --- a/tools/phising_attack.py +++ b/tools/phising_attack.py @@ -195,6 +195,12 @@ def __init__(self): def update(self): os.system("cd BlackPhish;sudo bash update.sh") +class dnstwist(HackingTool): + Title='d...
[ "tools/phising_attack.py" ]
[]
true
Z4nzu/hackingtool
360
issue_to_patch
Hackers Tools
Hackers Tools
00bb2db47f54f39c0f5ed69e8c61f36af22b06af
8aabfdacb29baaca37e10432c89d080d3a8f86d4
diff --git a/.github/workflows/lint_python.yml b/.github/workflows/lint_python.yml index 4cb86f6e..fff9533a 100644 --- a/.github/workflows/lint_python.yml +++ b/.github/workflows/lint_python.yml @@ -22,7 +22,7 @@ jobs: --statistics --target-version=py37 . | grep "\[\*\]" - run: pip install bla...
[ ".github/workflows/lint_python.yml", "Dockerfile", "core.py", "generate_readme.py", "hackingtool.py", "install.sh", "tools/payload_creator.py", "tools/phising_attack.py" ]
[ { "comment": "Those were meant to be hints to future contributors.", "path": ".github/workflows/lint_python.yml", "hunk": "@@ -22,7 +22,7 @@ jobs:\n --statistics --target-version=py37 . | grep \"\\[\\*\\]\"\n - run: pip install black codespell mypy pytest safety\n - run: bl...
true