Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [
"dependency-injection",
"golang",
"service-container"
],
"is_fork": false,
"size_kb": 2920,
"has_wiki": false,
"homepage": "https://nvidia.github.io/gontainer/",
"languages": {
"Go": 127847
},
"pushed_at": "2026-07-24T13:06:15Z",
"created_at": "2023-08-29T20:46:30Z",
"owner_type": "Organization",
"updated_at": "2026-07-27T04:08:06Z",
"description": "Simple but powerful dependency injection container for Go projects!",
"is_archived": false,
"is_disabled": false,
"license_spdx": "Apache-2.0",
"default_branch": "main",
"license_spdx_raw": "Apache-2.0",
"primary_language": "Go",
"significant_languages": [
"Go"
]
},
"owner": {
"blog": "https://nvidia.com",
"name": "NVIDIA Corporation",
"type": "Organization",
"login": "NVIDIA",
"company": null,
"location": "2788 San Tomas Expressway, Santa Clara, CA, 95051",
"followers": 28483,
"avatar_url": "https://avatars.githubusercontent.com/u/1728152?v=4",
"created_at": "2012-05-10T22:06:34Z",
"is_verified": null,
"public_repos": 778,
"account_age_days": 5194
},
"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": "v2.5.1",
"kind": "patch",
"published_at": "2026-07-21T19:48:16Z"
},
{
"tag": "v2.5.0",
"kind": "minor",
"published_at": "2026-07-20T18:26:03Z"
},
{
"tag": "v2.4.1",
"kind": "patch",
"published_at": "2026-04-21T00:00:59Z"
},
{
"tag": "v2.3.1",
"kind": "patch",
"published_at": "2026-04-18T10:20:06Z"
},
{
"tag": "v2.2.0",
"kind": "minor",
"published_at": "2026-04-12T22:03:18Z"
},
{
"tag": "v2.1.0",
"kind": "minor",
"published_at": "2026-04-10T11:11:36Z"
},
{
"tag": "v2.0.0",
"kind": "major",
"published_at": "2025-09-27T20:32:28Z"
},
{
"tag": "v1.14.1",
"kind": "patch",
"published_at": "2025-09-23T23:31:39Z"
},
{
"tag": "v1.14.0",
"kind": "minor",
"published_at": "2025-06-11T17:33:14Z"
},
{
"tag": "v1.13.1",
"kind": "patch",
"published_at": "2025-06-02T16:33:46Z"
},
{
"tag": "v1.13.0",
"kind": "minor",
"published_at": "2025-02-12T19:23:14Z"
},
{
"tag": "v1.12.2",
"kind": "patch",
"published_at": "2024-10-11T22:18:00Z"
},
{
"tag": "v1.12.1",
"kind": "patch",
"published_at": "2024-08-15T12:02:37Z"
},
{
"tag": "v1.11.2",
"kind": "patch",
"published_at": "2024-08-09T21:25:38Z"
},
{
"tag": "v1.10.1",
"kind": "patch",
"published_at": "2024-08-06T10:32:23Z"
},
{
"tag": "v1.9.0",
"kind": "minor",
"published_at": "2024-06-17T19:28:59Z"
},
{
"tag": "v1.8.0",
"kind": "minor",
"published_at": "2024-06-11T12:31:40Z"
},
{
"tag": "v1.7.1",
"kind": "patch",
"published_at": "2024-06-07T14:19:39Z"
},
{
"tag": "v1.6.0",
"kind": "minor",
"published_at": "2024-05-23T20:11:10Z"
},
{
"tag": "v1.5.0",
"kind": "minor",
"published_at": "2024-05-13T00:13:35Z"
},
{
"tag": "v1.4.0",
"kind": "minor",
"published_at": "2024-04-17T16:56:26Z"
},
{
"tag": "v1.3.1",
"kind": "patch",
"published_at": "2024-01-12T13:28:09Z"
},
{
"tag": "v1.2.2",
"kind": "patch",
"published_at": "2023-09-14T10:06:30Z"
}
],
"recent_commits": [
{
"oid": "025d653bcc9262c4b6cd2214d6b71316b02e355a",
"body": "Add NewOptional and NewMultiple constructors so factory functions can be unit-tested without a container. Includes tests and README docs.",
"is_bot": false,
"headline": "API to tests factories as isolated from container components. (#104)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-07-24T13:05:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae6e6f95ab09822a58edef132c5bd4d854a22c35",
"body": "Panic on public API misuse, keep runtime failures as errors\n\nValidate user-provided functions and pointers eagerly at the public API\nborder and panic on programmer errors, while genuine runtime failures are\nstill returned as an error.\n\n- NewFactory/NewEntrypoint: panic on nil, non-function, typed-ni\n[…]\nvoke: panic on nil, non-function, or typed-nil argument.\n- Resolver.Resolve: panic on non-pointer, nil, or non-writable target.\n- Add shared \"gontainer:\" panic prefix; document behavior and add tests.",
"is_bot": false,
"headline": "Validate user provided functions in the public API border. (#103)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-07-24T13:04:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "442dddba01d63aa5300492c5bcf42700eb33035a",
"body": "* Close spawned factories even if entrypoint returned an error",
"is_bot": false,
"headline": "Proper cleanup on factory errors and entrypoint errors (#102)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-07-23T15:51:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50e9282b04f603fa576bc15c22926ddd5759ff6c",
"body": null,
"is_bot": false,
"headline": "Improve chan definition in examples (#101)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-07-21T19:33:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "edd043570ea5f6030aa8fcc22351990584cd8ae2",
"body": "* Detect Optional/Multiple boxes via marker methods\n* Update corresponding tests and add more tests for special cases",
"is_bot": false,
"headline": "Detect Optional/Multiple boxes via marker methods (#100)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-07-21T19:21:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e7cc235b77423a786b58a9739e8e91648676298b",
"body": "Add a Use Cases section highlighting the fleet-of-similar-services\nscenario and link the complete webapp example, and document that\npanics are treated as bugs and never recovered by the container.",
"is_bot": false,
"headline": "docs: add Use Cases and Panics Handling sections (#99)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-07-20T18:18:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a6772b617d7732d1209cd33a24031416a138731",
"body": "…#98)\n\nfix: spawn only the first implementation for regular interface deps\n\nRegular and optional resolution of an interface with several\nimplementations now spawns and returns only the first match in\nregistration order; Multiple[T] still spawns every match.\n\nAdd regression tests for both regular and Multiple resolution and\ndocument the first-match behavior.",
"is_bot": false,
"headline": "fix: spawn only the first implementation for regular interface deps (…",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-07-20T17:53:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3d17c05d979a36c9f8bf48ef99e8f52f635b861d",
"body": "Walk each factory's transitive dependencies breadth-first and track\nexpanded factories in a visited set. A cycle reachable from an acyclic\nroot previously looped forever; now every factory is expanded once.",
"is_bot": false,
"headline": "fix: keep cycle validation finite with a visited set (#97)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-07-20T16:45:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78137ec6d6dfeba5cfa334a688c25ba06749b0f0",
"body": "* Rid of extra errors wrapping\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n* Use caller file and line for factories, services and entrypoints\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n* Use caller file and line for factories, services and entrypoints\n\nSigned-off-by: Pavel Patrin <ppa\n[…]\nrrors support\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n* Add new errors support\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n---------\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Improved errors reporting (#96)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-04-20T15:56:40Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2094b1a813b355225877ae06f03a942b1f8bb5ec",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Fix of error handling while invoking entrypoints (#95)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-04-18T10:51:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3ba949b969a7b3aee9a29a186b96d44b59bacd7",
"body": "* Examples update\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n* Readme update\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n* Update of container entrypoint\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n* Update of factory representation types\n\nSigned-off-by: Pavel Patrin <ppatrin@n\n[…]\n handling in container\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n* Readme update\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n---------\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Rid of legacy context-based termination flow based on V1 patterns (#94)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-04-17T13:18:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6b8241e4c23c15ec7b7739c4656f1aaf37197975",
"body": "* Add factory annotations section to README.md\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n* Update Go toolchain version in go.mod to 1.23.0\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n* Add error handling for nil and non-function inputs in Invoker\n\nSigned-off-by: Pavel Patrin <ppatrin\n[…]\nia.com>\n\n* Add tests for Optional type's Ok method and implement newOptionalZero function\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\n\n---------\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Enhance README and refactor Optional and Multiple types (#93)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-04-17T05:07:03Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8bfc632803382b3b95b19c4c9b08ac660d18ace8",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Assets size minimization (#92)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-04-17T03:14:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f8338f0b6dc520d10f541986d90172ca39d1140",
"body": "* Add name and source fields to Factory and Entrypoint types.\n\n* Refactor Factory and Entrypoint types in container.go\n\n* Expose Option interface to allow slice aggregation before Run\n\n* Enhance Factory and Entrypoint with metadata support\n\n- Updated NewFactory and NewService functions to accept opt\n[…]\nons for setting metadata key-value pairs.\n\n* Updated Metadata methods in Factory and Entrypoint to return cloned metadata maps\n\n* Refactor Factory and Entrypoint to use annotations instead of metadata",
"is_bot": false,
"headline": "Refactor Factory and Entrypoint types to support annotations (#91)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-04-12T22:01:18Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3809e9c876423c83c87e45d974ed055205378b10",
"body": "Introduce Factory and Entrypoint types, and update related functions.",
"is_bot": false,
"headline": "Refactor container options. (#90)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2026-04-10T11:09:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1316e39fb5d02a783f066d4af30a88cce3f6f320",
"body": null,
"is_bot": false,
"headline": "Update splash image",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-30T17:46:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0903217c732aa8b39bcf23ec6e7c015005da5b6d",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-30T17:42:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d3febdd5efdcba9a0bfd01fdd3871aa127f2ee3c",
"body": null,
"is_bot": false,
"headline": "Update splash image",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-30T17:40:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5596a8499fbe99872e4c32591452d903de3cbe59",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Link to the V1 docs (#88)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-27T20:39:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a6f1c44a0e1dc81199b9e659f781e7ec384f8dab",
"body": "Gontainer V2 release.\n\nSee: https://github.com/NVIDIA/gontainer/pull/82.",
"is_bot": false,
"headline": "Merge pull request #82 from NVIDIA/v2-devel",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-27T20:24:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee4b17e492170e9e074c04882e5b0d1577ab89ac",
"body": "Invoker improvements.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: invoker improvements (#86)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-27T20:18:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6f3cef29151b281fd9024bd5a0c3e0ede39b153a",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Readme improvement",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-27T13:06:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2dea93fa3f0a1c5a6efc8278d991e2035cfd2e97",
"body": "Options interface improvement.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Options interface improvement (#85)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-27T12:44:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c2e7df93274fbd27e71ade2b54782e69d6f084b8",
"body": "New terminology with Entrypoints instead of Functions.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: entrypoints terminology instead of functions (#83)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-26T11:28:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b675d373071dc95f37d212eb0a5769b4995d2045",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Switch to the V2 module (#81)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-26T09:29:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "718a3205ac248c270632da40cd8f14e244820618",
"body": "New README for the project.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: readme improvement (#80)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-26T08:16:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be5ca5d7533ecca016bfcd2bb225def104c784b8",
"body": "Explicit API for service close.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: explicit API for closing of factories (#79)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-26T07:22:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f3fd45eabc74bdd801d62ee2b74124ff3d85b81",
"body": "Support for invokable factories.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: support for invocable factories (#73)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-25T18:15:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b8eeabcaf8e8b617a7e29bc424f21f13064a7e44",
"body": "Switch to the options from public factories\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Switch to the options from public factories (#78)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-25T17:19:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ccc6727a295571b4e90bc480dd21dc4cfa9c0753",
"body": "* Switch to the options from public factories\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: switch to container options from the factory type (#77)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-25T17:08:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf0ae3c6ed549165632a9866f5abea2efcfdb05a",
"body": "Remove of the factory metadata support.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: remove factory metadata support (#76)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-25T15:28:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3bc5e035635cadc612f279e0bf4bc41aa52a8e11",
"body": "Simplified design of the service container interface\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: simplified module interface (#75)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-25T15:19:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3a28507b8e4d6733a4f560fc4d92e3113be2d4d1",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Actualize merge with main",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-23T23:37:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "05c52c1aea5a738e4be0b350d140b0161f1372f6",
"body": null,
"is_bot": false,
"headline": "Merge remote-tracking branch 'origin/main' into v2-devel",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-23T23:36:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0f555c10864096e9a361d1082c0a5347962335f",
"body": "Fix of locking on concurrent factory spawn\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Fix of locking on concurrent factory spawn (#72)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-23T23:30:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fee46e1399839828131049d2421616757569bf1c",
"body": "Pass context to the services.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Pass context to the services (#71)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-20T01:58:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "49b113af56c97e3381bed2eca8e667fb46eb3e78",
"body": "Strict factory function interface.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: stricter factory interface (#70)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-20T01:06:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a446f07532078cf7f34c26363b9f0c5abf94a17",
"body": "* Simplification of the resolver and invoker methods\n* Simplification of the invoker interface\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: simplification of the resolver and invoker methods (#69)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-18T18:52:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ae8660893422b7851e1f4274686e32edc7e501e3",
"body": "Rid of the services API call\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Rid of the services API call (#68)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-18T17:21:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89d519a20ec01424998a0dec55623f84a48780fe",
"body": "Readme actualization\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Readme actualization (#67)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-18T17:04:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de1bfa6dce28635ea05d0d400f4ad5691dd59126",
"body": "Support for the root context\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Support for the root context (#66)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-18T16:37:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "81e4a3521da59a96367cf35721773bcf8ac94888",
"body": "Rid of service functions support\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Rid of service functions support (#65)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-18T16:23:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "92ea0efc32570019769fc8f064482b54c67c2b3b",
"body": "Rid of builtin events broker service\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: remove the built-in events broker feature (#64)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-18T11:44:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "01c2b55e0e70a9d5112703bb0910dc8284fce2a9",
"body": "* Switch to the struct ptr from the container interface\n* Switch to the struct ptr from the events interface\n* Switch to the struct ptr from the resolver interface\n* Switch to the struct ptr from the invoker interface\n* Switch to the struct ptr from interfaces\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "V2 devel: use concrete types instead of interfaces (#63)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-09-17T21:17:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe7077b17c6f954a16e233509c751f8ed36b3730",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Documentation and example refinement",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-06-11T09:21:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b09ea0d57114d526d479a09469a9b9f3988c4dd",
"body": "* Support for function-based services to reach transient service factories.\n* Additional examples for function services and for service functions.\n* Documentation refinement.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Support for function-based services (#58)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-06-11T09:12:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6ea299b334c7129b90a3c721d4b61625bdf03ee6",
"body": "* Support concurrent service spawning from multiple goroutines (e.g. lazy service used by two background functions).\n* Container now gives each registration its own factory instance.\n* Tests updated to cover the new factory pattern and concurrent service creation.\n* Non-significant error messages refinement without semantics break changes.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Support for concurrent spawn of services from multiple goroutines (#59)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-06-10T21:52:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a67b632fb1fa5a8455cc1bad5d037fe4d4fafb8",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Internal names refinement. (#60)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-06-10T12:43:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d33610e13241459bdc3401f2f770d6406ad57f0",
"body": "Improvement of factory function documentation and refinement\n\n* Improved factory function documentation\n* Refined signature for the `NewService()` to be aligned with the `NewFactory()`.\n* Refined signature for the `NewFactory()` to be aligned with the already public type `FactoryFunc`.\n* No breaking changes in the public types.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Improvement of factory function documentation and refinement (#56)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-06-07T11:44:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f0059cb00e9cbc5d643f3478ca67a8edda27cafc",
"body": "Documentation and examples improvement\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Complete webapp example (#55)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-06-05T16:04:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba89390c2690144881d059be3fc14c4041e8aa4b",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Update README.md (#54)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-06-02T16:31:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d0d22249613b15e87cbe3e2915279cec83d1021e",
"body": "Documentation and examples improvement.\n\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Documentation and examples improvement (#53)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-06-02T15:51:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af889966487f67e7dd9a78fb00649998815f0cfb",
"body": "* Improvement and refactoring of service functions.\r\n\r\n1. Additional simplified signature of service functions added `func()` in addition to signature `func() error`.\r\n2. New service function requirement added: it must have no receiver methods to distinguish it from user types based on a func kind. Otherwise, this function will be treated as a regular service, will not be wrapped and started in background.\r\n3. Test for disallowed underlying type lookup in container.",
"is_bot": false,
"headline": "Improvement and refactoring of service functions (#52)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-02-12T19:19:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a4ef11296279f3f1da9f1a27b9af616cbd854d1c",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2025-01-15T12:39:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3f4b580324de3817cdb6ced1205d13341b36fe18",
"body": "Invalid signature which had a panic: `func()`.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Fix of panic on invalid factory function signature reaction. (#50)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-10-11T22:16:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cea3ed6360bef157ce0c94ee810d609dbd99bac6",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Fix of headers.",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-09-05T19:47:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f17882ac88fed775ed7a6199532694e640a45970",
"body": null,
"is_bot": false,
"headline": "Update README.md",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-25T12:55:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d483abc5788f9f6e251bb4fd63142682c989fbe",
"body": "* Fix of circular dependencies validation.\r\n* Fix for function source detection.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Fix of circular dependencies validation (#49)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-17T16:57:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfcc976227b9f026162d8ac07affdc5f397ef734",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Update README.md",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-15T19:26:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c44d57659b7a966d298c416a3a72320daea204d7",
"body": "Proposal of Multiple[T] type to get multiple implementers.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Proposal of Multiple[T] type to get multiple implementers (#47)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-15T12:01:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "143e68f7fd331015d195ac4647e68ab9607da2fe",
"body": "Complete factories validation on `gontainer.New()`.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Complete factories validation (#45)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-12T21:49:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0105b0f498412b24d26c5d4cd302b2f476411631",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Fix of optional dependencies (#44)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-10T18:41:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f86701c355aa7a84e23406187efa7495329decb",
"body": "* Refactoring of the registry component.\r\n* Defined container errors.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Defined errors (#43)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-10T15:32:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f7f4bec5cfd974b1e4b172f70e3b5240ecbf4a71",
"body": "* Refactoring of the registry component and error variables.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Refactoring of the registry component (#40) (#41)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-09T21:22:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "255b130ce4144667c14efca35a52f690688a182e",
"body": "Fix for nil types and tests.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Typed signatures for event handlers. (#39)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-06T15:38:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67541275896d051962e0f75b1ef56d69bf388590",
"body": "Typed signatures for event handlers.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Typed signatures for event handlers (#37)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-08-06T10:10:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ad68d6d08b6e2dca3b697852ee4e6203e98315b6",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Update README.md (#36)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-07-13T22:08:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "db0401147719ddd0e66d9b3a9bb9737776a9923f",
"body": "In addition to https://github.com/NVIDIA/gontainer/pull/34.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Update invoker.go (#35)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-07-01T13:52:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59bc3d5ff00e7a8dde5b063f9b1b73c0d3c6d615",
"body": "Signed-off-by: Dmytro Vasylyshyn <vasilishin.d.o@gmail.com>",
"is_bot": false,
"headline": "Fix panic on nil interface conversion (#34)",
"author_name": "Dmytro Vasylyshyn",
"author_login": "dmvass",
"committed_at": "2024-07-01T13:50:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c533d4e8e533c368039a1980772a77192f02696",
"body": null,
"is_bot": false,
"headline": "Update README.md (#33)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-29T15:57:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b045bc2615da145eba91ed8aa79670ae919af15",
"body": "Implement invoker service with invocation result access APIs.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Implement invoker service (#31)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-17T19:26:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aab11ca56191da8df1eec450aa21ea06834d4761",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Readme update (#32)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-16T15:39:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a149c168078560d1a29bba3ddfce55bc8ad7cd4",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Detailed start and close error messages (#29)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-11T12:30:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5818115bddeafeda339345b0de69581bbc523c74",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Update README.md (#28)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-08T13:56:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "44aa79aa789fedf96850af77c74161d297a47a56",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Fix of locking on public API calls (#27)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-07T14:52:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3ba715cc6b76baaee7cf42716172fabdf786c49",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Invoke function in container API (#26)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-07T01:46:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "944ea0767891fe28c823a07a581fba72204bdf9a",
"body": "* Factories metadata instead of events broker\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\r\n\r\n* Factories metadata instead of events broker\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\r\n\r\n---------\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Factories metadata instead of events broker (#24)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-07T00:46:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2f70f421e944fca9bc0043fcdc52e3b885ff5910",
"body": "* Tests with race\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\r\n\r\n* Tests with race detector\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\r\n\r\n---------\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Tests with race (#25)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-07T00:43:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78441716d19a6cd18e24670038cf6ea1dc903ad4",
"body": "* Public access to factories and services via container interface.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\r\n\r\n* Public access to the resolver service.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>\r\n\r\n---------\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Public access to factories and services (#23)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-06-07T00:10:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "006c50f48f8dc2e880f8016be568a943ed830369",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Update README.md (#22)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-05-29T11:55:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5561e0d3c07bcf8a28e88a7201063fb71b6e84b4",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Service close method. (#21)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-05-23T20:08:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d13b8bad7052caf28adff9f553ace99688043849",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Close service container immediately on start error. (#20)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-05-13T00:12:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "39f43dbbd6c4a057a32e360213398728607401de",
"body": null,
"is_bot": false,
"headline": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com> (#19)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-04-23T15:08:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b1bbf955cc2e121c497057c77be39b73461a80e9",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Resolver service. (#18)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-04-17T16:48:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c12138a0db4de51a40ddcfd74864f9fc8472be3",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Cosmetics refactoring. (#17)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-04-16T08:26:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2c62127cd84a794012cb77989ab57c44c4f92ac",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Add error argument to the container start event. (#15)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-01-12T13:42:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "383690d03ee081876972eff10f5148f14fdfe85c",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Add error argument to the container close event. (#14)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2024-01-12T13:26:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e81064711f0a21f4609f57fe48d89c404577b15e",
"body": null,
"is_bot": false,
"headline": "Update README.md (#13)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-20T11:54:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4b93b92a4ee5448028b0c584a55d679d45ba9af",
"body": null,
"is_bot": false,
"headline": "Remove of unsupported actions. (#12)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-19T12:02:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5890a804fc4a5cd760d7f36d8c78f946d4400dcf",
"body": "Coverage actions and badge.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Coverage actions and badge (#11)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-19T11:54:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b58c7e161aabd4280814d71cd950faacbcf72e15",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "ISSUE-9: Goreportcard badge and fixes (#10)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-14T10:00:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65238e7f229c5182f697ccbcaf6f83db1fd66dc8",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "ISSUE-7: Stack depth limit (#8)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-08T12:39:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bff0463b5f12fbe5c7b69a52a7f93948ec26106f",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "ISSUE-4: Rid of Close event (#5)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-07T22:17:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c93e74a541fab3bad295d07f911aba1399848c35",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "ISSUE-3: WithService opt. (#6)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-07T22:16:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7a7531919f92776956f93ebd3a5c76f1f556744c",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Additional panic events for all container APIs (#2)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-07T15:48:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61c53c0cd283b5d264411275885ea9af2e73a947",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Actions setup",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-06T09:53:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3884ec8baae0d312e748570223b1e25f1887f0fb",
"body": "* Actions setup.\r\n\r\nSigned-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Actions setup (#1)",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-06T09:49:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79d18b9202392cd68535127f6597a4e0bc3b8f15",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Update README.md",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-06T09:30:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eef42e3ca1c12a14c28dc63e44150509248e2bd3",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Update README.md",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-05T22:14:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bb529ce57415025914d46025f2549ec94d941923",
"body": "Signed-off-by: Pavel Patrin <ppatrin@nvidia.com>",
"is_bot": false,
"headline": "Initial version",
"author_name": "Pavel Patrin",
"author_login": "pavelpatrin",
"committed_at": "2023-09-01T11:38:37Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 23,
"commits_last_year": 44,
"latest_release_at": "2026-07-21T19:48:16Z",
"latest_release_tag": "v2.5.1",
"releases_from_tags": false,
"days_since_last_push": 6,
"active_weeks_last_year": 7,
"days_since_latest_release": 9,
"mean_days_between_releases": 46
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 50,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/NVIDIA/gontainer/v2",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/NVIDIA/gontainer/v2",
"is_deprecated": false,
"latest_version": "v2.5.1",
"repository_url": "https://github.com/NVIDIA/gontainer",
"versions_count": 9,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2026-07-21T19:33:20Z",
"latest_version_yanked": null,
"days_since_latest_publish": 9
}
]
},
"popularity": {
"forks": 8,
"stars": 154,
"watchers": 4,
"fork_history": {
"days": [
{
"date": "2023-09-19",
"count": 1
},
{
"date": "2024-07-01",
"count": 1
},
{
"date": "2024-09-10",
"count": 1
},
{
"date": "2024-09-23",
"count": 1
},
{
"date": "2025-09-22",
"count": 1
},
{
"date": "2026-04-20",
"count": 1
},
{
"date": "2026-07-09",
"count": 1
},
{
"date": "2026-07-25",
"count": 1
}
],
"complete": true,
"collected": 8,
"total_forks": 8
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [
"examples"
],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"examples/01_console_command/go.mod",
"examples/02_daemon_service/go.mod",
"examples/03_complete_webapp/go.mod",
"examples/04_transient_services/go.mod",
"go.mod"
],
"largest_source_bytes": 20872,
"source_files_sampled": 28,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": "No resolved dependencies to assess",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [],
"collected": true,
"truncated": false,
"total_count": 0,
"direct_count": 0,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 87,
"open_issues": 0,
"closed_ratio": 1,
"closed_issues": 6,
"closed_unmerged_prs": 7
},
"bus_factor": 1,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "pavelpatrin",
"commits": 109,
"avatar_url": "https://avatars.githubusercontent.com/u/2376970?v=4"
},
{
"type": "User",
"login": "dmvass",
"commits": 1,
"avatar_url": "https://avatars.githubusercontent.com/u/11655110?v=4"
}
],
"contributors_sampled": 2,
"top_contributor_share": 0.991
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"go.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"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": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 10,
"reason": "26 out of 26 merged PRs checked by a CI test -- score normalized to 10",
"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/29 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": 10,
"reason": "no dangerous workflow patterns detected",
"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": 6,
"reason": "8 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 6",
"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": 0,
"reason": "dependency not pinned by hash detected -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 0,
"reason": "SAST tool is not run on all commits -- score normalized to 0",
"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": 0,
"reason": "detected GitHub workflow tokens with excessive permissions",
"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": "025d653bcc9262c4b6cd2214d6b71316b02e355a",
"ran_at": "2026-07-31T04:03:54Z",
"aggregate_score": 4.1,
"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": "2026-07-24T13:06:04Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-24T13:05:25Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/NVIDIA/gontainer",
"host": "github.com",
"name": "gontainer",
"owner": "NVIDIA"
},
"metrics": {
"overall": {
"key": "overall",
"band": "good",
"name": "Overall health",
"note": "The weighted overall 61 is calibrated to 67 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 61,
"calibrated": 67,
"calibration": "2026-08-02"
}
}
],
"value": 67,
"inputs": {
"security": 41,
"vitality": 74,
"community": 57,
"governance": 64,
"calibration": "2026-08-02",
"engineering": 67,
"ai_readiness": 51,
"weighted_overall_raw": 61
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 74,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "moderate",
"name": "Development activity",
"note": null,
"notes": [],
"value": 62,
"inputs": {
"commits_last_year": 44,
"human_commit_share": 1,
"days_since_last_push": 6,
"active_weeks_last_year": 7
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 6 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 6
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "7/52 weeks with commits",
"points": 4.8,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 7
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "44 commits in the last year",
"points": 14.8,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 44
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "8 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 6",
"points": 6,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "excellent",
"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": 92,
"inputs": {
"releases_count": 23,
"latest_release_tag": "v2.5.1",
"releases_from_tags": false,
"days_since_latest_release": 9,
"mean_days_between_releases": 46
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "23 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 23
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 9 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 9
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~46 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 46
}
}
],
"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": "exceptional",
"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": 11,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 11 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 11
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "moderate",
"name": "Community & Adoption",
"value": 57,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "weak",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 45,
"inputs": {
"forks": 8,
"stars": 154,
"watchers": 4,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "154 stars",
"points": 35.4,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 154
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "8 forks",
"points": 7,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 8
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "4 watchers",
"points": 2.7,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 4
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"readme_badges": null,
"has_contributing": true,
"has_issue_template": false,
"has_code_of_conduct": false,
"readme_badge_services": [],
"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": 18,
"status": "met",
"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
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 64,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 12,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 2,
"top_contributor_share": 0.991
},
"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 99% of commits",
"points": 0.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 99
}
}
],
"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": "excellent",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Newcomer PR acceptance. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"newcomer_pr_acceptance"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 80,
"inputs": {
"merged_prs": 87,
"open_issues": 0,
"closed_issues": 6,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 1,
"closed_unmerged_prs": 7,
"first_time_authors_30d": null,
"first_time_prs_merged_30d": null,
"first_time_prs_decided_30d": null
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "100% of issues closed",
"points": 42,
"status": "met",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 100
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "87/94 decided PRs merged",
"points": 27.8,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 87,
"decided": 94
}
}
],
"max_points": 30
},
{
"key": "newcomer_pr_acceptance",
"name": "Newcomer PR acceptance",
"detail": "no first-time contributor's PR decided in 30d",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_newcomer_prs",
"params": {
"days": 30
}
}
],
"max_points": 13
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/29 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "excellent",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 80,
"inputs": {
"followers": 28483,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "NVIDIA",
"public_repos": 778,
"account_age_days": 5194
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "28,483 followers of NVIDIA",
"points": 25,
"status": "met",
"details": [
{
"code": "owner_followers",
"params": {
"count": 28483,
"login": "NVIDIA"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "778 public repos, account ~14 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 778
}
},
{
"code": "account_age_years",
"params": {
"years": 14
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "exceptional",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/NVIDIA/gontainer/v2"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 9
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on go",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "go"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 9 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 9
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "9 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 9
}
}
],
"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": "good",
"name": "Engineering Quality",
"value": 67,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "1 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 1
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 24,
"status": "met",
"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": "26 out of 26 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "good",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [
"dependency-injection",
"golang",
"service-container"
],
"has_wiki": false,
"homepage": "https://nvidia.github.io/gontainer/",
"has_readme": true,
"has_docs_dir": false,
"has_description": true
},
"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": "https://nvidia.github.io/gontainer/",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": "3 topics",
"points": 10,
"status": "met",
"details": [
{
"code": "topics_count",
"params": {
"count": 3
}
}
],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "weak",
"name": "Security",
"value": 41,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "weak",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 41,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 15,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 3,
"scorecard_aggregate": 4.1
},
"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": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "26 out of 26 merged PRs checked by a CI test -- score normalized to 10",
"points": 2.5,
"status": "met",
"details": [],
"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/29 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 dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"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": "8 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 6",
"points": 4.5,
"status": "partial",
"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": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is not run on all commits -- score normalized to 0",
"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": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "exceptional",
"name": "High-Risk Jurisdiction Exposure",
"note": "Only high-confidence self-published location evidence affects this multiplier. Ambiguous matches are review-only; country evidence is not proof of nationality, citizenship, legal registration, malicious intent, or sanctions status.",
"notes": [
{
"code": "jurisdiction_evidence_limits",
"params": {}
}
],
"value": 100,
"inputs": {
"meaning": "self-published location evidence; not nationality or citizenship",
"red_flag": false,
"exposures": [],
"policy_countries": [
"Russia",
"Iran",
"North Korea"
],
"commit_weight_rule": {
"min_commits": 50,
"min_commit_share": 0.1
},
"review_only_matches": 0,
"below_threshold_exposures": [],
"assessed_self_published_locations": 1
},
"components": [
{
"key": "policy_exposure_multiplier",
"name": "Policy exposure multiplier",
"detail": "no confirmed policy-scope location match",
"points": 100,
"status": "met",
"details": [
{
"code": "jurisdiction_no_match",
"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": 51,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "weak",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.85,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"components": [
{
"key": "agent_instructions",
"name": "Agent instructions",
"detail": "no CLAUDE.md / AGENTS.md / editor rules",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_instructions",
"params": {}
}
],
"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": "85 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 85,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "weak",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 46,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"examples/01_console_command/go.mod",
"examples/02_daemon_service/go.mod",
"examples/03_complete_webapp/go.mod",
"examples/04_transient_services/go.mod",
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "examples/01_console_command/go.mod, examples/02_daemon_service/go.mod, examples/03_complete_webapp/go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "examples/01_console_command/go.mod, examples/02_daemon_service/go.mod, examples/03_complete_webapp/go.mod"
}
}
],
"max_points": 18
},
{
"key": "automated_tests",
"name": "Automated tests",
"detail": null,
"points": 22,
"status": "met",
"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": "Go (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"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": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "exceptional",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 20872,
"source_files_sampled": 28,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Go (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "Go"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/28 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 28,
"oversized": 0
}
}
],
"max_points": 55
}
]
},
{
"key": "ai_interfaces",
"band": "weak",
"name": "Machine-readable interfaces",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"example_dirs": [
"examples"
],
"has_mcp_signal": false,
"api_schema_files": []
},
"components": [
{
"key": "api_schema_openapi_graphql_proto",
"name": "API schema (OpenAPI/GraphQL/proto)",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 40
},
{
"key": "mcp_server",
"name": "MCP server",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "runnable_examples",
"name": "Runnable examples",
"detail": "examples",
"points": 40,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "examples"
}
}
],
"max_points": 40
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? Carries a deliberately small weight: agent tooling is a real maintenance signal, but its absence must never gate the top of the scale (calibration saturates at raw 91, so 100/100 remains reachable with AI Readiness at zero)."
}
],
"classification": {
"top": [],
"labels": [],
"scores": {
"library": 3
},
"primary": null,
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:go",
"weight": 3
}
],
"artifacts": [],
"confidence": "none",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": false
},
"metrics_version": "2.5.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-31T04:04:09.331478Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/n/NVIDIA/gontainer.svg",
"full_name": "NVIDIA/gontainer",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}