Skip to content

Releases: Josh-McFarlin/remix-image

Release 0.3.5

13 Feb 23:12
Compare
Choose a tag to compare

Changed

  • Added url parameter to transformer function to enable external transformer API usage

Release 0.3.4

13 Feb 22:23
Compare
Choose a tag to compare

Fixed

  • Added extra level of URI encode on url to preserve image src query

Release 0.3.3

13 Feb 21:54
Compare
Choose a tag to compare

Fixed

  • Added additional src decode on server for images that include query

Release 0.3.2

13 Feb 21:14
Compare
Choose a tag to compare

Fixed

  • Fixed Image query using wrong format if src property included its own query string

Release 0.3.1

09 Feb 20:18
Compare
Choose a tag to compare

Changed

  • Replaced bmp-js with @wokwi/bmp-ts for improved platform support.
  • Replaced instances of Buffer with Uint8Array

Release 0.3.0

09 Feb 19:03
Compare
Choose a tag to compare

Changed

  • add supported content type fields to transformers
  • modify how transform defaults are set and their types
  • Simplify transformers by removing buffer dependency for external transformers, move sharp
    transformer to examples, and create wasm transformer
  • BREAKING: Modified transformer to use a new function type, Sharp can no longer be passed in
    as is

Docs

  • Updated docs to use new transformer format
  • Created multiple new examples for various transformers
  • Created documentation for new usage of Sharp

Release 0.2.0

27 Jan 01:32
Compare
Choose a tag to compare

Docs

  • Created documentation website at remix-image.mcfarl.in
  • Updated package.json to include link to docs website
  • Simplified README.md, moving most info to docs website

Release 0.1.8

26 Jan 20:20
Compare
Choose a tag to compare

Changed

  • Removed Jimp due to Node dependencies and replaced with pure JavaScript image transformations.

Added

  • Created a resolver for Cloudflare KV.

Release 0.1.7

21 Jan 23:10
Compare
Choose a tag to compare

Added

  • Moved image transformation logic into separate files to later support additional platforms.
  • Created new image transformer that uses Jimp to transform images with pure JavaScript.

Changed

  • Switched default image transformer to Jimp support all platforms by default

Release 0.1.6

21 Jan 21:27
Compare
Choose a tag to compare

Changed

  • BREAKING: Modified Cache setup to use class instances to later support additional platforms.

Added

  • Created new MemoryCache that does not store files on the file system (for platforms that do not support file system access like Cloudflare)