upstream: github.com/mirleft/ocaml-tls
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

json: rename mem -> member / finish -> seal across the codec + value API

Object combinators: [Object.mem] -> [Object.member], [Object.opt_mem]
-> [Object.opt_member], [Object.case_mem] -> [Object.case_member]. The
sibling submodules [Object.Mem] / [Object.Mems] become
[Object.Member] / [Object.Members]. RFC 8259 §4 calls these
"name/value pairs, referred to as the members", so mirror the spec
name rather than the shortened [mem].

[Object.finish] -> [Object.seal]. "Seal" reads as "close the map, no
more members added", which is what the operation does.

Value constructors/queries: [Value.mem] (function) -> [Value.member];
[Value.mem_find] -> [Value.member_key]; [Value.mem_names] ->
[Value.member_names]; [Value.mem_keys] -> [Value.member_keys].
[type mem = ...] -> [type member = ...]; [type object'] still points
at [member list].

Downstream (~80 files across slack, sbom, stripe, sigstore, requests,
claude, irmin, freebox) updated via perl-pie. dune build clean,
dune test ocaml-json clean.

+2 -2
+1 -1
dune-project
··· 53 53 (eio (>= 0.12)) 54 54 (eio_main (and (>= 0.12) :with-test)) 55 55 (mdx :with-test) 56 - (crowbar (and (>= 0.2.1) :with-test)) 56 + (alcobar :with-test) 57 57 (logs (and (>= 0.7.0) :with-test)) 58 58 (ptime (>= 1.0.0))))
+1 -1
tls-eio.opam
··· 21 21 "eio" {>= "0.12"} 22 22 "eio_main" {>= "0.12" & with-test} 23 23 "mdx" {with-test} 24 - "crowbar" {>= "0.2.1" & with-test} 24 + "alcobar" {with-test} 25 25 "logs" {>= "0.7.0" & with-test} 26 26 "ptime" {>= "1.0.0"} 27 27 "odoc" {with-doc}