diff --git a/docs/api-constructor.md b/docs/api-constructor.md
index 305a0222..b379cc03 100644
--- a/docs/api-constructor.md
+++ b/docs/api-constructor.md
@@ -20,7 +20,7 @@ Implements the [stream.Duplex](http://nodejs.org/api/stream.html#stream_class_st
| Param | Type | Default | Description |
| --- | --- | --- | --- |
-| [input] | Buffer
\| Uint8Array
\| Uint8ClampedArray
\| Int8Array
\| Uint16Array
\| Int16Array
\| Uint32Array
\| Int32Array
\| Float32Array
\| Float64Array
\| string
| | if present, can be a Buffer / Uint8Array / Uint8ClampedArray containing JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image data, or a TypedArray containing raw pixel image data, or a String containing the filesystem path to an JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image file. JPEG, PNG, WebP, AVIF, GIF, SVG, TIFF or raw pixel image data can be streamed into the object when not present. |
+| [input] | Buffer
\| ArrayBuffer
\| Uint8Array
\| Uint8ClampedArray
\| Int8Array
\| Uint16Array
\| Int16Array
\| Uint32Array
\| Int32Array
\| Float32Array
\| Float64Array
\| string
| | if present, can be a Buffer / ArrayBuffer / Uint8Array / Uint8ClampedArray containing JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image data, or a TypedArray containing raw pixel image data, or a String containing the filesystem path to an JPEG, PNG, WebP, AVIF, GIF, SVG or TIFF image file. JPEG, PNG, WebP, AVIF, GIF, SVG, TIFF or raw pixel image data can be streamed into the object when not present. |
| [options] | Object
| | if present, is an Object with optional attributes. |
| [options.failOn] | string
| "'warning'"
| when to abort processing of invalid pixel data, one of (in order of sensitivity): 'none' (least), 'truncated', 'error' or 'warning' (most), highers level imply lower levels, invalid metadata will always abort. |
| [options.limitInputPixels] | number
\| boolean
| 268402689
| Do not process input images where the number of pixels (width x height) exceeds this limit. Assumes image dimensions contained in the input metadata can be trusted. An integral Number of pixels, zero or false to remove limit, true to use default limit of 268402689 (0x3FFF x 0x3FFF). |
diff --git a/docs/changelog.md b/docs/changelog.md
index 4dc07547..a25cdf07 100644
--- a/docs/changelog.md
+++ b/docs/changelog.md
@@ -43,6 +43,10 @@ Requires libvips v8.14.0
* Reduce sharpen `sigma` maximum from 10000 to 10.
[#3521](https://github.com/lovell/sharp/issues/3521)
+* Add support for `ArrayBuffer` input.
+ [#3548](https://github.com/lovell/sharp/pull/3548)
+ [@kapouer](https://github.com/kapouer)
+
## v0.31 - *eagle*
Requires libvips v8.13.3