JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 4220,
"has_wiki": true,
"homepage": null,
"languages": {
"C#": 602848
},
"pushed_at": "2026-07-22T10:02:34Z",
"created_at": "2020-07-11T08:48:19Z",
"owner_type": "User",
"updated_at": "2026-07-07T08:08:28Z",
"description": null,
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "master",
"license_spdx_raw": "Apache-2.0",
"primary_language": "C#",
"significant_languages": [
"C#"
]
},
"owner": {
"blog": null,
"name": "kicck",
"type": "User",
"login": "girvs",
"company": null,
"location": null,
"followers": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/50536942?v=4",
"created_at": "2019-05-12T04:00:15Z",
"is_verified": null,
"public_repos": 11,
"account_age_days": 2628
},
"license": {
"state": "standard",
"spdx_id": "Apache-2.0",
"raw_spdx": "Apache-2.0",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.5.0",
"kind": "minor",
"published_at": "2021-03-26T08:21:55Z"
}
],
"recent_commits": [
{
"oid": "f93fec4e4f31ae2c2c31b61cf4a983f7158f8b21",
"body": null,
"is_bot": false,
"headline": "Merge branch 'dev'",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-07-07T08:06:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d628e337f1c169e3558d03cc3a097b0928eb84a9",
"body": null,
"is_bot": false,
"headline": "优化代码",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-07-07T08:05:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "31c141891c633850fe9dc1db98c27a2d7eef5e0d",
"body": null,
"is_bot": false,
"headline": "修改Command命令相关的Bug",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-07-07T07:44:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ce3c60404cd6406eb48ee563b0b8741fc9605b51",
"body": null,
"is_bot": false,
"headline": "修改相关的版本号",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-07-07T06:37:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19869476b4b711e037acb5aff0f62d8178ee21f5",
"body": null,
"is_bot": false,
"headline": "移除代码生成相关的模块功能",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-07-07T06:31:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb6fc8f38d75f5ca488054ebdc84e9a9a43f3a42",
"body": null,
"is_bot": false,
"headline": "好像没什么用,暂时",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-07-07T06:14:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0f2d044afeb014e8e21ce8d78dbf386f1240706",
"body": "- 引擎新增 ChangeCurrentThreadServiceProvider(返回 using 还原令牌)\n- CAP:新增 GirvsSubscribeInvoker 复用每条消息的作用域并桥接 EngineContext,\n 以 Replace 替换默认 ISubscribeInvoker;精简 GirvsIntegrationEventHandler\n- Quartz:改用官方 DI/Hosting(AddQuartz + AddQuartzHostedService),\n 删除手写 SingletonJobFactory 与 QuartzHostedService;GirvsJob 仅保留作用域桥接\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "修复后台场景 DbContext 作用域共享问题,改用 CAP/Quartz 内置作用域机制",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-07-07T06:11:27Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "26f18cdd1f6e0d812e2d2c915209e70bfde3f213",
"body": null,
"is_bot": false,
"headline": "fix: 修复 Grpc 服务映射反射重载冲突",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-07-07T06:01:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6404936d64c5ca39dc08eb88128b5ef445007ea9",
"body": "RegisterIValidatorType 原先用 AddValidatorsFromAssemblyContaining(typeof(GirvsCommandValidator<>))\n只扫描 Girvs.Driven 自身程序集,扫不到业务项目里继承 GirvsCommandValidator<T> 的校验器,\n且遗留的开放泛型兜底注册与 FluentValidation 自身类型冲突,宿主开启 ValidateOnBuild 时\n抛出 Cannot instantiate implementation type 'FluentValidation.InlineValidator`1[\n[…]\non 自身的开放泛型类型。新增 Girvs.Driven.RegistrationTests\n回归测试固定该行为。\n\n同时修复 Scalar.AspNetCore 2.x 下 MapScalarApiReference 端点前缀不支持 {documentName}\n占位符的问题(.NET10 分支),版本号升至 10.0.0-beta1.3(beta1.2 已发布且含此 bug,不可复用版本号)。",
"is_bot": false,
"headline": "fix(Girvs.Driven): 修复 IValidator<> 开放泛型注册导致启动异常",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-07-01T02:35:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "9e16233df2c0d660c5feed426d1ec0ed28a1bd4b",
"body": null,
"is_bot": false,
"headline": "优化代码",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-06-30T07:56:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "30349b473fbf854112d31d4130812897f43fdaaf",
"body": "- 移除 LogDashboard(消除 System.Linq.Dynamic.Core 1.2.9 critical\n 与 System.Data.SqlClient 传递漏洞),改为显式引用 Newtonsoft.Json\n 13.0.4 与 JetBrains.Annotations 2025.2.4(原经 LogDashboard 传递)\n- 移除 Serilog.Sinks.AliyunLog(消除 Google.Protobuf 3.5.1 high)\n- Cache 的 net8/net9 Caching.SqlServer/StackExchangeRedis 升至\n \n[…]\nient 4.8.6(修复 GHSA-8g2p)\n- Cache 加 System.Drawing.Common 8.0.0/9.0.0 覆盖有漏洞的传递版本 5.0.0\n\n清理 GlobalUsings 与 GirvsModuleStartup 中的 LogDashboard 引用。\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: 处理 dependabot 5 个安全漏洞告警",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-06-30T04:30:06Z",
"body_truncated": true,
"is_coding_agent": true
},
{
"oid": "87b19b46ebfba205f7dd3da70009309971917a84",
"body": "将 Girvs.EntityFrameworkCore 的 MySQL 数据提供程序由 Oracle 官方\nMySql.EntityFrameworkCore 替换:\n- net8 → Pomelo.EntityFrameworkCore.MySql 8.0.3(EF 全家随之升至 8.0.13)\n- net9 → Pomelo.EntityFrameworkCore.MySql 9.0.0(EF 全家 9.0.8)\n- net10 → Microting.EntityFrameworkCore.MySql 10.0.9\n\nUseMySqlWithLazyLoading 统一改用 Pomelo 系 UseMySql(connStr,\nServerVersion.AutoDetect, …),移除原 #if NET8_0 的 UseMySQL 分支。\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "build: MySQL provider 替换为 Pomelo/Microting",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-06-30T04:09:29Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "807d8149008ad186c6ec142a60f8cf13b6ef0e15",
"body": "将各模块 net10.0 ItemGroup 的 NuGet 包统一升至最新稳定版\n(CAP 10.0.1、Refit 12.1.0、MediatR 14.1.0、EF Core 10.0.9、\nGrpc 2.80、Serilog 10 等)。\n\n修复 Girvs.OpenApi 在 net9.0 下的既有编译失败:\n- 按 #if NET10_0 条件编译 Microsoft.OpenApi v1/v2 API 差异\n (命名空间、Operations 键 OperationType vs HttpMethod)\n- 条件编译 Scalar v1/v2 端点配置差异\n- 禁用 ApiDescription.Server 构建期文档生成(类库无入口点)\n\nCo-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>",
"is_bot": false,
"headline": "build: 升级 net10 依赖至最新版并修复 OpenApi 跨框架兼容",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-06-30T03:56:44Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "aab353897aa6ee8c5fa751f24a5025056391209a",
"body": "补充版本号与构建出包行为,清理已失效的过期配置描述。\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "docs: 更新 CLAUDE.md 项目说明",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-06-12T08:59:05Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "49a9ba2f0d2551d8ccb347c3494ab832e6c45da1",
"body": "MediatR 12+ 与 AutoMapper 13+ 已将 AddMediatR/AddAutoMapper 合入主包,\n旧 *.Extensions.Microsoft.DependencyInjection 包版本约束与新主包冲突。\nnet8 仍用 MediatR 11,其 Extensions 包保留。\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "build: 移除废弃的 DI 扩展包引用,消除 NU1608",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-06-12T08:59:05Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "069c623853056ee1672bb2dca86d232c809acd30",
"body": "- Refit 请求管道与 Consul 服务发现全链 async 化,\n 新增 RestServiceAsync<T>,同步版转发并标注阻塞风险\n- EF 自动迁移改用同步 Migrate(),缓存清理 handler 改 await\n- 启停钩子等无法 await 处改 GetAwaiter().GetResult(),\n 异常不再被 AggregateException 包装\n- CachingExtensions 同步包装标 [Obsolete] 引导异步接口\n\n线程池饥饿与 ASP.NET Core 经典死锁风险来源。\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "fix: 消除同步阻塞异步调用",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-06-12T08:59:05Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "f4ccd2efc2b84f5ef8640f320ad7dca813f75ba6",
"body": "- CreateGrivsHostBuilder/CreateGrivsWebApplicationBuilder → CreateGirvs*,\n GetInstant → GetInstance,IIcludeTamperProof → IIncludeTamperProof,\n 旧名均保留 [Obsolete] 转发/继承,编译兼容\n- Repository 泛型参数 Tkey → TKey(不影响签名)\n- 实体接口文件名与接口名对齐(IIncludeCreatorId/IIncludeCreatorName)\n\nBREAKING CHANGE: 抽象方法 GetCurrnetUserAuthorize 改名为\nGetCurrentUserAuthorize,无法提供转发兼容,下游 override 处需同步改名。\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "refactor!: 修正公共 API 拼写错误",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-06-12T08:55:29Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "925dccd3058b86596c4f458c230758e556e2b4ee",
"body": "- 删除被 Compile Remove 排除的 4 个死文件及 csproj 排除段\n- 删除全文件注释的 ConsulDiscoveryDelegatingHandler\n- 删除指向已不存在 Net5/ 路径的 .vscode 配置\n- 清理 GirvsEngine/IEngine 等处的注释代码块\n\nCo-Authored-By: Claude Fable 5 <noreply@anthropic.com>",
"is_bot": false,
"headline": "chore: 清理死代码与过期配置",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-06-12T08:50:01Z",
"body_truncated": false,
"is_coding_agent": true
},
{
"oid": "d5f460b85d8d611a6f02df3f46e2b3d2f867eaff",
"body": null,
"is_bot": false,
"headline": "发布.net prview1.1版本",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-04-21T11:42:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bde879237fdb7038a611a5676df1a2adb4fd1330",
"body": null,
"is_bot": false,
"headline": "发布.net 10 prview版本",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-04-14T11:55:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ddea589b8a6dc4770b4ee68247dbd174cf1b10d7",
"body": null,
"is_bot": false,
"headline": "优化测试",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-03-05T07:28:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6c138c895770047b0dd923adb59a4dcee430e5e",
"body": null,
"is_bot": false,
"headline": "优化修改",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-03-04T08:25:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e960805422b308cc246dd21ad122a6b6c4a92bf5",
"body": null,
"is_bot": false,
"headline": "Merge branch 'dev'",
"author_name": "KICCK_HOME\\kicck",
"author_login": "girvs",
"committed_at": "2026-01-19T12:42:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2cd6ae187b28e9685f05eb43306c469778a236fb",
"body": null,
"is_bot": false,
"headline": "稍加说明",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-01-14T01:15:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3e9b0a05d34b5a11224a4425cc20eeb616440cc",
"body": null,
"is_bot": false,
"headline": "转换解决方案文件",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-01-13T09:43:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "26d3db69720d386afb03d8750fa638a6b2b4a625",
"body": null,
"is_bot": false,
"headline": "修改redis 序列化使用system.text.json",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2026-01-08T01:05:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ffc27c1edfe47a295a139bf31e4b1a1a6cfff26f",
"body": null,
"is_bot": false,
"headline": "移除swagger支持",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-11-13T02:07:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb51256fa6a695605447e7c8287c542d665e8583",
"body": null,
"is_bot": false,
"headline": "初步升级至net 10",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-11-12T09:47:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c1c5cde941ffde9b4689c119a9fbfeaa144db03",
"body": null,
"is_bot": false,
"headline": "准备升级net 10.0",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-10-15T01:09:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5cd9715d7e383aacd13a84255d034a3b8ab6284",
"body": null,
"is_bot": false,
"headline": "Merge branch 'dev'",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-09-26T03:40:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "da209aaf05c3e12f9c88266e7753f1742fa171e9",
"body": null,
"is_bot": false,
"headline": "微调",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-09-26T03:38:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66c37c9017438af738e8b50d267082814d053ea0",
"body": null,
"is_bot": false,
"headline": "添加绝对过期时间",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-08-12T01:03:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ee9b74b35702a2518f0dac7c0f28046d3277ff5",
"body": null,
"is_bot": false,
"headline": "发布9.0.5.3",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-08-06T08:17:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b28ed5fb7b0ce47b1d855033e38efbaca0b0e79b",
"body": null,
"is_bot": false,
"headline": "修改集群Redis带来的问题",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-08-06T07:31:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "48565f9657cf80c10cdbb1d35267443709d7a8b3",
"body": null,
"is_bot": false,
"headline": "修改Bug",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-24T06:10:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "66b97f0475e435f0283f01ef59edf2969589cead",
"body": null,
"is_bot": false,
"headline": "修复分布式锁,锁不住的情况",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-24T03:00:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be9e00324098c16663edacb21bfa97305e922733",
"body": null,
"is_bot": false,
"headline": "修复分布式锁,在并发时锁不住的问题",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-23T07:24:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "905ea967c23917a5d47d1e672d86b066d2930f8f",
"body": null,
"is_bot": false,
"headline": "添加默认有效时间",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-17T07:31:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3ab15ba5591ddcc94ce145d3fa38734db0346f0b",
"body": null,
"is_bot": false,
"headline": "修改防跳参数使用错误的问题",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-17T03:16:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6522f24eed0ef2faf6a112b7542e5edcef213cf9",
"body": null,
"is_bot": false,
"headline": "移除自动匹配参数类型引用",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-04T03:38:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b10c4c299b360addb1b80247f753272c42fde18a",
"body": null,
"is_bot": false,
"headline": "修改为openapi 自动绑定参数的Bug",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-04T02:31:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b42012ebcd15db25a76a0f3c05bbca78ac0b91ca",
"body": null,
"is_bot": false,
"headline": "完善前端防跳执行设计",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-04T01:38:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c3723c3ce5fbe0cd9450bb0cf5bfb095dc8ddc6",
"body": null,
"is_bot": false,
"headline": "优化代码逻辑",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-03T09:01:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "076e0ade61de2afb22ee7071140c89c22fd78e81",
"body": null,
"is_bot": false,
"headline": "发布版本为9.0.1",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-03T08:43:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd65711491966dbaa9ac8f9a8928defadb61253e",
"body": null,
"is_bot": false,
"headline": "备注",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-03T08:41:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c6b786e6d79f02234ab33eef5fb36fc4b240cdf",
"body": null,
"is_bot": false,
"headline": "添加简单的防跳设计",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-06-03T08:40:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c69197281aa3e47ca544ec5733c5e60a1d79df49",
"body": null,
"is_bot": false,
"headline": "发布9.0正式版",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-05-30T10:01:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e1123b77fc1b1aba3098f6e3b67d36664a06bcfe",
"body": null,
"is_bot": false,
"headline": "microsoft.openapi默认不会自动推断 [FromQuery], [FromBody] ,添加默认的参数自动推断类型",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-05-30T09:21:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe6dd9d19c03e974f66ba7c00eb755791bf2186f",
"body": null,
"is_bot": false,
"headline": "修复动态API接口支持openapi",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-05-30T00:48:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aa6588bbbcbfb4ace86112c676e9c6d89cd513b8",
"body": null,
"is_bot": false,
"headline": "修改Redis批量删除支持集群",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-04-16T02:55:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c6ca7d74e5d18a14252a5d78163862dc6cc012ae",
"body": null,
"is_bot": false,
"headline": "发布9.0.0-beta1.4版本",
"author_name": "KICCK-WINDOWS\\kicck",
"author_login": "girvs",
"committed_at": "2025-03-12T08:21:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "87c9f0a38a2328d7ea8d990ed6a8b18b21f19923",
"body": null,
"is_bot": false,
"headline": "升级完善分布式缓存的使用",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-02-06T07:10:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40cf538fb90e5912faf7b4a32d68ef29373c55d0",
"body": null,
"is_bot": false,
"headline": "修改相关Bug,添加使用分布式锁时,可以根据需要延时释放锁",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-01-18T01:46:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "14c4c5371edbfbb3e7fa36204aca3decef97d61f",
"body": null,
"is_bot": false,
"headline": "修改EventBus 相关Bug",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-01-17T09:25:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5f5f8ea5733efcdc120d43cffdc8bd3619f4fdd6",
"body": "…tackExchangeRedis",
"is_bot": false,
"headline": "原有StackRedis 不支持 redis 集群分片功能,改用.net 自带Microsoft.Extensions.Caching.S…",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2025-01-17T08:38:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "446f17fbff48cab08a3faccee410446d6abfd345",
"body": null,
"is_bot": false,
"headline": "修改数据库不能自动迁移的问题",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-27T07:44:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fab950fedfdd192b02284be81f87d1552d2d5755",
"body": null,
"is_bot": false,
"headline": "修改Bug 发布9.0.0-beta1.3.2版本",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-25T03:43:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "310b61278a33eec2c10c4ceae14de22a0081da71",
"body": null,
"is_bot": false,
"headline": "修改Bug",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-24T09:19:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a286c31f640c4be3be57857d0796c6aa1f345770",
"body": null,
"is_bot": false,
"headline": "完善主机创建,修改参数传入",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-24T06:26:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d95aa5a68a0415786d17b25ea34cd02cdc1a2938",
"body": null,
"is_bot": false,
"headline": "添加girvs.openapi包,使用官方自带的组件,同时对swaggerui、Knife4jUI、ScalarUI进行支持",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-23T09:15:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6fb3988449ac5bdce9859b3b064b27bbc6d5e13",
"body": null,
"is_bot": false,
"headline": "发布beta1.3",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-20T07:55:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d2e82dd3a73f6490a09f9145e65139e55111cd55",
"body": null,
"is_bot": false,
"headline": "优化redis写锁,和业务执行逻辑",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-20T06:25:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e1d33bbfee21179fa5e2e51db44e16bbe049cae0",
"body": null,
"is_bot": false,
"headline": "解决ILocker AddSingleton带来的自动延时带的问题",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-20T03:32:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a98f206e9c2f78c1cd79faf2ea702817f2c12f1a",
"body": null,
"is_bot": false,
"headline": "发布9.0 beta1.1版本 添加对锁的立即释放参数",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-19T09:57:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a3b489a888e62ba53a3116846dc19a0afd32e6f6",
"body": null,
"is_bot": false,
"headline": "添加参数,是否立即释放锁",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-19T09:45:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d56761ae175e14bdaff67846a3b63c472709037f",
"body": "* 'master' of https://github.com/girvs/Girvs:\n Update README.en.md",
"is_bot": false,
"headline": "Merge branch 'master' of https://github.com/girvs/Girvs",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-18T06:35:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f12ebe9f0ce8fe187bf55d9831079e9387284b30",
"body": null,
"is_bot": false,
"headline": "兼容升级到9.0版本",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-18T06:35:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0c6f1db7d082b19182509b0b16dd118270f25ffd",
"body": null,
"is_bot": false,
"headline": "修改配置文件加载顺序",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-18T03:41:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24b112ba8d175aedd00ebbc0a31947e5ea673d1d",
"body": null,
"is_bot": false,
"headline": "使用默认的配置文件方式,添加替换占位符的功能",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-18T02:21:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89f1f405f66b16c2c009dbca1b17fb8d3561755d",
"body": null,
"is_bot": false,
"headline": "添加配置项对${}对环境变量的支持",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-18T01:48:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9efe73170cbd748461e33295963b491fa15002a6",
"body": null,
"is_bot": false,
"headline": "添加生产环境配置文件",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-17T09:51:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "01868f191662f7fd6af718bed101cb531cedcef8",
"body": null,
"is_bot": false,
"headline": "添加对swagger生成的控制",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-12-17T09:30:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19ff10892909aaf7389a5bc910e92e84b2a1f679",
"body": null,
"is_bot": false,
"headline": "主键修改为虚属性",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-11-07T02:47:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "010e8c953ad00b0e6f475283950931716cb4ad92",
"body": null,
"is_bot": false,
"headline": "添加消费即删除的,防止消息堆积,从而影响性能的问题",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-11-07T01:14:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7345fc7a9433983fe74523200c05456252e8fdd4",
"body": null,
"is_bot": false,
"headline": "Update README.en.md",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-07-31T09:58:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f3f2108498d9554147e446c2a49ab4b3a791f5f",
"body": null,
"is_bot": false,
"headline": "修改Grpc相关的信息",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-06-18T08:22:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "561254de9976097ab31682f59081ebfc862e33fb",
"body": null,
"is_bot": false,
"headline": "添加Grpc基础引用",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-06-18T03:41:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58bb0f6ad1debe62bba71b81d5e971c52f927062",
"body": null,
"is_bot": false,
"headline": "修改IDS4 授权时带来的BUG",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-04-24T06:13:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b00e2e0346923fb02dbea3dd404a96be89d1c6e5",
"body": null,
"is_bot": false,
"headline": "修改发布版本",
"author_name": "girvs",
"author_login": "girvs",
"committed_at": "2024-03-27T07:06:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "671bae1ba762966a1e9a6f970642cbd35ecce664",
"body": null,
"is_bot": false,
"headline": "同步修改8.0相关的问题",
"author_name": "girvs",
"author_login": "girvs",
"committed_at": "2024-03-27T07:05:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eadcb8d7d945107dad81f065a0ed78abbac0f311",
"body": null,
"is_bot": false,
"headline": "修改SignalR相关的Bug",
"author_name": "girvs",
"author_login": "girvs",
"committed_at": "2024-03-27T02:51:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b6ae87dd6129a4e15de546b5470bdb8dc775cfec",
"body": null,
"is_bot": false,
"headline": "主要是C#12版本变化,为了支持class 主构造函数的方式",
"author_name": "girvs",
"author_login": "girvs",
"committed_at": "2024-03-21T02:47:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e59613ade76f32f9d3654e3437efa401d6ae1449",
"body": null,
"is_bot": false,
"headline": "修改批量操作的逻辑升级为EF以后7.0自带的方法",
"author_name": "girvs",
"author_login": "girvs",
"committed_at": "2024-03-20T08:53:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05a84945532fcb43981096c63cd6b35348eea60f",
"body": null,
"is_bot": false,
"headline": "修改批量操作相关关联的BUG",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-03-20T07:32:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "58f1c4bcbba05ed144988953019f0744a875c333",
"body": null,
"is_bot": false,
"headline": "Update Girvs.Driven.csproj",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-03-19T07:36:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9cb1b04ec17cd2728eebba0b82f4bbf6bb46fe66",
"body": null,
"is_bot": false,
"headline": "初步完成升级为8.0版本",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2024-03-15T02:16:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a093a2f476126ba442bb2a19d4b970cc2653ff38",
"body": null,
"is_bot": false,
"headline": "添加接口说明调试模式",
"author_name": "kicck\\xufeng",
"author_login": "girvs",
"committed_at": "2023-10-19T02:55:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89dc349950c5a1247ef0f68314df4f5059578cb8",
"body": null,
"is_bot": false,
"headline": "安步完成8.0 的升级",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-10-17T05:46:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ddc104f3666cfc1852bf4f34facbd815d6279faf",
"body": null,
"is_bot": false,
"headline": "修改无请求时相关的Bug",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-10-16T00:45:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8b6b262534a4f98586f79440ebc77cb50418fc58",
"body": null,
"is_bot": false,
"headline": "修改特定情况下生成的Token所带来的Bug,并发布v6.0.2版本",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-08-30T07:29:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "936b6dfcbc8340899145991a87c5c671bbd6c2c4",
"body": null,
"is_bot": false,
"headline": "添加对应的扩展方法",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-08-18T09:52:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fcdce796e00b4191b5cb304c85bd265e60603fb7",
"body": null,
"is_bot": false,
"headline": "发布正式版本",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-07-31T08:18:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d3f2de6265f853a379a4c574725a335d5f3fd8f",
"body": null,
"is_bot": false,
"headline": "修改底层的支持方式",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-07-31T03:19:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74b12ca8674217e28e8123ec6ea6714af292c067",
"body": null,
"is_bot": false,
"headline": "扩展动态设置参数",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-07-17T05:49:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4584c2429da5bddac882160ab8b23f547fdbb624",
"body": null,
"is_bot": false,
"headline": "修改相关的Bug",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-07-17T01:03:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2a4017f4977608720b5c718316b8ec0153514e40",
"body": null,
"is_bot": false,
"headline": "DynamicWebApi default RemoveControllerPostfixes",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-06-25T05:58:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f61e684496934bf4302f41388b7db708d7bd942",
"body": null,
"is_bot": false,
"headline": "修改首次迁移时的BUG",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-06-02T08:00:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c91550947e86af272733d40f9bcec8b3a3d9e6cc",
"body": null,
"is_bot": false,
"headline": "修改对老版本的支持",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-05-30T09:49:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dcef7bd301d88d3764b2f43f1e84b96c7dc3e39f",
"body": null,
"is_bot": false,
"headline": "同步发布2.0.8包",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-05-04T07:15:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4654e75996572022175e6ce78f558fa92e52e142",
"body": null,
"is_bot": false,
"headline": "添加获取实体对应的Schema名称以及 所有分表的名称",
"author_name": "kicck",
"author_login": "girvs",
"committed_at": "2023-05-04T07:14:24Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 34,
"latest_release_at": "2021-03-26T08:21:55Z",
"latest_release_tag": "v1.5.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 15,
"days_since_latest_release": 1944,
"mean_days_between_releases": null
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": false,
"has_contributing": false,
"health_percentage": 28,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "Girvs.AuthorizePermission",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "nuget",
"matches_repo": true,
"registry_url": "https://www.nuget.org/packages/Girvs.AuthorizePermission",
"is_deprecated": false,
"latest_version": "9.0.8.1",
"repository_url": "https://github.com/girvs/Girvs",
"versions_count": 18,
"total_downloads": 16373,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-01-27T10:14:55.153000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 176
},
{
"name": "Girvs.AutoMapper",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "nuget",
"matches_repo": true,
"registry_url": "https://www.nuget.org/packages/Girvs.AutoMapper",
"is_deprecated": false,
"latest_version": "9.0.8.1",
"repository_url": "https://github.com/girvs/Girvs",
"versions_count": 15,
"total_downloads": 14329,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-01-27T10:14:56.697000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 176
},
{
"name": "Girvs.Cache",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "nuget",
"matches_repo": true,
"registry_url": "https://www.nuget.org/packages/Girvs.Cache",
"is_deprecated": false,
"latest_version": "9.0.8.1",
"repository_url": "https://github.com/girvs/Girvs",
"versions_count": 16,
"total_downloads": 15975,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-01-27T10:14:58.573000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 176
},
{
"name": "Girvs.Consul",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "nuget",
"matches_repo": true,
"registry_url": "https://www.nuget.org/packages/Girvs.Consul",
"is_deprecated": false,
"latest_version": "9.0.8.1",
"repository_url": "https://github.com/girvs/Girvs",
"versions_count": 22,
"total_downloads": 27048,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-01-27T10:15:02.230000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 176
},
{
"name": "Girvs.Driven",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "nuget",
"matches_repo": true,
"registry_url": "https://www.nuget.org/packages/Girvs.Driven",
"is_deprecated": false,
"latest_version": "9.0.8.1",
"repository_url": "https://github.com/girvs/Girvs",
"versions_count": 15,
"total_downloads": 14927,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-01-27T10:15:03.930000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 176
},
{
"name": "Girvs.DynamicWebApi",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "nuget",
"matches_repo": true,
"registry_url": "https://www.nuget.org/packages/Girvs.DynamicWebApi",
"is_deprecated": false,
"latest_version": "9.0.8.1",
"repository_url": "https://github.com/girvs/Girvs",
"versions_count": 15,
"total_downloads": 16207,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-01-27T10:15:05.460000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 176
},
{
"name": "Girvs.EntityFrameworkCore",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "nuget",
"matches_repo": true,
"registry_url": "https://www.nuget.org/packages/Girvs.EntityFrameworkCore",
"is_deprecated": false,
"latest_version": "9.0.8.1",
"repository_url": "https://github.com/girvs/Girvs",
"versions_count": 6,
"total_downloads": 16985,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-01-27T10:15:07.337000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 176
},
{
"name": "Girvs.EventBus",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "nuget",
"matches_repo": true,
"registry_url": "https://www.nuget.org/packages/Girvs.EventBus",
"is_deprecated": false,
"latest_version": "9.0.8.1",
"repository_url": "https://github.com/girvs/Girvs",
"versions_count": 15,
"total_downloads": 14001,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-01-27T10:15:09.327000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 176
}
]
},
"popularity": {
"forks": 1,
"stars": 5,
"watchers": 1,
"fork_history": {
"days": [
{
"date": "2021-08-12",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": null,
"open_issues_and_prs": 2
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj",
"Girvs.AutoMapper/Girvs.AutoMapper.csproj",
"Girvs.Cache/Girvs.Cache.csproj",
"Girvs.Consul/Girvs.Consul.csproj",
"Girvs.Driven/Girvs.Driven.csproj",
"Girvs.DynamicWebApi/Girvs.DynamicWebApi.csproj",
"Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"Girvs.EventBus/Girvs.EventBus.csproj",
"Girvs.Grpc/Girvs.Grpc.csproj",
"Girvs.OpenApi/Girvs.OpenApi.csproj",
"Girvs.Quartz/Girvs.Quartz.csproj",
"Girvs.Refit/Girvs.Refit.csproj",
"Girvs.SignalR/Girvs.SignalR.csproj",
"Girvs/Girvs.csproj"
],
"largest_source_bytes": 56938,
"source_files_sampled": 269,
"oversized_source_files": 0,
"agent_instruction_files": [
"AGENTS.md",
"CLAUDE.md"
],
"agent_instruction_max_bytes": 5710
},
"dependencies": {
"manifests": [
"Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj",
"Girvs.AutoMapper/Girvs.AutoMapper.csproj",
"Girvs.Cache/Girvs.Cache.csproj",
"Girvs.Consul/Girvs.Consul.csproj",
"Girvs.Driven/Girvs.Driven.csproj",
"Girvs.DynamicWebApi/Girvs.DynamicWebApi.csproj",
"Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"Girvs.EventBus/Girvs.EventBus.csproj",
"Girvs.Grpc/Girvs.Grpc.csproj",
"Girvs.OpenApi/Girvs.OpenApi.csproj",
"Girvs.Quartz/Girvs.Quartz.csproj",
"Girvs.Refit/Girvs.Refit.csproj",
"Girvs.SignalR/Girvs.SignalR.csproj",
"Girvs/Girvs.csproj"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [
{
"name": "Refit",
"direct": true,
"version": "7.0.0",
"severity": "critical",
"ecosystem": "nuget",
"cvss_score": 9.8,
"advisory_ids": [
"GHSA-3hxg-fxwm-8gf7"
],
"fixed_version": "7.2.22",
"advisory_count": 1,
"oldest_advisory_days": 625
},
{
"name": "AutoMapper",
"direct": true,
"version": "15.0.1",
"severity": "high",
"ecosystem": "nuget",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-rvv3-g6hj-g44x"
],
"fixed_version": "16.1.1",
"advisory_count": 1,
"oldest_advisory_days": 131
},
{
"name": "Microsoft.AspNetCore.SignalR.Protocols.MessagePack",
"direct": true,
"version": "8.0.3",
"severity": "high",
"ecosystem": "nuget",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-f8h2-vmm9-qhj6"
],
"fixed_version": "10.0.9",
"advisory_count": 1,
"oldest_advisory_days": 37
},
{
"name": "Microsoft.AspNetCore.SignalR.Protocols.MessagePack",
"direct": true,
"version": "9.0.0",
"severity": "high",
"ecosystem": "nuget",
"cvss_score": 7.5,
"advisory_ids": [
"GHSA-f8h2-vmm9-qhj6"
],
"fixed_version": "10.0.9",
"advisory_count": 1,
"oldest_advisory_days": 37
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"direct": true,
"version": "3.1.5",
"severity": "moderate",
"ecosystem": "nuget",
"cvss_score": 5.5,
"advisory_ids": [
"GHSA-q7cg-43mg-qp69"
],
"fixed_version": "5.0.9",
"advisory_count": 1,
"oldest_advisory_days": 1792
},
{
"name": "System.IdentityModel.Tokens.Jwt",
"direct": true,
"version": "5.6.0",
"severity": "moderate",
"ecosystem": "nuget",
"cvss_score": 6.8,
"advisory_ids": [
"GHSA-59j7-ghrg-fj52"
],
"fixed_version": "7.1.2",
"advisory_count": 1,
"oldest_advisory_days": 925
}
],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {
"high": 3,
"critical": 1,
"moderate": 2
},
"advisory_count": 6,
"affected_count": 6,
"assessed_count": 164,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 6
},
"ecosystems": [
"nuget"
],
"dependencies": [
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"manifest": "Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.3"
},
{
"name": "System.IdentityModel.Tokens.Jwt",
"manifest": "Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj",
"ecosystem": "nuget",
"version_constraint": "7.4.0"
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"manifest": "Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.0"
},
{
"name": "System.IdentityModel.Tokens.Jwt",
"manifest": "Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj",
"ecosystem": "nuget",
"version_constraint": "8.2.1"
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"manifest": "Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "System.IdentityModel.Tokens.Jwt",
"manifest": "Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj",
"ecosystem": "nuget",
"version_constraint": "8.19.1"
},
{
"name": "AutoMapper",
"manifest": "Girvs.AutoMapper/Girvs.AutoMapper.csproj",
"ecosystem": "nuget",
"version_constraint": "15.0.1"
},
{
"name": "System.Linq.Async",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "6.0.1"
},
{
"name": "Microsoft.Extensions.Caching.StackExchangeRedis",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.28"
},
{
"name": "Microsoft.Extensions.Caching.SqlServer",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.28"
},
{
"name": "System.Drawing.Common",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.0"
},
{
"name": "System.Linq.Async",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "6.0.1"
},
{
"name": "Microsoft.Extensions.Caching.StackExchangeRedis",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.17"
},
{
"name": "Microsoft.Extensions.Caching.SqlServer",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.17"
},
{
"name": "System.Drawing.Common",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.0"
},
{
"name": "System.Linq.Async",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "7.0.1"
},
{
"name": "Microsoft.Extensions.Caching.StackExchangeRedis",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Microsoft.Extensions.Caching.SqlServer",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "System.Data.SqlClient",
"manifest": "Girvs.Cache/Girvs.Cache.csproj",
"ecosystem": "nuget",
"version_constraint": "4.8.6"
},
{
"name": "Grpc.HealthCheck",
"manifest": "Girvs.Consul/Girvs.Consul.csproj",
"ecosystem": "nuget",
"version_constraint": "2.57.0"
},
{
"name": "NConsul.AspNetCore",
"manifest": "Girvs.Consul/Girvs.Consul.csproj",
"ecosystem": "nuget",
"version_constraint": "0.8.1"
},
{
"name": "Grpc.HealthCheck",
"manifest": "Girvs.Consul/Girvs.Consul.csproj",
"ecosystem": "nuget",
"version_constraint": "2.67.0"
},
{
"name": "NConsul.AspNetCore",
"manifest": "Girvs.Consul/Girvs.Consul.csproj",
"ecosystem": "nuget",
"version_constraint": "0.8.1"
},
{
"name": "Grpc.HealthCheck",
"manifest": "Girvs.Consul/Girvs.Consul.csproj",
"ecosystem": "nuget",
"version_constraint": "2.80.0"
},
{
"name": "NConsul.AspNetCore",
"manifest": "Girvs.Consul/Girvs.Consul.csproj",
"ecosystem": "nuget",
"version_constraint": "0.8.1"
},
{
"name": "FluentValidation",
"manifest": "Girvs.Driven/Girvs.Driven.csproj",
"ecosystem": "nuget",
"version_constraint": "11.9.0"
},
{
"name": "MediatR",
"manifest": "Girvs.Driven/Girvs.Driven.csproj",
"ecosystem": "nuget",
"version_constraint": "11.1.0"
},
{
"name": "MediatR.Extensions.Microsoft.DependencyInjection",
"manifest": "Girvs.Driven/Girvs.Driven.csproj",
"ecosystem": "nuget",
"version_constraint": "11.1.0"
},
{
"name": "FluentValidation",
"manifest": "Girvs.Driven/Girvs.Driven.csproj",
"ecosystem": "nuget",
"version_constraint": "11.11.0"
},
{
"name": "MediatR",
"manifest": "Girvs.Driven/Girvs.Driven.csproj",
"ecosystem": "nuget",
"version_constraint": "12.4.1"
},
{
"name": "FluentValidation",
"manifest": "Girvs.Driven/Girvs.Driven.csproj",
"ecosystem": "nuget",
"version_constraint": "12.1.1"
},
{
"name": "FluentValidation.DependencyInjectionExtensions",
"manifest": "Girvs.Driven/Girvs.Driven.csproj",
"ecosystem": "nuget",
"version_constraint": "12.1.1"
},
{
"name": "MediatR",
"manifest": "Girvs.Driven/Girvs.Driven.csproj",
"ecosystem": "nuget",
"version_constraint": "14.1.0"
},
{
"name": "Panda.DynamicWebApi",
"manifest": "Girvs.DynamicWebApi/Girvs.DynamicWebApi.csproj",
"ecosystem": "nuget",
"version_constraint": "1.2.1"
},
{
"name": "Panda.DynamicWebApi",
"manifest": "Girvs.DynamicWebApi/Girvs.DynamicWebApi.csproj",
"ecosystem": "nuget",
"version_constraint": "1.2.2"
},
{
"name": "Panda.DynamicWebApi",
"manifest": "Girvs.DynamicWebApi/Girvs.DynamicWebApi.csproj",
"ecosystem": "nuget",
"version_constraint": "1.2.2"
},
{
"name": "Microsoft.EntityFrameworkCore",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.13"
},
{
"name": "Microsoft.EntityFrameworkCore.InMemory",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.13"
},
{
"name": "Microsoft.EntityFrameworkCore.Proxies",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.13"
},
{
"name": "Microsoft.EntityFrameworkCore.Relational",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.13"
},
{
"name": "Microsoft.EntityFrameworkCore.Sqlite",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.13"
},
{
"name": "Microsoft.EntityFrameworkCore.SqlServer",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.13"
},
{
"name": "Microsoft.EntityFrameworkCore.Design",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.13"
},
{
"name": "Oracle.EntityFrameworkCore",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "8.21.121"
},
{
"name": "Pomelo.EntityFrameworkCore.MySql",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.3"
},
{
"name": "Microsoft.EntityFrameworkCore",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.8"
},
{
"name": "Microsoft.EntityFrameworkCore.Proxies",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.8"
},
{
"name": "Microsoft.EntityFrameworkCore.Relational",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.8"
},
{
"name": "Microsoft.EntityFrameworkCore.SqlServer",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.8"
},
{
"name": "Pomelo.EntityFrameworkCore.MySql",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.0"
},
{
"name": "Microsoft.EntityFrameworkCore.Tools",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.8"
},
{
"name": "Microsoft.EntityFrameworkCore.Design",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.8"
},
{
"name": "Microsoft.EntityFrameworkCore",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Microsoft.EntityFrameworkCore.Proxies",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Microsoft.EntityFrameworkCore.Relational",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Microsoft.EntityFrameworkCore.SqlServer",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Microting.EntityFrameworkCore.MySql",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Microsoft.EntityFrameworkCore.Tools",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Microsoft.EntityFrameworkCore.Design",
"manifest": "Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "DotNetCore.CAP",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.1"
},
{
"name": "DotNetCore.CAP.Dashboard",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.1"
},
{
"name": "DotNetCore.CAP.Kafka",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.1"
},
{
"name": "DotNetCore.CAP.MySql",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.1"
},
{
"name": "DotNetCore.CAP.RabbitMQ",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.1"
},
{
"name": "DotNetCore.CAP.RedisStreams",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.1"
},
{
"name": "DotNetCore.CAP.Sqlite",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.1.1"
},
{
"name": "DotNetCore.CAP.SqlServer",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.1"
},
{
"name": "DotNetCore.CAP",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.3.1"
},
{
"name": "DotNetCore.CAP.Dashboard",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.3.1"
},
{
"name": "DotNetCore.CAP.Kafka",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.3.1"
},
{
"name": "DotNetCore.CAP.MySql",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.3.1"
},
{
"name": "DotNetCore.CAP.RabbitMQ",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.3.1"
},
{
"name": "DotNetCore.CAP.RedisStreams",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.3.1"
},
{
"name": "DotNetCore.CAP.Sqlite",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.3.0"
},
{
"name": "DotNetCore.CAP.SqlServer",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "8.3.1"
},
{
"name": "DotNetCore.CAP",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.1"
},
{
"name": "DotNetCore.CAP.Dashboard",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.1"
},
{
"name": "DotNetCore.CAP.Kafka",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.1"
},
{
"name": "DotNetCore.CAP.MySql",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.1"
},
{
"name": "DotNetCore.CAP.RabbitMQ",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.1"
},
{
"name": "DotNetCore.CAP.RedisStreams",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.1"
},
{
"name": "DotNetCore.CAP.Sqlite",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.0"
},
{
"name": "DotNetCore.CAP.SqlServer",
"manifest": "Girvs.EventBus/Girvs.EventBus.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.1"
},
{
"name": "Google.Protobuf",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "3.27.0"
},
{
"name": "Grpc.AspNetCore.Server",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.61.0"
},
{
"name": "Grpc.AspNetCore.Web",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.61.0"
},
{
"name": "Grpc.Core",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.46.6"
},
{
"name": "Grpc.Tools",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.64.0"
},
{
"name": "Google.Protobuf",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "3.28.3"
},
{
"name": "Grpc.AspNetCore.Server",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.67.0"
},
{
"name": "Grpc.AspNetCore.Web",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.67.0"
},
{
"name": "Grpc.Core",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.46.6"
},
{
"name": "Grpc.Tools",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.67.0"
},
{
"name": "Google.Protobuf",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "3.35.1"
},
{
"name": "Grpc.AspNetCore.Server",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.80.0"
},
{
"name": "Grpc.AspNetCore.Web",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.80.0"
},
{
"name": "Grpc.Core",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.46.6"
},
{
"name": "Grpc.Tools",
"manifest": "Girvs.Grpc/Girvs.Grpc.csproj",
"ecosystem": "nuget",
"version_constraint": "2.81.1"
},
{
"name": "Microsoft.AspNetCore.OpenApi",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.0"
},
{
"name": "Swashbuckle.AspNetCore.SwaggerUi",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "7.2.0"
},
{
"name": "IGeekFan.AspNetCore.Knife4jUI",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "0.0.16"
},
{
"name": "Scalar.AspNetCore",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "1.2.70"
},
{
"name": "Microsoft.Extensions.ApiDescription.Server",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.0"
},
{
"name": "Microsoft.AspNetCore.OpenApi",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Swashbuckle.AspNetCore.SwaggerUi",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "10.2.3"
},
{
"name": "IGeekFan.AspNetCore.Knife4jUI",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "0.0.16"
},
{
"name": "Scalar.AspNetCore",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "2.16.6"
},
{
"name": "Microsoft.Extensions.ApiDescription.Server",
"manifest": "Girvs.OpenApi/Girvs.OpenApi.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Quartz",
"manifest": "Girvs.Quartz/Girvs.Quartz.csproj",
"ecosystem": "nuget",
"version_constraint": "3.8.1"
},
{
"name": "Quartz.Extensions.DependencyInjection",
"manifest": "Girvs.Quartz/Girvs.Quartz.csproj",
"ecosystem": "nuget",
"version_constraint": "3.8.1"
},
{
"name": "Quartz.Extensions.Hosting",
"manifest": "Girvs.Quartz/Girvs.Quartz.csproj",
"ecosystem": "nuget",
"version_constraint": "3.8.1"
},
{
"name": "Quartz",
"manifest": "Girvs.Quartz/Girvs.Quartz.csproj",
"ecosystem": "nuget",
"version_constraint": "3.8.1"
},
{
"name": "Quartz.Extensions.DependencyInjection",
"manifest": "Girvs.Quartz/Girvs.Quartz.csproj",
"ecosystem": "nuget",
"version_constraint": "3.8.1"
},
{
"name": "Quartz.Extensions.Hosting",
"manifest": "Girvs.Quartz/Girvs.Quartz.csproj",
"ecosystem": "nuget",
"version_constraint": "3.8.1"
},
{
"name": "Quartz",
"manifest": "Girvs.Quartz/Girvs.Quartz.csproj",
"ecosystem": "nuget",
"version_constraint": "3.18.2"
},
{
"name": "Quartz.Extensions.DependencyInjection",
"manifest": "Girvs.Quartz/Girvs.Quartz.csproj",
"ecosystem": "nuget",
"version_constraint": "3.18.2"
},
{
"name": "Quartz.Extensions.Hosting",
"manifest": "Girvs.Quartz/Girvs.Quartz.csproj",
"ecosystem": "nuget",
"version_constraint": "3.18.2"
},
{
"name": "NConsul.AspNetCore",
"manifest": "Girvs.Refit/Girvs.Refit.csproj",
"ecosystem": "nuget",
"version_constraint": "0.8.1"
},
{
"name": "Refit",
"manifest": "Girvs.Refit/Girvs.Refit.csproj",
"ecosystem": "nuget",
"version_constraint": "7.0.0"
},
{
"name": "Refit.HttpClientFactory",
"manifest": "Girvs.Refit/Girvs.Refit.csproj",
"ecosystem": "nuget",
"version_constraint": "7.0.0"
},
{
"name": "NConsul.AspNetCore",
"manifest": "Girvs.Refit/Girvs.Refit.csproj",
"ecosystem": "nuget",
"version_constraint": "0.8.1"
},
{
"name": "Refit",
"manifest": "Girvs.Refit/Girvs.Refit.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.0"
},
{
"name": "Refit.HttpClientFactory",
"manifest": "Girvs.Refit/Girvs.Refit.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.0"
},
{
"name": "NConsul.AspNetCore",
"manifest": "Girvs.Refit/Girvs.Refit.csproj",
"ecosystem": "nuget",
"version_constraint": "0.8.1"
},
{
"name": "Refit",
"manifest": "Girvs.Refit/Girvs.Refit.csproj",
"ecosystem": "nuget",
"version_constraint": "12.1.0"
},
{
"name": "Refit.HttpClientFactory",
"manifest": "Girvs.Refit/Girvs.Refit.csproj",
"ecosystem": "nuget",
"version_constraint": "12.1.0"
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"manifest": "Girvs.SignalR/Girvs.SignalR.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.3"
},
{
"name": "Microsoft.AspNetCore.SignalR.Protocols.MessagePack",
"manifest": "Girvs.SignalR/Girvs.SignalR.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.3"
},
{
"name": "Microsoft.AspNetCore.SignalR.StackExchangeRedis",
"manifest": "Girvs.SignalR/Girvs.SignalR.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.3"
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"manifest": "Girvs.SignalR/Girvs.SignalR.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.0"
},
{
"name": "Microsoft.AspNetCore.SignalR.Protocols.MessagePack",
"manifest": "Girvs.SignalR/Girvs.SignalR.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.0"
},
{
"name": "Microsoft.AspNetCore.SignalR.StackExchangeRedis",
"manifest": "Girvs.SignalR/Girvs.SignalR.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.0"
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"manifest": "Girvs.SignalR/Girvs.SignalR.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Microsoft.AspNetCore.SignalR.Protocols.MessagePack",
"manifest": "Girvs.SignalR/Girvs.SignalR.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Microsoft.AspNetCore.SignalR.StackExchangeRedis",
"manifest": "Girvs.SignalR/Girvs.SignalR.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.9"
},
{
"name": "Newtonsoft.Json",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "13.0.4"
},
{
"name": "JetBrains.Annotations",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "2025.2.4"
},
{
"name": "Serilog.AspNetCore",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.1"
},
{
"name": "Serilog.Formatting.Elasticsearch",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.0"
},
{
"name": "Serilog.Settings.Configuration",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.0"
},
{
"name": "Serilog.Sinks.Console",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "5.0.1"
},
{
"name": "Serilog.Sinks.Elasticsearch",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.0"
},
{
"name": "Serilog.Sinks.File",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "5.0.0"
},
{
"name": "Portable.BouncyCastle",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "1.9.0"
},
{
"name": "Serilog.AspNetCore",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "8.0.3"
},
{
"name": "Serilog.Formatting.Elasticsearch",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.0"
},
{
"name": "Serilog.Settings.Configuration",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "9.0.0-dev-02304"
},
{
"name": "Serilog.Sinks.Console",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "6.0.0"
},
{
"name": "Serilog.Sinks.Elasticsearch",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.0"
},
{
"name": "Serilog.Sinks.File",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "6.0.0"
},
{
"name": "Portable.BouncyCastle",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "1.9.0"
},
{
"name": "Serilog.AspNetCore",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.0"
},
{
"name": "Serilog.Formatting.Elasticsearch",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.0"
},
{
"name": "Serilog.Settings.Configuration",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.1"
},
{
"name": "Serilog.Sinks.Console",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "6.1.1"
},
{
"name": "Serilog.Sinks.Elasticsearch",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "10.0.0"
},
{
"name": "Serilog.Sinks.File",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "7.0.0"
},
{
"name": "Portable.BouncyCastle",
"manifest": "Girvs/Girvs.csproj",
"ecosystem": "nuget",
"version_constraint": "1.9.0"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "AutoMapper",
"direct": true,
"version": "15.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP",
"direct": true,
"version": "10.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP",
"direct": true,
"version": "8.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP",
"direct": true,
"version": "8.3.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.Dashboard",
"direct": true,
"version": "10.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.Dashboard",
"direct": true,
"version": "8.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.Dashboard",
"direct": true,
"version": "8.3.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.Kafka",
"direct": true,
"version": "10.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.Kafka",
"direct": true,
"version": "8.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.Kafka",
"direct": true,
"version": "8.3.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.MySql",
"direct": true,
"version": "10.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.MySql",
"direct": true,
"version": "8.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.MySql",
"direct": true,
"version": "8.3.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.RabbitMQ",
"direct": true,
"version": "10.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.RabbitMQ",
"direct": true,
"version": "8.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.RabbitMQ",
"direct": true,
"version": "8.3.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.RedisStreams",
"direct": true,
"version": "10.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.RedisStreams",
"direct": true,
"version": "8.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.RedisStreams",
"direct": true,
"version": "8.3.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.Sqlite",
"direct": true,
"version": "10.0.0",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.Sqlite",
"direct": true,
"version": "8.0.1.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.Sqlite",
"direct": true,
"version": "8.3.0",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.SqlServer",
"direct": true,
"version": "10.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.SqlServer",
"direct": true,
"version": "8.0.1",
"ecosystem": "nuget"
},
{
"name": "DotNetCore.CAP.SqlServer",
"direct": true,
"version": "8.3.1",
"ecosystem": "nuget"
},
{
"name": "FluentValidation",
"direct": true,
"version": "11.11.0",
"ecosystem": "nuget"
},
{
"name": "FluentValidation",
"direct": true,
"version": "11.9.0",
"ecosystem": "nuget"
},
{
"name": "FluentValidation",
"direct": true,
"version": "12.1.1",
"ecosystem": "nuget"
},
{
"name": "FluentValidation.DependencyInjectionExtensions",
"direct": true,
"version": "12.1.1",
"ecosystem": "nuget"
},
{
"name": "Google.Protobuf",
"direct": true,
"version": "3.27.0",
"ecosystem": "nuget"
},
{
"name": "Google.Protobuf",
"direct": true,
"version": "3.28.3",
"ecosystem": "nuget"
},
{
"name": "Google.Protobuf",
"direct": true,
"version": "3.35.1",
"ecosystem": "nuget"
},
{
"name": "Grpc.AspNetCore.Server",
"direct": true,
"version": "2.29.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.AspNetCore.Server",
"direct": true,
"version": "2.61.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.AspNetCore.Server",
"direct": true,
"version": "2.67.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.AspNetCore.Server",
"direct": true,
"version": "2.80.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.AspNetCore.Web",
"direct": true,
"version": "2.29.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.AspNetCore.Web",
"direct": true,
"version": "2.61.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.AspNetCore.Web",
"direct": true,
"version": "2.67.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.AspNetCore.Web",
"direct": true,
"version": "2.80.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.Core",
"direct": true,
"version": "2.30.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.Core",
"direct": true,
"version": "2.46.6",
"ecosystem": "nuget"
},
{
"name": "Grpc.HealthCheck",
"direct": true,
"version": "2.57.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.HealthCheck",
"direct": true,
"version": "2.67.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.HealthCheck",
"direct": true,
"version": "2.80.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.Tools",
"direct": true,
"version": "2.64.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.Tools",
"direct": true,
"version": "2.67.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.Tools",
"direct": true,
"version": "2.81.1",
"ecosystem": "nuget"
},
{
"name": "IGeekFan.AspNetCore.Knife4jUI",
"direct": true,
"version": "0.0.16",
"ecosystem": "nuget"
},
{
"name": "JetBrains.Annotations",
"direct": true,
"version": "2025.2.4",
"ecosystem": "nuget"
},
{
"name": "MediatR",
"direct": true,
"version": "11.1.0",
"ecosystem": "nuget"
},
{
"name": "MediatR",
"direct": true,
"version": "12.4.1",
"ecosystem": "nuget"
},
{
"name": "MediatR",
"direct": true,
"version": "14.1.0",
"ecosystem": "nuget"
},
{
"name": "MediatR.Extensions.Microsoft.DependencyInjection",
"direct": true,
"version": "11.1.0",
"ecosystem": "nuget"
},
{
"name": "MediatR.Extensions.Microsoft.DependencyInjection",
"direct": true,
"version": "8.0.1",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"direct": true,
"version": "3.1.5",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"direct": true,
"version": "8.0.3",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.Authentication.JwtBearer",
"direct": true,
"version": "9.0.0",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.OpenApi",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.OpenApi",
"direct": true,
"version": "9.0.0",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.SignalR.Protocols.MessagePack",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.SignalR.Protocols.MessagePack",
"direct": true,
"version": "8.0.3",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.SignalR.Protocols.MessagePack",
"direct": true,
"version": "9.0.0",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.SignalR.StackExchangeRedis",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.SignalR.StackExchangeRedis",
"direct": true,
"version": "8.0.3",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.SignalR.StackExchangeRedis",
"direct": true,
"version": "9.0.0",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore",
"direct": true,
"version": "8.0.13",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore",
"direct": true,
"version": "9.0.8",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Design",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Design",
"direct": true,
"version": "3.1.5",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Design",
"direct": true,
"version": "8.0.13",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Design",
"direct": true,
"version": "9.0.8",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.InMemory",
"direct": true,
"version": "8.0.13",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Proxies",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Proxies",
"direct": true,
"version": "8.0.13",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Proxies",
"direct": true,
"version": "9.0.8",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Relational",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Relational",
"direct": true,
"version": "8.0.13",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Relational",
"direct": true,
"version": "9.0.8",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Sqlite",
"direct": true,
"version": "8.0.13",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.SqlServer",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.SqlServer",
"direct": true,
"version": "8.0.13",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.SqlServer",
"direct": true,
"version": "9.0.8",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Tools",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.EntityFrameworkCore.Tools",
"direct": true,
"version": "9.0.8",
"ecosystem": "nuget"
},
{
"name": "Microsoft.Extensions.ApiDescription.Server",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.Extensions.ApiDescription.Server",
"direct": true,
"version": "9.0.0",
"ecosystem": "nuget"
},
{
"name": "Microsoft.Extensions.Caching.SqlServer",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.Extensions.Caching.SqlServer",
"direct": true,
"version": "8.0.28",
"ecosystem": "nuget"
},
{
"name": "Microsoft.Extensions.Caching.SqlServer",
"direct": true,
"version": "9.0.17",
"ecosystem": "nuget"
},
{
"name": "Microsoft.Extensions.Caching.StackExchangeRedis",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "Microsoft.Extensions.Caching.StackExchangeRedis",
"direct": true,
"version": "8.0.28",
"ecosystem": "nuget"
},
{
"name": "Microsoft.Extensions.Caching.StackExchangeRedis",
"direct": true,
"version": "9.0.17",
"ecosystem": "nuget"
},
{
"name": "Microting.EntityFrameworkCore.MySql",
"direct": true,
"version": "10.0.9",
"ecosystem": "nuget"
},
{
"name": "NConsul.AspNetCore",
"direct": true,
"version": "0.8.1",
"ecosystem": "nuget"
},
{
"name": "Newtonsoft.Json",
"direct": true,
"version": "13.0.4",
"ecosystem": "nuget"
},
{
"name": "Oracle.EntityFrameworkCore",
"direct": true,
"version": "8.21.121",
"ecosystem": "nuget"
},
{
"name": "Panda.DynamicWebApi",
"direct": true,
"version": "1.2.1",
"ecosystem": "nuget"
},
{
"name": "Panda.DynamicWebApi",
"direct": true,
"version": "1.2.2",
"ecosystem": "nuget"
},
{
"name": "Pomelo.EntityFrameworkCore.MySql",
"direct": true,
"version": "8.0.3",
"ecosystem": "nuget"
},
{
"name": "Pomelo.EntityFrameworkCore.MySql",
"direct": true,
"version": "9.0.0",
"ecosystem": "nuget"
},
{
"name": "Portable.BouncyCastle",
"direct": true,
"version": "1.9.0",
"ecosystem": "nuget"
},
{
"name": "Quartz",
"direct": true,
"version": "3.0.7",
"ecosystem": "nuget"
},
{
"name": "Quartz",
"direct": true,
"version": "3.18.2",
"ecosystem": "nuget"
},
{
"name": "Quartz",
"direct": true,
"version": "3.8.1",
"ecosystem": "nuget"
},
{
"name": "Quartz.Extensions.DependencyInjection",
"direct": true,
"version": "3.18.2",
"ecosystem": "nuget"
},
{
"name": "Quartz.Extensions.DependencyInjection",
"direct": true,
"version": "3.8.1",
"ecosystem": "nuget"
},
{
"name": "Quartz.Extensions.Hosting",
"direct": true,
"version": "3.18.2",
"ecosystem": "nuget"
},
{
"name": "Quartz.Extensions.Hosting",
"direct": true,
"version": "3.8.1",
"ecosystem": "nuget"
},
{
"name": "Refit",
"direct": true,
"version": "12.1.0",
"ecosystem": "nuget"
},
{
"name": "Refit",
"direct": true,
"version": "7.0.0",
"ecosystem": "nuget"
},
{
"name": "Refit",
"direct": true,
"version": "8.0.0",
"ecosystem": "nuget"
},
{
"name": "Refit.HttpClientFactory",
"direct": true,
"version": "12.1.0",
"ecosystem": "nuget"
},
{
"name": "Refit.HttpClientFactory",
"direct": true,
"version": "7.0.0",
"ecosystem": "nuget"
},
{
"name": "Refit.HttpClientFactory",
"direct": true,
"version": "8.0.0",
"ecosystem": "nuget"
},
{
"name": "Scalar.AspNetCore",
"direct": true,
"version": "1.2.70",
"ecosystem": "nuget"
},
{
"name": "Scalar.AspNetCore",
"direct": true,
"version": "2.16.6",
"ecosystem": "nuget"
},
{
"name": "Serilog.AspNetCore",
"direct": true,
"version": "10.0.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.AspNetCore",
"direct": true,
"version": "3.2.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.AspNetCore",
"direct": true,
"version": "8.0.1",
"ecosystem": "nuget"
},
{
"name": "Serilog.AspNetCore",
"direct": true,
"version": "8.0.3",
"ecosystem": "nuget"
},
{
"name": "Serilog.Formatting.Elasticsearch",
"direct": true,
"version": "10.0.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.Settings.Configuration",
"direct": true,
"version": "10.0.1",
"ecosystem": "nuget"
},
{
"name": "Serilog.Settings.Configuration",
"direct": true,
"version": "3.1.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.Settings.Configuration",
"direct": true,
"version": "8.0.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.Settings.Configuration",
"direct": true,
"version": "9.0.0-dev-02304",
"ecosystem": "nuget"
},
{
"name": "Serilog.Sinks.Console",
"direct": true,
"version": "3.1.1",
"ecosystem": "nuget"
},
{
"name": "Serilog.Sinks.Console",
"direct": true,
"version": "5.0.1",
"ecosystem": "nuget"
},
{
"name": "Serilog.Sinks.Console",
"direct": true,
"version": "6.0.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.Sinks.Console",
"direct": true,
"version": "6.1.1",
"ecosystem": "nuget"
},
{
"name": "Serilog.Sinks.Elasticsearch",
"direct": true,
"version": "10.0.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.Sinks.File",
"direct": true,
"version": "4.1.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.Sinks.File",
"direct": true,
"version": "5.0.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.Sinks.File",
"direct": true,
"version": "6.0.0",
"ecosystem": "nuget"
},
{
"name": "Serilog.Sinks.File",
"direct": true,
"version": "7.0.0",
"ecosystem": "nuget"
},
{
"name": "Swashbuckle.AspNetCore.SwaggerUI",
"direct": true,
"version": "10.2.3",
"ecosystem": "nuget"
},
{
"name": "Swashbuckle.AspNetCore.SwaggerUI",
"direct": true,
"version": "7.2.0",
"ecosystem": "nuget"
},
{
"name": "System.Data.SqlClient",
"direct": true,
"version": "4.8.6",
"ecosystem": "nuget"
},
{
"name": "System.Drawing.Common",
"direct": true,
"version": "8.0.0",
"ecosystem": "nuget"
},
{
"name": "System.Drawing.Common",
"direct": true,
"version": "9.0.0",
"ecosystem": "nuget"
},
{
"name": "System.IdentityModel.Tokens.Jwt",
"direct": true,
"version": "5.6.0",
"ecosystem": "nuget"
},
{
"name": "System.IdentityModel.Tokens.Jwt",
"direct": true,
"version": "7.4.0",
"ecosystem": "nuget"
},
{
"name": "System.IdentityModel.Tokens.Jwt",
"direct": true,
"version": "8.19.1",
"ecosystem": "nuget"
},
{
"name": "System.IdentityModel.Tokens.Jwt",
"direct": true,
"version": "8.2.1",
"ecosystem": "nuget"
},
{
"name": "System.Linq.Async",
"direct": true,
"version": "6.0.1",
"ecosystem": "nuget"
},
{
"name": "System.Linq.Async",
"direct": true,
"version": "7.0.1",
"ecosystem": "nuget"
},
{
"name": "@opencode-ai/plugin",
"direct": false,
"version": "1.4.3",
"ecosystem": "npm"
},
{
"name": "@opencode-ai/sdk",
"direct": false,
"version": "1.4.3",
"ecosystem": "npm"
},
{
"name": "cross-spawn",
"direct": false,
"version": "7.0.6",
"ecosystem": "npm"
},
{
"name": "isexe",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "path-key",
"direct": false,
"version": "3.1.1",
"ecosystem": "npm"
},
{
"name": "shebang-command",
"direct": false,
"version": "2.0.0",
"ecosystem": "npm"
},
{
"name": "shebang-regex",
"direct": false,
"version": "3.0.0",
"ecosystem": "npm"
},
{
"name": "which",
"direct": false,
"version": "2.0.2",
"ecosystem": "npm"
},
{
"name": "zod",
"direct": false,
"version": "4.1.8",
"ecosystem": "npm"
},
{
"name": "FluentValidation.AspNetCore",
"direct": false,
"version": "9.0.0",
"ecosystem": "nuget"
},
{
"name": "Grpc.AspNetCore",
"direct": false,
"version": "2.29.0",
"ecosystem": "nuget"
},
{
"name": "Microsoft.AspNetCore.DataProtection.StackExchangeRedis",
"direct": false,
"version": "3.1.5",
"ecosystem": "nuget"
},
{
"name": "Microsoft.Extensions.Logging.Abstractions",
"direct": false,
"version": "3.1.5",
"ecosystem": "nuget"
},
{
"name": "Swashbuckle.AspNetCore",
"direct": false,
"version": "5.5.1",
"ecosystem": "nuget"
},
{
"name": "WebMarkupMin.AspNetCore2",
"direct": false,
"version": "2.8.3",
"ecosystem": "nuget"
},
{
"name": "WebMarkupMin.NUglify",
"direct": false,
"version": "2.8.7",
"ecosystem": "nuget"
}
],
"collected": true,
"truncated": false,
"total_count": 164,
"direct_count": 148,
"indirect_count": 16
}
},
"maintainership": {
"issues": {
"open_prs": 2,
"merged_prs": 0,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 3
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "girvs",
"commits": 417,
"avatar_url": "https://avatars.githubusercontent.com/u/50536942?v=4"
},
{
"type": "User",
"login": "eternal520",
"commits": 23,
"avatar_url": "https://avatars.githubusercontent.com/u/38036778?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.948
},
"quality_signals": {
"has_ci": false,
"has_tests": false,
"ci_workflows": [],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"package-lock.json"
],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": 0,
"reason": "branch protection not enabled on development/release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": null,
"reason": "no pull request found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/30 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 0,
"reason": "project has 0 contributing companies or organizations -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": null,
"reason": "no workflows found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "18 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": null,
"reason": "no dependencies found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "no SAST tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#sast"
},
{
"name": "Security-Policy",
"score": 0,
"reason": "security policy file not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#security-policy"
},
{
"name": "Signed-Releases",
"score": null,
"reason": "no releases found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#signed-releases"
},
{
"name": "Token-Permissions",
"score": null,
"reason": "No tokens found",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#token-permissions"
},
{
"name": "Vulnerabilities",
"score": 10,
"reason": "0 existing vulnerabilities detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#vulnerabilities"
}
],
"commit": "f93fec4e4f31ae2c2c31b61cf4a983f7158f8b21",
"ran_at": "2026-07-23T01:21:53Z",
"aggregate_score": 3.7,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": null,
"oldest_open_prs": [
{
"number": 1,
"created_at": "2021-08-12T03:01:09Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 5,
"created_at": "2026-03-16T13:55:48Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": null,
"ci_last_conclusion": null,
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/girvs/Girvs",
"host": "github.com",
"name": "Girvs",
"owner": "girvs"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 38,
"inputs": {
"security": 37,
"vitality": 60,
"community": 38,
"governance": 35,
"engineering": 17
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "moderate",
"name": "Vitality",
"value": 60,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"commits_last_year": 34,
"human_commit_share": 1,
"days_since_last_push": 0,
"active_weeks_last_year": 15
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "15/52 weeks with commits",
"points": 10.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 15
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "34 commits in the last year",
"points": 13.9,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 34
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "18 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "at_risk",
"name": "Release discipline",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 44,
"inputs": {
"releases_count": 1,
"latest_release_tag": "v1.5.0",
"releases_from_tags": false,
"days_since_latest_release": 1944,
"mean_days_between_releases": null
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "1 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 1
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1944 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 1944
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "cadence unknown (single release)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence_unknown",
"params": {}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 15,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 15 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 15
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 38,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 10,
"inputs": {
"forks": 1,
"stars": 5,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "5 stars",
"points": 9.8,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 5
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 67,
"inputs": {
"packages": [
"Girvs.AuthorizePermission",
"Girvs.AutoMapper",
"Girvs.Cache",
"Girvs.Consul",
"Girvs.Driven",
"Girvs.DynamicWebApi",
"Girvs.EntityFrameworkCore",
"Girvs.EventBus"
],
"dependents": null,
"ecosystems": "nuget",
"total_downloads": 135845,
"monthly_downloads": null
},
"components": [
{
"key": "total_downloads",
"name": "Total downloads",
"detail": "135,845 downloads all-time across nuget",
"points": 53.3,
"status": "partial",
"details": [
{
"code": "downloads_total",
"params": {
"count": 135845,
"ecosystems": "nuget"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "at_risk",
"name": "Sustainability & Governance",
"value": 35,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 13,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.948
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "1 contributor(s) cover half of all commits",
"points": 9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 1
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 95% of commits",
"points": 1.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 95
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "2 contributors",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 2
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "critical",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"merged_prs": 0,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 3
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "0/3 decided PRs merged",
"points": 0,
"status": "missed",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 0,
"decided": 3
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "at_risk",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 42,
"inputs": {
"followers": 2,
"owner_type": "User",
"is_verified": null,
"owner_login": "girvs",
"public_repos": 11,
"account_age_days": 2628
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "2 followers of girvs",
"points": 3.4,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 2,
"login": "girvs"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "11 public repos, account ~7 yr old",
"points": 19.9,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 11
}
},
{
"code": "account_age_years",
"params": {
"years": 7
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"Girvs.AuthorizePermission",
"Girvs.AutoMapper",
"Girvs.Cache",
"Girvs.Consul",
"Girvs.Driven",
"Girvs.DynamicWebApi",
"Girvs.EntityFrameworkCore",
"Girvs.EventBus"
],
"ecosystems": "nuget",
"any_deprecated": false,
"min_days_since_publish": 176
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "8 package(s) on nuget",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 8,
"ecosystems": "nuget"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 176 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 176
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "22 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 22
}
}
],
"max_points": 20
},
{
"key": "not_deprecated",
"name": "Not deprecated",
"detail": "active, not deprecated or yanked",
"points": 20,
"status": "met",
"details": [
{
"code": "package_not_deprecated",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "critical",
"name": "Engineering Quality",
"value": 17,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "critical",
"name": "Engineering practices",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: CI-Tests. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_ci_tests"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 1,
"inputs": {
"has_ci": false,
"has_tests": false,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "at_risk",
"name": "Documentation",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"has_readme": true,
"has_docs_dir": false,
"has_description": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 30,
"status": "met",
"details": [],
"max_points": 30
},
{
"key": "documentation_directory",
"name": "Documentation directory",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 25
},
{
"key": "documentation_homepage_site",
"name": "Documentation / homepage site",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 37,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): CI-Tests, Dangerous-Workflow, Packaging, Pinned-Dependencies, Signed-Releases, Token-Permissions. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"ci_tests",
"dangerous_workflow",
"packaging",
"pinned_dependencies",
"signed_releases",
"token_permissions"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 37,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 12,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 6,
"scorecard_aggregate": 3.7
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection not enabled on development/release branches",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "no pull request found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "Found 0/30 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 0 contributing companies or organizations -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no workflows found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "18 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "no SAST tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "security_policy",
"name": "Security-Policy",
"detail": "security policy file not detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "signed_releases",
"name": "Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "No tokens found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "dependency_advisories",
"band": "at_risk",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories. Remaining weights renormalized. Matched 164 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 164
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 36,
"inputs": {
"source": "osv",
"advisories": 6,
"affected_packages": 6,
"assessed_packages": 164,
"unassessed_packages": 0,
"affected_by_severity": "critical 1, high 3, moderate 2",
"direct_affected_packages": 6
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "6 affected: Refit 7.0.0 (critical 9.8), AutoMapper 15.0.1 (high 7.5), Microsoft.AspNetCore.SignalR.Protocols.MessagePack 8.0.3 (high 7.5), +3 more",
"points": 4,
"status": "partial",
"details": [
{
"code": "advisories_affected",
"params": {
"count": 6,
"packages": "Refit 7.0.0 (critical 9.8), AutoMapper 15.0.1 (high 7.5), Microsoft.AspNetCore.SignalR.Protocols.MessagePack 8.0.3 (high 7.5)"
}
},
{
"code": "advisories_affected_more",
"params": {
"count": 3
}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "4 advisory-carrying package(s) unaddressed past 90 days; oldest published 1792 days ago",
"points": 23,
"status": "partial",
"details": [
{
"code": "advisories_stale",
"params": {
"days": 90,
"count": 4,
"oldest": 1792
}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 164,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
}
],
"description": "Are visible security and supply-chain practices strong, with no malicious dependency and no unresolved high-risk jurisdiction exposure?"
},
{
"key": "ai_readiness",
"band": "moderate",
"name": "AI Readiness",
"value": 58,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "moderate",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 51,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.12,
"agent_instruction_files": [
"AGENTS.md",
"CLAUDE.md"
],
"agent_instruction_max_bytes": 5710
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "AGENTS.md, CLAUDE.md",
"points": 45,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "AGENTS.md, CLAUDE.md"
}
}
],
"max_points": 45
},
{
"key": "machine_readable_docs_llms_txt",
"name": "Machine-readable docs (llms.txt)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
},
{
"key": "legible_commit_history",
"name": "Legible commit history",
"detail": "12 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 6.4,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 12,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "at_risk",
"name": "Verify loop (build / test / typecheck)",
"note": "Excluded from scoring (no data or not applicable): OpenSSF Scorecard: Pinned-Dependencies. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"openssf_scorecard_pinned_dependencies"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 48,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [
"package-lock.json"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0.09,
"toolchain_manifests": [
"Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj",
"Girvs.AutoMapper/Girvs.AutoMapper.csproj",
"Girvs.Cache/Girvs.Cache.csproj",
"Girvs.Consul/Girvs.Consul.csproj",
"Girvs.Driven/Girvs.Driven.csproj",
"Girvs.DynamicWebApi/Girvs.DynamicWebApi.csproj",
"Girvs.EntityFrameworkCore/Girvs.EntityFrameworkCore.csproj",
"Girvs.EventBus/Girvs.EventBus.csproj",
"Girvs.Grpc/Girvs.Grpc.csproj",
"Girvs.OpenApi/Girvs.OpenApi.csproj",
"Girvs.Quartz/Girvs.Quartz.csproj",
"Girvs.Refit/Girvs.Refit.csproj",
"Girvs.SignalR/Girvs.SignalR.csproj",
"Girvs/Girvs.csproj"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj, Girvs.AutoMapper/Girvs.AutoMapper.csproj, Girvs.Cache/Girvs.Cache.csproj (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "Girvs.AuthorizePermission/Girvs.AuthorizePermission.csproj, Girvs.AutoMapper/Girvs.AutoMapper.csproj, Girvs.Cache/Girvs.Cache.csproj"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "C# (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C#"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "9 of the last 100 commits agent-authored or agent-credited",
"points": 10,
"status": "met",
"details": [
{
"code": "agent_authored_commits",
"params": {
"count": 9,
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "no dependencies found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "C#",
"largest_source_bytes": 56938,
"source_files_sampled": 269,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "C# (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "C#"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/269 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 269,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-23T01:21:57.715678Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/g/girvs/Girvs.svg",
"full_name": "girvs/Girvs",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}