Skip to content

Releases: jaydenseric/graphql-multipart-request-spec

Version 2.0.0

28 Jan 14:27
Compare
Choose a tag to compare
  • Added a diagram explaining sync vs async GraphQL multipart request middleware.
  • Improved examples:
  • Display a current implementation list.
  • Updated Prettier config.

Includes all the changes from:

Version 2.0.0-alpha.2

19 Nov 10:04
Compare
Choose a tag to compare
Version 2.0.0-alpha.2 Pre-release
Pre-release
  • Order operations field first. It simplifies implementations and ensures operations is always the first field if we decide to allow the files map to be omitted for multipart requests without files.
  • Rename files field map. It was a little confusing that a field named files did not actually contain any files. In implementations the name inconveniently conflicted when naming variables and destructuring.

Version 2.0.0-alpha.1

18 Nov 10:19
Compare
Choose a tag to compare
Version 2.0.0-alpha.1 Pre-release
Pre-release
  • New files field and file field naming system. This makes it possible to implement:
    • File deduplication.
    • File upload streams in resolvers.
    • Aborting file uploads in resolvers.
  • Fixed the Github release badge URL.
  • Added extract-files to the relevant projects list.
  • Updated an Apollo documentation link.
  • Spelling error fix.
  • Prettier markdown.

Version 1

06 Nov 03:53
Compare
Choose a tag to compare

As implemented by:

A new v2 will be drafted soon to make it possible to implement:

  • File upload streams in resolvers.
  • Aborting file uploads in resolvers.
  • Deduplication of files for batched operations.