apollo-android v2.4.5 Release Notes

Release Date: 2020-11-18 // over 3 years ago
  • ๐Ÿ”– Version 2.4.5 is a minor release with Gradle plugin improvements for manipulating schemas as well as a few other bugfixes.

    convertApolloSchema

    You can now convert your schema from Json to SDL and vice-versa:

    ./gradlew convertApolloSchema --from schema.json --to schema.sdl
    

    pushApolloSchema

    ๐Ÿ“„ You can now push a schema to your Apollo Studio registry:

    ./gradlew uploadApolloSchema --key $key --graph $graph --schema schema.sdl
    

    Full Changelog

    ๐Ÿฑ โœจ New

    ๐Ÿ”Œ [Gradle Plugin] add ./gradlew convertApolloSchema --from schema.json --to schema.sdl (#2757)
    ๐Ÿ”Œ [Gradle plugin] Add pushApolloSchema (#2737)
    [Publishing] add version and a few other attributes to the jar Manifest (#2736)
    ๐Ÿ‘ [Runtime] Introduce custom error class for better error handling (#2751)

    ๐Ÿ›  ๐Ÿ‘ทโ€ Fixes

    [Codegen] Fix capitalized field names in input objects (#2746)