Skip to content

Commit e85813d

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

File tree

3 files changed

+316
-122
lines changed

3 files changed

+316
-122
lines changed
Lines changed: 46 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,47 @@
11
allow-licenses:
2-
- '0BSD'
3-
- 'Apache-2.0'
4-
- 'BlueOak-1.0.0'
5-
- 'BSD-1-Clause'
6-
- 'BSD-2-Clause-FreeBSD'
7-
- 'BSD-2-Clause'
8-
- 'BSD-3-Clause-Attribution'
9-
- 'BSD-3-Clause'
10-
- 'BSL-1.0'
11-
- 'CC-BY-3.0'
12-
- 'CC-BY-4.0'
13-
- 'CC-BY-SA-4.0'
14-
- 'CC0-1.0'
15-
- 'curl'
16-
- 'ISC'
17-
- 'JSON'
18-
- 'MIT'
19-
- 'MIT-0'
20-
- 'OpenSSL'
21-
- 'PDDL-1.0'
22-
- 'PostgreSQL'
23-
- 'Python-2.0'
24-
- 'Unlicense'
25-
- 'WTFPL'
26-
- 'Zlib'
2+
- '0BSD'
3+
- 'Apache-2.0'
4+
- 'BlueOak-1.0.0'
5+
- 'BSD-1-Clause'
6+
- 'BSD-2-Clause-FreeBSD'
7+
- 'BSD-2-Clause'
8+
- 'BSD-3-Clause-Attribution'
9+
- 'BSD-3-Clause'
10+
- 'BSL-1.0'
11+
- 'CC-BY-3.0'
12+
- 'CC-BY-4.0'
13+
- 'CC-BY-SA-4.0'
14+
- 'CC0-1.0'
15+
- 'curl'
16+
- 'ISC'
17+
- 'JSON'
18+
- 'MIT'
19+
- 'MIT-0'
20+
- 'OpenSSL'
21+
- 'PDDL-1.0'
22+
- 'PostgreSQL'
23+
- 'Python-2.0'
24+
- 'Unlicense'
25+
- 'WTFPL'
26+
- '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)