Skip to content

Releases: WhatsApp/erlang-argo

1.0.10 (2024-06-03)

03 Jun 18:28
v1.0.10
dbd2766
Compare
Choose a tag to compare

1.0.10 (2024-06-03)

  • Enhancements
    • Add support for GraphQL Inspection.
    • Add argo_graphql_field_definition:builtin_query/1 which includes support for __schema and __type implicit root query fields.

1.0.9 (2024-05-10)

10 May 22:03
v1.0.9
36d85a9
Compare
Choose a tag to compare

1.0.9 (2024-05-10)

  • Enhancements
    • Add argo_limits and argo_varbit for controlling the maximum number of bits supported in HasUserFlags (defaults to 700-bits).
    • Add new functions to argo_header:
      • argo_header:from_http_argo_mode/1 and argo_header:to_http_argo_mode/1
        • For use with HTTP header Argo-Mode.
        • For example:
          Argo-Mode: InlineEverything;SelfDescribing;OutOfBandFieldErrors;SelfDescribingErrors;NullTerminatedStrings;NoDeduplication;HasUserFlags:10
          
      • argo_header:from_u64/1 and argo_header:to_u64/1
        • For use with encode/decode of ArgoHeader to an unsigned 64-bit integer.
        • For example:
          argo_header:from_u64(32640).
      • argo_header:from_uint/1 and argo_header:to_uint/1
        • For use with encode/decode of ArgoHeader to an unsigned integer (may be larger than 64-bits).
        • For example:
          argo_header:from_uint(2586086763326778769917682175246592).

1.0.8 (2024-04-29)

29 Apr 13:40
v1.0.8
f8a72a0
Compare
Choose a tag to compare

1.0.8 (2024-04-29)

  • Fixes
    • Fix edge case where NON_NULL(DESC(NULL)) is the same as NULL (see msolomon/argo#18).

1.0.7 (2024-04-28)

28 Apr 23:45
v1.0.7
cf999f7
Compare
Choose a tag to compare

1.0.7 (2024-04-28)

  • Enhancements
    • Support DESC type for scalars as described in Argo 1.2.0).

1.0.6 (2024-04-27)

  • Enhancements
    • Add new functions to argo_index_map:
      • argo_index_map:groups_from_list/2
      • argo_index_map:groups_from_list/3
    • Add new function to argo_graphql_field:
      • argo_graphql_field:get_response_key/1
    • Reorganize argo_typer to better match upstream.
  • Fixes

1.0.5 (2024-04-23)

23 Apr 16:18
v1.0.5
5f72041
Compare
Choose a tag to compare
  • Enhancements
    • Add new functions to argo_index_map:
      • argo_index_map:filter/2
      • argo_index_map:filtermap/2
      • argo_index_map:sort/1
      • argo_index_map:sort/2
    • Add new functions to argo_index_set:
      • argo_index_set:sort/1
      • argo_index_set:sort/2
  • Fixes