package awso-common
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page
AWSO common library
Install
dune-project
Dependency
Authors
Maintainers
Sources
awso-0.9.0.tbz
sha256=47224890900b1f5d2bd717000a02fa8918f92eafa99f702f7d59a1b053ff8e95
sha512=e187288f7c8fccb221f5417671732c8c8de95cdbacba1514db592b5700df2293468bde07956539bd44f3d460f6c75d38bd66ca161d0eae68a8b1b4e081882367
doc/CHANGES.html
Changelog
0.9.0 (2026-05-17)
Initial opam release, forked from solvuu/awsm, which was itself never released to opam.
Architectural changes since the fork
- Replaced the lightweight higher kinded polymorphism with a functorized approach. (End users don't need to instantiate the functors, it's already done in the library)
- Restructured
aws/intoaws/<service>/{async,lwt,sync}/, each backend ships only what it needs. - Eliminated the
Transportvariant from API responses; only AWS-side errors stay inResult, transport errors raise, similar to the convention Async follows. - As advised by opam-repository crew, consolidated the per-service opam packages into sub-libraries under each backend.
opam install awso-asyncpulls in every service binding underawso-async.<svc>. Same for-lwtand-sync. - Pre-generate the
aws/tree and commit it. opam install no longer runs the codegen, which means end users require ~25 less packages in their dependency cone.
New stuff
awso-sync: synchronous (blocking) backend implemented over libcurl. For scripts and CLIs where pulling in an async scheduler is overkillawso-cli: for fun, an everything including the kitchen sink binary that exposes every awso-async service as a composable subcommand, similar in spirit to the python aws-cli. Ships as bytecode because linking ~400 native service libraries exceeds ARM64 executable assembly size limitsdogfood/tools used by maintainers to develop awso
Compatibility & dep hygiene
- minimum OCaml is 5.0 (4.14 to be available next release!)
- now on dune 3.6
- removed Jane Street
Corefrom the non-Async runtimes; non-async builds now use a very smallJane_compatshim underlib/common/ - replaced ad-hoc JSON with
Yojson.Safe.teverywhere
Code generation changes
- Freshened to botocore 1.43.9
- Huge precomputed
endpoints.jsonmatch table replaced with a memoised lookup - Output shapes treat
requiredas advisory. AWS itself routinely omits fields it marks required (AccessDeniedExceptionwith noMessage,GeocodeResponsewith noPricingBucket), so deserializers don't blow up when the service lies about its own spec. Input shapes still respectrequired. shim for newer services whose hostname doesn't followendpointPrefixconventions (geo-places, geo-maps, geo-routes, iot-data, sso). snake-case and endpoint name/wire name fixes - Escape odoc special characters in generated doc comments
- 22 retired AWS services that were dropped from botocore
See TODO.md for things known to still be rough
sectionYPositions = computeSectionYPositions($el), 10)"
x-init="setTimeout(() => sectionYPositions = computeSectionYPositions($el), 10)"
>
On This Page