Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,6 +68,7 @@ The following table lists the release version of this repo together with the ver
| 1.1.0 | 0.27.0 | 8.10.5 | 1.10.0 | 1.1.0 | 1.0.8 | 12 |
| 1.2.0 | 0.28.2 | 8.10.6 | 1.12.0 | 1.2.0 | 1.0.8 | 12 |
| 2.0.0 | 0.29.1 | 8.11.3 | 1.12.0 | 1.2.1 | 1.0.8 | 14 |
| 2.30.3 | 0.30.3 | 8.12.2 | 1.12.0 | 1.2.2 | 1.0.8 | 14 |

### CompatibleRuntimes
- `nodejs12.x` (v1.x)
Expand Down
2 changes: 1 addition & 1 deletion examples/src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sharp-heic-sample",
"version": "2.0.2",
"version": "2.30.3",
"description": "",
"main": "index.js",
"scripts": {
Expand Down
11 changes: 6 additions & 5 deletions layer/Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
# Library Versions
WEBP_VERSION=1.2.1
WEBP_VERSION=1.2.2
LIBDE265_VERSION=1.0.8
LIBHEIF_VERSION=1.12.0
VIPS_VERSION=8.11.3
SHARP_VERSION=0.29.1
VIPS_VERSION=8.12.2
SHARP_VERSION=0.30.3

PREFIX_PATH=/opt

Expand All @@ -30,7 +30,7 @@ libde265:
libheif: libde265
# libheif
curl -L https://github.com/strukturag/libheif/releases/download/v$(LIBHEIF_VERSION)/libheif-$(LIBHEIF_VERSION).tar.gz | tar zx
cd libheif-$(LIBHEIF_VERSION) && ./autogen.sh && ./configure --prefix=$(PREFIX_PATH) && make V=0 && make install
cd libheif-$(LIBHEIF_VERSION) && ./autogen.sh && ./configure --prefix=$(PREFIX_PATH) --with-lcms && make V=0 && make install

libvips: installLib libheif libwebp
# libvips
Expand All @@ -48,4 +48,5 @@ installLib:
giflib-devel \
libexif-devel \
librsvg2-devel \
libtiff-devel
libtiff-devel \
lcms2-devel
4 changes: 2 additions & 2 deletions layer/src/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sharp-heic",
"version": "2.0.2",
"version": "2.30.3",
"description": "",
"main": "index.js",
"scripts": {},
Expand All @@ -11,6 +11,6 @@
"node": ">=14.0"
},
"dependencies": {
"sharp": "^0.29.1"
"sharp": "^0.30.3"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "sharp-heic-lambda-layer",
"version": "2.0.2",
"version": "2.30.3",
"description": "Lambda Layer providing sharp with HEIC support",
"main": "index.js",
"scripts": {
Expand Down