Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 79,
"has_wiki": false,
"homepage": "https://pkg.go.dev/github.com/docker/go-units",
"languages": {
"Go": 27385
},
"pushed_at": "2026-04-15T08:14:51Z",
"created_at": "2015-12-15T00:47:50Z",
"owner_type": "Organization",
"updated_at": "2026-06-18T08:17:11Z",
"description": "Parse and print size and time units in human-readable format",
"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://www.docker.com",
"name": "Docker",
"type": "Organization",
"login": "docker",
"company": null,
"location": "United States of America",
"followers": 15014,
"avatar_url": "https://avatars.githubusercontent.com/u/5429470?v=4",
"created_at": "2013-09-10T17:53:43Z",
"is_verified": null,
"public_repos": 150,
"account_age_days": 4703
},
"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": "v0.5.0",
"kind": "minor",
"published_at": "2022-05-17T10:43:04Z"
},
{
"tag": "v0.4.0",
"kind": "minor",
"published_at": "2019-04-23T14:49:23Z"
},
{
"tag": "v0.3.3",
"kind": "patch",
"published_at": "2018-02-12T13:46:57Z"
},
{
"tag": "v0.3.2",
"kind": "patch",
"published_at": "2017-01-27T09:51:29Z"
},
{
"tag": "v0.3.1",
"kind": "patch",
"published_at": "2016-06-13T21:20:13Z"
},
{
"tag": "v0.3.0",
"kind": "minor",
"published_at": "2016-01-25T17:48:45Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2015-12-15T00:47:25Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2015-12-15T00:47:25Z"
}
],
"recent_commits": [
{
"oid": "2bd057e7d15e38a5d66bd084ffe3619027c7b8b6",
"body": "modernize with go1.20 features",
"is_bot": false,
"headline": "Merge pull request #50 from kolyshkin/go120",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2026-04-15T08:14:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a3e4f2a525d9e578f3c604ec65591de5c8355bc",
"body": "Addressing the TODO item added by commit 7375726.\n\nSigned-off-by: Kir Kolyshkin <kolyshkin@gmail.com>",
"is_bot": false,
"headline": "size.go: use strings.Cut",
"author_name": "Kir Kolyshkin",
"author_login": "kolyshkin",
"committed_at": "2026-04-15T08:06:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19cc109093498e90ae4b22b7180ee42e49825309",
"body": "Now when we have Go 1.20 we can finally switch from strings.Split[N] to\nstrings.Cut. The code is easier and more readable, and we no longer\ndeal with slices.\n\nThere is a slight difference in behavior -- the old code was giving\nhints when an extra = or : was there. The new code just returns\nNumError.\n[…]\nme this is not a big deal.\n\nAll the existing tests still pass. Added some new tests to cover the\ncase of extra = signs which was not covered before.\n\nSigned-off-by: Kir Kolyshkin <kolyshkin@gmail.com>",
"is_bot": false,
"headline": "ulimit.go: use strings.Cut",
"author_name": "Kir Kolyshkin",
"author_login": "kolyshkin",
"committed_at": "2026-04-15T08:06:52Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "3ab834d232d21286e5f725612febfb386f5a3e32",
"body": "The new keyword, any, is added to Go 1.18 for the sake of readability.\nIt is an alias to interface{}.\n\nSigned-off-by: Kir Kolyshkin <kolyshkin@gmail.com>",
"is_bot": false,
"headline": "size_test.go: replace interface{} with any",
"author_name": "Kir Kolyshkin",
"author_login": "kolyshkin",
"committed_at": "2026-04-15T08:06:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ad3b6d89f80fbf9ffc125c43e6b53a47b2d315a",
"body": "ci: set up basic GitHub actions workflows and add CodeQL",
"is_bot": false,
"headline": "Merge pull request #49 from thaJeztah/add_gha",
"author_name": "Akihiro Suda",
"author_login": "AkihiroSuda",
"committed_at": "2026-04-15T07:47:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c946e4175ede678e53280505fda6277d552c3af",
"body": "Signed-off-by: Sebastiaan van Stijn <github@gone.nl>",
"is_bot": false,
"headline": "ci: add basic github actions workflows",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2026-04-11T19:20:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7ca0010d0fcb45b3fa8a0404d87382ead7f507ed",
"body": "test examples and fix unhandled error in benchmark",
"is_bot": false,
"headline": "Merge pull request #48 from thaJeztah/testable_examples",
"author_name": "Akihiro Suda",
"author_login": "AkihiroSuda",
"committed_at": "2026-04-10T19:01:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d7606062e20114aca5b75af30286e45b166b26ae",
"body": "Signed-off-by: Sebastiaan van Stijn <github@gone.nl>",
"is_bot": false,
"headline": "BenchmarkParseSize: fix unhandled errors",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2026-04-10T18:40:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bd0c61cbecfa5cea14d10d10abde27c92698d296",
"body": "When writing a \"Example\" func, the function needs \"output\" comments\nto be tested, otherwise they're not run as part of (unit) tests.\n\nSigned-off-by: Sebastiaan van Stijn <github@gone.nl>",
"is_bot": false,
"headline": "fix: Example tests were not tested",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2026-04-10T18:40:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c614bfbf6b3bc512ad4ab1c75f2be355b844bcd9",
"body": "Add go.mod",
"is_bot": false,
"headline": "Merge pull request #36 from thaJeztah/gomod",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2026-04-10T18:15:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74709b8b613a2c9e99c5ded5c4ef6de6f21ed87a",
"body": "Keeping the go version to 1.20 for now, as this module\ndoesn't require \"latest and greatest\"\n\nSigned-off-by: Sebastiaan van Stijn <github@gone.nl>",
"is_bot": false,
"headline": "Add go.mod",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2026-04-10T18:11:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "16e18b2861ca6fd622e7042ffeb9a3ebe8a9dff9",
"body": "add pull-request template",
"is_bot": false,
"headline": "Merge pull request #46 from thaJeztah/pr_template",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2024-03-18T15:22:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a912516d59130fcb3f41ade0da4c05f1566cb069",
"body": "Signed-off-by: Sebastiaan van Stijn <github@gone.nl>",
"is_bot": false,
"headline": "add pull-request template",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2024-03-18T10:24:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e682442797b36348f8e1f98defdbf32bac0b6c6f",
"body": "Remove regexp use",
"is_bot": false,
"headline": "Merge pull request #40 from kolyshkin/no-regex",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2022-05-17T10:43:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "737572633c434ce2d80ba3fbe2d8ea15d7d821ff",
"body": "Using a regular expression brings in the whole regexp and regexp/syntax\npackages, which increase the resulting binary size by about 130K\n(Go 1.18.1, Linux/amd64).\n\nBesides, regular expressions are generally slow and incur some\ninitialization overhead (to compile all global regexp.MustComplile\nvariab\n[…]\n34. B\", following the rules\nof strconv.ParseFloat. It seems that those were previously rejected as\na result of a regex being used, not deliberately.\n\nSigned-off-by: Kir Kolyshkin <kolyshkin@gmail.com>",
"is_bot": false,
"headline": "size: stop using regexp",
"author_name": "Kir Kolyshkin",
"author_login": "kolyshkin",
"committed_at": "2022-05-16T16:42:23Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cec49607f776c9f7f3b300e746ddbd493b2f45ed",
"body": "Co-authored-by: Kir Kolyshkin <kolyshkin@gmail.com>",
"is_bot": false,
"headline": "size_test: add more tests",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2022-05-16T16:42:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "54c3e559548be5ab7ea742b174496f5cb2555d29",
"body": "This way, error messages will show correct line information.\n\nSigned-off-by: Kir Kolyshkin <kolyshkin@gmail.com>",
"is_bot": false,
"headline": "size_test: add t.Helper annotations",
"author_name": "Kir Kolyshkin",
"author_login": "kolyshkin",
"committed_at": "2022-05-16T16:42:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1d23ffa157447c3452bb2e31f0bdf9118fafb88a",
"body": "Shows on my laptop (6 iterations processed by benchstat):\n\nname time/op\nParseSize-4 10.6µs ± 3%\n\nname alloc/op\nParseSize-4 3.26kB ± 0%\n\nname allocs/op\nParseSize-4 72.0 ± 0%\n\nSigned-off-by: Kir Kolyshkin <kolyshkin@gmail.com>",
"is_bot": false,
"headline": "size_test: add parseSize benchmark",
"author_name": "Kir Kolyshkin",
"author_login": "kolyshkin",
"committed_at": "2022-05-16T16:42:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af07f36391ff7e0d0fa596c2d960b23e0a29c978",
"body": "Such sizes are quite valid but were never tested.\n\nSigned-off-by: Kir Kolyshkin <kolyshkin@gmail.com>",
"is_bot": false,
"headline": "size_test: add tests for 0.3 + suffix",
"author_name": "Kir Kolyshkin",
"author_login": "kolyshkin",
"committed_at": "2022-05-16T16:42:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "519db1ee28dcc9fd2474ae59fca29a810482bfb1",
"body": "Revert 46 minute threshold",
"is_bot": false,
"headline": "Merge pull request #34 from thaJeztah/remove_46_minutes_threshold",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2019-04-23T14:49:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5ddfca50b7ef7068a01c0c31a9a0852c6787de8",
"body": "Fix handling of unlimited (-1) ulimit values",
"is_bot": false,
"headline": "Merge pull request #33 from thaJeztah/fix_ulimit_unlimit_handling",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2019-04-23T14:49:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "685d807958e952e8d34d1678cbd0cef545afe2d7",
"body": "Addresses https://github.com/moby/moby/issues/39125\n\nSigned-off-by: Sebastiaan van Stijn <github@gone.nl>",
"is_bot": false,
"headline": "Fix handling of unlimited (-1) ulimit values",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2019-04-23T11:30:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d3bf9345579283aa6711d362a19f6cf222e3924",
"body": "This partially reverts commit 57ccf259e39e1e6d33ebc140814166820abb4c6f.\n\nUsing 46 minutes as a threshold proved to be confusing, given\nthat the human-duration does not use \"15 minute\" precision\nanywhere.\n\nBefore this patch, 47 minutes was shown as \"About an hour\". With this\nchange, it's shown as \"47 minutes\".\n\nAddresses https://github.com/moby/moby/issues/38807\n\nSigned-off-by: Sebastiaan van Stijn <github@gone.nl>",
"is_bot": false,
"headline": "Revert 46 minute threshold",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2019-04-23T11:21:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "34fe71719216b836be0bbb9f67a5bdacebb635c1",
"body": "MAINTAINERS: update Akihiro Suda's email address",
"is_bot": false,
"headline": "Merge pull request #32 from AkihiroSuda/akihirosuda-email",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2019-04-23T07:41:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a0cc00726ee10eca08b5eab3d8273681ede2a113",
"body": "No affiliation change (NTT).\n\nThe former email address will continue to be available for the time being.\n\nFor daily communication, I still prefer to use my gmail.com address.\n\nSigned-off-by: Akihiro Suda <akihiro.suda.cz@hco.ntt.co.jp>",
"is_bot": false,
"headline": "MAINTAINERS: update Akihiro Suda's email address",
"author_name": "Akihiro Suda",
"author_login": "AkihiroSuda",
"committed_at": "2019-04-17T09:42:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2fb04c6466a548a03cb009c5569ee1ab1e35398e",
"body": "Update path of golint",
"is_bot": false,
"headline": "Merge pull request #30 from klyr/golint-new-path",
"author_name": "Vincent Demeester",
"author_login": "vdemeester",
"committed_at": "2018-10-30T08:20:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03db2b60b8202884ca5ca9f92e7dfa6d1330ad40",
"body": "The new path is golang.org/x/lint/golint.\nSee https://github.com/golang/lint/commit/ead987a65e5c7e053cf9633f9eac1f734f6b4fe3.\n\nSigned-off-by: Julien Barbot <jubarbot@cisco.com>",
"is_bot": false,
"headline": "Update path of golint",
"author_name": "Julien Barbot",
"author_login": "jubarbot-cisco",
"committed_at": "2018-10-18T10:26:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "47565b4f722fb6ceae66b95f853feed578a4a51c",
"body": "Update MAINTAINERS file with current maintainers",
"is_bot": false,
"headline": "Merge pull request #28 from vdemeester/update-maintainers",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2018-02-12T13:46:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e13c7f9c8bd49e17f272709b954700d357eac39c",
"body": "Signed-off-by: Vincent Demeester <vincent@sbr.pm>",
"is_bot": false,
"headline": "Update MAINTAINERS file with current maintainers",
"author_name": "Vincent Demeester",
"author_login": "vdemeester",
"committed_at": "2018-02-12T13:37:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d59758554a3d3911fa25c0269de1ebe2f1912c39",
"body": "Fix #26 - RAMInBytes Bug",
"is_bot": false,
"headline": "Merge pull request #27 from FlorinAsavoaie/master",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2017-12-21T20:03:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1364ead0d8e38649c7d8d8920d1eafeaf5064071",
"body": "RAMInBytes wasn't able to parse the output of BytesSize until now.\n\nSigned-off-by: Florin Asavoaie <FlorinAsavoaie@users.noreply.github.com>",
"is_bot": false,
"headline": "Fix #26 - RAMInBytes Bug",
"author_name": "Florin Asavoaie",
"author_login": "FlorinAsavoaie",
"committed_at": "2017-12-21T01:55:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0dadbb0345b35ec7ef35e228dabb8de89a65bf52",
"body": "Removes spaces before unit.",
"is_bot": false,
"headline": "Merge pull request #23 from wernight/master",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2017-01-27T09:51:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e638d38cf6977a37a8ea0078f3ee75a7cdb2dd1",
"body": "This is to be closer to common Linux outputs.\nMost Linux tools output with space before the human size unit.\nExamples:\n\n - `du -h`\n - `df -h`\n - `ls -lh`\n - `tree -h`\n - `free -h`\n\nHaving a space breaks `sort -h` (and makes things like `awk {print $2}`\nharder).\n\nSee https://github.com/docker/docker/issues/30271",
"is_bot": false,
"headline": "Removes spaces before unit.",
"author_name": "Werner Beroux",
"author_login": "wernight",
"committed_at": "2017-01-27T09:41:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e30f1e79f3cd72542f2026ceec18d3bd67ab859c",
"body": "Better human duration precision",
"is_bot": false,
"headline": "Merge pull request #22 from fabianofranz/better_human_duration_precision",
"author_name": "Alexander Morozov",
"author_login": "LK4D4",
"committed_at": "2016-11-30T22:15:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57ccf259e39e1e6d33ebc140814166820abb4c6f",
"body": "Signed-off-by: Fabiano Franz <ffranz@redhat.com>",
"is_bot": false,
"headline": "Better human duration precision",
"author_name": "Fabiano Franz",
"author_login": "fabianofranz",
"committed_at": "2016-11-22T18:58:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8a7beacffa3009a9ac66bad506b18ffdd110cf97",
"body": "change week display rule",
"is_bot": false,
"headline": "Merge pull request #21 from allencloud/change-week-display-rule",
"author_name": "Daniel Nephin",
"author_login": "dnephin",
"committed_at": "2016-10-20T21:32:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "61a1eab7936c91a922342fe825d0467697f507c2",
"body": "Signed-off-by: allencloud <allen.sun@daocloud.io>",
"is_bot": false,
"headline": "change week display rule",
"author_name": "allencloud",
"author_login": "allencloud",
"committed_at": "2016-10-20T09:08:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2145db703495b2e525c59662db69a7344b00bb8",
"body": "…-digits\n\nAdd `HumanSizeWithPrecision` function",
"is_bot": false,
"headline": "Merge pull request #20 from yongtang/26300-docker-images-3-fractional…",
"author_name": "Vincent Demeester",
"author_login": "vdemeester",
"committed_at": "2016-09-08T21:06:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2f6241640c8641810db7a2cda60c147dde07d95",
"body": "This fix adds `HumanSizeWithPrecision` func so that instead of fixed\nprecision of 4 in `HumanSize`, any precision could be specified.\n\nThis fix is related to 26303, 26300 in docker.\n\nSigned-off-by: Yong Tang <yong.tang.github@outlook.com>",
"is_bot": false,
"headline": "Add `HumanSizeWithPrecision` function",
"author_name": "Yong Tang",
"author_login": "yongtang",
"committed_at": "2016-09-08T20:13:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2c1805a1c750c4ea749899f49221e1d5f3e5ce42",
"body": "Add more unit-tests to ulimit",
"is_bot": false,
"headline": "Merge pull request #16 from ripcurld00d/code_coverage",
"author_name": "Vincent Demeester",
"author_login": "vdemeester",
"committed_at": "2016-08-28T18:08:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb879ae3e2b84e2a142af415b679ddeda47ec71c",
"body": "make 1 second not to be plural seconds",
"is_bot": false,
"headline": "Merge pull request #18 from allencloud/better-duration-display",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2016-08-02T14:55:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2780adb41b44e6bb69d41fc7a46b9c4e294f511",
"body": "Signed-off-by: allencloud <allen.sun@daocloud.io>",
"is_bot": false,
"headline": "make 1 second not to be plural seconds",
"author_name": "allencloud",
"author_login": "allencloud",
"committed_at": "2016-07-31T17:55:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "faa24d7e27ae22e4fbc9622ed1ddec0cc4ea9f91",
"body": null,
"is_bot": false,
"headline": "Add more unit-tests to ulimit",
"author_name": "Boaz Shuster",
"author_login": "boaz0",
"committed_at": "2016-06-27T17:07:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2d77a61e3c169b43402a0a1e84f06daf29b8190",
"body": "Avoid getting \"index out of range\"",
"is_bot": false,
"headline": "Merge pull request #14 from ripcurld00d/avoid_out_range",
"author_name": "Alexander Morozov",
"author_login": "LK4D4",
"committed_at": "2016-06-13T21:20:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a09cd47f892041a4fac473133d181f5aea6fa393",
"body": "Theoretically there is a case when size/base >= len(_map).\nI changed the loop's condition expression so there isn't going\nto be any bad memory access in the following scenario.",
"is_bot": false,
"headline": "Avoid getting \"index out of range\"",
"author_name": "Boaz Shuster",
"author_login": "boaz0",
"committed_at": "2016-06-08T23:00:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09dda9d4b0d748c57c14048906d3d094a58ec0c9",
"body": "Unify license",
"is_bot": false,
"headline": "Merge pull request #11 from onlyjob/master",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2016-05-24T16:34:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cb95a97ac114530222b325cae7530009855efeb1",
"body": " Use one license for documentation and code (Closes: #10)\n\n https://people.debian.org/%7Ebap/dfsg-faq.html#docs\n\nSigned-off-by: Dmitry Smirnov <onlyjob@member.fsf.org>",
"is_bot": false,
"headline": "Unify license",
"author_name": "Dmitry Smirnov",
"author_login": "onlyjob",
"committed_at": "2016-03-05T06:11:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5d2041e26a699eaca682e2ea41c8f891e1060444",
"body": "Enhance FromHumanSize to parse float64 string",
"is_bot": false,
"headline": "Merge pull request #8 from WeiZhang555/from-human-size",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2016-01-25T17:48:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "930978e70f550b7da307fb93d4b70c8968a8fde6",
"body": "Currently FromHumanSize can only interpret format of '32kB', this commit\nenhance it to interpret flat64 string with blank such as '32.3 kB'.\n\nSigned-off-by: Zhang Wei <zhangwei555@huawei.com>",
"is_bot": false,
"headline": "Enhance FromHumanSize to parse float64 string",
"author_name": "Zhang Wei",
"author_login": "WeiZhang555",
"committed_at": "2016-01-18T09:01:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0bbddae09c5a5419a8c6dcdd7ff90da3d450393b",
"body": "Refactor implementation of ParseUlimit function",
"is_bot": false,
"headline": "Merge pull request #6 from kezhuw/refactor_ParseUlimit",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2015-12-30T17:58:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4a9b9617350c034730bc5051c605919943080bf",
"body": "Two problems exist in old code:\n- The condition in statement `if len(limitVals) > 2` never evaluates to\n true, because of `strings.SplitN(s, sep string, n int)` will return at\n most n substrings when n > 0.\n- Error `err` is ignored in parsing hard limitation value. Thus we may\n get inaccurate error message when invalid hard limitation value\n encountered.\n\nSigned-off-by: Kezhu Wang <kezhuw@gmail.com>",
"is_bot": false,
"headline": "Refactor implementation of ParseUlimit function",
"author_name": "Kezhu Wang",
"author_login": "kezhuw",
"committed_at": "2015-12-30T01:56:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f21b2d4b083bc3ba78d891de879d518d6b93d4c3",
"body": "Signed-off-by: Kezhu Wang <kezhuw@gmail.com>",
"is_bot": false,
"headline": "Add test to break existing code",
"author_name": "Kezhu Wang",
"author_login": "kezhuw",
"committed_at": "2015-12-30T01:56:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "239af4525fed2198ec424b387a7f4c1a80fe1dca",
"body": "Signed-off-by: Kezhu Wang <kezhuw@gmail.com>",
"is_bot": false,
"headline": "Make sure the error is of type a *strconv.NumError",
"author_name": "Kezhu Wang",
"author_login": "kezhuw",
"committed_at": "2015-12-30T01:55:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a0207233811d4c369549842012b5e93fad20655",
"body": "Signed-off-by: Kezhu Wang <kezhuw@gmail.com>",
"is_bot": false,
"headline": "Fix typos in ulimit test",
"author_name": "Kezhu Wang",
"author_login": "kezhuw",
"committed_at": "2015-12-30T01:44:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e2d4523730c73120e10d4652f36ad6010998f4e",
"body": "Add MAINTAINERS and update copyright and licence",
"is_bot": false,
"headline": "Merge pull request #5 from thaJeztah/add-maintainers-and-contributing",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2015-12-22T19:14:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e0a53ab43e8e46a5ed3e64ba3426707137b7ef87",
"body": "Add a MAINTAINERS file, CONTRIBUTING.md and\nupdate copyright/licensing.\n\nDocumentation (and README.md) for the open source\nprojects use a different license than the code.\n\nFor reference, see docker/libkv#59\n\nSigned-off-by: Sebastiaan van Stijn <github@gone.nl>",
"is_bot": false,
"headline": "Add MAINTAINERS and update copyright and licence",
"author_name": "Sebastiaan van Stijn",
"author_login": "thaJeztah",
"committed_at": "2015-12-20T23:45:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "651fc226e7441360384da338d0fd37f2440ffbe3",
"body": "Make circleCI to run tests for this library.",
"is_bot": false,
"headline": "Merge pull request #4 from docker/add_circle_file",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2015-12-18T22:21:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2a0821e873d7942ce037f76c4cc0316864aa102",
"body": "Signed-off-by: David Calavera <david.calavera@gmail.com>",
"is_bot": false,
"headline": "Remove double package definition.",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2015-12-18T22:18:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1aa0793c6793a9623eba0fdb7c0b7287756c7d71",
"body": "Signed-off-by: David Calavera <david.calavera@gmail.com>",
"is_bot": false,
"headline": "Make circleCI to run tests for this library.",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2015-12-18T22:15:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67fd237f786171b57cc3ae2b357cec8984001de3",
"body": "Add godoc badge",
"is_bot": false,
"headline": "Merge pull request #3 from LK4D4/godoc_badge",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2015-12-18T22:11:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "640d0a8741ba8624695cbec75fa72353d0084d87",
"body": "Signed-off-by: Alexander Morozov <lk4d4@docker.com>",
"is_bot": false,
"headline": "Add godoc badge",
"author_name": "Alexander Morozov",
"author_login": "LK4D4",
"committed_at": "2015-12-17T21:39:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "954fed01cc617c55d838fa2230073f2cb17386c8",
"body": "Add pkg/ulimits",
"is_bot": false,
"headline": "Merge pull request #1 from dnephin/add_ulimits",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2015-12-15T22:00:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7032e265f313d08925d30a83c25c26431a2d0f86",
"body": "Signed-off-by: Daniel Nephin <dnephin@gmail.com>",
"is_bot": false,
"headline": "Rename ulimits Parse function and add Examples for the new repo.",
"author_name": "Daniel Nephin",
"author_login": "dnephin",
"committed_at": "2015-12-15T21:36:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "20670c074bf135cbef187484726c8c43c642cdb0",
"body": "Signed-off-by: Daniel Nephin <dnephin@gmail.com>",
"is_bot": false,
"headline": "Merge pkg/ulimits from github.com/docker/docker",
"author_name": "Daniel Nephin",
"author_login": "dnephin",
"committed_at": "2015-12-15T21:10:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b001659dd36225e356b4467c465d732e745f53d",
"body": "Signed-off-by: David Calavera <david.calavera@gmail.com>",
"is_bot": false,
"headline": "Add readme, license and examples.",
"author_name": "David Calavera",
"author_login": "calavera",
"committed_at": "2015-12-15T00:47:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee08448b7f967b5c577a90a6ac6ab1068fc2c0a0",
"body": "* Add space between values in docker stats output for easier parsing\n\n Old output could not be parsed easily because there were columns\n that did not have any separator. Also values that are together\n without any space is difficult to read even for humans.\n\n* Update unit.HumanSize comment to match what the does actually does\n\nSigned-off-by: Otto Kekäläinen <otto@seravo.fi>",
"is_bot": false,
"headline": "Multiple fixes to 'docker stats' output:",
"author_name": "Otto Kekäläinen",
"author_login": "ottok",
"committed_at": "2015-07-30T07:14:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "84fe2a7283ccb489d8e90bac407db21615ee1a6c",
"body": "- pkg/useragent\n- pkg/units\n- pkg/ulimit\n- pkg/truncindex\n- pkg/timeoutconn\n- pkg/term\n- pkg/tarsum\n- pkg/tailfile\n- pkg/systemd\n- pkg/stringutils\n- pkg/stringid\n- pkg/streamformatter\n- pkg/sockets\n- pkg/signal\n- pkg/proxy\n- pkg/progressreader\n- pkg/pools\n- pkg/plugins\n- pkg/pidfile\n- pkg/parsers\n- pkg/parsers/filters\n- pkg/parsers/kernel\n- pkg/parsers/operatingsystem\n\nSigned-off-by: Vincent Demeester <vincent@sbr.pm>",
"is_bot": false,
"headline": "Lint on pkg/* packages",
"author_name": "Vincent Demeester",
"author_login": "vdemeester",
"committed_at": "2015-07-27T19:26:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ffd9bd087bd23d3870c65e5a3fada36b60e4394c",
"body": "- pkg/useragent\n- pkg/units\n- pkg/ulimit\n- pkg/truncindex\n- pkg/timeoutconn\n- pkg/term\n- pkg/tarsum\n- pkg/tailfile\n- pkg/systemd\n- pkg/stringutils\n- pkg/stringid\n- pkg/streamformatter\n- pkg/sockets\n- pkg/signal\n- pkg/proxy\n- pkg/progressreader\n- pkg/pools\n- pkg/plugins\n- pkg/pidfile\n- pkg/parsers\n- pkg/parsers/filters\n- pkg/parsers/kernel\n- pkg/parsers/operatingsystem\n\nSigned-off-by: Vincent Demeester <vincent@sbr.pm>",
"is_bot": false,
"headline": "Lint on pkg/* packages",
"author_name": "Vincent Demeester",
"author_login": "vdemeester",
"committed_at": "2015-07-27T19:26:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1095325cd9d21781b5b0ee6966a3c9affe41659d",
"body": "It is already type float.\n\nSigned-off-by: Hu Keping <hukeping@huawei.com>",
"is_bot": false,
"headline": "Remove useless conversion",
"author_name": "Hu Keping",
"author_login": "HuKeping",
"committed_at": "2015-06-23T16:47:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb1077d3b649fc243ab07e23f14392a79563b2a4",
"body": "Signed-off-by: Zhang Wei <zhangwei555@huawei.com>",
"is_bot": false,
"headline": "clean some redundant else clauses",
"author_name": "Zhang Wei",
"author_login": "WeiZhang555",
"committed_at": "2015-05-19T02:54:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0f1925c1636c4b42f5a8d5d3c54878da4781d6fe",
"body": "`docker images` friendly duration gets unfriendly after a while",
"is_bot": false,
"headline": "Merge pull request #12888 from jmzwcn/patch-3",
"author_name": "Doug Davis",
"author_login": "duglin",
"committed_at": "2015-05-03T15:09:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bf6536f081cb3ca76dfe58d2ea3114a5c54bf580",
"body": "fix #12852\nSigned-off-by: Daniel Zhang <jmzwcn@gmail.com>",
"is_bot": false,
"headline": "`docker images` friendly duration gets unfriendly after a while",
"author_name": "Daniel Zhang",
"author_login": "jmzwcn",
"committed_at": "2015-05-03T13:19:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b425036e5d1fcb368ab729db29f6f8d8d468fe3e",
"body": "Signed-off-by: Ma Shimiao <mashimiao.fnst@cn.fujitsu.com>",
"is_bot": false,
"headline": "use CustomSize replace intToString",
"author_name": "Ma Shimiao",
"author_login": null,
"committed_at": "2015-04-29T00:30:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a1903456ff45dbb5d2ad5d5cca885fa400df463b",
"body": "Signed-off-by: Paul Mou <ppymou@gmail.com>",
"is_bot": false,
"headline": "Fixes pointer error",
"author_name": "paul",
"author_login": null,
"committed_at": "2015-03-26T03:45:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8f5cac4a626580c99205e374c425997c148d60c9",
"body": "Add test for successful Ulimit Parse.",
"is_bot": false,
"headline": "Merge pull request #11779 from blatyo/add_ulimit_test",
"author_name": "Jessie Frazelle",
"author_login": null,
"committed_at": "2015-03-26T00:34:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8890b029b749624b068f20cff304b40b95090249",
"body": "Signed-off-by: Allen Madsen <blatyo@gmail.com>",
"is_bot": false,
"headline": "Add test for successful Ulimit Parse.",
"author_name": "Allen Madsen",
"author_login": "blatyo",
"committed_at": "2015-03-26T00:03:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e5c07fc68f7e24bd1982097f9cfd83021241aa97",
"body": "Signed-off-by: Allen Madsen <blatyo@gmail.com>",
"is_bot": false,
"headline": "Fix (*Ulimit).String() function. Closes #11769.",
"author_name": "Allen Madsen",
"author_login": "blatyo",
"committed_at": "2015-03-25T23:39:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "57c16a57ab5aa7c0efaab7904dccebd57840324b",
"body": "Signed-off-by: Arnaud Porterie <arnaud.porterie@docker.com>",
"is_bot": false,
"headline": "Remove subdirectories MAINTAINERS files",
"author_name": "Arnaud Porterie",
"author_login": null,
"committed_at": "2015-03-07T02:21:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93a691abfb115588014b6a46f84cd28f982e9e22",
"body": "Signed-off-by: Brian Goff <cpuguy83@gmail.com>",
"is_bot": false,
"headline": "Allow setting ulimits for containers",
"author_name": "Brian Goff",
"author_login": "cpuguy83",
"committed_at": "2015-02-26T00:37:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b973cc188daf42ef3a444dc174daf7b0de7e9f69",
"body": "Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com>",
"is_bot": false,
"headline": "pkg/units: fix size_test.go compilation",
"author_name": "unclejack",
"author_login": "unclejack",
"committed_at": "2014-12-19T16:38:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32180cbb0c218eb223acfa27d92ee2d9129002ca",
"body": "Fix to avoid a compile error due to float to int truncation with GCCGO",
"is_bot": false,
"headline": "Merge pull request #9233 from inatatsu/fix-pkg-units-size-for-gccgo",
"author_name": "Michael Crosby",
"author_login": "crosbymichael",
"committed_at": "2014-12-19T02:33:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3156d142f62dfe90d7cc3bf1184044a5a776670",
"body": "Signed-off-by: Srini Brahmaroutu <srbrahma@us.ibm.com>",
"is_bot": false,
"headline": "Fix to avoid a compile error due to float to int truncation with GCCGO",
"author_name": "Srini Brahmaroutu",
"author_login": "brahmaroutu",
"committed_at": "2014-12-17T22:44:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af531c7f362f5d7987ecd4cc9a699aa4507f04b2",
"body": "…oat to int truncation\n\nSigned-off-by: Tatsushi Inagaki <e29253@jp.ibm.com>",
"is_bot": false,
"headline": "Fix to avoid a compilation error of size_test.go with GCCGO due to fl…",
"author_name": "Tatsushi Inagaki",
"author_login": "inatatsu",
"committed_at": "2014-11-25T09:12:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb0f935ecff7ba7bb150a9eacc28bd99f4c2eafa",
"body": "…ith GCCGO\"\n\nThis reverts commit 967a42f116d23051c862a3b4983925de2016f83c.\n\nSigned-off-by: Tatsushi Inagaki <e29253@jp.ibm.com>\n\nRoll back the change to fix the parameter of HumanSize from int64 to float64",
"is_bot": false,
"headline": "Revert \"Fix to avoid a compile error due to float to int truncation w…",
"author_name": "Tatsushi Inagaki",
"author_login": "inatatsu",
"committed_at": "2014-11-25T07:48:09Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4dfb959d04a69a2cb4a1b8e13a04814322bc0c2f",
"body": "Signed-off-by: Tatsushi Inagaki <e29253@jp.ibm.com>",
"is_bot": false,
"headline": "Fix to avoid a compile error due to float to int truncation with GCCGO",
"author_name": "Tatsushi Inagaki",
"author_login": "inatatsu",
"committed_at": "2014-11-19T06:06:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b633cb6cef447657783765afc3033a9d6622b4e",
"body": "…ners\n\nAdding self to various maintainers files.",
"is_bot": false,
"headline": "Merge pull request #8198 from jfrazelle/add-jessie-to-various-maintai…",
"author_name": "Solomon Hykes",
"author_login": null,
"committed_at": "2014-10-29T02:35:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2b27d070601b1d92d9b44839b846b8b98820dfec",
"body": "lint changes part 1",
"is_bot": false,
"headline": "Merge pull request #8423 from unclejack/lint_changes",
"author_name": "Tibor Vass",
"author_login": "tiborvass",
"committed_at": "2014-10-21T16:15:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2630122256e0fe02bb93025c93be8aedd57ba162",
"body": "Signed-off-by: Victor Vieux <vieux@docker.com>",
"is_bot": false,
"headline": "add BytesSize in pkg/units",
"author_name": "Victor Vieux",
"author_login": "vieux",
"committed_at": "2014-10-14T03:54:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9b1252aa621b266d31636de1ec99a6e85aa5a568",
"body": "Docker-DCO-1.1-Signed-off-by: Cristian Staretu <cristian.staretu@gmail.com> (github: unclejack)",
"is_bot": false,
"headline": "pkg/units: lint",
"author_name": "unclejack",
"author_login": "unclejack",
"committed_at": "2014-10-06T19:19:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a988ec154190ed23621108463533a91e639991bd",
"body": "Docker-DCO-1.1-Signed-off-by: Jessica Frazelle <jess@docker.com> (github: jfrazelle)",
"is_bot": false,
"headline": "Adding self to various maintainers files.",
"author_name": "Jessica Frazelle",
"author_login": "jessfraz",
"committed_at": "2014-09-29T22:43:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e915f19385a2d30df61d16260253f46a4652ea1",
"body": "Addresses #8057\n\nDocker-DCO-1.1-Signed-off-by: Phil Estes <estesp@linux.vnet.ibm.com>",
"is_bot": false,
"headline": "Refactor all pre-compiled regexp to package level vars",
"author_name": "Phil Estes",
"author_login": "estesp",
"committed_at": "2014-09-16T16:57:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e1e08c14021526d24dc4ced7d90ec0dd3ddf61ab",
"body": "Also, now that I was at it, gave them a small refactor.\n\nDocker-DCO-1.1-Signed-off-by: Francisco Carriedo <fcarriedo@gmail.com> (github: fcarriedo)",
"is_bot": false,
"headline": "pkg/units: Updated tests with unit constants",
"author_name": "Francisco Carriedo",
"author_login": "fcarriedo",
"committed_at": "2014-07-27T03:00:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0a113621817627fb0594cf671f03c85b2738a4d7",
"body": "int64 seems sufficient\n\nDocker-DCO-1.1-Signed-off-by: Francisco Carriedo <fcarriedo@gmail.com> (github: fcarriedo)",
"is_bot": false,
"headline": "pkg/units: Unit constants directly int64",
"author_name": "Francisco Carriedo",
"author_login": "fcarriedo",
"committed_at": "2014-07-27T03:00:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "83654b6c8f4ea7f27e0c5de49a7f6f0c242051e3",
"body": "Docker-DCO-1.1-Signed-off-by: fcarriedo <fcarriedo@gmail.com> (github: fcarriedo)",
"is_bot": false,
"headline": "pkg/units: including suggestions and enhancements",
"author_name": "fcarriedo",
"author_login": "fcarriedo",
"committed_at": "2014-07-25T16:33:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0d0f361a8bcef1dbf25f49a43e329064888ed9b",
"body": "We were doing exactly what `regexp.MustCompile()` already does.\n\nDocker-DCO-1.1-Signed-off-by: fcarriedo <fcarriedo@gmail.com> (github: fcarriedo)",
"is_bot": false,
"headline": "pkg/units: Updated `Compile()` to `MustCompile()`",
"author_name": "fcarriedo",
"author_login": "fcarriedo",
"committed_at": "2014-07-24T20:19:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "de7e9d2258946dd3ab4a9d4f44ae75bcdba6fb81",
"body": "Both functions perform the same logic and they just vary on the base\nmultiplication units. We can refactor the common code into a single\nplace.\n\nDocker-DCO-1.1-Signed-off-by: Francisco Carriedo <fcarriedo@gmail.com> (github: fcarriedo)",
"is_bot": false,
"headline": "pkg/units: Refactored common code to single func",
"author_name": "Francisco Carriedo",
"author_login": "fcarriedo",
"committed_at": "2014-07-24T07:03:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "986cd12045925b927aed2dcd9fb264b25273d422",
"body": "No need to initialize every time the function executes since it works as\na catalog.\n\nDocker-DCO-1.1-Signed-off-by: Francisco Carriedo <fcarriedo@gmail.com> (github: fcarriedo)",
"is_bot": false,
"headline": "pkg/units: Moved 'units' out of function",
"author_name": "Francisco Carriedo",
"author_login": "fcarriedo",
"committed_at": "2014-07-24T07:03:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d6942680b4146bff7361649b70c7790a79e46a3a",
"body": "No need to have two lines. The type is even explicit when type casting\nto `float64(size)`\n\nDocker-DCO-1.1-Signed-off-by: Francisco Carriedo <fcarriedo@gmail.com> (github: fcarriedo)",
"is_bot": false,
"headline": "pkg/units: Compacted var declaration and initialization",
"author_name": "Francisco Carriedo",
"author_login": "fcarriedo",
"committed_at": "2014-07-24T07:03:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3b6bc3daaf0927c59c08a08dac2e578406e604f6",
"body": "No need to recompile a fixed regular expression each time the function\nexecutes. Abstracting it to the `init()` method.\n\nDocker-DCO-1.1-Signed-off-by: Francisco Carriedo <fcarriedo@gmail.com> (github: fcarriedo)",
"is_bot": false,
"headline": "pkg/units: Refactor regexp.Compile to init()",
"author_name": "Francisco Carriedo",
"author_login": "fcarriedo",
"committed_at": "2014-07-24T06:45:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21c26adcfb21d8bec22e92504860835c3ae40d03",
"body": "May make sense that both `FromHumanSize()` and `RAMInBytes()` support\nthe same units. Added 'PB' to the RAMInBytes regex.\n\nAlso updated tests.\n\nNote: int64 is overflowed on quantities >= EB\n\nDocker-DCO-1.1-Signed-off-by: Francisco Carriedo <fcarriedo@gmail.com> (github: fcarriedo)",
"is_bot": false,
"headline": "pkg/units: Standardized supported sizes",
"author_name": "Francisco Carriedo",
"author_login": "fcarriedo",
"committed_at": "2014-07-24T06:37:06Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 8,
"commits_last_year": 10,
"latest_release_at": "2022-05-17T10:43:04Z",
"latest_release_tag": "v0.5.0",
"releases_from_tags": true,
"days_since_last_push": 104,
"active_weeks_last_year": 2,
"days_since_latest_release": 1533,
"mean_days_between_releases": 335.1
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 75,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": true
},
"ecosystem": {
"packages": [
{
"name": "github.com/docker/go-units",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/docker/go-units",
"is_deprecated": false,
"latest_version": "v0.5.0",
"repository_url": "https://github.com/docker/go-units",
"versions_count": 8,
"total_downloads": null,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": null,
"latest_published_at": "2022-05-17T10:43:04Z",
"latest_version_yanked": null,
"days_since_latest_publish": 1533
}
]
},
"popularity": {
"forks": 43,
"stars": 236,
"watchers": 12,
"fork_history": {
"days": [
{
"date": "2015-12-15",
"count": 1
},
{
"date": "2015-12-17",
"count": 1
},
{
"date": "2015-12-20",
"count": 1
},
{
"date": "2015-12-28",
"count": 1
},
{
"date": "2016-01-09",
"count": 1
},
{
"date": "2016-03-05",
"count": 1
},
{
"date": "2016-04-12",
"count": 1
},
{
"date": "2016-07-31",
"count": 1
},
{
"date": "2016-09-09",
"count": 1
},
{
"date": "2016-09-28",
"count": 1
},
{
"date": "2016-09-29",
"count": 1
},
{
"date": "2016-11-22",
"count": 1
},
{
"date": "2017-01-23",
"count": 1
},
{
"date": "2017-03-20",
"count": 1
},
{
"date": "2017-04-12",
"count": 1
},
{
"date": "2017-12-29",
"count": 1
},
{
"date": "2018-02-09",
"count": 1
},
{
"date": "2018-08-22",
"count": 1
},
{
"date": "2018-10-02",
"count": 1
},
{
"date": "2018-10-18",
"count": 1
},
{
"date": "2018-10-21",
"count": 1
},
{
"date": "2019-01-17",
"count": 1
},
{
"date": "2019-04-17",
"count": 1
},
{
"date": "2020-04-27",
"count": 1
},
{
"date": "2020-12-12",
"count": 1
},
{
"date": "2020-12-15",
"count": 1
},
{
"date": "2021-04-15",
"count": 1
},
{
"date": "2021-08-23",
"count": 1
},
{
"date": "2021-10-20",
"count": 1
},
{
"date": "2022-04-15",
"count": 1
},
{
"date": "2022-04-28",
"count": 1
},
{
"date": "2022-05-23",
"count": 1
},
{
"date": "2023-03-15",
"count": 1
},
{
"date": "2023-04-17",
"count": 1
},
{
"date": "2024-01-14",
"count": 1
},
{
"date": "2024-08-21",
"count": 1
},
{
"date": "2024-09-17",
"count": 1
},
{
"date": "2025-01-14",
"count": 1
},
{
"date": "2025-08-17",
"count": 1
},
{
"date": "2026-04-26",
"count": 1
},
{
"date": "2026-06-03",
"count": 1
},
{
"date": "2026-06-18",
"count": 1
},
{
"date": "2026-06-20",
"count": 1
}
],
"complete": true,
"collected": 43,
"total_forks": 43
},
"star_history": null,
"open_issues_and_prs": 13
},
"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": [
"go.mod"
],
"largest_source_bytes": 8871,
"source_files_sampled": 6,
"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": 9,
"merged_prs": 26,
"open_issues": 4,
"closed_ratio": 0.667,
"closed_issues": 8,
"closed_unmerged_prs": 6
},
"bus_factor": 5,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "thaJeztah",
"commits": 20,
"avatar_url": "https://avatars.githubusercontent.com/u/1804568?v=4"
},
{
"type": "User",
"login": "fcarriedo",
"commits": 13,
"avatar_url": "https://avatars.githubusercontent.com/u/153599?v=4"
},
{
"type": "User",
"login": "calavera",
"commits": 10,
"avatar_url": "https://avatars.githubusercontent.com/u/1050?v=4"
},
{
"type": "User",
"login": "kolyshkin",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/4522509?v=4"
},
{
"type": "User",
"login": "vdemeester",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/6508?v=4"
},
{
"type": "User",
"login": "kezhuw",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/541734?v=4"
},
{
"type": "User",
"login": "AkihiroSuda",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/9248427?v=4"
},
{
"type": "User",
"login": "dnephin",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/442180?v=4"
},
{
"type": "User",
"login": "inatatsu",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/9817764?v=4"
},
{
"type": "User",
"login": "LK4D4",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/101445?v=4"
}
],
"contributors_sampled": 34,
"top_contributor_share": 0.196
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"test.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": 6,
"reason": "branch protection is not maximal on development and all release branches",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 1,
"reason": "2 out of 12 merged PRs checked by a CI test -- score normalized to 1",
"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": 10,
"reason": "all changesets reviewed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 28 contributing companies or organizations",
"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": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"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": 10,
"reason": "all dependencies are pinned",
"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": 10,
"reason": "security policy file 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": 10,
"reason": "GitHub workflow tokens follow principle of least privilege",
"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": "2bd057e7d15e38a5d66bd084ffe3619027c7b8b6",
"ran_at": "2026-07-28T13:17:09Z",
"aggregate_score": 6.5,
"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-23T15:09:21Z",
"oldest_open_prs": [
{
"number": 25,
"created_at": "2017-03-20T08:54:00Z",
"last_comment_at": "2020-08-04T11:56:25Z",
"last_comment_author": "thaJeztah"
},
{
"number": 35,
"created_at": "2020-04-27T19:03:18Z",
"last_comment_at": "2022-05-18T12:10:59Z",
"last_comment_author": "thaJeztah"
},
{
"number": 37,
"created_at": "2020-12-15T14:19:21Z",
"last_comment_at": "2022-05-17T02:08:56Z",
"last_comment_author": "kolyshkin"
},
{
"number": 43,
"created_at": "2023-03-15T11:18:10Z",
"last_comment_at": "2023-04-03T05:27:10Z",
"last_comment_author": "nexustar"
},
{
"number": 45,
"created_at": "2024-01-14T16:20:21Z",
"last_comment_at": "2026-06-18T03:34:55Z",
"last_comment_author": "srmdn"
},
{
"number": 47,
"created_at": "2025-01-14T11:57:27Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 51,
"created_at": "2026-04-26T14:59:23Z",
"last_comment_at": "2026-05-13T14:42:44Z",
"last_comment_author": "codecov-commenter"
},
{
"number": 52,
"created_at": "2026-06-03T20:45:25Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 53,
"created_at": "2026-06-20T09:03:19Z",
"last_comment_at": null,
"last_comment_author": null
}
],
"last_merged_pr_at": "2026-04-15T08:14:51Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": [
{
"number": 9,
"created_at": "2016-01-31T01:38:33Z",
"last_comment_at": "2016-06-14T12:33:48Z",
"last_comment_author": "janten"
},
{
"number": 31,
"created_at": "2019-02-12T17:52:00Z",
"last_comment_at": "2022-04-28T19:44:11Z",
"last_comment_author": "kolyshkin"
},
{
"number": 41,
"created_at": "2022-04-28T19:45:20Z",
"last_comment_at": "2026-04-17T19:28:45Z",
"last_comment_author": "thaJeztah"
},
{
"number": 44,
"created_at": "2024-01-14T14:52:37Z",
"last_comment_at": "2024-01-14T14:55:05Z",
"last_comment_author": "kmirzavaziri"
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/docker/go-units",
"host": "github.com",
"name": "go-units",
"owner": "docker"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": "The weighted overall 57 is calibrated to 60 on the published index scale (record calibration 2026-08-02).",
"notes": [
{
"code": "overall_calibration",
"params": {
"raw": 57,
"calibrated": 60,
"calibration": "2026-08-02"
}
}
],
"value": 60,
"inputs": {
"security": 65,
"vitality": 25,
"community": 67,
"governance": 79,
"calibration": "2026-08-02",
"engineering": 52,
"ai_readiness": 57,
"weighted_overall_raw": 57
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "at_risk",
"name": "Vitality",
"value": 25,
"weight": 0.21,
"metrics": [
{
"key": "development_activity",
"band": "at_risk",
"name": "Development activity",
"note": null,
"notes": [],
"value": 21,
"inputs": {
"commits_last_year": 10,
"human_commit_share": 1,
"days_since_last_push": 104,
"active_weeks_last_year": 2
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 104 days ago",
"points": 9.9,
"status": "partial",
"details": [
{
"code": "push_recency",
"params": {
"days": 104
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "2/52 weeks with commits",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 2
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "10 commits in the last year",
"points": 9.4,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 10
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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": 32,
"inputs": {
"releases_count": 8,
"latest_release_tag": "v0.5.0",
"releases_from_tags": true,
"days_since_latest_release": 1533,
"mean_days_between_releases": 335.1
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "8 version tags (no GitHub releases)",
"points": 16.2,
"status": "partial",
"details": [
{
"code": "version_tags_no_releases",
"params": {
"count": 8
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 1533 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 1533
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~335.1 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 335.1
}
}
],
"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": 109,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 109 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 109
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "good",
"name": "Community & Adoption",
"value": 67,
"weight": 0.17,
"metrics": [
{
"key": "popularity",
"band": "moderate",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 58,
"inputs": {
"forks": 43,
"stars": 236,
"watchers": 12,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "236 stars",
"points": 38.5,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 236
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "43 forks",
"points": 13.5,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 43
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "12 watchers",
"points": 5.8,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 12
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 77,
"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": true
},
"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": 6.3,
"status": "met",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "good",
"name": "Sustainability & Governance",
"value": 79,
"weight": 0.23,
"metrics": [
{
"key": "maintainer_resilience",
"band": "excellent",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 88,
"inputs": {
"bus_factor": 5,
"contributors_sampled": 34,
"top_contributor_share": 0.196
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "5 contributor(s) cover half of all commits",
"points": 45.9,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 5
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 20% of commits",
"points": 18.1,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 20
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "34 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 34
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 28 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"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": 77,
"inputs": {
"merged_prs": 26,
"open_issues": 4,
"closed_issues": 8,
"prs_merged_7d": null,
"prs_decided_7d": null,
"prs_merged_30d": null,
"prs_decided_30d": null,
"issue_closed_ratio": 0.667,
"closed_unmerged_prs": 6,
"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": "67% of issues closed",
"points": 28,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 67
}
}
],
"max_points": 42
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "26/32 decided PRs merged",
"points": 24.4,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 26,
"decided": 32
}
}
],
"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": "all changesets reviewed",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "excellent",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 80,
"inputs": {
"followers": 15014,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "docker",
"public_repos": 150,
"account_age_days": 4703
},
"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": "15,014 followers of docker",
"points": 25,
"status": "met",
"details": [
{
"code": "owner_followers",
"params": {
"count": 15014,
"login": "docker"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "150 public repos, account ~12 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 150
}
},
{
"code": "account_age_years",
"params": {
"years": 12
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "good",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"packages": [
"github.com/docker/go-units"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 1533
},
"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 1533 days ago",
"points": 4,
"status": "partial",
"details": [
{
"code": "publish_recency",
"params": {
"days": 1533
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "8 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 8
}
}
],
"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": "moderate",
"name": "Engineering Quality",
"value": 52,
"weight": 0.19,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 50,
"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": "2 out of 12 merged PRs checked by a CI test -- score normalized to 1",
"points": 2,
"status": "partial",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"topics": [],
"has_wiki": false,
"homepage": "https://pkg.go.dev/github.com/docker/go-units",
"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://pkg.go.dev/github.com/docker/go-units",
"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": null,
"points": 0,
"status": "missed",
"details": [],
"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": "good",
"name": "Security",
"value": 65,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "good",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Packaging, Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"packaging",
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 65,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 6.5
},
"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 is not maximal on development and all release branches",
"points": 4.5,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "2 out of 12 merged PRs checked by a CI test -- score normalized to 1",
"points": 0.2,
"status": "partial",
"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": "all changesets reviewed",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 28 contributing companies or organizations",
"points": 2.5,
"status": "met",
"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": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"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": "all dependencies are pinned",
"points": 5,
"status": "met",
"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 detected",
"points": 5,
"status": "met",
"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": "GitHub workflow tokens follow principle of least privilege",
"points": 7.5,
"status": "met",
"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": 15
},
"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": 57,
"weight": 0.04,
"metrics": [
{
"key": "ai_agent_context",
"band": "weak",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 37,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.7,
"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": "70 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 37.3,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 70,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 56,
"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": [
"go.mod"
],
"dependency_bot_commit_share": 0
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "go.mod (toolchain convention, no task runner)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "toolchain_convention",
"params": {
"files": "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": "all dependencies are pinned",
"points": 10,
"status": "met",
"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": 8871,
"source_files_sampled": 6,
"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/6 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 6,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"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": {
"labels": [
"library"
],
"scores": {
"library": 6
},
"primary": "library",
"evidence": [
{
"tier": "distribution",
"label": "library",
"source": "registry:go",
"weight": 6
}
],
"artifacts": [],
"confidence": "medium",
"host_extension": false,
"runs_as_process": false,
"consumed_by_code": true
},
"metrics_version": "2.3.1"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-28T13:17:39.281407Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/d/docker/go-units.svg",
"full_name": "docker/go-units",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}