Skip to content

Commit b2a424c

Browse files
committed
feat: add next16 support
1 parent 91c2933 commit b2a424c

File tree

3 files changed

+291
-97
lines changed

3 files changed

+291
-97
lines changed

.github/dependency-review/dependency-review-config.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,3 +24,24 @@ allow-licenses:
2424
- 'Unlicense'
2525
- 'WTFPL'
2626
- 'Zlib'
27+
allow-dependencies-licenses:
28+
# These packages are needed for nextjs (more detailed sharp)
29+
# they are dynamic libraries and thus do not ship the underlying library
30+
# which means they are not under LGPL strictly speaking.
31+
# so an exception is valid here
32+
# ALSO: none of these are shipped to the customer. they're only used as dev dependencies.
33+
- 'pkg:npm/%2540img/sharp-libvips-darwin-arm64@1.2.4'
34+
- 'pkg:npm/%2540img/sharp-libvips-darwin-x64@1.2.4'
35+
- 'pkg:npm/%2540img/sharp-libvips-linux-arm@1.2.4'
36+
- 'pkg:npm/%2540img/sharp-libvips-linux-arm64@1.2.4'
37+
- 'pkg:npm/%2540img/sharp-libvips-linux-ppc64@1.2.4'
38+
- 'pkg:npm/%2540img/sharp-libvips-linux-riscv64@1.2.4'
39+
- 'pkg:npm/%2540img/sharp-libvips-linux-s390x@1.2.4'
40+
- 'pkg:npm/%2540img/sharp-libvips-linux-x64@1.2.4'
41+
- 'pkg:npm/%2540img/sharp-libvips-linuxmusl-arm64@1.2.4'
42+
- 'pkg:npm/%2540img/sharp-libvips-linuxmusl-x64@1.2.4'
43+
- 'pkg:npm/%2540img/sharp-wasm32'
44+
- 'pkg:npm/%2540img/sharp-win32-arm64'
45+
- 'pkg:npm/%2540img/sharp-win32-ia32'
46+
- 'pkg:npm/%2540img/sharp-win32-x64'
47+
- 'pkg:npm/unicode-match-property-value-ecmascript@2.2.1'

packages/adapter-nextjs/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55
"description": "The adapter for the supporting of using Amplify APIs in Next.js.",
66
"peerDependencies": {
77
"aws-amplify": "^6.13.1",
8-
"next": ">=13.5.0 <16.0.0"
8+
"next": ">=13.5.0 <17.0.0"
99
},
1010
"dependencies": {
1111
"aws-jwt-verify": "^4.0.1"
@@ -16,7 +16,7 @@
1616
"@types/react-dom": "^18.2.6",
1717
"aws-amplify": "6.15.8",
1818
"jest-fetch-mock": "3.0.3",
19-
"next": ">= 13.5.0 < 15.0.0"
19+
"next": ">= 13.5.0 <17.0.0"
2020
},
2121
"publishConfig": {
2222
"access": "public"

0 commit comments

Comments
 (0)