Звіт у форматі JSON машиночитний
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 247,
"has_wiki": true,
"homepage": null,
"languages": {
"Ruby": 93740
},
"pushed_at": "2026-07-25T13:30:46Z",
"created_at": "2016-10-17T11:49:19Z",
"owner_type": "User",
"updated_at": "2026-07-25T13:30:54Z",
"description": "Finds the canonical version of a URL",
"is_archived": false,
"is_disabled": false,
"license_spdx": "MIT",
"default_branch": "main",
"license_spdx_raw": "MIT",
"primary_language": "Ruby",
"significant_languages": [
"Ruby"
]
},
"owner": {
"blog": "https://www.dominicsayers.com",
"name": "Dominic Sayers",
"type": "User",
"login": "dominicsayers",
"company": null,
"location": "London",
"followers": 38,
"avatar_url": "https://avatars.githubusercontent.com/u/34939?v=4",
"created_at": "2008-11-17T10:41:16Z",
"is_verified": null,
"public_repos": 41,
"account_age_days": 6459
},
"license": {
"state": "standard",
"spdx_id": "MIT",
"raw_spdx": "MIT",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2026-07-18T10:50:12Z"
}
],
"recent_commits": [
{
"oid": "27e154aeb2c09b28ceca42296746227f6925e75d",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-25T13:30:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f052600dbae08235df8278933667b3158b6c05a5",
"body": null,
"is_bot": false,
"headline": "chore: release version 2.0.0",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T13:25:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e17194c3a891e3145a78886a2c3d01c8e99f4faf",
"body": "Dropping the matrix changed the analysis configuration identity from\nanalyze/language:ruby, so pull request runs warned that a\nconfiguration present on main was not found. The matrix and explicit\ncategory are restored, keeping the no-build simplification for\ninterpreted Ruby.",
"is_bot": false,
"headline": "ci: Restore the CodeQL language matrix",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "740cd1f943337e8df5faf65939f9f9fa411bfd92",
"body": "CodeQL cannot see that SCHEME is a Regexp, so it treated\nSCHEME.match?(url) as a possible String#match?, where the URL string\nwould be converted to a regular expression, and raised a high-severity\nincomplete-hostname-regexp alert (a false positive). Making the URL\nthe receiver is equivalent and unambiguous: a string matched against a\nregexp literal is never itself interpreted as a pattern.",
"is_bot": false,
"headline": "refactor(uri): Match the URL against the scheme pattern, not vice versa",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dfa8d0580ae826a729020d4e5fd7ebfe49f224c8",
"body": "Every user-visible change from the milestone gets an Unreleased entry\nwith its issue link, so the release notes for 2.0.0 are ready for the\nrelease ceremony to promote.",
"is_bot": false,
"headline": "docs: Record the v2.0.0 milestone changes in the changelog",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98f26d458d157f4f4c7a8b0e8d71f8b12316a196",
"body": "The README claimed the result was normalized, but the code never\nnormalized anything, and the scheme heuristic treated any colon in the\nURL as a scheme. URLs are now normalized per RFC 3986 via\nAddressable::URI#normalize — lowercase scheme and host, punycode\nhosts, uppercase percent-encodings with u\n[…]\nion table are documented in the README and\ncovered by table-driven fixtures.\n\nBREAKING CHANGE: returned URLs are normalized (for example an empty\npath becomes /) and fragments are stripped\n\nFixes #187",
"is_bot": false,
"headline": "feat!: Define and test URL normalization and canonicalization semantics",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "e1f03494a39b25bb5f92fba30ad0df025fa5b63f",
"body": "Requiring url_canonicalize previously patched String, URI::HTTP,\nURI::HTTPS and Addressable::URI globally, and network behaviour was\nhard-coded. The primary API is now URLCanonicalize::Client, whose\noptions are validated and frozen at construction so one client can be\nshared safely. Request headers,\n[…]\n no longer\npatches anything.\n\nBREAKING CHANGE: core extensions require url_canonicalize/core_ext,\nURLCanonicalize.fetch returns a Result, and DEBUG logging is replaced\nby the logger option\n\nFixes #186",
"is_bot": false,
"headline": "feat!: Add a configurable client API and make core extensions opt-in",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "bec34d59a6053632ee15cffdb1984b517c2b997e",
"body": "SonarQube rule S7816 requires require statements to appear at the top\nof the file before any class or module definitions. Requiring\nsimplecov unconditionally and keeping only SimpleCov.start behind the\nNO_SIMPLECOV switch satisfies the rule without changing behaviour:\ncoverage still starts before th\n[…]\n-a-string\noffences were in the bin/release specs that moved to the\nrelease_ceremony gem, and the requires trailing lib/url_canonicalize.rb\ndisappear with the opt-in core extensions (#186).\n\nFixes #194",
"is_bot": false,
"headline": "style: Load spec dependencies before any module definitions",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "cbb32a298e95264a9d506ca7de8bd50d32eea9d7",
"body": "Ruby 3.1 and 3.2 are end-of-life, so the supported floor moves to 3.3\nfor the next major release. GitHub Actions now runs the test suite and\nRuboCop on Ruby 3.3, 3.4, and 4.0 with Bundler caching, and the\nrelease workflow requires both the test matrix and the gem\nverification job. The CodeQL workflo\n[…]\nt workflow badge) and the\nCircleCI-specific JUnit formatter. bundle exec rake now runs the tests\nand RuboCop by default in a clean checkout.\n\nBREAKING CHANGE: Ruby 3.3 or later is required\n\nFixes #188",
"is_bot": false,
"headline": "build!: Modernize supported Ruby versions and continuous integration",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "72223f22901f5b9e624cbc62d43619e38e5da738",
"body": "All eleven open Dependabot alerts (one high, three moderate, seven\nlow) are nokogiri advisories in the locked 1.18.9, covering ReDoS in\nthe CSS tokenizer, several use-after-free bugs, and an XSLT memory\nleak. Version 1.19.4 patches every alert; the gemspec constraint\n(>= 1.13) is unchanged, so users are free to choose their own patched\nversion.\n\nFixes #210",
"is_bot": false,
"headline": "build: Update nokogiri to 1.19.4 to fix Dependabot alerts",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b39f371590f0ab07ee19446b0cbeada60e5025c7",
"body": "Remove .rubocop_todo.yml so every check runs against the live\nconfiguration. Genuine offenses are fixed in the specs: contexts get\nwhen/with prefixes, stubs that only configure responses use allow\ninstead of expect, and the response spec describes the Response\nnamespace so its path matches. The deli\n[…]\nte spec limits the to-do\nfile was masking (example length, expectations per example, message\nspy style) become explicit policy in .rubocop.yml, matching the\nrelease_ceremony configuration.\n\nFixes #198",
"is_bot": false,
"headline": "style: Fix all outstanding RuboCop to-do offenses",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "d21f2a4241cd1d7341dde6fa7adbc3862f9f091d",
"body": "The project has an active SonarQube Cloud account analysing every\nchange, so surface the quality gate status alongside the other badges.\n\nFixes #196",
"is_bot": false,
"headline": "docs: Add the SonarQube quality gate badge to the README",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1a21dbcf8c1c8b3cdab9cee4add029ee99df0cb6",
"body": "The CodeClimate account is no longer active and cannot be reactivated,\nso its analysis never runs. SonarQube Cloud provides the same kind of\nmaintainability feedback.\n\nFixes #195",
"is_bot": false,
"headline": "meta: Remove CodeClimate configuration",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "12bf8899fcd4d529187b258fea26c7e4affb289e",
"body": "RuboCop runs in CI and SonarQube Cloud reviews pull requests, so the\nHound service is redundant and no longer used.\n\nFixes #211",
"is_bot": false,
"headline": "meta: Remove Hound configuration",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d819e2ae3e641502115d3a72b631a302f5f08e53",
"body": "RuboCop suggested its Rake extension on every run because the bundle\ncontains rake. Loading the plugin lints the Rakefile and silences the\nsuggestion tip.\n\nFixes #208",
"is_bot": false,
"headline": "build: Add the rubocop-rake plugin",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ee3da3a4ce6bcd2ba5339265d78b39df8b44d9af",
"body": "The prepare and publish release commands now come from the\nrelease_ceremony gem they were extracted into. The gem detects the\ngem name, repository URL, and release file paths from the gemspec;\n.release_ceremony.yml overrides only the verification commands so\nthey run through mise. The release ceremony itself is unchanged, and\nthe commands become\n`bundle exec release_ceremony prepare|publish VERSION`.\n\nDelivers #212",
"is_bot": false,
"headline": "build: replace the bin/release scripts with the release_ceremony gem",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-25T12:21:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1e9658528f1a33c4f2070d510b1a6a1648d5a52c",
"body": null,
"is_bot": false,
"headline": "chore: release version 1.0.2",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-24T09:53:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e57b37f91bb06a9207ded8e184738685a381f333",
"body": "(except for sibling headings)",
"is_bot": false,
"headline": "build: allow duplicate headings in Markdown files",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-24T09:43:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f34817df38a1a801f96ab554774ed4473eee184b",
"body": null,
"is_bot": false,
"headline": "chore: update release notes for 1.0.2",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-24T09:43:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "12ccb6d3f230cdd02e95d3c20fbe6bb7a4607d69",
"body": null,
"is_bot": false,
"headline": "feat: explain what we're doing in prepare",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-23T07:57:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "72578876d2d178406557a30f4749e1d9e2a0462e",
"body": null,
"is_bot": true,
"headline": "chore(deps): update ruby/setup-ruby action to v1.321.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-23T07:52:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "85fe34ef07f545dc6fe10cc25b955bc45b888cfd",
"body": null,
"is_bot": false,
"headline": "fix: add `rake` to the bundle",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-22T18:09:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0b5ebb100e9bfed68cda0ebd1f7408cfc84f41c",
"body": null,
"is_bot": false,
"headline": "chore: prepare for release v1.0.1",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-22T17:28:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f9b66a33ea8d755cfa21315d7cecaa4cca907d02",
"body": null,
"is_bot": true,
"headline": "chore(deps): update ruby/setup-ruby action to v1.320.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-22T17:14:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "78d69a04fff5d1fac6fdbb07b891d9cea2bcdec7",
"body": null,
"is_bot": true,
"headline": "chore(deps): update actions/checkout action to v7.0.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-22T17:14:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e00fa96d4f26884a1e553074d1dc1d761403f70",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency ruby to v4",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-22T17:14:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fa35eb7f21549fa39f2c859578a25df43087193c",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency ruby to v3.4.10",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-22T17:12:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b080379c8f979a3f49194a0d2978a52d6967f466",
"body": "The CI coverage gate requires 100% line and branch coverage, which the\nrelease tooling missed: subprocess-only entry guards, defensive rescue\npaths, and guard-clause branches were untracked. Mark the entry guards\n:nocov: (they are verified end to end by the entry point specs) and cover\nevery remaining line and branch with behavioural specs. Run the Runner\nspecs' real subprocesses outside Bundler's environment so mismatched\nRubyGems versions on CI cannot write warnings to the job output.",
"is_bot": false,
"headline": "test(release): Restore full CI coverage and silence subprocess warnings",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-22T17:12:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f24386dd592e3273926dd54209a42b8e1bc567e5",
"body": "The entry-point specs assert an empty stderr, but the child process\ninherited RUBYOPT=-rbundler/setup, and on CI the image's bundler version\nclashes with Ruby 3.3's RubyGems, emitting constant-redefinition warnings\nto stderr. Spawn the executables with Bundler.with_unbundled_env so the\nstdlib-only scripts run free of Bundler's environment everywhere.",
"is_bot": false,
"headline": "test(release): Isolate release executables from Bundler's environment",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-22T17:12:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac3be512f0c738aceee57e36a2e879ab0d3041a4",
"body": null,
"is_bot": false,
"headline": "build: release tooling",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-22T17:12:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cd731bb094edae919af8dce631dc4613f07de657",
"body": null,
"is_bot": false,
"headline": "fix: bad test expectation in request_spec.rb",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-18T14:01:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "46b10707e96f1764275d5f9d6c0e38e0b32de5f5",
"body": "Pin the development runtime and dependencies to versions supported by\nthe gem's declared Ruby 3.1 compatibility floor.\n\nRegenerate the lockfile with Bundler 2.5.15 so Ruby 3.1 CI can install\nthe bundle and run the complete test suite.\n\nWe're not planning to deprecate Ruby 3.1 until v2 so we need to ensure\ncompatibility with the current stable release of Ruby 3.1.x",
"is_bot": false,
"headline": "build: Restore Ruby 3.1 development compatibility",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-18T14:01:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "24a17c06d2bd7c713543b436859440ea69a4ace3",
"body": "Classify spec/ as test code for SonarCloud analysis so test-data\nliterals are not reported as production issues. Pin third-party\nGitHub Actions to full commit SHAs, prefer extend self over\nmodule_function (aligning RuboCop's Style/ModuleFunction with\nSonarCloud S7918), read DEBUG via ENV.fetch and raise a specific\nexception class in the streaming spec.\n\nThe remaining hardcoded-IP findings in destination.rb are the\nintentional SSRF deny-list and should be accepted in SonarCloud.",
"is_bot": false,
"headline": "chore: address SonarCloud findings",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-18T14:01:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6fb696ae4007d6c843e297c027dadfce0ef4b1a3",
"body": "Package a deterministic whitelist of runtime code and user-facing\ndocumentation instead of the git ls-files shell-out, and add RubyGems\nmetadata for the source code, bug tracker, changelog and documentation\nlinks while retaining rubygems_mfa_required.\n\nVerify the built gem in CI: a reusable workflow\n[…]\nservices on the default branch and document supported Rubies,\nthe error hierarchy and the core-class extensions. Add SECURITY.md\nand CONTRIBUTING.md with reporting and release procedures.\n\nCloses #190",
"is_bot": false,
"headline": "build: refresh gem packaging, release automation and documentation",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-18T14:01:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "f1f9f1c43247de0663d7feb729deeeb33077b94c",
"body": "Remove coveralls-ruby, which constrained SimpleCov to 0.16.1 and caused\nRenovate to open misleading SimpleCov lockfile updates, and move to a\ncurrent SimpleCov release with branch coverage enabled. Enforce 100%\nline and branch coverage on CI runs so regressions fail the build.\n\nExercise redirect cha\n[…]\nders guard always truthy, dumping response headers for any\nDEBUG value; fix it with casecmp? and cover both behaviors. Replace\nthe unreachable branch in URI.parse with a validate! helper.\n\nCloses #189",
"is_bot": false,
"headline": "test: refresh the test and coverage strategy",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-18T14:01:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "2ffc5dcca10a86a4e6bc6efa783cf591cca07de4",
"body": "Follow all 3xx responses (301, 302, 303, 307, 308) through their\nLocation header instead of treating temporary redirects as successes,\nand report redirections without a usable Location as failures.\n\nGovern redirects and followed canonical links with one visited-URL set\nand one hop budget so every cy\n[…]\nspecific HEAD workaround with a documented generic\nfallback that retries a HEAD rejected with 403, 405 or 501 as a GET,\nand preserve underlying exceptions as the cause of raised failures.\n\nCloses #185",
"is_bot": false,
"headline": "fix(http): correct the redirect and canonical-link state machine",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-18T14:01:05Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "76db389e781ea052103c5ad4b70dfe4481b06a3e",
"body": "Verify TLS certificates and validate every redirect or canonical\ndestination before connecting. Pin approved DNS results, reject unsafe\nnetwork ranges, and enforce response-size and operation deadlines.\n\nDocument the new security defaults and configurable escape hatches.\n\nFixes #184",
"is_bot": false,
"headline": "fix(security): Harden URL fetching",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-18T14:01:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7626c689b7548a89c8f5464b5655ed9cded26068",
"body": null,
"is_bot": false,
"headline": "chore: minor gem update",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-18T14:01:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3586a3595f55b5d152b432da4bac69c91a4735ac",
"body": null,
"is_bot": false,
"headline": "feat: use mise",
"author_name": "Dominic Sayers",
"author_login": "dominicsayers",
"committed_at": "2026-07-18T14:01:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "37e08e9a40347992cecfca6b6d9f2ac4528d5c63",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-15T08:18:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "dded80129aa40bbfba3ce71729315731dd306415",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.88.2",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-10T14:55:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b4e20be23d458bbc6967c1312a72d6abd1a99bc7",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.88.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-07-02T08:40:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba5739ab17caaecded8c1b161c039205da1a2dbc",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-06-24T10:02:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c596aa7b4a271e5957d9d4ac79ffe708f577215e",
"body": null,
"is_bot": true,
"headline": "chore(deps): update actions/checkout action to v7",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-06-22T08:13:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "21406a0b472ee51f8142f71d4c43b33ce2848f58",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.88.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-06-16T08:27:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b29bd3cd6c74fa5564c9b79da8a7f10069363cfc",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-06-13T16:10:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fe2b901f28f9fcb6d1981f46f41aac215fac8582",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop-rspec to v3.10.2",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-06-08T09:49:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca4c93ab7785c534e055f2cc93b29fc69b09221b",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop-rspec to v3.10.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-06-05T16:56:28Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "431ad59fe6e16633659465973574f2999c1e56bd",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop-rspec to v3.10.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-06-05T11:30:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c114619c776ea7b15ae832f4c428eb1df2da04b0",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-06-03T12:17:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f577cd402cbe35e829dfd43b53ed5766f677f65f",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.87.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-06-02T13:23:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9607b56505ab80204c0192773863aec0b22f91a1",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-05-29T08:10:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "98f5e15776fcf70e9430b790547f9b9080ff8310",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-05-29T08:06:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09654dd437b85a77922d42241f69816c3a1d88d0",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.86.2",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-05-14T15:26:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1e49ae0cdf1eaad729796be7698c8cb2a6885e17",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-05-11T10:59:54Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4ec661608c0c3df39811ccdde8f695923bf7ca6",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-04-21T14:37:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e2a6dbdcf3000a9a48067e63284a253165b03cd8",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.86.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-04-12T16:52:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8e229e14227af8070ff09499ab25982ca5258b97",
"body": "Bumps [addressable](https://github.com/sporkmonger/addressable) from 2.8.9 to 2.9.0.\n- [Changelog](https://github.com/sporkmonger/addressable/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/sporkmonger/addressable/compare/addressable-2.8.9...addressable-2.9.0)\n\n---\nupdated-dependencies:\n- dependency-name: addressable\n dependency-version: 2.9.0\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump addressable from 2.8.9 to 2.9.0",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2026-04-08T08:10:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea43d80f1c4458002a397eb7f1101dfe675e77be",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.86.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-03-26T10:58:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bdad3221884945876ea1e40fab19c4bcd0c74663",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-03-26T10:52:39Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbe352d3808a0ad256bbbd49999e47dd6ca435d6",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-03-18T17:31:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "871d4ad346d04876fac2627b7d3e6b014b4f1e87",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency webmock to v3.26.2",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-03-18T08:57:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e8240e9e1ec9566c3f251b89ca7de7517e7d7bbc",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-03-13T11:22:43Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "45389e2f3aa8444b1cac631f4313686b88ac3c91",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.85.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-03-08T12:10:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2ca8eccf8c296ef17f3e3cbb8c7f0db6b4eb635e",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.85.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-02-27T15:11:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a207f018580f80aea52d01faf196fed9ef02bcd7",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.84.2",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-02-12T11:38:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c3fc3bf83803ece9d70b5b23848fa1e1a358feb1",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.84.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-02-03T11:46:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4312a8bb22b044de0fdae50b81ca9be895632b7f",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-02-03T11:44:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb0231f64c5e347a57325dd9f21a54f6169c73e6",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.84.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-01-27T11:41:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "00fe28ece3e775f6dee5d72571e39c56f78d14df",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop-rspec to v3.9.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2026-01-08T08:34:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af62ac53604edeeec8ecde7c96568c9ccc0f733d",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.82.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-12-29T10:42:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38fda19ca2bdb59fbf679145cf794c89be8c660d",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.82.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-12-18T16:27:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "534ef02c2c1665f2b5e69dd7ad470ce9a51bbee4",
"body": null,
"is_bot": true,
"headline": "chore(deps): update actions/checkout action to v6",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-11-20T17:34:29Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "657401a2ceb6024fff5276a1f3235656ae4545e6",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop-rspec to v3.8.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-11-12T17:28:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "90b7f2a4bb6c81b6f24106263462942bdf2ad672",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.81.7",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-10-31T12:07:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5458d7ab418d58d992c8a71abac2d79f36cdeafb",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency webmock to v3.26.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-10-30T18:05:15Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "536bcb84049b84b6e56f84ab4d5035a32ed7267b",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency webmock to v3.26.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-10-27T09:16:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbeede81ba3a0df55a40f80cb71fa7825c3aefc1",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rspec to v3.13.2",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-10-22T08:35:07Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b203f0c0f9413a20f0e9495ee9e3093bcd8e8640",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.81.6",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-10-21T09:12:37Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9288f9fb7908b08b72fdeb94d05b304c251b8728",
"body": null,
"is_bot": true,
"headline": "chore(deps): update github/codeql-action action to v4",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-10-08T07:39:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "c4e88f3c7c6c98ba7727f7ca4c928088913760e3",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.81.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-09-26T14:29:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d65d66cce6a95f2a3cf2d0999f53a0f5da0acea9",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.81.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-09-25T13:40:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "76c1aed6267c2fc163d1d970abd9ce39b3f0643d",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-09-18T18:17:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f17a0aad6188b93d0ec63e045b0f48a318c2c7a2",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-09-18T11:52:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "006ae3413b547d518ecb16a71eae54d6ee3d7850",
"body": "Bumps [rexml](https://github.com/ruby/rexml) from 3.4.1 to 3.4.2.\n- [Release notes](https://github.com/ruby/rexml/releases)\n- [Changelog](https://github.com/ruby/rexml/blob/master/NEWS.md)\n- [Commits](https://github.com/ruby/rexml/compare/v3.4.1...v3.4.2)\n\n---\nupdated-dependencies:\n- dependency-name: rexml\n dependency-version: 3.4.2\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps-dev): bump rexml from 3.4.1 to 3.4.2",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-09-18T08:14:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "303f080c5f7395b53179748dfacf52f7137d74bc",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop-rspec to v3.7.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-09-08T07:21:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6c2d25509f487854a4943af0fe0e3d2e2c998c16",
"body": null,
"is_bot": true,
"headline": "chore(deps): update actions/checkout action to v5",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-08-12T07:35:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ea8ee373d0141af4b0fe1d91302d3a65e6adb9dd",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-07-28T11:06:26Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8afc439e1806ef5b327ab4ffa625e9be39324a2",
"body": "Bumps [nokogiri](https://github.com/sparklemotion/nokogiri) from 1.18.8 to 1.18.9.\n- [Release notes](https://github.com/sparklemotion/nokogiri/releases)\n- [Changelog](https://github.com/sparklemotion/nokogiri/blob/main/CHANGELOG.md)\n- [Commits](https://github.com/sparklemotion/nokogiri/compare/v1.18.8...v1.18.9)\n\n---\nupdated-dependencies:\n- dependency-name: nokogiri\n dependency-version: 1.18.9\n dependency-type: direct:production\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps): bump nokogiri from 1.18.8 to 1.18.9",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-07-26T17:09:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2702097da0182be5b8a85eef2f27c38d83758241",
"body": "Bumps [thor](https://github.com/rails/thor) from 1.3.1 to 1.4.0.\n- [Release notes](https://github.com/rails/thor/releases)\n- [Commits](https://github.com/rails/thor/compare/v1.3.1...v1.4.0)\n\n---\nupdated-dependencies:\n- dependency-name: thor\n dependency-version: 1.4.0\n dependency-type: indirect\n...\n\nSigned-off-by: dependabot[bot] <support@github.com>",
"is_bot": true,
"headline": "build(deps-dev): bump thor from 1.3.1 to 1.4.0",
"author_name": "dependabot[bot]",
"author_login": "dependabot[bot]",
"committed_at": "2025-07-26T17:08:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0884c13796098f743646ded1dd6322b6579ba629",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-07-26T17:06:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "19eed9ee6d2c71fc1b1aae029820743c5f984aeb",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-07-17T15:09:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9900da2f57d3b17982f41c8cafb99d598e49fc1c",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.76.2",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-06-17T12:48:44Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a87d6a9cb29be4f596b69026f9ca60b308f226f6",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.76.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-06-09T14:43:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e6a3c60d37f96ebfb937d0da73fd85614d955bf",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.76.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-06-04T08:00:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7d1e2322f2c8696ea299d8e462f9e14f86a1e18e",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.75.8",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-05-29T07:17:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b9e119062f6ffd5f3c7e981d5a3386c26a98708c",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rspec to v3.13.1",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-05-28T08:18:25Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9009daebda0cf6260c19d119da88643606dd2817",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-05-28T08:18:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eb3b89cf3df2bfbc567093826be8bdf69b178282",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency simplecov to v0.22.0",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-05-23T11:41:24Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fbe0b6d785e23f07073c5a13e7b1f739d785415c",
"body": null,
"is_bot": true,
"headline": "chore(deps): update dependency rubocop to v1.75.7",
"author_name": "renovate[bot]",
"author_login": "renovate[bot]",
"committed_at": "2025-05-22T14:35:49Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 1,
"commits_last_year": 74,
"latest_release_at": "2026-07-18T10:50:12Z",
"latest_release_tag": "v1.0.0",
"releases_from_tags": false,
"days_since_last_push": 0,
"active_weeks_last_year": 34,
"days_since_latest_release": 7,
"mean_days_between_releases": null
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": true,
"health_percentage": 71,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": [
{
"name": "url_canonicalize",
"exists": true,
"license": "MIT",
"keywords": [],
"ecosystem": "rubygems",
"matches_repo": true,
"registry_url": "https://rubygems.org/gems/url_canonicalize",
"is_deprecated": false,
"latest_version": "2.0.0",
"repository_url": "https://github.com/dominicsayers/url_canonicalize",
"versions_count": 24,
"total_downloads": 41931,
"dependents_count": null,
"deprecation_note": null,
"maintainers_count": null,
"monthly_downloads": null,
"first_published_at": "2016-10-20T12:16:05.718000Z",
"latest_published_at": "2026-07-25T13:27:08.723000Z",
"latest_version_yanked": null,
"days_since_latest_publish": 0
}
]
},
"popularity": {
"forks": 1,
"stars": 1,
"watchers": 2,
"fork_history": {
"days": [
{
"date": "2016-10-26",
"count": 1
}
],
"complete": true,
"collected": 1,
"total_forks": 1
},
"star_history": null,
"open_issues_and_prs": 3
},
"ai_readiness": {
"has_nix": false,
"example_dirs": [],
"has_llms_txt": false,
"has_dockerfile": false,
"has_mcp_signal": false,
"bootstrap_files": [
"mise.toml"
],
"api_schema_files": [],
"has_devcontainer": false,
"typecheck_configs": [],
"toolchain_manifests": [],
"largest_source_bytes": 21148,
"source_files_sampled": 34,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [
"Gemfile"
],
"advisories": {
"error": null,
"scope": "repository_graph",
"source": "osv",
"findings": [],
"collected": true,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 34,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 2,
"direct_affected_count": 0
},
"ecosystems": [
"rubygems"
],
"dependencies": [
{
"name": "rubocop",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rubocop-rake",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rubocop-rspec",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "gem-release",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "rake",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
},
{
"name": "release_ceremony",
"manifest": "Gemfile",
"ecosystem": "rubygems",
"version_constraint": null
}
],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [
{
"name": "gem-release",
"direct": true,
"version": "2.2.4",
"ecosystem": "rubygems"
},
{
"name": "rake",
"direct": true,
"version": "13.4.2",
"ecosystem": "rubygems"
},
{
"name": "release_ceremony",
"direct": true,
"version": "1.0.1",
"ecosystem": "rubygems"
},
{
"name": "rubocop",
"direct": true,
"version": "1.88.2",
"ecosystem": "rubygems"
},
{
"name": "rubocop-rake",
"direct": true,
"version": "0.7.1",
"ecosystem": "rubygems"
},
{
"name": "rubocop-rspec",
"direct": true,
"version": "3.10.2",
"ecosystem": "rubygems"
},
{
"name": "addressable",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "addressable",
"direct": false,
"version": "2.9.0",
"ecosystem": "rubygems"
},
{
"name": "ast",
"direct": false,
"version": "2.4.3",
"ecosystem": "rubygems"
},
{
"name": "bigdecimal",
"direct": false,
"version": "3.3.1",
"ecosystem": "rubygems"
},
{
"name": "crack",
"direct": false,
"version": "1.0.1",
"ecosystem": "rubygems"
},
{
"name": "diff-lcs",
"direct": false,
"version": "1.5.1",
"ecosystem": "rubygems"
},
{
"name": "hashdiff",
"direct": false,
"version": "1.2.1",
"ecosystem": "rubygems"
},
{
"name": "json",
"direct": false,
"version": "2.21.1",
"ecosystem": "rubygems"
},
{
"name": "language_server-protocol",
"direct": false,
"version": "3.17.0.6",
"ecosystem": "rubygems"
},
{
"name": "lint_roller",
"direct": false,
"version": "1.1.0",
"ecosystem": "rubygems"
},
{
"name": "nokogiri",
"direct": false,
"version": null,
"ecosystem": "rubygems"
},
{
"name": "nokogiri",
"direct": false,
"version": "1.19.4",
"ecosystem": "rubygems"
},
{
"name": "parallel",
"direct": false,
"version": "1.28.0",
"ecosystem": "rubygems"
},
{
"name": "parser",
"direct": false,
"version": "3.3.11.1",
"ecosystem": "rubygems"
},
{
"name": "prism",
"direct": false,
"version": "1.9.0",
"ecosystem": "rubygems"
},
{
"name": "public_suffix",
"direct": false,
"version": "6.0.2",
"ecosystem": "rubygems"
},
{
"name": "racc",
"direct": false,
"version": "1.8.1",
"ecosystem": "rubygems"
},
{
"name": "rainbow",
"direct": false,
"version": "3.1.1",
"ecosystem": "rubygems"
},
{
"name": "regexp_parser",
"direct": false,
"version": "2.12.0",
"ecosystem": "rubygems"
},
{
"name": "rexml",
"direct": false,
"version": "3.4.4",
"ecosystem": "rubygems"
},
{
"name": "rspec",
"direct": false,
"version": "3.13.2",
"ecosystem": "rubygems"
},
{
"name": "rspec-core",
"direct": false,
"version": "3.13.6",
"ecosystem": "rubygems"
},
{
"name": "rspec-expectations",
"direct": false,
"version": "3.13.5",
"ecosystem": "rubygems"
},
{
"name": "rspec-mocks",
"direct": false,
"version": "3.13.6",
"ecosystem": "rubygems"
},
{
"name": "rspec-support",
"direct": false,
"version": "3.13.6",
"ecosystem": "rubygems"
},
{
"name": "rubocop-ast",
"direct": false,
"version": "1.49.1",
"ecosystem": "rubygems"
},
{
"name": "ruby-progressbar",
"direct": false,
"version": "1.13.0",
"ecosystem": "rubygems"
},
{
"name": "simplecov",
"direct": false,
"version": "1.0.2",
"ecosystem": "rubygems"
},
{
"name": "unicode-display_width",
"direct": false,
"version": "2.6.0",
"ecosystem": "rubygems"
},
{
"name": "webmock",
"direct": false,
"version": "3.26.2",
"ecosystem": "rubygems"
}
],
"collected": true,
"truncated": false,
"total_count": 36,
"direct_count": 6,
"indirect_count": 30
}
},
"maintainership": {
"issues": {
"open_prs": 1,
"merged_prs": 186,
"open_issues": 2,
"closed_ratio": 0.905,
"closed_issues": 19,
"closed_unmerged_prs": 7
},
"bus_factor": 1,
"bot_contributors": 2,
"top_contributors": [
{
"type": "User",
"login": "dominicsayers",
"commits": 138,
"avatar_url": "https://avatars.githubusercontent.com/u/34939?v=4"
}
],
"contributors_sampled": 1,
"top_contributor_share": 1
},
"quality_signals": {
"has_ci": true,
"has_tests": true,
"ci_workflows": [
"codeql-analysis.yml",
"release.yml",
"test.yml",
"verify-gem.yml"
],
"has_docs_dir": false,
"linter_configs": [
".rubocop.yml"
],
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [
"Gemfile.lock"
],
"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": 3,
"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": 9,
"reason": "14 out of 15 merged PRs checked by a CI test -- score normalized to 9",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 0,
"reason": "Found 0/8 approved changesets -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 5 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": 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": "30 commit(s) and 16 issue activity found in the last 90 days -- score normalized to 10",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 8,
"reason": "dependency not pinned by hash detected -- score normalized to 8",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#pinned-dependencies"
},
{
"name": "SAST",
"score": 10,
"reason": "SAST tool is run on all commits",
"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": "68bdb74dc3d72fab6435037fb94778fde558151b",
"ran_at": "2026-07-25T13:31:05Z",
"aggregate_score": 7.7,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": true,
"has_security_policy": true,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": "2026-07-25T13:30:52Z",
"oldest_open_prs": [
{
"number": 215,
"created_at": "2026-07-25T13:25:59Z",
"last_comment_at": "2026-07-25T13:26:23Z",
"last_comment_author": "sonarqubecloud"
}
],
"last_merged_pr_at": "2026-07-25T13:30:46Z",
"ci_last_conclusion": null,
"oldest_open_issues": [
{
"number": 18,
"created_at": "2024-01-26T11:55:04Z",
"last_comment_at": null,
"last_comment_author": null
},
{
"number": 212,
"created_at": "2026-07-25T10:35:19Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/dominicsayers/url_canonicalize",
"host": "github.com",
"name": "url_canonicalize",
"owner": "dominicsayers"
},
"metrics": {
"overall": {
"key": "overall",
"band": "moderate",
"name": "Overall health",
"note": null,
"notes": [],
"value": 67,
"inputs": {
"security": 82,
"vitality": 85,
"community": 40,
"governance": 60,
"engineering": 69
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "excellent",
"name": "Vitality",
"value": 85,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "excellent",
"name": "Development activity",
"note": null,
"notes": [],
"value": 86,
"inputs": {
"commits_last_year": 74,
"human_commit_share": 0.33,
"days_since_last_push": 0,
"active_weeks_last_year": 34
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 0 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "push_recency",
"params": {
"days": 0
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "34/52 weeks with commits",
"points": 23.5,
"status": "partial",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 34
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "74 commits in the last year",
"points": 16.8,
"status": "partial",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 74
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "30 commit(s) and 16 issue activity found in the last 90 days -- score normalized to 10",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "good",
"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": 84,
"inputs": {
"releases_count": 1,
"latest_release_tag": "v1.0.0",
"releases_from_tags": false,
"days_since_latest_release": 7,
"mean_days_between_releases": null
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "1 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 1
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 7 days ago",
"points": 36,
"status": "met",
"details": [
{
"code": "release_recency",
"params": {
"days": 7
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "cadence unknown (single release)",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence_unknown",
"params": {}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "no releases found",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "maintained",
"guards": [],
"signals": [],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": null,
"unanswered_open_issues": null,
"days_since_last_merged_pr": null,
"days_since_last_human_commit": 0,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "last human commit 0 days ago",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_maintained",
"params": {
"days": 0
}
}
],
"max_points": 100
}
]
}
],
"description": "Is the project alive — is code being written and are releases shipping?"
},
{
"key": "community",
"band": "at_risk",
"name": "Community & Adoption",
"value": 40,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"forks": 1,
"stars": 1,
"watchers": 2,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "1 stars",
"points": 0,
"status": "missed",
"details": [
{
"code": "stars",
"params": {
"count": 1
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "1 forks",
"points": 0,
"status": "missed",
"details": [
{
"code": "forks",
"params": {
"count": 1
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "2 watchers",
"points": 0,
"status": "missed",
"details": [
{
"code": "watchers",
"params": {
"count": 2
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "good",
"name": "Community health",
"note": null,
"notes": [],
"value": 70,
"inputs": {
"has_readme": true,
"has_license": true,
"has_contributing": true,
"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 (MIT)",
"points": 22.5,
"status": "met",
"details": [
{
"code": "license_standard",
"params": {}
},
{
"code": "license_spdx",
"params": {
"spdx": "MIT"
}
}
],
"max_points": 22.5
},
{
"key": "contributing_guide",
"name": "CONTRIBUTING guide",
"detail": null,
"points": 18,
"status": "met",
"details": [],
"max_points": 18
},
{
"key": "code_of_conduct",
"name": "Code of conduct",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 13.5
},
{
"key": "issue_template",
"name": "Issue template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.2
},
{
"key": "pr_template",
"name": "PR template",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.3
}
]
},
{
"key": "ecosystem_adoption",
"band": "moderate",
"name": "Ecosystem adoption (downloads)",
"note": "Excluded from scoring (no data or not applicable): Registry dependents. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"registry_dependents"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 60,
"inputs": {
"packages": [
"url_canonicalize"
],
"dependents": null,
"ecosystems": "rubygems",
"total_downloads": 41931,
"monthly_downloads": null
},
"components": [
{
"key": "total_downloads",
"name": "Total downloads",
"detail": "41,931 downloads all-time across rubygems",
"points": 48,
"status": "partial",
"details": [
{
"code": "downloads_total",
"params": {
"count": 41931,
"ecosystems": "rubygems"
}
}
],
"max_points": 80
},
{
"key": "registry_dependents",
"name": "Registry dependents",
"detail": "not reported by this ecosystem",
"points": 0,
"status": "excluded",
"details": [
{
"code": "not_reported_by_this_ecosystem",
"params": {}
}
],
"max_points": 20
}
]
}
],
"description": "Does the project have users, downloads, attention, and a welcoming setup for contributors?"
},
{
"key": "governance",
"band": "moderate",
"name": "Sustainability & Governance",
"value": 60,
"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": 1,
"top_contributor_share": 1
},
"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 100% of commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 100
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "1 contributors",
"points": 1.4,
"status": "partial",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 1
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 5 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 79,
"inputs": {
"merged_prs": 186,
"open_issues": 2,
"closed_issues": 19,
"issue_closed_ratio": 0.905,
"closed_unmerged_prs": 7
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "90% of issues closed",
"points": 42.3,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 90
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "186/193 decided PRs merged",
"points": 36.9,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 186,
"decided": 193
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "Found 0/8 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"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": 56,
"inputs": {
"followers": 38,
"owner_type": "User",
"is_verified": null,
"owner_login": "dominicsayers",
"public_repos": 41,
"account_age_days": 6459
},
"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": "38 followers of dominicsayers",
"points": 11.4,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 38,
"login": "dominicsayers"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "41 public repos, account ~17 yr old",
"points": 23.8,
"status": "partial",
"details": [
{
"code": "public_repos",
"params": {
"count": 41
}
},
{
"code": "account_age_years",
"params": {
"years": 17
}
}
],
"max_points": 25
}
]
},
{
"key": "package_maintenance",
"band": "excellent",
"name": "Package maintenance",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"packages": [
"url_canonicalize"
],
"ecosystems": "rubygems",
"any_deprecated": false,
"min_days_since_publish": 0
},
"components": [
{
"key": "published_resolvable",
"name": "Published & resolvable",
"detail": "1 package(s) on rubygems",
"points": 25,
"status": "met",
"details": [
{
"code": "packages_published",
"params": {
"count": 1,
"ecosystems": "rubygems"
}
}
],
"max_points": 25
},
{
"key": "publish_recency",
"name": "Publish recency",
"detail": "latest publish 0 days ago",
"points": 35,
"status": "met",
"details": [
{
"code": "publish_recency",
"params": {
"days": 0
}
}
],
"max_points": 35
},
{
"key": "version_history",
"name": "Version history",
"detail": "24 published versions",
"points": 20,
"status": "met",
"details": [
{
"code": "published_versions",
"params": {
"count": 24
}
}
],
"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": 69,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "good",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 82,
"inputs": {
"has_ci": true,
"has_tests": true,
"has_editorconfig": false,
"has_linter_config": true,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "4 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 4
}
}
],
"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": ".rubocop.yml",
"points": 16,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".rubocop.yml"
}
}
],
"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": "14 out of 15 merged PRs checked by a CI test -- score normalized to 9",
"points": 18,
"status": "partial",
"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": "good",
"name": "Security",
"value": 82,
"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": 77,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 7.7
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "branch protection is not maximal on development and all release branches",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "14 out of 15 merged PRs checked by a CI test -- score normalized to 9",
"points": 2.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": "Found 0/8 approved changesets -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 5 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": "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": "30 commit(s) and 16 issue activity found in the last 90 days -- score normalized to 10",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 8",
"points": 4,
"status": "partial",
"details": [],
"max_points": 5
},
{
"key": "sast",
"name": "SAST",
"detail": "SAST tool is run on all commits",
"points": 5,
"status": "met",
"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": "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 34 resolved dependencies against OSV; 2 could not be assessed (no resolved version, an unsupported ecosystem, or beyond the reported package list). 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": 34
}
},
{
"code": "advisories_unassessed",
"params": {
"count": 2
}
},
{
"code": "advisories_repo_graph_caveat",
"params": {}
},
{
"code": "advisories_reachability",
"params": {}
}
],
"value": 100,
"inputs": {
"source": "osv",
"advisories": 0,
"affected_packages": 0,
"assessed_packages": 34,
"unassessed_packages": 2,
"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": 34,
"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": 3
},
"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": 60,
"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": 1,
"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": "33 of 33 human commits state their intent (structured subject or explanatory body)",
"points": 40,
"status": "met",
"details": [
{
"code": "legible_history",
"params": {
"legible": 33,
"sampled": 33
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "good",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 77,
"inputs": {
"has_nix": false,
"has_tests": true,
"lockfiles": [
"Gemfile.lock"
],
"has_dockerfile": false,
"typed_language": false,
"bootstrap_files": [
"mise.toml"
],
"has_devcontainer": false,
"has_linter_config": true,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0.67
},
"components": [
{
"key": "one_command_bootstrap",
"name": "One-command bootstrap",
"detail": "mise.toml",
"points": 18,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": "mise.toml"
}
}
],
"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": ".rubocop.yml",
"points": 11,
"status": "met",
"details": [
{
"code": "file_list",
"params": {
"files": ".rubocop.yml"
}
}
],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"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 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "67 of the last 100 commits are automated dependency updates",
"points": 8,
"status": "met",
"details": [
{
"code": "dependency_bot_commits",
"params": {
"count": 67,
"sampled": 100
}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 8",
"points": 8,
"status": "partial",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "moderate",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 55,
"inputs": {
"primary_language": "Ruby",
"largest_source_bytes": 21148,
"source_files_sampled": 34,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "Ruby without a type-check config",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_typecheck_config_language",
"params": {
"language": "Ruby"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/34 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 34,
"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-25T13:31:20.424564Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/d/dominicsayers/url_canonicalize.svg",
"full_name": "dominicsayers/url_canonicalize",
"license_state": "standard",
"license_spdx": "MIT"
}