JSON-Rohbericht maschinenlesbar
{
"data": {
"repo": {
"topics": [],
"is_fork": false,
"size_kb": 1009,
"has_wiki": true,
"homepage": "http://xapi-project.github.io/stdext/",
"languages": {
"C": 12389,
"OCaml": 126385,
"Makefile": 363
},
"pushed_at": "2024-01-17T15:25:41Z",
"created_at": "2013-01-12T10:57:52Z",
"owner_type": "Organization",
"updated_at": "2023-04-11T14:22:05Z",
"description": "Xenserver's (deprecated) extensions to the ocaml standard library",
"is_archived": false,
"is_disabled": false,
"license_spdx": null,
"default_branch": "master",
"license_spdx_raw": "NOASSERTION",
"primary_language": "OCaml",
"significant_languages": [
"OCaml"
]
},
"owner": {
"blog": "http://xenproject.org/developers/teams/xapi.html",
"name": "Xapi Project",
"type": "Organization",
"login": "xapi-project",
"company": null,
"location": "Cambridge, UK",
"followers": 53,
"avatar_url": "https://avatars.githubusercontent.com/u/317268?v=4",
"created_at": "2010-06-29T09:31:21Z",
"is_verified": null,
"public_repos": 102,
"account_age_days": 5867
},
"license": {
"state": "custom",
"spdx_id": null,
"raw_spdx": "NOASSERTION",
"file_present": true,
"scorecard_found": true,
"profile_has_license": true
},
"activity": {
"releases": [
{
"tag": "v4.24.0",
"kind": "minor",
"published_at": "2024-01-17T15:23:11Z"
},
{
"tag": "v4.23.0",
"kind": "minor",
"published_at": "2023-10-30T10:25:16Z"
},
{
"tag": "v4.22.0",
"kind": "minor",
"published_at": "2023-05-24T15:52:29Z"
},
{
"tag": "v4.21.0",
"kind": "minor",
"published_at": "2022-11-29T13:56:00Z"
},
{
"tag": "v4.20.0",
"kind": "minor",
"published_at": "2022-11-17T11:57:02Z"
},
{
"tag": "v4.19.0",
"kind": "minor",
"published_at": "2022-06-17T14:36:42Z"
},
{
"tag": "v4.4.1",
"kind": "patch",
"published_at": "2019-01-25T11:54:44Z"
},
{
"tag": "v4.4.0",
"kind": "minor",
"published_at": "2018-07-05T10:33:54Z"
},
{
"tag": "v4.2.0",
"kind": "minor",
"published_at": "2018-05-25T10:44:27Z"
},
{
"tag": "v4.1.0",
"kind": "minor",
"published_at": "2018-04-25T12:59:10Z"
},
{
"tag": "v2.1.0",
"kind": "minor",
"published_at": "2016-10-20T14:38:58Z"
},
{
"tag": "v2.0.0",
"kind": "major",
"published_at": "2016-07-04T14:17:51Z"
},
{
"tag": "v1.0.0",
"kind": "major",
"published_at": "2016-04-19T15:50:30Z"
},
{
"tag": "v0.13.0",
"kind": "minor",
"published_at": "2014-11-20T11:44:34Z"
},
{
"tag": "v0.12.0",
"kind": "minor",
"published_at": "2014-09-26T17:32:02Z"
},
{
"tag": "0.11.0",
"kind": "minor",
"published_at": "2014-05-30T14:46:29Z"
},
{
"tag": "v0.10.0",
"kind": "minor",
"published_at": "2014-04-02T09:09:01Z"
}
],
"recent_commits": [
{
"oid": "4cf5cbe00189b9f5ea96a3b0ebf1a8522c8e6399",
"body": "xapi-stdext-std: add Listext.List.find_minimum",
"is_bot": false,
"headline": "Merge pull request #85 from psafont/changes",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2024-01-17T15:21:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "38f9acbe5a3c00f2d4f905128dc5eae93f04ca34",
"body": "Signed-off-by: Pau Ruiz Safont <pau.ruizsafont@cloud.com>",
"is_bot": false,
"headline": "prepare for release",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2024-01-17T14:58:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f4472cba22c8fce36ec56f206ff4241570a994a",
"body": "Signed-off-by: Pau Ruiz Safont <pau.ruizsafont@cloud.com>",
"is_bot": false,
"headline": "reformat with newer version of ocamlformat",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2024-01-17T14:58:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9a3ac882935ec919e4fb620103046972bbad66cf",
"body": "Useful to get the lowest or highest element in a list in linear time, as\nit avoids sorting the whole list.\n\nSigned-off-by: Pau Ruiz Safont <pau.ruizsafont@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-std: add Listext.List.find_minimum",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2024-01-17T14:58:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a8661d1271b7e33c622212d66859233e162ca589",
"body": "To reproduce a forkexecd unit test failure I've run it under 'rr'.\nThis caused a different failure: EINTR from read.\n\nUnixext already has code to defend against EINTR on write, but not on read: add missing loop.\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "CA-387588: Unixext.really_read: restart on EINTR",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2024-01-17T10:17:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7c5c22b94bab31eb2c498ef47e284391420b9c8e",
"body": "CI fixes",
"is_bot": false,
"headline": "Merge pull request #84 from edwintorok/private/edvint/ci2",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2023-12-13T17:05:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e074eb5c383c56b182ff5edb4ecd49209547639",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "CI: update package repos to avoid 404 error",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-12-13T16:33:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d33900ee90023fd78e7d8668d8678dc356b8825a",
"body": "Found by disabling `implicit_transitive_deps`\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "[maintenance]: add missing dependencies",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-12-13T14:31:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6b8adabfe63fe159affcb58644606f267ad43323",
"body": "Reformat stdext",
"is_bot": false,
"headline": "Merge pull request #82 from edwintorok/private/edvint/format",
"author_name": "Rob Hoes",
"author_login": "robhoes",
"committed_at": "2023-11-29T10:09:05Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "93e205316f316ad20b79d4610196b316b9a4f247",
"body": "'make format' with ocamlformat 0.22.4\n\nNo functional change.\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "[maintenance]: run ocamlformat",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-11-28T18:02:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9443c20d56bbe7421bca7bfbac4b50307dc181ce",
"body": "Fix documentation in `threadext.mli`",
"is_bot": false,
"headline": "Merge pull request #81 from Vincent-lau/private/shul2/threadext-doc",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2023-11-22T15:59:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f89e3f9ccabf9e56c2e1a5bc7fed49100fe7377",
"body": "The opam files were hand edited, but they are generated from 'dune-project', so running 'dune build'\nwould undo any changes.\n\nFixes https://github.com/xapi-project/stdext/issues/78\nFixes: 42f237c (\"opam: update metadata\")\n\nNo functional change.\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "[maintenance]: fix dune-project",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-11-22T15:40:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2cf1b2f98fedd5ebfb27a74b9c5096b77a612305",
"body": "Signed-off-by: Vincent Liu <shuntian.liu2@cloud.com>",
"is_bot": false,
"headline": "Fix association of special comments in `threadext.mli`",
"author_name": "Vincent Liu",
"author_login": "incipit0",
"committed_at": "2023-11-22T15:10:10Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "665a15f766d2df70ee3f28e02c1147cd2de05804",
"body": "Signed-off-by: Vincent Liu <shuntian.liu2@cloud.com>",
"is_bot": false,
"headline": "Apply OCaml format for `threadext.mli`",
"author_name": "Vincent Liu",
"author_login": "incipit0",
"committed_at": "2023-11-22T15:09:58Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "847fc43c723438b514cd1697c4b78a40d754e4cc",
"body": "update metadata",
"is_bot": false,
"headline": "Merge pull request #77 from psafont/changes",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2023-11-02T11:16:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "aff670e0ba20dba1a72ac2d9141fa10e03ddba52",
"body": "Signed-off-by: Pau Ruiz Safont <pau.ruizsafont@cloud.com>",
"is_bot": false,
"headline": "changes: add log for missing versions",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2023-10-30T11:09:04Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "42f237c8454e88487edb3bff2383c5e3f4bf36f0",
"body": "Signed-off-by: Pau Ruiz Safont <pau.ruizsafont@cloud.com>",
"is_bot": false,
"headline": "opam: update metadata",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2023-10-30T10:54:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4404d5b0c1c248f5e74fa587b5b16ef17f733857",
"body": "Create a function to recursively remove files",
"is_bot": false,
"headline": "Merge pull request #76 from snwoods/private/stevenwo/CP-41844",
"author_name": "Steven Woods",
"author_login": "snwoods",
"committed_at": "2023-10-30T09:49:55Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1456ab746467e13460f0ce65f82a958ee1d0b45c",
"body": "Signed-off-by: Steven Woods <steven.woods@citrix.com>",
"is_bot": false,
"headline": "Create a function to recursively remove files",
"author_name": "Steven Woods",
"author_login": "snwoods",
"committed_at": "2023-10-27T16:40:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3db50c3069fa84941ef1dca7c18779e56ecc56f7",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "fixup! add bechamel as test dependencies to fix \"dune build @check\" test",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-08-30T09:46:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ba88a00f73fe9bdccef0554e88d89822e16c47a5",
"body": "unixext_stubs.c:132:21: warning: assignment discards ‘const’ qualifier from pointer target type [-Wdiscarded-qualifiers]\n 132 | exn = caml_named_value(\"unixext.unix_error\");\n | ^\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "CA-382014: unixext_stubs: fix const warning",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-08-30T09:46:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "89a6ce2174e5694977a7de5ba9d5ac5108ef5105",
"body": "Noticed by an LTO enabled build at link time of a binary using xapi-stdext-unix.\n\nFix the type and move the prototype declaration to a header file that is included by both C files.\nThat way a mismatch in the prototype will always result in a compilation error instead of a potential LTO warning.\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "CA-382014: blkgetsize: fix return type mismatch",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-08-30T09:46:31Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "059facbcd54b0da2f2df1de1bb3b5f728c6a35b7",
"body": null,
"is_bot": false,
"headline": "Merge pull request #73 from xapi-project/private/edvint/noalloc0",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2023-05-24T13:28:38Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1e1559c40eb1efd75cdd46ef294f93b60df22aab",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "add bechamel as test dependencies to fix \"dune build @check\" test",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-24T13:19:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8d06b21cb619ac36b58527f5551e920d4ef744c7",
"body": "date, pervasive, std: remove deprecated code",
"is_bot": false,
"headline": "Merge pull request #72 from psafont/nodeprecs",
"author_name": "Rob Hoes",
"author_login": "robhoes",
"committed_at": "2023-05-24T12:36:46Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d7146f4a94df4c9ca269a12a55b1fd72326f77d",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: rename forbidden to illegal",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-17T18:24:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "40bd10c0161ed2f614528be921cac5d08cea9989",
"body": "Speeds up validation considerably, achieving > 1700 MiB/s.\n\nThe idea to use subtraction and bit twiddling for checking the range of\nbytes in a word is from:\nhttps://graphics.stanford.edu/~seander/bithacks.html#HasLessInWord\n\nHowever the formula is simplified significantly taking advantage that we\nalso check that the MSB in each byte (0x80) is clear in the first place.\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: read 4 bytes at a time in ASCII fastpath",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-17T18:18:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7e0d616ac2ae93ae50ef03cd74cbde168ed563b1",
"body": "This removes the String_validator functor, and enables\nfurther performance optimizations of exactly the XML UTF8 validator.\n(where we can add a fastpath that can take advantage of the specific\nproperties of this validator)\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: inline character validator",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-17T18:18:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "612cbaea40dc0d5ff2253264e57e5c67c2dc9264",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: add a benchmark",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-17T18:18:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ed383b684bf0146bf0242d27c9c57d9787962b54",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: fast-path that decodes 2 ASCII chars at a time",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-17T18:18:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "2d52866bf5520f2ce9fdf253f8ab029e14463acb",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: add a fastpath for ASCII",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-17T18:18:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "be9adef78ee0d40426339c2a07bdebed5c903453",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: inline UTF8_CODEC",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-16T18:46:53Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9eb1462b471328ed556bb06e8fdcb64d8d496a73",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: add some inline annotations",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-16T16:05:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b3acec277f103b35a185a41eb4b2a2fe3b3f9962",
"body": "We can't use Uutf either: it would allocate on each char.\nOnly the 4.14 stdlib would be better: it doesn't allocate at all, only\ndeals with ints.\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: optimize away some allocations",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-16T15:12:33Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "932ae78dfe4ade3a81d61cbe66ef5158498e7ed2",
"body": "This will help in updating users to use date more thoroughly instead of\nad-hoc methods\n\nSigned-off-by: Pau Ruiz Safont <pau.ruizsafont@cloud.com>",
"is_bot": false,
"headline": "date: add useful comparison methods",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2023-05-16T14:57:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ab203e020748b6d5c3b717e0493faac6892577db",
"body": "…rface\n\nMoved decoding into the test code, and supply only an UCS validator as\ninput to the functor.\nThis will allow replacing the implementation with a more efficient one\nbased on Uchar.t and Uutf (or the stdlib in 4.14)\n\nDrops some tests that no longer makes sense, but still keep the majority\nof the tests.\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: drop all functions that allocate from the inte…",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-16T13:03:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e35b6532998b0e2b570bfff205920d326c3b18c3",
"body": "XAPI only uses this module for validating XML UTF8 strings.\nHowever all the unit tests here are still useful, so gradually drop\nfunctionality from the encodings API until we're left just with the\nvalidator, which can be implemented more efficiently without allocation.\n\nThis moves some code that is s\n[…]\nl for tests into the test\nmodule (which can be used to check that the stdlib or Uutf's semantics\nmatches the pre-existing semantics of this module).\n\nSigned-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "xapi-stdext-encodings: drop encoding and unused functions from API",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-16T12:39:45Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "fbe9292cb9d88f1e5a896f32403f8fdc95aab487",
"body": "Signed-off-by: Edwin Török <edwin.torok@cloud.com>",
"is_bot": false,
"headline": "Replace Int32 with int for unicode characters",
"author_name": "Edwin Török",
"author_login": "edwintorok",
"committed_at": "2023-05-16T10:31:01Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c696daac6012fd8bf97da6fab94def214ec2a77",
"body": "Signed-off-by: Pau Ruiz Safont <pau.ruizsafont@cloud.com>",
"is_bot": false,
"headline": "date, pervasive, std: remove deprecated code",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2023-05-16T09:29:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "986d1aeb566773906eb436a2df9aeb677f56d0fa",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "changelog: prepare for 4.21 release",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-29T13:52:02Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bcc64a49327c4c9b1e8a679c15515101c88ba847",
"body": "compatibility with OCaml 5",
"is_bot": false,
"headline": "Merge pull request #70 from psafont/d2",
"author_name": "Rob Hoes",
"author_login": "robhoes",
"committed_at": "2022-11-29T13:46:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "5315baaa5d8f9ad81dbdde7a2833d54dc2a26a88",
"body": "The function is_all_zeroes has users, drop the rest as the results. I've\nseen while trying to unit-test are nonsensical in quite a few cases. The\ncode has probably never been correct under 64-bit architectures and it's\ntherefore dangerous to keep it exposed\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "zerocheck: remove unused code",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-25T15:53:18Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3687ee1ea99fe55a45c363d5d13d5b5bbb864d4d",
"body": "On zerocheck it allows the C code to use OCaml strings directly.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "Avoid warnings and check it at the ci",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-25T15:52:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "8cb86f26f4102e70d68034a2f6fd943ef5acd817",
"body": "All of them fixed by simple renames\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "threads, unix: remove usages of deprecated functions",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-25T10:27:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "e41338bd4e99a0ee1d4c01d5927f653c0edbc99a",
"body": "This generates correctly the opam definitions, and required updating the\nsyntax for the c foreign stubs\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "dune: require 2.7",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-25T10:27:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6acb40e8c52e5d4160dc0143cff652c44ed50230",
"body": null,
"is_bot": false,
"headline": "Merge pull request #69 from snwoods/private/stevenwo/write-permissions",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-25T10:22:21Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "50d6e80024e3b8840828c863b574cdb4941f8280",
"body": "Signed-off-by: Steven Woods <steven.woods@citrix.com>",
"is_bot": false,
"headline": "Allow optional perms parameter when writing string or bytes to file",
"author_name": "Steven Woods",
"author_login": "snwoods",
"committed_at": "2022-11-24T17:19:47Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79eadd4009efebc59d50b34f128bc43b710fa4da",
"body": null,
"is_bot": false,
"headline": "Merge pull request #68 from psafont/ptime_date",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-17T11:55:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "3c9f5e271c9266a08b2a6fc638c9b40fbe47ea86",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "Prepare for release v4.20",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-17T11:53:42Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "29872b1f374836e9d201999c28c7220f6f8a5bd4",
"body": "Both iso8601 and rfc822 types and related functions have been moved at\nthe bottom to make them less visible and deprecate them on the next\nversion, providing a smooth transition path\n\nTests have been changed to use the new functions\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "Date: Use type t as main type, prepare for deprecations",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-17T11:20:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4b354c2f2bac2f6be53ef70af6756d5a1389f9af",
"body": "Add a function to print datetimes in email format, this allows to alias\nboth types into one encompassing all the functionality of the module\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "Date: create RFC-822-formatted strings from Date.iso8601",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-17T11:16:41Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "bbcf1ee215429c2bc7126401c3d49293638c32fa",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "Date: test RFC 822 formatting",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-17T11:16:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a9cda200fb530a536f614ad363a0a8a38e648e91",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "ocamlformat: format date library",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-17T09:54:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "933d96774803134a8c0d29c0855a5f9b6163bb38",
"body": "Currently the only way to create dates is from floats and strings, since\nthese do not have a semantic meaning, new names are now used for the\nconversions, making it obvious floats represent Unix timestamps and\nstrings with representation do dates using RFC 3339 and ISO 8601.\nAdditionally allow conve\n[…]\nn the future the `{to,of}_float`, `{to,of}_string` and `never` will be\ndeprecated. Not doing so immediately allows for a smooth transition\npath.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "Date: use conversions to/from Ptime.t, unix_time and formatted strings",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-11-17T09:31:26Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "690d233cf37c4e523e17e9b5ed74a118804bc9f5",
"body": null,
"is_bot": false,
"headline": "Merge pull request #67 from psafont/threading",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-06-17T14:35:34Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "09ef6c971ea3ac8e8cd23d25a658067a9e79f426",
"body": "Tidy up Changelog\nGenerate .opam files using dune, these will be regenerated every time\nmake is run\n\nAdd metapackage xapi-stdext (needed to publish)\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "maintenance: prepare for release",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-06-17T10:23:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ef59ce7eb1042eb44f86235172db8672cb2e9f5c",
"body": "These modules are barely used and are problematic because they need much\ntesting with the coming ocaml 5.0\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "threads: Remove all the modules except Mutex",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-05-11T08:31:36Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d4b6d1467dd036aafe5bc069cbcd641777b5d56d",
"body": "Add license to opam metadata, remove unused opam files",
"is_bot": false,
"headline": "Merge pull request #65 from psafont/license",
"author_name": "Rob Hoes",
"author_login": "robhoes",
"committed_at": "2022-03-07T14:11:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "59f8dc512f1233afbab5ca10832d0ff46764dbbf",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "Add license to opam metadata, remove unused opam files",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2022-02-17T17:48:03Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "eefeb6b6f8615ec0e571d4fe79f1f2cb46535866",
"body": null,
"is_bot": false,
"headline": "Merge pull request #64 from psafont/slimlist",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-06-07T09:02:16Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "473f90e03ea04fdd0d310ce7d81b3b35ff444d6b",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-31119: Enable documentation upload",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-05-21T17:02:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "70923afb98123be290df19cd4127ba760f16ec42",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-31119: Prepare to generate documentation",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-05-21T17:02:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d71bcceb23e296247f394f007ca3627d771ddda9",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-34643: Prepare doc comments for odoc",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-05-21T17:02:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a769bc19f447b4c2bd1eb85c40ea1deec80e835c",
"body": "This allows to direct users away from certain functions which should be\navoided and offer alternatives in the documentation.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-34643: Reorder functions in listext interface",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-05-21T17:02:11Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "a332e697f4b6a238026910e25628352cb7f68f88",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-34643: drop deprecated methods from listext",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-05-21T16:58:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7724ecefec7dd2b2fbfbd7717f8eb78f05137a7c",
"body": "unix: remove unused stdext-std dependency",
"is_bot": false,
"headline": "Merge pull request #62 from psafont/private/paus/deps",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-05-17T12:48:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32eac485ee1d29f5f97023831468a088cc35714c",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "unix: remove unused stdext-std dependency",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-04-22T14:05:13Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ac48af8699b7f4d283500139e75cf5167f4f0773",
"body": null,
"is_bot": false,
"headline": "Merge pull request #61 from psafont/deprecate",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-03-01T15:23:20Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d085fe370672fd9fadfccb51fbfff0d48c9a0846",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "listext: avoid traversing list twice on assoc_default",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-03-01T15:16:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b2b564eacba28d36f362f6ec6261ba02e8d266f1",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "maintenance: format with ocamlformat",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-03-01T15:16:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "f2729fdbbdba1aedf697991fa96a8f7dd14a03bd",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "maintenance: prepare for ocamlformat",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-03-01T15:16:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "65c9d917201fd6bf65f3583058250687519fa589",
"body": "The implementations had some deficiencies, like being hard to analyze,\nhaving poor error or potentially taking a long time until the error was\nshown.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-34643: listext: add drop function, rework some functions",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-03-01T15:16:22Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "1581ece07aab3caf8ead31e47a61172a35c3626a",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-34643: add unit tests for listext",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-02-10T09:07:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "af99b87a31285dedc5ff7b960dfaae0cd88e38b7",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-34643: Listext: deprecate functions in Stdlib.List",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-02-09T17:39:06Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "32242b81d482f185d992b9ac5c13543994439f51",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-34643: listext: remove implementations for functions in Stdlib.List",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2021-02-09T17:38:51Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "7f611452f589cab01d57c11a56c9b361613a3c01",
"body": "CI: use github actions",
"is_bot": false,
"headline": "Merge pull request #59 from xapi-project/ga",
"author_name": "Rob Hoes",
"author_login": "robhoes",
"committed_at": "2021-01-04T10:53:56Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cfcdb0b96894ec4cba86adecf4b45fa92941e650",
"body": "XSI-894 date.iso8601.to_float should assume UTC",
"is_bot": false,
"headline": "Merge pull request #58 from lippirk/xsi894-master",
"author_name": "Rob Hoes",
"author_login": "robhoes",
"committed_at": "2020-12-29T13:35:49Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "0e654b2e84315621ed1fcdc00b5bad93fc0895a2",
"body": "Also removes unused stdext metapackage\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "ci: remove travis workflow",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-12-17T16:11:32Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "d0002d95d7980255056308682e04c110038225ec",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "Create ocaml-ci.yml",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-12-17T16:07:40Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9d7c9291eb63991769052474f78cda8d76e282ce",
"body": "The timezone print also does not try to dictate the formats that are\nallowed as ptime already does this.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "date: allow timezones other than UTC for printing",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-12-17T15:32:19Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "87929362c3c3425a64a6e424fa117832fd3a2c45",
"body": "We must be able to convert all iso8601's to float, in order to avoid\na Java SDK regression\n\nSigned-off-by: Ben Anson <ben.anson@citrix.com>",
"is_bot": false,
"headline": "XSI-894 date.iso8601.to_float should assume UTC",
"author_name": "Ben Anson",
"author_login": null,
"committed_at": "2020-12-17T10:54:08Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "822502169b74b89a5bff2438bd97b4b8ac45ca5d",
"body": "XSI-894 handle iso8601's with no timezone",
"is_bot": false,
"headline": "Merge pull request #56 from lippirk/master",
"author_name": "Ben Anson",
"author_login": null,
"committed_at": "2020-12-14T13:57:14Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "13b17a753ba113eca4d4f783f50e06548b33e764",
"body": "The SDK exposes our iso8601 type as an actual iso8601 value, and takes\nadvantage of iso8601 libraries in other languages. Therefore in order\nfor the SDK to work as expected, we need to align more closely with\nthe iso8601 specification. Internally we try our best to coerce the\niso8601 parameters into\n[…]\nne particular error we have seen so far is that our date library rejects\ndatetime strings without a timezone qualifier (which is fixed by this change).\n\nSigned-off-by: Ben Anson <ben.anson@citrix.com>",
"is_bot": false,
"headline": "XSI-894 handle iso8601's with no timezone",
"author_name": "Ben Anson",
"author_login": null,
"committed_at": "2020-12-14T13:52:35Z",
"body_truncated": true,
"is_coding_agent": false
},
{
"oid": "4d54016129eac0e3d219804dbf6d33c9bbca263b",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "maintenance: format xstringext files with ocamlformat",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-08-26T09:59:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc8f1c351b38c175ad5044cffe9bbc29fb26e2c1",
"body": "This fixes String.init, the previous implementation failed when creating\nempty strings.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "xapi-stdext-std: Do not duplicate functions from Stdlib",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-08-26T09:59:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4c07259cbd578de295c64daac3589202d90dc916",
"body": "These document how the module works and will be useful when changing the\nimplementation.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-34643: add tests for xstringext",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-08-26T09:59:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "722883292b83fab9aa11b4bcb21a40e6a0500728",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "maintenance: reformat pervasivesext with ocamlformat",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-08-26T09:59:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "55d8c09aa9d3c0061f23bf5516e896a5a09c3b76",
"body": "The functions replaces do not match the current style of programming in\nocaml, most being obscure. Many of the mhave been replaced by\nStdlib.Option and other are barely used, if at all. Users have clear\nalternatives to use.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-34643: Deprecated non-idiomatic pervasivesext functions",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-08-26T09:59:00Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "ca21fce193b75465d2c1af11ec4e04ae24ff8f3f",
"body": "The functionality is not used in the Toolstack and uses the select()\nsystem call which we would like to phase out in favour of epoll().\n\nSigned-off-by: Christian Lindig <christian.lindig@citrix.com>",
"is_bot": false,
"headline": "unixext: remove Fdset module and stubs",
"author_name": "Christian Lindig",
"author_login": "lindig",
"committed_at": "2020-08-18T16:21:45Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "6377a252cc1f528ee87eeb98405133c7f06f0a8e",
"body": "CP-33121: remove dependency of date in encodings tests",
"is_bot": false,
"headline": "Merge pull request #51 from psafont/tests",
"author_name": "lippirk",
"author_login": null,
"committed_at": "2020-08-11T12:36:50Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "cc343183301e728cb78581a42ff239f401ec34dc",
"body": "This minimizes the chance to mix tests for different packages in the\nsame file.\n\nAlso changed how tests are presented in the logs to be more informative.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-33121: Move encodings test to the package directory",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-08-11T11:17:23Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "79fc7075200c10aa80ed93c5462c344cbc47547c",
"body": "Enables testing of the date package\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-33121: remove dependency of date in encodings tests",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-08-11T11:16:52Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "b0c8df0fa7baf33cd11ad35d888c6e2ef1416744",
"body": "Allow client to call `Date.localtime ()` and\ncreate a datetime based on the localtime.\n\nSigned-off-by: lippirk <ben.anson@citrix.com>",
"is_bot": false,
"headline": "CA-342171 allow clients to create an iso8601 from localtime",
"author_name": "lippirk",
"author_login": null,
"committed_at": "2020-08-11T09:58:17Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "9e1cdad7163b1bc3dba1956c23c8a84d684989fe",
"body": "CP-33121: run encodings tests as part of the encodings package",
"is_bot": false,
"headline": "Merge pull request #49 from psafont/travis",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-07-24T10:31:30Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "10edcbabedeadf68d531b15d8ef11309d379351f",
"body": "It's the only library that currently has tests\n\nxapi-stdext is ignored in travis now, nothing else is using it and it\ncan ber dropped from now on.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-33121: run encodings tests as part of the encodings package",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-07-21T14:51:48Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "4fa7ced76aef6f25b3e2f3c27fb3d2b7b86560f8",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "maintenance: update travis config",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-07-20T15:59:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "36cdf346f6167fb42e22aab8bcf79f36d88b58c6",
"body": "Signed-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "maintenance: prepare for ocamlformat",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-07-20T15:59:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "67826b769b552e10329081faa5cc294e7b1ca5be",
"body": "Made monads private so list can still use them.\n\nSigned-off-by: Pau Ruiz Safont <pau.safont@citrix.com>",
"is_bot": false,
"headline": "CP-33121: remove obsoleted modules and packages",
"author_name": "Pau Ruiz Safont",
"author_login": "psafont",
"committed_at": "2020-07-20T15:59:59Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "fb4e8b5b23cafe48de3295b064e4bb348013fd02",
"body": "CA-338243 remove legacy variant in iso8601",
"is_bot": false,
"headline": "Merge pull request #47 from lippirk/CA-338243",
"author_name": "lippirk",
"author_login": null,
"committed_at": "2020-04-24T09:33:12Z",
"body_truncated": false,
"is_coding_agent": false
},
{
"oid": "898cfa409d9ff4c52a43931285cb7d0054b9f8ce",
"body": "We can use ptime to parse any legacy dates by removing\nany dashes before passing to ptime.\n\nSigned-off-by: lippirk <ben.anson@citrix.com>",
"is_bot": false,
"headline": "CA-338243 remove legacy variant in iso8601",
"author_name": "lippirk",
"author_login": null,
"committed_at": "2020-04-23T17:49:45Z",
"body_truncated": false,
"is_coding_agent": false
}
],
"releases_count": 17,
"commits_last_year": 0,
"latest_release_at": "2024-01-17T15:23:11Z",
"latest_release_tag": "v4.24.0",
"releases_from_tags": false,
"days_since_last_push": 917,
"active_weeks_last_year": 0,
"days_since_latest_release": 917,
"mean_days_between_releases": 232.6
},
"community": {
"has_readme": true,
"has_license": true,
"has_description": true,
"has_contributing": false,
"health_percentage": 37,
"has_issue_template": false,
"has_code_of_conduct": false,
"has_pull_request_template": false
},
"ecosystem": {
"packages": []
},
"popularity": {
"forks": 13,
"stars": 5,
"watchers": 16,
"fork_history": {
"days": [
{
"date": "2013-03-07",
"count": 1
},
{
"date": "2013-06-03",
"count": 1
},
{
"date": "2013-10-31",
"count": 1
},
{
"date": "2014-05-12",
"count": 1
},
{
"date": "2015-04-13",
"count": 1
},
{
"date": "2016-02-11",
"count": 1
},
{
"date": "2016-06-28",
"count": 1
},
{
"date": "2019-03-06",
"count": 1
},
{
"date": "2019-03-13",
"count": 1
},
{
"date": "2019-09-27",
"count": 1
},
{
"date": "2019-12-01",
"count": 1
},
{
"date": "2022-11-24",
"count": 1
},
{
"date": "2023-11-22",
"count": 1
}
],
"complete": true,
"collected": 13,
"total_forks": 13
},
"star_history": null,
"open_issues_and_prs": 1
},
"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": [],
"largest_source_bytes": 4569,
"source_files_sampled": 6,
"oversized_source_files": 0,
"agent_instruction_files": [],
"agent_instruction_max_bytes": null
},
"dependencies": {
"manifests": [],
"advisories": {
"error": "No resolved dependencies to assess",
"scope": "repository_graph",
"source": null,
"findings": [],
"collected": false,
"malicious": [],
"truncated": false,
"by_severity": {},
"advisory_count": 0,
"affected_count": 0,
"assessed_count": 0,
"malicious_count": 0,
"assessed_package": null,
"unassessed_count": 0,
"direct_affected_count": 0
},
"ecosystems": [],
"dependencies": [],
"all_dependencies": {
"error": null,
"source": "github-sbom",
"packages": [],
"collected": true,
"truncated": false,
"total_count": 0,
"direct_count": 0,
"indirect_count": 0
}
},
"maintainership": {
"issues": {
"open_prs": 0,
"merged_prs": 73,
"open_issues": 1,
"closed_ratio": 0.667,
"closed_issues": 2,
"closed_unmerged_prs": 10
},
"bus_factor": 2,
"bot_contributors": 0,
"top_contributors": [
{
"type": "User",
"login": "psafont",
"commits": 69,
"avatar_url": "https://avatars.githubusercontent.com/u/5189409?v=4"
},
{
"type": "User",
"login": "edwintorok",
"commits": 30,
"avatar_url": "https://avatars.githubusercontent.com/u/721894?v=4"
},
{
"type": "User",
"login": "mseri",
"commits": 11,
"avatar_url": "https://avatars.githubusercontent.com/u/4040623?v=4"
},
{
"type": "User",
"login": "gaborigloi",
"commits": 10,
"avatar_url": "https://avatars.githubusercontent.com/u/10549240?v=4"
},
{
"type": "User",
"login": "jonludlam",
"commits": 9,
"avatar_url": "https://avatars.githubusercontent.com/u/210963?v=4"
},
{
"type": "User",
"login": "robhoes",
"commits": 7,
"avatar_url": "https://avatars.githubusercontent.com/u/413005?v=4"
},
{
"type": "User",
"login": "djs55",
"commits": 6,
"avatar_url": "https://avatars.githubusercontent.com/u/198586?v=4"
},
{
"type": "User",
"login": "lindig",
"commits": 4,
"avatar_url": "https://avatars.githubusercontent.com/u/843617?v=4"
},
{
"type": "User",
"login": "snwoods",
"commits": 3,
"avatar_url": "https://avatars.githubusercontent.com/u/1372164?v=4"
},
{
"type": "User",
"login": "johnelse",
"commits": 2,
"avatar_url": "https://avatars.githubusercontent.com/u/112119?v=4"
}
],
"contributors_sampled": 15,
"top_contributor_share": 0.437
},
"quality_signals": {
"has_ci": true,
"has_tests": false,
"ci_workflows": [
"gh-pages.yml",
"ocaml-ci.yml"
],
"has_docs_dir": false,
"linter_configs": [],
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"security_signals": {
"lockfiles": [],
"scorecard": {
"checks": [
{
"name": "Binary-Artifacts",
"score": 10,
"reason": "no binaries found in the repo",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#binary-artifacts"
},
{
"name": "Branch-Protection",
"score": null,
"reason": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#branch-protection"
},
{
"name": "CI-Tests",
"score": 0,
"reason": "0 out of 11 merged PRs checked by a CI test -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#ci-tests"
},
{
"name": "CII-Best-Practices",
"score": 0,
"reason": "no effort to earn an OpenSSF best practices badge detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#cii-best-practices"
},
{
"name": "Code-Review",
"score": 10,
"reason": "all changesets reviewed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#code-review"
},
{
"name": "Contributors",
"score": 10,
"reason": "project has 13 contributing companies or organizations",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#contributors"
},
{
"name": "Dangerous-Workflow",
"score": 10,
"reason": "no dangerous workflow patterns detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dangerous-workflow"
},
{
"name": "Dependency-Update-Tool",
"score": 0,
"reason": "no update tool detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#dependency-update-tool"
},
{
"name": "Fuzzing",
"score": 0,
"reason": "project is not fuzzed",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#fuzzing"
},
{
"name": "License",
"score": 9,
"reason": "license file detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#license"
},
{
"name": "Maintained",
"score": 0,
"reason": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#maintained"
},
{
"name": "Packaging",
"score": null,
"reason": "packaging workflow not detected",
"documentation_url": "https://github.com/ossf/scorecard/blob/c395761df6afe1a69e476bc60a013a94bcbc153f/docs/checks.md#packaging"
},
{
"name": "Pinned-Dependencies",
"score": 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": 0,
"reason": "Project has not signed or included provenance with any releases.",
"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": "4cf5cbe00189b9f5ea96a3b0ebf1a8522c8e6399",
"ran_at": "2026-07-23T00:27:39Z",
"aggregate_score": 4,
"scorecard_version": "v5.5.0"
},
"has_codeql_workflow": false,
"has_security_policy": false,
"has_dependabot_config": false
},
"contribution_flow": {
"collected": true,
"ci_last_run_at": null,
"oldest_open_prs": [],
"last_merged_pr_at": "2024-01-17T15:21:48Z",
"ci_last_conclusion": null,
"oldest_open_issues": [
{
"number": 30,
"created_at": "2018-05-22T12:59:34Z",
"last_comment_at": null,
"last_comment_author": null
}
]
}
},
"config": {
"disabled_metrics": [],
"disabled_categories": [],
"disabled_components": {}
},
"source": {
"url": "https://github.com/xapi-project/stdext",
"host": "github.com",
"name": "stdext",
"owner": "xapi-project"
},
"metrics": {
"overall": {
"key": "overall",
"band": "at_risk",
"name": "Overall health",
"note": null,
"notes": [],
"value": 41,
"inputs": {
"security": 40,
"vitality": 17,
"community": 34,
"governance": 69,
"engineering": 40
},
"components": []
},
"categories": [
{
"key": "vitality",
"band": "critical",
"name": "Vitality",
"value": 17,
"weight": 0.22,
"metrics": [
{
"key": "development_activity",
"band": "critical",
"name": "Development activity",
"note": null,
"notes": [],
"value": 1,
"inputs": {
"commits_last_year": 0,
"human_commit_share": 1,
"days_since_last_push": 917,
"active_weeks_last_year": 0
},
"components": [
{
"key": "push_recency",
"name": "Push recency",
"detail": "last push 917 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "push_recency",
"params": {
"days": 917
}
}
],
"max_points": 36
},
{
"key": "commit_cadence",
"name": "Commit cadence",
"detail": "0/52 weeks with commits",
"points": 0,
"status": "missed",
"details": [
{
"code": "commit_cadence_weeks",
"params": {
"weeks": 0
}
}
],
"max_points": 36
},
{
"key": "commit_volume",
"name": "Commit volume",
"detail": "0 commits in the last year",
"points": 0,
"status": "missed",
"details": [
{
"code": "commits_last_year",
"params": {
"count": 0
}
}
],
"max_points": 18
},
{
"key": "openssf_scorecard_maintained",
"name": "OpenSSF Scorecard: Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "release_discipline",
"band": "at_risk",
"name": "Release discipline",
"note": null,
"notes": [],
"value": 40,
"inputs": {
"releases_count": 17,
"latest_release_tag": "v4.24.0",
"releases_from_tags": false,
"days_since_latest_release": 917,
"mean_days_between_releases": 232.6
},
"components": [
{
"key": "ships_releases",
"name": "Ships releases",
"detail": "17 releases published",
"points": 27,
"status": "met",
"details": [
{
"code": "releases_published",
"params": {
"count": 17
}
}
],
"max_points": 27
},
{
"key": "release_recency",
"name": "Release recency",
"detail": "latest release 917 days ago",
"points": 0,
"status": "missed",
"details": [
{
"code": "release_recency",
"params": {
"days": 917
}
}
],
"max_points": 36
},
{
"key": "release_cadence",
"name": "Release cadence",
"detail": "a release every ~232.6 days",
"points": 12.6,
"status": "partial",
"details": [
{
"code": "release_cadence",
"params": {
"gap": 232.6
}
}
],
"max_points": 27
},
{
"key": "openssf_scorecard_signed_releases",
"name": "OpenSSF Scorecard: Signed-Releases",
"detail": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "abandonment",
"band": "excellent",
"name": "Abandonment",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"cap": null,
"state": "dormant",
"guards": [
"no_open_demand"
],
"signals": [
"scorecard_unmaintained"
],
"red_flag": false,
"multiplier_pct": 100,
"declared_reason": null,
"unverified_reason": null,
"unanswered_open_prs": 0,
"unanswered_open_issues": 1,
"days_since_last_merged_pr": 917,
"days_since_last_human_commit": 917,
"days_since_last_human_commit_is_floor": false
},
"components": [
{
"key": "project_is_still_maintained",
"name": "Project is still maintained",
"detail": "no human commit for 917 days, with nothing left unanswered; held at dormant by nothing open to answer",
"points": 100,
"status": "met",
"details": [
{
"code": "abandonment_quiet",
"params": {
"days": 917
}
},
{
"code": "abandonment_guarded",
"params": {
"guards": "nothing open to answer"
}
}
],
"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": 34,
"weight": 0.18,
"metrics": [
{
"key": "popularity",
"band": "critical",
"name": "Popularity & adoption",
"note": null,
"notes": [],
"value": 25,
"inputs": {
"forks": 13,
"stars": 5,
"watchers": 16,
"growth_state": "unverified",
"growth_factor_pct": 100,
"growth_unverified_reason": "no_history"
},
"components": [
{
"key": "stars",
"name": "Stars",
"detail": "5 stars",
"points": 9.8,
"status": "partial",
"details": [
{
"code": "stars",
"params": {
"count": 5
}
}
],
"max_points": 60
},
{
"key": "forks",
"name": "Forks",
"detail": "13 forks",
"points": 9,
"status": "partial",
"details": [
{
"code": "forks",
"params": {
"count": 13
}
}
],
"max_points": 25
},
{
"key": "watchers",
"name": "Watchers",
"detail": "16 watchers",
"points": 6.5,
"status": "partial",
"details": [
{
"code": "watchers",
"params": {
"count": 16
}
}
],
"max_points": 15
}
]
},
{
"key": "community_health",
"band": "at_risk",
"name": "Community health",
"note": null,
"notes": [],
"value": 44,
"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": "license file present, not a recognized license",
"points": 16.9,
"status": "partial",
"details": [
{
"code": "license_custom",
"params": {}
}
],
"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": 69,
"weight": 0.24,
"metrics": [
{
"key": "maintainer_resilience",
"band": "moderate",
"name": "Maintainer resilience (bus factor)",
"note": null,
"notes": [],
"value": 61,
"inputs": {
"bus_factor": 2,
"contributors_sampled": 15,
"top_contributor_share": 0.437
},
"components": [
{
"key": "bus_factor",
"name": "Bus factor",
"detail": "2 contributor(s) cover half of all commits",
"points": 25.2,
"status": "partial",
"details": [
{
"code": "bus_factor",
"params": {
"count": 2
}
}
],
"max_points": 54
},
{
"key": "commit_distribution",
"name": "Commit distribution",
"detail": "top contributor authored 44% of commits",
"points": 12.7,
"status": "partial",
"details": [
{
"code": "top_contributor_share",
"params": {
"share": 44
}
}
],
"max_points": 22.5
},
{
"key": "contributor_breadth",
"name": "Contributor breadth",
"detail": "15 contributors",
"points": 13.5,
"status": "met",
"details": [
{
"code": "contributors_sampled",
"params": {
"count": 15
}
}
],
"max_points": 13.5
},
{
"key": "openssf_scorecard_contributors",
"name": "OpenSSF Scorecard: Contributors",
"detail": "project has 13 contributing companies or organizations",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
},
{
"key": "responsiveness",
"band": "good",
"name": "Issue & PR responsiveness",
"note": null,
"notes": [],
"value": 80,
"inputs": {
"merged_prs": 73,
"open_issues": 1,
"closed_issues": 2,
"issue_closed_ratio": 0.667,
"closed_unmerged_prs": 10
},
"components": [
{
"key": "issue_resolution",
"name": "Issue resolution",
"detail": "67% of issues closed",
"points": 31.2,
"status": "partial",
"details": [
{
"code": "issues_closed_share",
"params": {
"share": 67
}
}
],
"max_points": 46.75
},
{
"key": "pr_acceptance",
"name": "PR acceptance",
"detail": "73/83 decided PRs merged",
"points": 33.6,
"status": "partial",
"details": [
{
"code": "decided_prs_merged",
"params": {
"merged": 73,
"decided": 83
}
}
],
"max_points": 38.25
},
{
"key": "openssf_scorecard_code_review",
"name": "OpenSSF Scorecard: Code-Review",
"detail": "all changesets reviewed",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
}
]
},
{
"key": "stewardship",
"band": "moderate",
"name": "Ownership & stewardship",
"note": null,
"notes": [],
"value": 68,
"inputs": {
"followers": 53,
"owner_type": "Organization",
"is_verified": null,
"owner_login": "xapi-project",
"public_repos": 102,
"account_age_days": 5867
},
"components": [
{
"key": "ownership_backing",
"name": "Ownership backing",
"detail": "organization-owned",
"points": 30,
"status": "met",
"details": [
{
"code": "owner_organization",
"params": {}
}
],
"max_points": 30
},
{
"key": "verified_domain",
"name": "Verified domain",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
},
{
"key": "owner_reach",
"name": "Owner reach",
"detail": "53 followers of xapi-project",
"points": 12.5,
"status": "partial",
"details": [
{
"code": "owner_followers",
"params": {
"count": 53,
"login": "xapi-project"
}
}
],
"max_points": 25
},
{
"key": "track_record",
"name": "Track record",
"detail": "102 public repos, account ~16 yr old",
"points": 25,
"status": "met",
"details": [
{
"code": "public_repos",
"params": {
"count": 102
}
},
{
"code": "account_age_years",
"params": {
"years": 16
}
}
],
"max_points": 25
}
]
}
],
"description": "Will the project survive its people — bus factor, responsiveness, who backs it, and package upkeep?"
},
{
"key": "engineering",
"band": "at_risk",
"name": "Engineering Quality",
"value": 40,
"weight": 0.2,
"metrics": [
{
"key": "engineering_practices",
"band": "critical",
"name": "Engineering practices",
"note": null,
"notes": [],
"value": 24,
"inputs": {
"has_ci": true,
"has_tests": false,
"has_editorconfig": false,
"has_linter_config": false,
"has_precommit_config": false
},
"components": [
{
"key": "ci_workflows",
"name": "CI workflows",
"detail": "2 workflow(s)",
"points": 24,
"status": "met",
"details": [
{
"code": "ci_workflows",
"params": {
"count": 2
}
}
],
"max_points": 24
},
{
"key": "tests_present",
"name": "Tests present",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 24
},
{
"key": "linter_config",
"name": "Linter config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 16
},
{
"key": "pre_commit_hooks",
"name": "Pre-commit hooks",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 9.6
},
{
"key": "editorconfig",
"name": ".editorconfig",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 6.4
},
{
"key": "openssf_scorecard_ci_tests",
"name": "OpenSSF Scorecard: CI-Tests",
"detail": "0 out of 11 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 20
}
]
},
{
"key": "documentation",
"band": "moderate",
"name": "Documentation",
"note": null,
"notes": [],
"value": 65,
"inputs": {
"topics": [],
"has_wiki": true,
"homepage": "http://xapi-project.github.io/stdext/",
"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": "http://xapi-project.github.io/stdext/",
"points": 15,
"status": "met",
"details": [],
"max_points": 15
},
{
"key": "repository_description",
"name": "Repository description",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "topics",
"name": "Topics",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "wiki",
"name": "Wiki",
"detail": null,
"points": 10,
"status": "met",
"details": [],
"max_points": 10
}
]
}
],
"description": "Are baseline engineering and documentation practices in place?"
},
{
"key": "security",
"band": "at_risk",
"name": "Security",
"value": 40,
"weight": 0.16,
"metrics": [
{
"key": "security_posture",
"band": "at_risk",
"name": "Security posture",
"note": "Excluded from scoring (no data or not applicable): Branch-Protection, Packaging. Remaining weights renormalized.",
"notes": [
{
"code": "excluded_no_data",
"params": {
"components": [
"branch_protection",
"packaging"
]
}
},
{
"code": "weights_renormalized",
"params": {}
}
],
"value": 40,
"inputs": {
"source": "openssf_scorecard",
"checks_evaluated": 16,
"scorecard_version": "v5.5.0",
"checks_inconclusive": 2,
"scorecard_aggregate": 4
},
"components": [
{
"key": "binary_artifacts",
"name": "Binary-Artifacts",
"detail": "no binaries found in the repo",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "branch_protection",
"name": "Branch-Protection",
"detail": "internal error: error during branchesHandler.setup: internal error: some github tokens can't read classic branch protection rules: https://github.com/ossf/scorecard-action/blob/main/docs/authentication/fine-grained-auth-token.md",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 7.5
},
{
"key": "ci_tests",
"name": "CI-Tests",
"detail": "0 out of 11 merged PRs checked by a CI test -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "cii_best_practices",
"name": "CII-Best-Practices",
"detail": "no effort to earn an OpenSSF best practices badge detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 2.5
},
{
"key": "code_review",
"name": "Code-Review",
"detail": "all changesets reviewed",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
},
{
"key": "contributors",
"name": "Contributors",
"detail": "project has 13 contributing companies or organizations",
"points": 2.5,
"status": "met",
"details": [],
"max_points": 2.5
},
{
"key": "dangerous_workflow",
"name": "Dangerous-Workflow",
"detail": "no dangerous workflow patterns detected",
"points": 10,
"status": "met",
"details": [],
"max_points": 10
},
{
"key": "dependency_update_tool",
"name": "Dependency-Update-Tool",
"detail": "no update tool detected",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "fuzzing",
"name": "Fuzzing",
"detail": "project is not fuzzed",
"points": 0,
"status": "missed",
"details": [],
"max_points": 5
},
{
"key": "license",
"name": "License",
"detail": "license file detected",
"points": 2.2,
"status": "partial",
"details": [],
"max_points": 2.5
},
{
"key": "maintained",
"name": "Maintained",
"detail": "0 commit(s) and 0 issue activity found in the last 90 days -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "packaging",
"name": "Packaging",
"detail": "packaging workflow not detected",
"points": 0,
"status": "excluded",
"details": [
{
"code": "no_data",
"params": {}
}
],
"max_points": 5
},
{
"key": "pinned_dependencies",
"name": "Pinned-Dependencies",
"detail": "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": "Project has not signed or included provenance with any releases.",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "token_permissions",
"name": "Token-Permissions",
"detail": "detected GitHub workflow tokens with excessive permissions",
"points": 0,
"status": "missed",
"details": [],
"max_points": 7.5
},
{
"key": "vulnerabilities",
"name": "Vulnerabilities",
"detail": "0 existing vulnerabilities detected",
"points": 7.5,
"status": "met",
"details": [],
"max_points": 7.5
}
]
},
{
"key": "high_risk_jurisdiction_exposure",
"band": "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": 14
},
"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": "at_risk",
"name": "AI Readiness",
"value": 45,
"weight": 0,
"metrics": [
{
"key": "ai_agent_context",
"band": "at_risk",
"name": "Agent context & guidance",
"note": null,
"notes": [],
"value": 38,
"inputs": {
"has_llms_txt": false,
"legible_history_share": 0.72,
"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": "72 of 100 human commits state their intent (structured subject or explanatory body)",
"points": 38.4,
"status": "partial",
"details": [
{
"code": "legible_history",
"params": {
"legible": 72,
"sampled": 100
}
}
],
"max_points": 40
}
]
},
{
"key": "ai_verify_loop",
"band": "critical",
"name": "Verify loop (build / test / typecheck)",
"note": null,
"notes": [],
"value": 29,
"inputs": {
"has_nix": false,
"has_tests": false,
"lockfiles": [],
"has_dockerfile": false,
"typed_language": true,
"bootstrap_files": [
"Makefile"
],
"has_devcontainer": false,
"has_linter_config": false,
"typecheck_configs": [],
"agent_commit_share": 0,
"toolchain_manifests": [],
"dependency_bot_commit_share": 0
},
"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": 0,
"status": "missed",
"details": [],
"max_points": 22
},
{
"key": "lint_format_config",
"name": "Lint / format config",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 11
},
{
"key": "static_type_checking",
"name": "Static type checking",
"detail": "OCaml (statically typed)",
"points": 11,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "OCaml"
}
}
],
"max_points": 11
},
{
"key": "reproducible_environment",
"name": "Reproducible environment",
"detail": null,
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
},
{
"key": "demonstrated_agent_practice",
"name": "Demonstrated agent practice",
"detail": "no agent-authored commits among the last 100",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_agent_authored_commits",
"params": {
"sampled": 100
}
}
],
"max_points": 10
},
{
"key": "automated_maintenance",
"name": "Automated maintenance",
"detail": "no automated dependency updates observed",
"points": 0,
"status": "missed",
"details": [
{
"code": "no_dependency_automation",
"params": {}
}
],
"max_points": 8
},
{
"key": "openssf_scorecard_pinned_dependencies",
"name": "OpenSSF Scorecard: Pinned-Dependencies",
"detail": "dependency not pinned by hash detected -- score normalized to 0",
"points": 0,
"status": "missed",
"details": [],
"max_points": 10
}
]
},
{
"key": "ai_code_legibility",
"band": "excellent",
"name": "Code legibility for models",
"note": null,
"notes": [],
"value": 100,
"inputs": {
"primary_language": "OCaml",
"largest_source_bytes": 4569,
"source_files_sampled": 6,
"oversized_source_files": 0
},
"components": [
{
"key": "type_checkable_code",
"name": "Type-checkable code",
"detail": "OCaml (statically typed)",
"points": 45,
"status": "met",
"details": [
{
"code": "statically_typed_language",
"params": {
"language": "OCaml"
}
}
],
"max_points": 45
},
{
"key": "manageable_file_sizes",
"name": "Manageable file sizes",
"detail": "0/6 source files over 60KB",
"points": 55,
"status": "met",
"details": [
{
"code": "oversized_source_files",
"params": {
"kb": 60,
"sampled": 6,
"oversized": 0
}
}
],
"max_points": 55
}
]
}
],
"description": "How well is the repo equipped to be developed and maintained with AI coding agents? 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-23T00:27:58.901713Z",
"schema_version": "0.27.0",
"badge_url": "https://raw.githubusercontent.com/inspect-software/badges/main/v1/x/xapi-project/stdext.svg",
"full_name": "xapi-project/stdext",
"license_state": "custom",
"license_spdx": null
}