Raw JSON report machine-readable
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 122,
"has_wiki": true,
"homepage": null,
"languages": {
"Go": 43876,
"Makefile": 961
},
"pushed_at": "2026-07-24T02:45:39Z",
"created_at": "2024-11-20T05:35:55Z",
"owner_type": "User",
"updated_at": "2026-07-24T02:45:44Z",
"description": "Go slog handler adapter for go-kit/log.",
"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": null,
"name": "TJ Hoplock",
"type": "User",
"login": "tjhop",
"company": "@ns1",
"location": null,
"followers": 29,
"avatar_url": "https://avatars.githubusercontent.com/u/33664289?v=4",
"created_at": "2017-11-14T16:05:29Z",
"is_verified": null,
"public_repos": 75,
"account_age_days": 3175
},
"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.2.1",
"kind": "patch",
"published_at": "2026-07-19T03:40:09Z"
},
{
"tag": "v0.2.0",
"kind": "minor",
"published_at": "2026-04-12T18:53:16Z"
},
{
"tag": "v0.1.6",
"kind": "patch",
"published_at": "2026-03-03T02:43:18Z"
},
{
"tag": "v0.1.5",
"kind": "patch",
"published_at": "2025-11-06T18:48:14Z"
},
{
"tag": "v0.1.4",
"kind": "patch",
"published_at": "2025-02-28T03:55:31Z"
},
{
"tag": "v0.1.3",
"kind": "patch",
"published_at": "2025-01-15T14:27:01Z"
},
{
"tag": "v0.1.2",
"kind": "patch",
"published_at": "2024-11-22T15:43:23Z"
},
{
"tag": "v0.1.1",
"kind": "patch",
"published_at": "2024-11-20T06:16:00Z"
},
{
"tag": "v0.1.0",
"kind": "minor",
"published_at": "2024-11-20T05:39:41Z"
}
],
"recent_commits": [
{
"oid": "a4820a1db3f0dd484b8ed521de67e5f951d6d725",
"body": "perf(handler): append string attr values unboxed",
"is_bot": false,
"headline": "Merge pull request #34 from tjhop/perf/string-value-fastpath",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-24T02:45:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bc090d763b62fc52cfa8f398c3f5a1cac153c6b3",
"body": "Both slog and go-kit/log include some optimizations for strings, which\nmakes sense considering those are the most common log value type.\n\nIn slog, `Value.String()` returns the string directly via unsafe.String.\nBoxing the string to any instead of the slog.Value results in a smaller\nboxed value.\n\nIn \n[…]\n ² +0.00% ²\n¹ all samples are equal\n² summaries must be >0 to compute geomean\n```\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "perf(handler): append string attr values unboxed",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-24T02:38:28Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b933008413ba3cce4b9633fb266f07fd66c510e2",
"body": "perf(handler): only resolve LogValuer attrs, add fastpaths",
"is_bot": false,
"headline": "Merge pull request #33 from tjhop/perf/attr-fastpaths",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-21T05:43:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "03d53eef6d384d6f2a7a690a0fe32ddadd7f0e8b",
"body": "Using `Resolve()` on values adds a defer/recover, which is just overhead\nfor values that don't need to be resolved. Only resolve `KindLogValuer`,\nscope penalty so only valuers pay for it. This also fixes behavior\ndeviations from upstream slog usage in the stdlib that resolve first and\nthen expand in\n[…]\n ² +0.00% ²\n¹ all samples are equal\n² summaries must be >0 to compute geomean\n```\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "perf(handler): only resolve LogValuer attrs, add fastpaths",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-21T05:29:34Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "85236f46b1d16b5d00af7943ad501aebb30289d8",
"body": "perf(handler): cache resolved caller strings by record PC",
"is_bot": false,
"headline": "Merge pull request #32 from tjhop/perf/caller-pc-cache",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-21T03:43:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85d780159b539cf4961773841ad3a8708324e9f4",
"body": "Resolving the caller on every Handle() call re-walks the call stack, but\nlog call sties are static and a PC's `file:line` mapping isn't going to\nchange for the process lifetime. This memoizes the caller string into a\nsync.Map, pre-boxed as an `any` so it can appended into the pairs inline\nwith no al\n[…]\n ² -35.50% ²\n¹ all samples are equal\n² summaries must be >0 to compute geomean\n```\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "perf(handler): cache resolved caller strings by record PC",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-21T03:39:29Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "721db0490df93264a286001172a7a9ab8ff941ec",
"body": "perf: have handler write level kv directly, drop leveled loggers",
"is_bot": false,
"headline": "Merge pull request #30 from tjhop/perf/flatten-level-context",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-19T02:57:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec40dd6ab164a82b229d6dde837ed5280462db97",
"body": "go-kit's level.Debug/Info/Warn/Error helpers return a log context, and\ncontext.Log() merges the stored kv pairs with the per-call pairs into a\nfreshly allocated slice on every log call:\nhttps://github.com/go-kit/log/blob/v0.2.1/log.go#L151-L155\n\nHandle() is already building the complete kv pair slic\n[…]\n ² -6.46% ²\n¹ all samples are equal\n² summaries must be >0 to compute geomean\n```\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "perf: have handler write level kv directly, drop leveled loggers",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-19T02:46:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b4badcf1fb06f5ca4f593ac1dcbc7b4f933be610",
"body": "perf(handler): resolve caller from slog record, ditch log.Caller()",
"is_bot": false,
"headline": "Merge pull request #29 from tjhop/perf/caller-record-pc",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-18T19:15:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be4a15cbd55850f0a45745070c2a5950bc8a57f9",
"body": "Previously we were using log.Caller() to add the source/call site for\nus. That had some drawbacks, since it was a Valuer that triggered\nre-walking callstack. We also were hard coding the caller depth, which\nwas fragile. slog already captures the program counter for us, so this\nuses it to parse/assig\n[…]\n ² +0.13% ²\n¹ all samples are equal\n² summaries must be >0 to compute geomean\n```\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "perf(handler): resolve caller from slog record, ditch log.Caller()",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-18T04:52:00Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cb4f7f78e8fbfed7b4ced128b17230427a868100",
"body": "…heckout-7\n\nbuild(deps): Bump actions/checkout from 6 to 7",
"is_bot": false,
"headline": "Merge pull request #28 from tjhop/dependabot/github_actions/actions/c…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-07-01T01:58:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "824554675262bdaa5c5145f6b9817f23a030b815",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 6 to 7.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v6...v7)\n\n---\nupdated-dependenc\n[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '7'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump actions/checkout from 6 to 7",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-07-01T01:43:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "b5437a873ae80e4356b57ff7945a9ac984a86f87",
"body": "perf: create and cache leveled loggers, don't create ad-hoc",
"is_bot": false,
"headline": "Merge pull request #25 from tjhop/perf/more-optimizations",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-04-12T18:50:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "205cffcc6d558920dc89df87fee1d1d9221f2108",
"body": "This was more useful when the library allowed for lazy initialization\nfor bare handlers, but now it's only being called once. Let's inline it\nagain.\n\nAddresses PR feedback.\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ref: inline `setCaller()` func, it's only used once",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-04-12T18:45:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "565632b2ad8c7c91f3539d2d603ee9bc8e9394b0",
"body": "We're working with `any` in this bit, and the slog time/message keys are\nstring consts, so they were getting boxed to `any` on every call to\nHandle() directly in the hot path. They're consts and not changing, so\nthis hoists them up into a package level var to avoid paying that\npenalty unnecessarily each call.\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "perf: hoist static slog time/msg keys to pkg level vars",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-04-11T21:21:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8c0119ea2cec1c16bea24acdf3c0c68e0d8622e6",
"body": "For profilers like parca to get more than just cpu profiles (like memory\ninformation), we need pprofs. This adds a test main that will run an\noptional pprof webserver if the env var is set, allowing for doing\nthings like running benchmarks that expose a pprof server for parca to\nscrape.\n\nExample run\n[…]\nk_total:\n enabled: true\n path: /debug/pprof/block\n mutex_total:\n enabled: true\n path: /debug/pprof/mutex\n```\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "test: add test main, run pprof server for profiling if configured",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-04-11T21:21:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f7e3ae670fa722401d23cb6a6022acc3ec88c449",
"body": "- add benchmark for Handle() with pre-flattened attrs to isolate and\n verify flattening\n- add benchmark for the Enabled() guard\n- add benchmarks for leveled logging caching\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "test(benchmark): add some targeted benchmarks for hot paths",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-04-11T21:21:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d577b43a21a14d4f4127837a4cb6584a1e84d2e1",
"body": "Previously, the helper `goKitLevelFunc` would sit in the hot path of the\nHandle() function and for every log call, it would create a new leveled\nlogger via the appropriate `level.Foo(logger)` calls. Those calls create\na new logger with the the correct level prefix, and that penalty was\npaid each log\n[…]\nl world usage, loggers are called\nto log messages far more often than they're created, so I think it still\nmakes sense to get this out of the hot path.\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "perf: create and cache leveled loggers, don't create ad-hoc",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-04-11T21:21:39Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f929035bc0bc726e5bd7a1b83eb583522187281c",
"body": "fix: remove lazy init to fix race conditions, require `NewGoKitHandler` constructor",
"is_bot": false,
"headline": "Merge pull request #27 from aknuds1/arve/lazy-init-removal",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-04-10T20:32:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "28d8a785582b0f934d0d0c967b2c42273c880814",
"body": "Remove all lazy nil-guard-then-write paths from Enabled() and Handle().\nZero-value GoKitHandler now panics on use, matching the stdlib pattern\n(slog.JSONHandler/TextHandler also panic without their constructors).\nThis eliminates the pre-existing data races on the zero-value path\nwithout adding sync \n[…]\nverhead to the hot path.\n\nAdd TestZeroValueHandlerPanics to verify the panic contract for\nzero-value handlers constructed without NewGoKitHandler.\n\nSigned-off-by: Arve Knudsen <arve.knudsen@gmail.com>",
"is_bot": false,
"headline": "fix!: remove lazy init, require NewGoKitHandler constructor",
"author_name": "Arve Knudsen",
"author_login": "aknuds1",
"committed_at": "2026-04-10T08:39:56Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "581e57340f7d5ddd11f92252250eca6fba381ab9",
"body": "fix: use range-based level mapping for custom slog levels",
"is_bot": false,
"headline": "Merge pull request #26 from aknuds1/arve/fix-non-standard-levels",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-04-09T01:31:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0475f9975ec25fa4bd1d97b9a178217047586272",
"body": "slog levels are integers with intentional gaps between the four standard\nlevels to accommodate custom levels (e.g. slog.LevelInfo+2 for a notice\nlevel). The exact-match switch in goKitLevelFunc only handled the four\ncanonical levels, so any custom level fell through to the default case\nand was logge\n[…]\nstom levels map to the nearest\nlower standard level: levels >= Error map to error, >= Warn to warn,\n>= Info to info, and everything else to debug.\n\nSigned-off-by: Arve Knudsen <arve.knudsen@gmail.com>",
"is_bot": false,
"headline": "fix: use range-based level mapping for custom slog levels",
"author_name": "Arve Knudsen",
"author_login": "aknuds1",
"committed_at": "2026-04-05T14:14:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c8c67f0955ccdfb3008acf790954765ee822d67a",
"body": "…r/goreleaser-action-7\n\nbuild(deps): Bump goreleaser/goreleaser-action from 6 to 7",
"is_bot": false,
"headline": "Merge pull request #23 from tjhop/dependabot/github_actions/gorelease…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-03-03T02:40:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1600e18a732f8b6561bdaf5369543bbe24462539",
"body": "Performance Optimizations",
"is_bot": false,
"headline": "Merge pull request #22 from tjhop/perf/optimize-allocations",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-03-03T02:37:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "482a5c15cf19c0cafac9281bf094b15820c5e4f7",
"body": "Bumps [goreleaser/goreleaser-action](https://github.com/goreleaser/goreleaser-action) from 6 to 7.\n- [Release notes](https://github.com/goreleaser/goreleaser-action/releases)\n- [Commits](https://github.com/goreleaser/goreleaser-action/compare/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: goreleaser/goreleaser-action\n dependency-version: '7'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump goreleaser/goreleaser-action from 6 to 7",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-03-01T01:44:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f364b994784ece2492531f15b1096b5ec73bb309",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "chore: fix typos in code comments",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-02-25T15:30:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "958136abe48511d0de8e2b1ab19820b58184fd65",
"body": "Fixes:\n\n```\n Running [/home/runner/golangci-lint-2.1.0-linux-amd64/golangci-lint config path] in [/home/runner/work/slog-gokit/slog-gokit] ...\n Running [/home/runner/golangci-lint-2.1.0-linux-amd64/golangci-lint run] in [/home/runner/work/slog-gokit/slog-gokit] ...\n panic: file requires newer Go v\n[…]\nnic.go:792 +0x132\n github.com/golangci/golangci-lint/v2/pkg/goanalysis.(*loadingPackage).convertError(0xc00201ade0, {0x1b2eba0?, 0xc00959c0c0})\n...\n```\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ci: use latest golangci-lint to fix panic for go build version mismatch",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-02-22T19:34:09Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2ea00a3eeb136a8aa57c23b4e1eae261d482e221",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "build(Makefile): add target to run benchmarks",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-02-22T19:24:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2229c04d24ac5ef89347df370da2be170f6fd14",
"body": "Previously, WithAttrs stored attributes as []slog.Attr with group key\nprefixes pre-applied. Handle() had to iterate over every preformatted attr\non each log call, invoking appendPair() per element to expand groups and\nresolve values.\n\nChange preformatted from []slog.Attr to []any so that\nattributes \n[…]\nfully flattened to key-value pairs at WithAttrs() call time. This\nmeans appendPair() is called once per attr at setup time, not on every\nHandle() call.\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "perf(handler): flatten attrs to []any once in WithAttrs()",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-02-22T19:24:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "6fdded2b091461bbbf0e8896cb5362e576604301",
"body": "The pairs slice in Handle() was initialized with a capacity of only\n`2 * record.NumAttrs()`, which underestimated actual needs and caused\nrepeated reallocations on every log call. It knowingly didn't account\nfor key value pairs that are always present like timestamp, message, or\npre-formatted attrib\n[…]\nle over-allocation reduces the overall number of allocatins\nneeded to accommodate a log message, which results in reduced latency in\nlog calls overall.\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "perf(handler): improve pairs slice capacity pre-allocation in Handle()",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-02-22T19:24:32Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "8e8fc80cec99c4b85d4cc98b83ba6aa36fdbed1b",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "test: add benchmarks!",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2026-02-22T19:24:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9aa79eaa64f86415f5db8cf2cdf54d3d0c02c2d6",
"body": "…golangci-lint-action-9\n\nbuild(deps): Bump golangci/golangci-lint-action from 8 to 9",
"is_bot": false,
"headline": "Merge pull request #21 from tjhop/dependabot/github_actions/golangci/…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-12-01T02:04:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b57d9725efc0b4d9fc1a57d5ec298f996c701c8d",
"body": "…heckout-6\n\nbuild(deps): Bump actions/checkout from 5 to 6",
"is_bot": false,
"headline": "Merge pull request #20 from tjhop/dependabot/github_actions/actions/c…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-12-01T02:04:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2e0473058b2cd8c8319e4af23e497a9ce5f9884d",
"body": "Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 8 to 9.\n- [Release notes](https://github.com/golangci/golangci-lint-action/releases)\n- [Commits](https://github.com/golangci/golangci-lint-action/compare/v8...v9)\n\n---\nupdated-dependencies:\n- dependency-name: golangci/golangci-lint-action\n dependency-version: '9'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump golangci/golangci-lint-action from 8 to 9",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-12-01T01:20:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c629f21c73e6fb4a150ad2c525429d986030734d",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 5 to 6.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v5...v6)\n\n---\nupdated-dependenc\n[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '6'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump actions/checkout from 5 to 6",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-12-01T01:20:13Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "98ac728a1d23433a402af2062f4de9bb552dbdf4",
"body": "Fix race condition in WithAttrs when called concurrently",
"is_bot": false,
"headline": "Merge pull request #19 from MissingRoberto/fix/race-condition-withattrs",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-11-06T18:46:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c357aeb33e232f3a76191fa25ba711c42be0a0cf",
"body": "Signed-off-by: Roberto Jimenez Sanchez <roberto.jimenez@grafana.com>",
"is_bot": false,
"headline": "Remove separate definition",
"author_name": "Roberto Jimenez Sanchez",
"author_login": "MissingRoberto",
"committed_at": "2025-11-06T08:17:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aac4e5bd2036748012177b79a205657e9bcacb7b",
"body": "Co-authored-by: TJ Hoplock <33664289+tjhop@users.noreply.github.com>\nSigned-off-by: Roberto Jiménez Sánchez <roberto.jimenez@grafana.com>",
"is_bot": false,
"headline": "Update handler.go",
"author_name": "Roberto Jiménez Sánchez",
"author_login": "MissingRoberto",
"committed_at": "2025-11-06T08:15:27Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "783f72952ce4414260c317f16a9f8ff89bfebd3a",
"body": "The WithAttrs method had a race condition when multiple goroutines called\nit concurrently on the same handler instance. The issue was caused by:\n\n pairs = append(h.preformatted, pairs...)\n\nThis operation would read from h.preformatted slice while potentially\nwriting to it during the append operatio\n[…]\nctly when\na single Logger is shared among multiple goroutines.\n\nVerified with go test -race to confirm no data races are detected.\n\nSigned-off-by: Roberto Jimenez Sanchez <roberto.jimenez@grafana.com>",
"is_bot": false,
"headline": "Fix race condition in WithAttrs method",
"author_name": "Roberto Jimenez Sanchez",
"author_login": "MissingRoberto",
"committed_at": "2025-11-05T09:28:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "c502663673b48d9b9c940601bef93e492fbe9cb3",
"body": "- Add TestWithAttrsConcurrency to reliably detect the race condition\n - Builds up preformatted slice with sequential WithAttrs calls\n - Uses 50 goroutines × 1000 iterations for high probability detection\n - Reproduces the exact concurrency pattern from the reported bug\n- Add TestWithAttrsImmutabi\n[…]\n reliably detects the race that was fixed in the previous commit.\nVerified by reverting the fix and confirming the race is caught.\n\nSigned-off-by: Roberto Jimenez Sanchez <roberto.jimenez@grafana.com>",
"is_bot": false,
"headline": "Add race condition tests and enable race detector in CI",
"author_name": "Roberto Jimenez Sanchez",
"author_login": "MissingRoberto",
"committed_at": "2025-11-05T09:28:22Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "815d93ed8c2774a7358cca85605b6c66f1856639",
"body": "…retchr/testify-1.11.1\n\nbuild(deps): Bump github.com/stretchr/testify from 1.10.0 to 1.11.1",
"is_bot": false,
"headline": "Merge pull request #16 from tjhop/dependabot/go_modules/github.com/st…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-10-06T23:16:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa48bf73507a05fdbff24a1b4f5fab88dd99ff7f",
"body": "…heckout-5\n\nbuild(deps): Bump actions/checkout from 4 to 5",
"is_bot": false,
"headline": "Merge pull request #15 from tjhop/dependabot/github_actions/actions/c…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-10-06T23:15:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "74d9380cd22603c178da89b03adcc43a428eb1ed",
"body": "Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.10.0 to 1.11.1.\n- [Release notes](https://github.com/stretchr/testify/releases)\n- [Commits](https://github.com/stretchr/testify/compare/v1.10.0...v1.11.1)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/stretchr/testify\n dependency-version: 1.11.1\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump github.com/stretchr/testify from 1.10.0 to 1.11.1",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-10-06T17:36:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a49bde93856dec8c1b2945aa9c155717c6902740",
"body": "Bumps [actions/checkout](https://github.com/actions/checkout) from 4 to 5.\n- [Release notes](https://github.com/actions/checkout/releases)\n- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/actions/checkout/compare/v4...v5)\n\n---\nupdated-dependenc\n[…]\n:\n- dependency-name: actions/checkout\n dependency-version: '5'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump actions/checkout from 4 to 5",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-10-06T17:36:06Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "79e458553d9d7d2560bd971736f5b7f99b32ed26",
"body": "…-logfmt/logfmt-0.6.1\n\nbuild(deps): Bump github.com/go-logfmt/logfmt from 0.6.0 to 0.6.1",
"is_bot": false,
"headline": "Merge pull request #18 from tjhop/dependabot/go_modules/github.com/go…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-10-06T17:32:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f8525f0720ef3d053db939d08d2fe4dee4a61602",
"body": "…etup-go-6\n\nbuild(deps): Bump actions/setup-go from 5 to 6",
"is_bot": false,
"headline": "Merge pull request #17 from tjhop/dependabot/github_actions/actions/s…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-10-06T17:26:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f3b1c7f452dbf707034dc89d6656c0bb9d510507",
"body": "Bumps [github.com/go-logfmt/logfmt](https://github.com/go-logfmt/logfmt) from 0.6.0 to 0.6.1.\n- [Release notes](https://github.com/go-logfmt/logfmt/releases)\n- [Changelog](https://github.com/go-logfmt/logfmt/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/go-logfmt/logfmt/compare/v0.6.0...v0.\n[…]\ny-name: github.com/go-logfmt/logfmt\n dependency-version: 0.6.1\n dependency-type: direct:production\n update-type: version-update:semver-patch\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump github.com/go-logfmt/logfmt from 0.6.0 to 0.6.1",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-10-06T01:13:17Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e7f93d8662cf1b4ea291e653f2434d5d34846799",
"body": "Bumps [actions/setup-go](https://github.com/actions/setup-go) from 5 to 6.\n- [Release notes](https://github.com/actions/setup-go/releases)\n- [Commits](https://github.com/actions/setup-go/compare/v5...v6)\n\n---\nupdated-dependencies:\n- dependency-name: actions/setup-go\n dependency-version: '6'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump actions/setup-go from 5 to 6",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-10-01T01:13:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0d0c927577396d96622dc56b8e0d62ae6a041773",
"body": "…golangci-lint-action-8\n\nbuild(deps): Bump golangci/golangci-lint-action from 7 to 8",
"is_bot": false,
"headline": "Merge pull request #12 from tjhop/dependabot/github_actions/golangci/…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-06-18T04:53:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "75b89adfaf861b7f07cec44d9de5f670f537c0a4",
"body": "Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 7 to 8.\n- [Release notes](https://github.com/golangci/golangci-lint-action/releases)\n- [Commits](https://github.com/golangci/golangci-lint-action/compare/v7...v8)\n\n---\nupdated-dependencies:\n- dependency-name: golangci/golangci-lint-action\n dependency-version: '8'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump golangci/golangci-lint-action from 7 to 8",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-06-18T03:24:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2a11266ba51fd91f58d88ea4600a07830cff627",
"body": "Resolves:\n\n```\nError: requested golangci-lint version 'v2.0' isn't supported: we support only v2.1.0 and later versions\n```\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ci: update golangci-lint config version",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-06-18T03:23:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e4fc7129dd5fe4bafa86789edcc0a244a73deb3b",
"body": "ci updates for golangci-lint version and go stable",
"is_bot": false,
"headline": "Merge pull request #13 from tjhop/ci/updates",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-06-10T03:09:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fce8c7cd987b3bbf7404ea3f0b378c881e5e9dc3",
"body": "Hopefully stay on top of any breaking/changing updates to log/slog\nupstream.\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ci: always use latest stable go in setup-go",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-06-10T03:05:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab041b7275f815fd659257d2754ec97a30ac4089",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ci: bump golangci-lint version in lint workflow",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-06-10T03:05:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d1136976572a62ba81474c8217afcf0f1360bc27",
"body": "…golangci-lint-action-7\n\nbuild(deps): Bump golangci/golangci-lint-action from 6 to 7",
"is_bot": false,
"headline": "Merge pull request #11 from tjhop/dependabot/github_actions/golangci/…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-04-01T02:33:35Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7573addfaa4f9e94aa2c4aedf610d85a70b69ead",
"body": "Bumps [golangci/golangci-lint-action](https://github.com/golangci/golangci-lint-action) from 6 to 7.\n- [Release notes](https://github.com/golangci/golangci-lint-action/releases)\n- [Commits](https://github.com/golangci/golangci-lint-action/compare/v6...v7)\n\n---\nupdated-dependencies:\n- dependency-name: golangci/golangci-lint-action\n dependency-version: '7'\n dependency-type: direct:production\n update-type: version-update:semver-major\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump golangci/golangci-lint-action from 6 to 7",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-04-01T01:31:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b115ab2f977e6ee7c35609cdeff5330f4db3c492",
"body": "ci: use go1.24 for lint/test/release suite",
"is_bot": false,
"headline": "Merge pull request #10 from tjhop/ci/use-go-1.24",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-03-06T21:40:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "abb8247a36f866ab90a3f155929391074f2a5519",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ci: use go1.24 for lint/test/release suite",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-03-06T21:39:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "212cef0d07ff5ae45c2f43aede333ce8019b7411",
"body": "Docs/testable examples",
"is_bot": false,
"headline": "Merge pull request #9 from tjhop/docs/testable-examples",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-02-24T08:01:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bdcffe58c64a8040f61483a660669532dba13c95",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "docs(README): encourage development/contributions",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-02-24T07:35:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5a40d60d316a2a9363b2814de9c99ac0d22320ac",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "docs: add testable examples",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-02-24T07:28:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "685b017dda13a68298cd139406d59b32e644171b",
"body": "Ensure slogtests actually run, and fix implementation to meet its expectations",
"is_bot": false,
"headline": "Merge pull request #8 from dehaansa/comply-with-spec",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-02-21T21:13:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "457ee2c898b8d10291cbd5b9f00835de1d9db112",
"body": "Signed-off-by: Sam DeHaan <sam.dehaan@grafana.com>",
"is_bot": false,
"headline": "update some comments",
"author_name": "Sam DeHaan",
"author_login": "dehaansa",
"committed_at": "2025-02-21T21:07:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "659414def1db5d5fb94c9530b2ad0bb23234998b",
"body": "Signed-off-by: Sam DeHaan <sam.dehaan@grafana.com>",
"is_bot": false,
"headline": "Ensure slogtests actually run, and fix implementation to meet spec",
"author_name": "Sam DeHaan",
"author_login": "dehaansa",
"committed_at": "2025-02-21T21:07:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6a4f9f3e248289821d40cbd44f41f34dd533ce73",
"body": "fix: don't nest empty group keys, better follow slog.Hanlder interface",
"is_bot": false,
"headline": "Merge pull request #6 from tjhop/fix/no-nesting-empty-group-keys",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-01-15T06:52:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "11db26d5a66bf9c78b0fe11f40b1d50e8da63f9d",
"body": "Test snippets to show change:\n\nBefore:\n```\nlevel=info caller=slogtest.go:97 time=2025-01-14T17:36:28.125642737-05:00 msg=msg a=b .G.c=d e=f\n```\n\nAfter:\n```\nlevel=info caller=slogtest.go:97 time=2025-01-14T18:09:01.253906842-05:00 msg=msg a=b G.c=d e=f\n```\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "fix: don't nest empty group keys, better follow slog.Hanlder interface",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-01-15T05:27:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "81c3a7a6a21206687153a386462c99b6b158906d",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ci: fix duplicate yaml key in test workflow",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-01-15T05:26:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a07540efb04fb7d9c5e22e57aeb977ea7b75ddbf",
"body": "ci: add workflow to run tests on PRs",
"is_bot": false,
"headline": "Merge pull request #7 from tjhop/ci/add-pr-tests",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-01-15T05:19:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c9e45612783274b2693e7c7533e2d72ee45dae18",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ci: add workflow to run tests on PRs",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-01-15T05:17:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b7c1bf34b099c866ae5a07a46869f5f2e5564c55",
"body": "test: use require more",
"is_bot": false,
"headline": "Merge pull request #5 from tjhop/test/use-require-more",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-01-11T21:10:57Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "71eb92efe42d5e41cb759d52d306a96f6b62725e",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "test: use require more",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-01-11T21:09:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8dfe7b45348327411504ad317200e75bddff4eb0",
"body": "test: use separate pkg for tests, enforce testing public interface",
"is_bot": false,
"headline": "Merge pull request #4 from tjhop/test/separate_pkg",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-01-02T02:04:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ec803dde1338af7f6d17fc32dfc6bd94952f3114",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "test: use separate pkg for tests, enforce testing public interface",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2025-01-02T02:03:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c5558d308436066c276730463ddd98eb70a4413e",
"body": "Docs",
"is_bot": false,
"headline": "Merge pull request #3 from tjhop/docs",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-12-05T04:55:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5da4124ef43b6d745d4d5c62b17ff84438d8d0b3",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "docs(README): add link to go mod docs",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-12-05T04:54:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "87c47dbd0f7c85bd36a59a4348579fc413449ad5",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "docs(README): add badgez",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-12-05T04:54:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "82c73cc09001a8cda17a484df2416e49ca5f69ac",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "docs: fix typo in README",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-28T04:23:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45a1565ca22fecacfac560cee8639e33df9ce9c5",
"body": "…etchr/testify-1.10.0\n\nbuild(deps): Bump github.com/stretchr/testify from 1.9.0 to 1.10.0",
"is_bot": false,
"headline": "Merge pull request #2 from tjhop/dependabot/go_modules/github.com/str…",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-27T04:12:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "63e5ba01ff2a205eb4769acba2f0a54f678d5f84",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "docs: add godocs",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-26T14:27:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d9b1eafde23faf7968d9d761cf8078b3e01f8dd3",
"body": "Bumps [github.com/stretchr/testify](https://github.com/stretchr/testify) from 1.9.0 to 1.10.0.\n- [Release notes](https://github.com/stretchr/testify/releases)\n- [Commits](https://github.com/stretchr/testify/compare/v1.9.0...v1.10.0)\n\n---\nupdated-dependencies:\n- dependency-name: github.com/stretchr/testify\n dependency-type: direct:production\n update-type: version-update:semver-minor\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): Bump github.com/stretchr/testify from 1.9.0 to 1.10.0",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2024-11-25T01:23:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "705216fd7e714e1bb20feb67e3b2c40a2d65aac2",
"body": "Because these methods were not persisting the level in the GoKitHandler\nthrough to the new handler, the level would be unset in later log calls,\nresulting in the level dropping back to info by default.\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "fix: retain level when using WithAttrs/WithGroup",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-22T15:39:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b8eba7d306ab8eacae185ed403ffef3581c89f6a",
"body": "We still return the concrete implementation in the actual return call,\nbut the signature should ensure better compatibility with slog.\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ref: have NewGoKitHandler() return slog.Handler interface type",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T18:23:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3ba86d08a1ea6cb49827ca99af365e0215b971a",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ref: switch pointer receiver for GoKitHandler",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T18:20:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "284c7f214bbd493157c2b2c40e13e0df6de237ad",
"body": "This was previous iterations where testing was done with a Mock and\nwhere non-deterministic output couldn't be used. Tests are now using\nboth the slogtest suite as well as other custom testing that supports\ntimestamps.\n\nSigned-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "test: remove dropTimestamp option that was used for old test consistency",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T14:35:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40f1ad47fd59d4c9ca8ccb42a55dd52320fe8190",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "build(deps): bump go-logfmt to v0.6.0",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T05:55:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c188d0ee2e75d4f98b7affcfb7006bbdea06323c",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "chore: add Apache 2 license",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T05:37:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9bebb3c80849984577922afe710eae9703a72b0a",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "docs: add README",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T05:32:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c8ae2b125142b57d139318260355e7a828f308c0",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "ci: add dependabot, github actions for lint/test/release",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T04:57:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59ab696d7591b5903aee9e2e5445617da8b46c24",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "build: add goreleaser config",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T04:57:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c0c1c46aaf0f6db371e4cb3ab42e6e133cda3ff6",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>",
"is_bot": false,
"headline": "build: add Makefile",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T04:57:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b75987fc0ee781e0b4b4e7998f20afb253cad2f",
"body": "Signed-off-by: TJ Hoplock <t.hoplock@gmail.com>\nSigned-off-by: Arve Knudsen <arve.knudsen@gmail.com>",
"is_bot": false,
"headline": "feat: init custom slog Handler to wrap go-kit Logger",
"author_name": "TJ Hoplock",
"author_login": "tjhop",
"committed_at": "2024-11-20T04:57:00Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 9,
"commits_last_year": 48,
"latest_release_at": "2026-07-19T03:40:09Z",
"latest_release_tag": "v0.2.1",
"releases_from_tags": false,
"days_since_last_push": 1,
"active_weeks_last_year": 14,
"days_since_latest_release": 6,
"mean_days_between_releases": 75.7
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 42,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "github.com/tjhop/slog-gokit",
"exists": true,
"license": null,
"keywords": [],
"ecosystem": "go",
"matches_repo": true,
"registry_url": "https://pkg.go.dev/github.com/tjhop/slog-gokit",
"is_deprecated": false,
"latest_version": "v0.2.1",
"repository_url": "https://github.com/tjhop/slog-gokit",
"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-19T02:57:59Z",
"latest_version_yanked": null,
"days_since_latest_publish": 6
}
]
},
"popularity": {
"forks": 2,
"stars": 6,
"watchers": 1,
"fork_history": {
"days": [
{
"date": "2024-11-25",
"count": 1
},
{
"date": "2025-02-21",
"count": 1
}
],
"complete": true,
"collected": 2,
"total_forks": 2
},
"star_history": null,
"open_issues_and_prs": 0
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"Makefile"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [
"go.mod"
],
"largest_source_bytes": 18269,
"source_files_sampled": 8,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"go.mod"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 6,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [
"go"
],
"dependencies": [
{
"name": "github.com/go-kit/log",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.2.1"
},
{
"name": "github.com/go-logfmt/logfmt",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v0.6.1"
},
{
"name": "github.com/stretchr/testify",
"manifest": "go.mod",
"ecosystem": "go",
"version_constraint": "v1.11.1"
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "github.com/go-kit/log",
"direct": true,
"version": "0.2.1",
"ecosystem": "go"
},
{
"name": "github.com/go-logfmt/logfmt",
"direct": true,
"version": "0.6.1",
"ecosystem": "go"
},
{
"name": "github.com/stretchr/testify",
"direct": true,
"version": "1.11.1",
"ecosystem": "go"
},
{
"name": "github.com/davecgh/go-spew",
"direct": false,
"version": "1.1.1",
"ecosystem": "go"
},
{
"name": "github.com/pmezard/go-difflib",
"direct": false,
"version": "1.0.0",
"ecosystem": "go"
},
{
"name": "gopkg.in/yaml.v3",
"direct": false,
"version": "3.0.1",
"ecosystem": "go"
}
],
"collected": true,
"truncated": false,
"total_count": 6,
"direct_count": 3,
"indirect_count": 3
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 30,
"open_issues": 0,
"closed_ratio": null,
"closed_issues": 0,
"closed_unmerged_prs": 4
},
"bus_factor": 1,
"bot_contributors": 1,
"top_contributors": [
{
"type": "User",
"login": "tjhop",
"commits": 72,
"avatar_url": "https://avatars.githubusercontent.com/u/33664289?v=4"
},
{
"type": "User",
"login": "MissingRoberto",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/1674893?v=4"
},
{
"type": "User",
"login": "aknuds1",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/281303?v=4"
},
{
"type": "User",
"login": "dehaansa",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/563558?v=4"
}
],
"contributors_sampled": 4,
"top_contributor_share": 0.9
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"golangci-lint.yaml",
"release.yml",
"tests.yaml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"go.sum"
],
"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": 5,
"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": 10,
"reason": "11 out of 11 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": 4,
"reason": "Found 4/9 approved changesets -- score normalized to 4",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 3,
"reason": "project has 1 contributing companies or organizations -- score normalized to 3",
"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": 10,
"reason": "update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 10,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 10,
"reason": "12 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": 10,
"reason": "packaging workflow 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": "a4820a1db3f0dd484b8ed521de67e5f951d6d725",
"ran_at": "2026-07-25T18:13:50Z",
"aggregate_score": 5.9,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": true
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-24T02:46:13Z",
"oldest_open_prs": [],
"last_merged_pr_at": "2026-07-24T02:45:39Z",
"ci_last_conclusion": "SUCCESS",
"oldest_open_issues": []
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/tjhop/slog-gokit",
"host": "github.com",
"name": "slog-gokit",
"owner": "tjhop"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 60,
"inputs": {
"security": 67,
"vitality": 79,
"community": 29,
"governance": 59,
"engineering": 61
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "good",
"name": "Vitality",
"value": 79,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "good",
"name": "Development activity",
"note": null,
"notes": [],
"value": 71,
"inputs": {
"commits_last_year": 48,
"human_commit_share": 0.879,
"days_since_last_push": 1,
"active_weeks_last_year": 14
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 1 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 1
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "14/52 weeks with commits",
"points": 9.7,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 14
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "48 commits in the last year",
"points": 15.2,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 48
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "12 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "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": 9,
"latest_release_tag": "v0.2.1",
"releases_from_tags": false,
"days_since_latest_release": 6,
"mean_days_between_releases": 75.7
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "9 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 9
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 6 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 6
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~75.7 days",
"points": 19.8,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 75.7
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 1,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 1 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 1
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "critical",
"name": "Community & Adoption",
"value": 29,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 11,
"inputs": {
"forks": 2,
"stars": 6,
"watchers": 1,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "6 stars",
"points": 11.3,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 6
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "2 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 2
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "1 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 1
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "moderate",
"name": "Community health",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": false,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"components": [
{
"key": "readme",
"name": "README",
"detail": null,
"points": 22.5,
"status": "met",
"details": [],
"max_points": 22.5
},
{
"key": "license",
"name": "License",
"detail": "recognized license (Apache-2.0)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "Apache-2.0"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 59,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "critical",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 20,
"inputs": {
"bus_factor": 1,
"contributors_sampled": 4,
"top_contributor_share": 0.9
},
"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 90% of commits",
"points": 2.2,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 90
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "4 contributors",
"points": 5.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 4
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 3,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": "Excluded from scoring (no data or not applicable): Issue resolution. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"issue_resolution"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 75,
"inputs": {
"merged_prs": 30,
"open_issues": 0,
"closed_issues": 0,
"issue_closed_ratio": null,
"closed_unmerged_prs": 4
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "no issues or no data",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_issues_or_data",
"params": {}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "30/34 decided PRs merged",
"points": 33.8,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 30,
"decided": 34
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 4/9 approved changesets -- score normalized to 4",
"points": 6,
"status": "partial",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": "Excluded from scoring (no data or not applicable): Verified domain. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"verified_domain"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 57,
"inputs": {
"followers": 29,
"owner_type": "User",
"is_verified": null,
"owner_login": "tjhop",
"public_repos": 75,
"account_age_days": 3175
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "personal (user) account",
"points": 10,
"status": "partial",
"details": [
{
"code": "owner_personal",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": "not applicable to user accounts",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_applicable_to_user_accounts",
"params": {}
}
],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "29 followers of tjhop",
"points": 10.6,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 29,
"login": "tjhop"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "75 public repos, account ~8 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 75
}
},
{
"code": "account_age_years",
"params": {
"years": 8
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"github.com/tjhop/slog-gokit"
],
"ecosystems": "go",
"any_deprecated": false,
"min_days_since_publish": 6
},
"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 6 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 6
}
}
],
"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": "moderate",
"name": "Engineering Quality",
"value": 61,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "moderate",
"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": "3 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 3
}
}
],
"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": "11 out of 11 merged PRs checked by a CI test -- score normalized to 10",
"points": 20,
"status": "met",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 50,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": null,
"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": null,
"points": 0,
"status": "missed",
"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": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "moderate",
"name": "Security",
"value": 67,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "moderate",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Signed-Releases. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"signed_releases"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 59,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 17,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 1,
"scorecard_aggregate": 5.9
},
"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": 3.8,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "11 out of 11 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 4/9 approved changesets -- score normalized to 4",
"points": 3,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 1 contributing companies or organizations -- score normalized to 3",
"points": 0.8,
"status": "partial",
"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": "update tool detected",
"points": 7.5,
"status": "met",
"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": "12 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow detected",
"points": 5,
"status": "met",
"details": [],
"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": "dependency_advisories",
"band": "excellent",
"name": "Dependency advisories",
"note": "Excluded from scoring (no data or not applicable): Indirect dependencies free of known advisories, No advisories left outstanding. Remaining weights renormalized. Matched 6 resolved dependencies against OSV. This repository publishes no package the index resolves, so the repository dependency graph was assessed instead. That graph mixes development and test pins with shipped dependencies, so only the declared runtime dependencies are scored; transitive findings are reported as context and excluded from the score. Reachability is not analyzed.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"indirect_dependencies_free_of_known_advisories",
"no_advisories_left_outstanding"
]
}
},
{
"code": "weights_renormalized",
"params": {}
},
{
"code": "advisories_scope_repository",
"params": {
"assessed": 6
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 6,
"unassessed_packages": 0,
"affected_by_severity": "none",
"direct_affected_packages": 0
},
"components": [
{
"key": "direct_dependencies_free_of_known_advisories",
"name": "Direct dependencies free of known advisories",
"detail": "no direct dependency carries a known advisory",
"points": 35,
"status": "met",
"details": [
{
"code": "no_direct_advisories",
"params": {}
}
],
"max_points": 35
},
{
"key": "indirect_dependencies_free_of_known_advisories",
"name": "Indirect dependencies free of known advisories",
"detail": "transitive set not separable from development and test dependencies in this scope",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_scope_not_separable",
"params": {}
}
],
"max_points": 25
},
{
"key": "no_advisories_left_outstanding",
"name": "No advisories left outstanding",
"detail": "no advisory carries a publication date",
"points": 0,
"status": "excluded",
"details": [
{
"code": "advisories_no_publication_date",
"params": {}
}
],
"max_points": 40
}
]
},
{
"key": "malicious_dependencies",
"band": "excellent",
"name": "Malicious dependencies",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"source": "osv",
"meaning": "reported as a malicious package by the OpenSSF corpus; the remedy is removal or moving off the compromised name, never an upgrade of the same artifact. Versions the registry has since pulled are listed but not scored",
"packages": [],
"red_flag": false,
"assessed_packages": 6,
"malicious_packages": 0,
"direct_malicious_packages": 0,
"withdrawn_malicious_packages": 0,
"installable_malicious_packages": 0
},
"components": [
{
"key": "no_dependency_reported_as_a_malicious_package",
"name": "No dependency reported as a malicious package",
"detail": "no dependency is reported as a malicious package",
"points": 100,
"status": "met",
"details": [
{
"code": "no_malicious_dependencies",
"params": {}
}
],
"max_points": 100
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "excellent",
"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"
],
"review_only_matches": 0,
"assessed_self_published_locations": 4
},
"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": 64,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.963,
"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": "77 of 80 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 77,
"sampled": 80
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "moderate",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 69,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"go.sum"
],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [
"go.mod"
],
"dependency_bot_commit_share": 0.121
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "Makefile",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "Makefile"
}
}
],
"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": "lockfile",
"points": 10,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "lockfile"
}
}
],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 91",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 91
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "11 of the last 91 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 11,
"sampled": 91
}
}
],
"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": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "Go",
"largest_source_bytes": 18269,
"source_files_sampled": 8,
"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/8 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 8,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? An independent, experimental badge — weight 0.0, so it is surfaced on its own and does not affect the overall health score."
}
],
"metrics_version": "1.13.0"
},
"warnings": [
"Star history unavailable: GitHub GraphQL error: Resource not accessible by personal access token"
],
"report_type": "repository",
"generated_at": "2026-07-25T18:14:05.339720Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/t/tjhop/slog-gokit.svg",
"full_name": "tjhop/slog-gokit",
"license_state": "standard",
"license_spdx": "Apache-2.0"
}