Releases: jpalumickas/uplo
Releases · jpalumickas/uplo
v0.21.0
v0.20.0
- Separate
@uplo/server
from@uplo/node
. This will allow to use@uplo/server
in Edge environment. - Add
Uint8Array
support for GCS service
v0.19.2
v0.19.2
v0.19.1
v0.19.1
v0.19.0
Breaking Changes
Drop support for node older than 18
Extracted analyzer to separate package
npm i @uplo/analyzer
const uploAnalyzer = UploAnalyzer({
analyzers: [ImageAnalyzer()]
})
uploAnalyzer.analyze({ blob })
Attach file now accepts blob inputs (blobFileInput, blobBufferInput, blobStringInput)
import { blobBufferInput } from '@uplo/node'
await uplo.attachments.link(link.id).html.attachFile(
await blobBufferInput({
fileName: 'index.html',
contentType: 'text/html',
content: Buffer.from(content.html, 'utf-8'),
})
)
v0.18.1
Upgrade packages
v0.18.0
- Migrate from
jsonwebtoken
tojose
- Update Uplo utils to support Edge runtime
- Remove
lodash
dependency
v0.17.11
- Set ACL headers if bucket is public
- Allow to specify default service name
v0.17.10
- Fix public S3 url with custom endpoint
v0.17.9
- Add callbacks to react native package