Skip to content

Commit 6a51be4

Browse files
committed
Bumps node modules
1 parent 2e2d07d commit 6a51be4

37 files changed

Lines changed: 1098 additions & 1339 deletions

File tree

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
/// <reference path="./.next/types/routes.d.ts" />
3+
import "./.next/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/app/api-reference/config/typescript for more information.

amplify/amplify-cdk/app/package.json

Lines changed: 9 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -24,22 +24,22 @@
2424
"@mui/icons-material": "^7.3.4",
2525
"@mui/material": "^7.3.4",
2626
"autoprefixer": "^10.4.21",
27-
"next": "^15.5.6",
27+
"next": "16.0.0",
2828
"postcss": "^8.5.6",
29-
"react": "^19.2.0",
30-
"react-dom": "^19.2.0",
31-
"tailwindcss": "^4.1.14",
29+
"react": "19.2.0",
30+
"react-dom": "19.2.0",
31+
"tailwindcss": "^4.1.15",
3232
"web-vitals": "^4.2.4"
3333
},
3434
"devDependencies": {
3535
"@eslint/compat": "^1.4.0",
3636
"@eslint/core": "^0.16.0",
3737
"@eslint/js": "^9.38.0",
38-
"@next/bundle-analyzer": "^15.5.6",
38+
"@next/bundle-analyzer": "16.0.0",
3939
"@stylistic/eslint-plugin": "^5.5.0",
40-
"@tailwindcss/postcss": "^4.1.14",
41-
"@types/node": "^22.18.11",
42-
"@types/react": "^19.2.2",
40+
"@tailwindcss/postcss": "^4.1.15",
41+
"@types/node": "^22.18.12",
42+
"@types/react": "19.2.2",
4343
"eslint": "^9.38.0",
4444
"eslint-import-resolver-typescript": "^4.4.4",
4545
"eslint-plugin-import": "^2.32.0",
@@ -48,7 +48,7 @@
4848
"rimraf": "^6.0.1",
4949
"styled-jsx": "^5.1.7",
5050
"typescript": "^5.9.3",
51-
"typescript-eslint": "^8.46.1"
51+
"typescript-eslint": "^8.46.2"
5252
},
5353
"jest": {
5454
"transform": {

amplify/amplify-cdk/app/tsconfig.json

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"target": "esnext",
44
"module": "esnext",
5-
"jsx": "preserve",
5+
"jsx": "react-jsx",
66
"allowJs": true,
77
"moduleResolution": "node",
88
"allowSyntheticDefaultImports": true,
@@ -59,6 +59,7 @@
5959
"src/**/*.tsx",
6060
"src/**/*.js",
6161
"src/**/*.jsx",
62-
".next/types/**/*.ts"
62+
".next/types/**/*.ts",
63+
".next/dev/types/**/*.ts"
6364
]
6465
}

amplify/amplify-cdk/infra/package.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -10,8 +10,8 @@
1010
},
1111
"devDependencies": {
1212
"@types/jest": "^29.5.14",
13-
"@types/node": "^22.18.11",
14-
"aws-cdk": "^2.1030.0",
13+
"@types/node": "^22.18.12",
14+
"aws-cdk": "^2.1031.0",
1515
"jest": "^29.7.0",
1616
"ts-jest": "^29.4.5",
1717
"ts-node": "^10.9.2",
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/// <reference types="next" />
22
/// <reference types="next/image-types/global" />
3-
/// <reference path="./.next/types/routes.d.ts" />
3+
import "./.next/types/routes.d.ts";
44

55
// NOTE: This file should not be edited
66
// see https://nextjs.org/docs/pages/api-reference/config/typescript for more information.

amplify/amplify_nextapp/package.json

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -16,15 +16,15 @@
1616
"lint-fix": "pnpm prettier-format && pnpm eslint-fix"
1717
},
1818
"dependencies": {
19-
"next": "^15.5.6",
20-
"react": "^19.2.0",
21-
"react-dom": "^19.2.0"
19+
"next": "16.0.0",
20+
"react": "19.2.0",
21+
"react-dom": "19.2.0"
2222
},
2323
"devDependencies": {
24-
"@next/bundle-analyzer": "^15.5.6",
25-
"@types/node": "^22.18.11",
26-
"@types/react": "^19.2.2",
27-
"@types/react-dom": "^19.2.2",
24+
"@next/bundle-analyzer": "16.0.0",
25+
"@types/node": "^22.18.12",
26+
"@types/react": "19.2.2",
27+
"@types/react-dom": "19.2.2",
2828
"prettier": "^3.6.2",
2929
"typescript": "^5.9.3"
3030
}

amplify/amplify_nextapp/src/pages/_app.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import type { AppProps } from 'next/app';
32

43
import '../styles/globals.css';

amplify/amplify_nextapp/src/pages/index.tsx

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,3 @@
1-
import React from 'react';
21
import type { NextPage } from 'next';
32
import Head from 'next/head';
43
import styles from '../styles/Home.module.css';

amplify/amplify_nextapp/tsconfig.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
"compilerOptions": {
33
"target": "esnext",
44
"module": "esnext",
5-
"jsx": "preserve",
5+
"jsx": "react-jsx",
66
"allowJs": true,
77
"moduleResolution": "node",
88
"allowSyntheticDefaultImports": true,
@@ -54,4 +54,4 @@
5454
"src/**/*.ts",
5555
"src/**/*.tsx"
5656
]
57-
}
57+
}

bedrock/agentcore-runtime-agent-example/app/package.json

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,30 +19,30 @@
1919
"node": ">=22.0.0"
2020
},
2121
"dependencies": {
22-
"@ai-sdk/amazon-bedrock": "^3.0.43",
23-
"@aws-sdk/credential-providers": "^3.913.0",
22+
"@ai-sdk/amazon-bedrock": "^3.0.45",
23+
"@aws-sdk/credential-providers": "^3.914.0",
2424
"@aws/aws-distro-opentelemetry-node-autoinstrumentation": "^0.7.0",
2525
"@mastra/core": "0.18.0",
2626
"@mastra/libsql": "0.14.3",
2727
"@mastra/loggers": "0.10.13",
2828
"@mastra/mcp": "0.13.1",
2929
"@mastra/memory": "0.15.3",
30-
"hono": "^4.10.1",
30+
"hono": "^4.10.2",
3131
"zod": "^3.25.76"
3232
},
3333
"devDependencies": {
3434
"@eslint/compat": "^1.4.0",
3535
"@eslint/core": "^0.16.0",
3636
"@eslint/js": "^9.38.0",
3737
"@stylistic/eslint-plugin": "^5.5.0",
38-
"@types/node": "^24.8.1",
38+
"@types/node": "^24.9.1",
3939
"eslint": "^9.38.0",
4040
"eslint-import-resolver-typescript": "^4.4.4",
4141
"eslint-plugin-import": "^2.32.0",
4242
"eslint-plugin-promise": "^7.2.1",
4343
"jiti": "^2.6.1",
4444
"mastra": "0.13.2",
4545
"typescript": "^5.9.3",
46-
"typescript-eslint": "^8.46.1"
46+
"typescript-eslint": "^8.46.2"
4747
}
4848
}

0 commit comments

Comments
 (0)