@aws/nx-plugin 0.94.2 → 0.95.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE-THIRD-PARTY +552 -515
- package/package.json +11 -11
- package/src/infra/app/__snapshots__/generator.spec.ts.snap +25 -25
- package/src/preset/__snapshots__/generator.spec.ts.snap +3 -3
- package/src/py/fast-api/__snapshots__/generator.spec.ts.snap +14 -12
- package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +4 -4
- package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +7 -7
- package/src/smithy/ts/api/__snapshots__/generator.spec.ts.snap +8 -6
- package/src/trpc/backend/__snapshots__/generator.spec.ts.snap +24 -18
- package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +45 -45
- package/src/ts/strands-agent/__snapshots__/generator.spec.ts.snap +1 -1
- package/src/utils/api-constructs/files/cdk/app/apis/http/__apiNameKebabCase__.ts.template +6 -8
- package/src/utils/api-constructs/files/cdk/app/apis/rest/__apiNameKebabCase__.ts.template +6 -8
- package/src/utils/versions.d.ts +45 -45
- package/src/utils/versions.js +44 -44
- package/src/utils/versions.js.map +1 -1
|
@@ -138,14 +138,6 @@ export class <%= apiNameClassName %><
|
|
|
138
138
|
<%_ if (backend.type === 'fastapi') { _%>
|
|
139
139
|
snapStart: SnapStartConf.ON_PUBLISHED_VERSIONS,
|
|
140
140
|
<%_ } _%>
|
|
141
|
-
environment: {
|
|
142
|
-
RUNTIME_CONFIG_APP_ID: rc.appConfigApplicationId,
|
|
143
|
-
<%_ if (backend.type === 'fastapi') { _%>
|
|
144
|
-
PORT: '8000',
|
|
145
|
-
AWS_LWA_INVOKE_MODE: 'response_stream',
|
|
146
|
-
AWS_LAMBDA_EXEC_WRAPPER: '/opt/bootstrap',
|
|
147
|
-
<%_ } _%>
|
|
148
|
-
},
|
|
149
141
|
},
|
|
150
142
|
buildDefaultIntegration: (op, props: FunctionProps) => {
|
|
151
143
|
<%_ const lambdaTarget = backend.type === 'fastapi' ? 'handler.currentVersion' : 'handler'; _%>
|
|
@@ -164,6 +156,12 @@ export class <%= apiNameClassName %><
|
|
|
164
156
|
: '';
|
|
165
157
|
_%>
|
|
166
158
|
const handler = new Function(scope, `<%= apiNameClassName %>${op}Handler`, props);
|
|
159
|
+
handler.addEnvironment('RUNTIME_CONFIG_APP_ID', rc.appConfigApplicationId);
|
|
160
|
+
<%_ if (backend.type === 'fastapi') { _%>
|
|
161
|
+
handler.addEnvironment('PORT', '8000');
|
|
162
|
+
handler.addEnvironment('AWS_LWA_INVOKE_MODE', 'response_stream');
|
|
163
|
+
handler.addEnvironment('AWS_LAMBDA_EXEC_WRAPPER', '/opt/bootstrap');
|
|
164
|
+
<%_ } _%>
|
|
167
165
|
rc.grantReadAppConfig(handler);
|
|
168
166
|
<%_ if (backend.type === 'fastapi') { _%>
|
|
169
167
|
const stack = Stack.of(scope);
|
package/src/utils/versions.d.ts
CHANGED
|
@@ -6,10 +6,10 @@
|
|
|
6
6
|
* Versons for TypeScript dependencies added by generators
|
|
7
7
|
*/
|
|
8
8
|
export declare const TS_VERSIONS: {
|
|
9
|
-
readonly '@aws/aws-distro-opentelemetry-node-autoinstrumentation': "0.
|
|
10
|
-
readonly '@aws-sdk/client-dynamodb': "3.
|
|
11
|
-
readonly '@aws-sdk/client-sts': "3.
|
|
12
|
-
readonly '@aws-sdk/credential-providers': "3.
|
|
9
|
+
readonly '@aws/aws-distro-opentelemetry-node-autoinstrumentation': "0.10.0";
|
|
10
|
+
readonly '@aws-sdk/client-dynamodb': "3.1029.0";
|
|
11
|
+
readonly '@aws-sdk/client-sts': "3.1029.0";
|
|
12
|
+
readonly '@aws-sdk/credential-providers': "3.1029.0";
|
|
13
13
|
readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
|
|
14
14
|
readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
|
|
15
15
|
readonly '@aws-lambda-powertools/logger': "2.32.0";
|
|
@@ -17,39 +17,39 @@ export declare const TS_VERSIONS: {
|
|
|
17
17
|
readonly '@aws-lambda-powertools/parameters': "2.32.0";
|
|
18
18
|
readonly '@aws-lambda-powertools/tracer': "2.32.0";
|
|
19
19
|
readonly '@aws-lambda-powertools/parser': "2.32.0";
|
|
20
|
-
readonly '@aws-sdk/client-appconfigdata': "3.
|
|
20
|
+
readonly '@aws-sdk/client-appconfigdata': "3.1029.0";
|
|
21
21
|
readonly '@middy/core': "7.2.1";
|
|
22
22
|
readonly '@nxlv/python': "22.1.1";
|
|
23
23
|
readonly '@nx-extend/terraform': "10.2.1";
|
|
24
|
-
readonly '@nx/devkit': "22.6.
|
|
25
|
-
readonly '@nx/react': "22.6.
|
|
26
|
-
readonly 'create-nx-workspace': "22.6.
|
|
24
|
+
readonly '@nx/devkit': "22.6.5";
|
|
25
|
+
readonly '@nx/react': "22.6.5";
|
|
26
|
+
readonly 'create-nx-workspace': "22.6.5";
|
|
27
27
|
readonly '@modelcontextprotocol/sdk': "1.29.0";
|
|
28
28
|
readonly '@modelcontextprotocol/inspector': "0.19.0";
|
|
29
29
|
readonly '@strands-agents/sdk': "0.7.0";
|
|
30
|
-
readonly '@tanstack/react-router': "1.168.
|
|
31
|
-
readonly '@tanstack/router-plugin': "1.167.
|
|
32
|
-
readonly '@tanstack/router-generator': "1.166.
|
|
30
|
+
readonly '@tanstack/react-router': "1.168.17";
|
|
31
|
+
readonly '@tanstack/router-plugin': "1.167.16";
|
|
32
|
+
readonly '@tanstack/router-generator': "1.166.28";
|
|
33
33
|
readonly '@tanstack/virtual-file-routes': "1.161.7";
|
|
34
34
|
readonly '@tanstack/router-utils': "1.161.6";
|
|
35
|
-
readonly '@cloudscape-design/board-components': "3.0.
|
|
36
|
-
readonly '@cloudscape-design/components': "3.0.
|
|
37
|
-
readonly '@cloudscape-design/global-styles': "1.0.
|
|
38
|
-
readonly '@tanstack/react-query': "5.
|
|
39
|
-
readonly '@tanstack/react-query-devtools': "5.
|
|
35
|
+
readonly '@cloudscape-design/board-components': "3.0.166";
|
|
36
|
+
readonly '@cloudscape-design/components': "3.0.1272";
|
|
37
|
+
readonly '@cloudscape-design/global-styles': "1.0.57";
|
|
38
|
+
readonly '@tanstack/react-query': "5.99.0";
|
|
39
|
+
readonly '@tanstack/react-query-devtools': "5.99.0";
|
|
40
40
|
readonly '@trpc/tanstack-react-query': "11.16.0";
|
|
41
41
|
readonly '@trpc/client': "11.16.0";
|
|
42
42
|
readonly '@trpc/server': "11.16.0";
|
|
43
|
-
readonly '@types/node': "25.
|
|
43
|
+
readonly '@types/node': "25.6.0";
|
|
44
44
|
readonly '@types/aws-lambda': "8.10.161";
|
|
45
45
|
readonly '@types/cors': "2.8.19";
|
|
46
46
|
readonly '@types/ws': "8.18.1";
|
|
47
47
|
readonly '@types/express': "5.0.6";
|
|
48
|
-
readonly '@smithy/types': "4.
|
|
49
|
-
readonly '@vitest/coverage-v8': "4.1.
|
|
50
|
-
readonly '@vitest/ui': "4.1.
|
|
48
|
+
readonly '@smithy/types': "4.14.0";
|
|
49
|
+
readonly '@vitest/coverage-v8': "4.1.4";
|
|
50
|
+
readonly '@vitest/ui': "4.1.4";
|
|
51
51
|
readonly aws4fetch: "1.0.20";
|
|
52
|
-
readonly 'aws-cdk': "2.
|
|
52
|
+
readonly 'aws-cdk': "2.1118.0";
|
|
53
53
|
readonly 'aws-cdk-lib': "2.248.0";
|
|
54
54
|
readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.248.0-alpha.0";
|
|
55
55
|
readonly 'aws-xray-sdk-core': "3.12.0";
|
|
@@ -57,38 +57,38 @@ export declare const TS_VERSIONS: {
|
|
|
57
57
|
readonly cors: "2.8.6";
|
|
58
58
|
readonly 'class-variance-authority': "0.7.1";
|
|
59
59
|
readonly clsx: "2.1.1";
|
|
60
|
-
readonly electrodb: "3.7.
|
|
61
|
-
readonly esbuild: "0.
|
|
60
|
+
readonly electrodb: "3.7.5";
|
|
61
|
+
readonly esbuild: "0.28.0";
|
|
62
62
|
readonly 'event-source-polyfill': "1.0.31";
|
|
63
63
|
readonly '@types/event-source-polyfill': "1.0.5";
|
|
64
|
-
readonly '@typescript-eslint/eslint-plugin': "8.58.
|
|
65
|
-
readonly '@typescript-eslint/parser': "8.58.
|
|
64
|
+
readonly '@typescript-eslint/eslint-plugin': "8.58.1";
|
|
65
|
+
readonly '@typescript-eslint/parser': "8.58.1";
|
|
66
66
|
readonly 'eslint-plugin-prettier': "5.5.5";
|
|
67
67
|
readonly express: "5.2.1";
|
|
68
68
|
readonly 'jsonc-eslint-parser': "3.1.0";
|
|
69
|
-
readonly 'typescript-eslint': "8.58.
|
|
69
|
+
readonly 'typescript-eslint': "8.58.1";
|
|
70
70
|
readonly 'make-dir-cli': "4.0.0";
|
|
71
71
|
readonly ncp: "2.0.0";
|
|
72
72
|
readonly 'npm-check-updates': "19.6.6";
|
|
73
73
|
readonly 'oidc-client-ts': "3.5.0";
|
|
74
|
-
readonly prettier: "3.8.
|
|
74
|
+
readonly prettier: "3.8.2";
|
|
75
75
|
readonly 'react-oidc-context': "3.3.1";
|
|
76
|
-
readonly react: "19.2.
|
|
77
|
-
readonly 'react-dom': "19.2.
|
|
76
|
+
readonly react: "19.2.5";
|
|
77
|
+
readonly 'react-dom': "19.2.5";
|
|
78
78
|
readonly rimraf: "6.1.3";
|
|
79
|
-
readonly rolldown: "1.0.0-rc.
|
|
79
|
+
readonly rolldown: "1.0.0-rc.15";
|
|
80
80
|
readonly 'source-map-support': "0.5.21";
|
|
81
81
|
readonly tailwindcss: "4.2.2";
|
|
82
82
|
readonly '@tailwindcss/vite': "4.2.2";
|
|
83
83
|
readonly tsx: "4.21.0";
|
|
84
|
-
readonly 'lucide-react': "1.
|
|
84
|
+
readonly 'lucide-react': "1.8.0";
|
|
85
85
|
readonly 'radix-ui': "1.4.3";
|
|
86
|
-
readonly shadcn: "4.
|
|
86
|
+
readonly shadcn: "4.2.0";
|
|
87
87
|
readonly 'tw-animate-css': "1.4.0";
|
|
88
88
|
readonly 'tailwind-merge': "3.5.0";
|
|
89
|
-
readonly vite: "8.0.
|
|
89
|
+
readonly vite: "8.0.8";
|
|
90
90
|
readonly typescript: "6.0.2";
|
|
91
|
-
readonly vitest: "4.1.
|
|
91
|
+
readonly vitest: "4.1.4";
|
|
92
92
|
readonly 'vite-tsconfig-paths': "6.1.1";
|
|
93
93
|
readonly zod: "4.3.6";
|
|
94
94
|
readonly ws: "8.20.0";
|
|
@@ -98,26 +98,26 @@ export type ITsDepVersion = keyof typeof TS_VERSIONS;
|
|
|
98
98
|
* Add versions to the given dependencies
|
|
99
99
|
*/
|
|
100
100
|
export declare const withVersions: (deps: ITsDepVersion[]) => {
|
|
101
|
-
[k: string]: "22.6.
|
|
101
|
+
[k: string]: "22.6.5" | "3.8.2" | "1.29.0" | "22.1.1" | "6.0.2" | "8.0.8" | "4.1.4" | "4.3.6" | "0.10.0" | "3.1029.0" | "1.0.0-alpha.10" | "2.32.0" | "7.2.1" | "10.2.1" | "0.19.0" | "0.7.0" | "1.168.17" | "1.167.16" | "1.166.28" | "1.161.7" | "1.161.6" | "3.0.166" | "3.0.1272" | "1.0.57" | "5.99.0" | "11.16.0" | "25.6.0" | "8.10.161" | "2.8.19" | "8.18.1" | "5.0.6" | "4.14.0" | "1.0.20" | "2.1118.0" | "2.248.0" | "2.248.0-alpha.0" | "3.12.0" | "10.6.0" | "2.8.6" | "0.7.1" | "2.1.1" | "3.7.5" | "0.28.0" | "1.0.31" | "1.0.5" | "8.58.1" | "5.5.5" | "5.2.1" | "3.1.0" | "4.0.0" | "2.0.0" | "19.6.6" | "3.5.0" | "3.3.1" | "19.2.5" | "6.1.3" | "1.0.0-rc.15" | "0.5.21" | "4.2.2" | "4.21.0" | "1.8.0" | "1.4.3" | "4.2.0" | "1.4.0" | "6.1.1" | "8.20.0";
|
|
102
102
|
};
|
|
103
103
|
/**
|
|
104
104
|
* Versions for Python dependencies added by generators
|
|
105
105
|
*/
|
|
106
106
|
export declare const PY_VERSIONS: {
|
|
107
|
-
readonly 'aws-lambda-powertools': "==3.
|
|
108
|
-
readonly 'aws-lambda-powertools[tracer]': "==3.
|
|
109
|
-
readonly 'aws-lambda-powertools[parser]': "==3.
|
|
110
|
-
readonly 'aws-opentelemetry-distro': "==0.
|
|
111
|
-
readonly 'bedrock-agentcore': "==1.6.
|
|
112
|
-
readonly boto3: "==1.42.
|
|
113
|
-
readonly checkov: "==3.2.
|
|
107
|
+
readonly 'aws-lambda-powertools': "==3.27.0";
|
|
108
|
+
readonly 'aws-lambda-powertools[tracer]': "==3.27.0";
|
|
109
|
+
readonly 'aws-lambda-powertools[parser]': "==3.27.0";
|
|
110
|
+
readonly 'aws-opentelemetry-distro': "==0.17.0";
|
|
111
|
+
readonly 'bedrock-agentcore': "==1.6.1";
|
|
112
|
+
readonly boto3: "==1.42.88";
|
|
113
|
+
readonly checkov: "==3.2.519";
|
|
114
114
|
readonly fastapi: "==0.135.3";
|
|
115
115
|
readonly 'fastapi[standard]': "==0.135.3";
|
|
116
116
|
readonly mcp: "==1.27.0";
|
|
117
117
|
readonly 'pip-check-updates': "==0.28.0";
|
|
118
|
-
readonly 'strands-agents': "==1.
|
|
119
|
-
readonly 'strands-agents-tools': "==0.
|
|
120
|
-
readonly uvicorn: "==0.
|
|
118
|
+
readonly 'strands-agents': "==1.35.0";
|
|
119
|
+
readonly 'strands-agents-tools': "==0.4.1";
|
|
120
|
+
readonly uvicorn: "==0.44.0";
|
|
121
121
|
};
|
|
122
122
|
export type IPyDepVersion = keyof typeof PY_VERSIONS;
|
|
123
123
|
/**
|
package/src/utils/versions.js
CHANGED
|
@@ -9,10 +9,10 @@ exports.withPyVersions = exports.PY_VERSIONS = exports.withVersions = exports.TS
|
|
|
9
9
|
* Versons for TypeScript dependencies added by generators
|
|
10
10
|
*/
|
|
11
11
|
exports.TS_VERSIONS = {
|
|
12
|
-
'@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.
|
|
13
|
-
'@aws-sdk/client-dynamodb': '3.
|
|
14
|
-
'@aws-sdk/client-sts': '3.
|
|
15
|
-
'@aws-sdk/credential-providers': '3.
|
|
12
|
+
'@aws/aws-distro-opentelemetry-node-autoinstrumentation': '0.10.0',
|
|
13
|
+
'@aws-sdk/client-dynamodb': '3.1029.0',
|
|
14
|
+
'@aws-sdk/client-sts': '3.1029.0',
|
|
15
|
+
'@aws-sdk/credential-providers': '3.1029.0',
|
|
16
16
|
'@aws-smithy/server-apigateway': '1.0.0-alpha.10',
|
|
17
17
|
'@aws-smithy/server-node': '1.0.0-alpha.10',
|
|
18
18
|
'@aws-lambda-powertools/logger': '2.32.0',
|
|
@@ -20,39 +20,39 @@ exports.TS_VERSIONS = {
|
|
|
20
20
|
'@aws-lambda-powertools/parameters': '2.32.0',
|
|
21
21
|
'@aws-lambda-powertools/tracer': '2.32.0',
|
|
22
22
|
'@aws-lambda-powertools/parser': '2.32.0',
|
|
23
|
-
'@aws-sdk/client-appconfigdata': '3.
|
|
23
|
+
'@aws-sdk/client-appconfigdata': '3.1029.0',
|
|
24
24
|
'@middy/core': '7.2.1',
|
|
25
25
|
'@nxlv/python': '22.1.1',
|
|
26
26
|
'@nx-extend/terraform': '10.2.1',
|
|
27
|
-
'@nx/devkit': '22.6.
|
|
28
|
-
'@nx/react': '22.6.
|
|
29
|
-
'create-nx-workspace': '22.6.
|
|
27
|
+
'@nx/devkit': '22.6.5',
|
|
28
|
+
'@nx/react': '22.6.5',
|
|
29
|
+
'create-nx-workspace': '22.6.5',
|
|
30
30
|
'@modelcontextprotocol/sdk': '1.29.0',
|
|
31
31
|
'@modelcontextprotocol/inspector': '0.19.0',
|
|
32
32
|
'@strands-agents/sdk': '0.7.0',
|
|
33
|
-
'@tanstack/react-router': '1.168.
|
|
34
|
-
'@tanstack/router-plugin': '1.167.
|
|
35
|
-
'@tanstack/router-generator': '1.166.
|
|
33
|
+
'@tanstack/react-router': '1.168.17',
|
|
34
|
+
'@tanstack/router-plugin': '1.167.16',
|
|
35
|
+
'@tanstack/router-generator': '1.166.28',
|
|
36
36
|
'@tanstack/virtual-file-routes': '1.161.7',
|
|
37
37
|
'@tanstack/router-utils': '1.161.6',
|
|
38
|
-
'@cloudscape-design/board-components': '3.0.
|
|
39
|
-
'@cloudscape-design/components': '3.0.
|
|
40
|
-
'@cloudscape-design/global-styles': '1.0.
|
|
41
|
-
'@tanstack/react-query': '5.
|
|
42
|
-
'@tanstack/react-query-devtools': '5.
|
|
38
|
+
'@cloudscape-design/board-components': '3.0.166',
|
|
39
|
+
'@cloudscape-design/components': '3.0.1272',
|
|
40
|
+
'@cloudscape-design/global-styles': '1.0.57',
|
|
41
|
+
'@tanstack/react-query': '5.99.0',
|
|
42
|
+
'@tanstack/react-query-devtools': '5.99.0',
|
|
43
43
|
'@trpc/tanstack-react-query': '11.16.0',
|
|
44
44
|
'@trpc/client': '11.16.0',
|
|
45
45
|
'@trpc/server': '11.16.0',
|
|
46
|
-
'@types/node': '25.
|
|
46
|
+
'@types/node': '25.6.0',
|
|
47
47
|
'@types/aws-lambda': '8.10.161',
|
|
48
48
|
'@types/cors': '2.8.19',
|
|
49
49
|
'@types/ws': '8.18.1',
|
|
50
50
|
'@types/express': '5.0.6',
|
|
51
|
-
'@smithy/types': '4.
|
|
52
|
-
'@vitest/coverage-v8': '4.1.
|
|
53
|
-
'@vitest/ui': '4.1.
|
|
51
|
+
'@smithy/types': '4.14.0',
|
|
52
|
+
'@vitest/coverage-v8': '4.1.4',
|
|
53
|
+
'@vitest/ui': '4.1.4',
|
|
54
54
|
aws4fetch: '1.0.20',
|
|
55
|
-
'aws-cdk': '2.
|
|
55
|
+
'aws-cdk': '2.1118.0',
|
|
56
56
|
'aws-cdk-lib': '2.248.0',
|
|
57
57
|
'@aws-cdk/aws-bedrock-agentcore-alpha': '2.248.0-alpha.0',
|
|
58
58
|
'aws-xray-sdk-core': '3.12.0',
|
|
@@ -60,38 +60,38 @@ exports.TS_VERSIONS = {
|
|
|
60
60
|
cors: '2.8.6',
|
|
61
61
|
'class-variance-authority': '0.7.1',
|
|
62
62
|
clsx: '2.1.1',
|
|
63
|
-
electrodb: '3.7.
|
|
64
|
-
esbuild: '0.
|
|
63
|
+
electrodb: '3.7.5',
|
|
64
|
+
esbuild: '0.28.0',
|
|
65
65
|
'event-source-polyfill': '1.0.31',
|
|
66
66
|
'@types/event-source-polyfill': '1.0.5',
|
|
67
|
-
'@typescript-eslint/eslint-plugin': '8.58.
|
|
68
|
-
'@typescript-eslint/parser': '8.58.
|
|
67
|
+
'@typescript-eslint/eslint-plugin': '8.58.1',
|
|
68
|
+
'@typescript-eslint/parser': '8.58.1',
|
|
69
69
|
'eslint-plugin-prettier': '5.5.5',
|
|
70
70
|
express: '5.2.1',
|
|
71
71
|
'jsonc-eslint-parser': '3.1.0',
|
|
72
|
-
'typescript-eslint': '8.58.
|
|
72
|
+
'typescript-eslint': '8.58.1',
|
|
73
73
|
'make-dir-cli': '4.0.0',
|
|
74
74
|
ncp: '2.0.0',
|
|
75
75
|
'npm-check-updates': '19.6.6',
|
|
76
76
|
'oidc-client-ts': '3.5.0',
|
|
77
|
-
prettier: '3.8.
|
|
77
|
+
prettier: '3.8.2',
|
|
78
78
|
'react-oidc-context': '3.3.1',
|
|
79
|
-
react: '19.2.
|
|
80
|
-
'react-dom': '19.2.
|
|
79
|
+
react: '19.2.5',
|
|
80
|
+
'react-dom': '19.2.5',
|
|
81
81
|
rimraf: '6.1.3',
|
|
82
|
-
rolldown: '1.0.0-rc.
|
|
82
|
+
rolldown: '1.0.0-rc.15',
|
|
83
83
|
'source-map-support': '0.5.21',
|
|
84
84
|
tailwindcss: '4.2.2',
|
|
85
85
|
'@tailwindcss/vite': '4.2.2',
|
|
86
86
|
tsx: '4.21.0',
|
|
87
|
-
'lucide-react': '1.
|
|
87
|
+
'lucide-react': '1.8.0',
|
|
88
88
|
'radix-ui': '1.4.3',
|
|
89
|
-
shadcn: '4.
|
|
89
|
+
shadcn: '4.2.0',
|
|
90
90
|
'tw-animate-css': '1.4.0',
|
|
91
91
|
'tailwind-merge': '3.5.0',
|
|
92
|
-
vite: '8.0.
|
|
92
|
+
vite: '8.0.8',
|
|
93
93
|
typescript: '6.0.2',
|
|
94
|
-
vitest: '4.1.
|
|
94
|
+
vitest: '4.1.4',
|
|
95
95
|
'vite-tsconfig-paths': '6.1.1',
|
|
96
96
|
zod: '4.3.6',
|
|
97
97
|
ws: '8.20.0',
|
|
@@ -105,20 +105,20 @@ exports.withVersions = withVersions;
|
|
|
105
105
|
* Versions for Python dependencies added by generators
|
|
106
106
|
*/
|
|
107
107
|
exports.PY_VERSIONS = {
|
|
108
|
-
'aws-lambda-powertools': '==3.
|
|
109
|
-
'aws-lambda-powertools[tracer]': '==3.
|
|
110
|
-
'aws-lambda-powertools[parser]': '==3.
|
|
111
|
-
'aws-opentelemetry-distro': '==0.
|
|
112
|
-
'bedrock-agentcore': '==1.6.
|
|
113
|
-
boto3: '==1.42.
|
|
114
|
-
checkov: '==3.2.
|
|
108
|
+
'aws-lambda-powertools': '==3.27.0',
|
|
109
|
+
'aws-lambda-powertools[tracer]': '==3.27.0',
|
|
110
|
+
'aws-lambda-powertools[parser]': '==3.27.0',
|
|
111
|
+
'aws-opentelemetry-distro': '==0.17.0',
|
|
112
|
+
'bedrock-agentcore': '==1.6.1',
|
|
113
|
+
boto3: '==1.42.88',
|
|
114
|
+
checkov: '==3.2.519',
|
|
115
115
|
fastapi: '==0.135.3',
|
|
116
116
|
'fastapi[standard]': '==0.135.3',
|
|
117
117
|
mcp: '==1.27.0',
|
|
118
118
|
'pip-check-updates': '==0.28.0',
|
|
119
|
-
'strands-agents': '==1.
|
|
120
|
-
'strands-agents-tools': '==0.
|
|
121
|
-
uvicorn: '==0.
|
|
119
|
+
'strands-agents': '==1.35.0',
|
|
120
|
+
'strands-agents-tools': '==0.4.1',
|
|
121
|
+
uvicorn: '==0.44.0',
|
|
122
122
|
};
|
|
123
123
|
/**
|
|
124
124
|
* Add versions to the given dependencies
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH;;GAEG;AACU,QAAA,WAAW,GAAG;IACzB,wDAAwD,EAAE,
|
|
1
|
+
{"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;AAEH;;GAEG;AACU,QAAA,WAAW,GAAG;IACzB,wDAAwD,EAAE,QAAQ;IAClE,0BAA0B,EAAE,UAAU;IACtC,qBAAqB,EAAE,UAAU;IACjC,+BAA+B,EAAE,UAAU;IAC3C,+BAA+B,EAAE,gBAAgB;IACjD,yBAAyB,EAAE,gBAAgB;IAC3C,+BAA+B,EAAE,QAAQ;IACzC,gCAAgC,EAAE,QAAQ;IAC1C,mCAAmC,EAAE,QAAQ;IAC7C,+BAA+B,EAAE,QAAQ;IACzC,+BAA+B,EAAE,QAAQ;IACzC,+BAA+B,EAAE,UAAU;IAC3C,aAAa,EAAE,OAAO;IACtB,cAAc,EAAE,QAAQ;IACxB,sBAAsB,EAAE,QAAQ;IAChC,YAAY,EAAE,QAAQ;IACtB,WAAW,EAAE,QAAQ;IACrB,qBAAqB,EAAE,QAAQ;IAC/B,2BAA2B,EAAE,QAAQ;IACrC,iCAAiC,EAAE,QAAQ;IAC3C,qBAAqB,EAAE,OAAO;IAC9B,wBAAwB,EAAE,UAAU;IACpC,yBAAyB,EAAE,UAAU;IACrC,4BAA4B,EAAE,UAAU;IACxC,+BAA+B,EAAE,SAAS;IAC1C,wBAAwB,EAAE,SAAS;IACnC,qCAAqC,EAAE,SAAS;IAChD,+BAA+B,EAAE,UAAU;IAC3C,kCAAkC,EAAE,QAAQ;IAC5C,uBAAuB,EAAE,QAAQ;IACjC,gCAAgC,EAAE,QAAQ;IAC1C,4BAA4B,EAAE,SAAS;IACvC,cAAc,EAAE,SAAS;IACzB,cAAc,EAAE,SAAS;IACzB,aAAa,EAAE,QAAQ;IACvB,mBAAmB,EAAE,UAAU;IAC/B,aAAa,EAAE,QAAQ;IACvB,WAAW,EAAE,QAAQ;IACrB,gBAAgB,EAAE,OAAO;IACzB,eAAe,EAAE,QAAQ;IACzB,qBAAqB,EAAE,OAAO;IAC9B,YAAY,EAAE,OAAO;IACrB,SAAS,EAAE,QAAQ;IACnB,SAAS,EAAE,UAAU;IACrB,aAAa,EAAE,SAAS;IACxB,sCAAsC,EAAE,iBAAiB;IACzD,mBAAmB,EAAE,QAAQ;IAC7B,UAAU,EAAE,QAAQ;IACpB,IAAI,EAAE,OAAO;IACb,0BAA0B,EAAE,OAAO;IACnC,IAAI,EAAE,OAAO;IACb,SAAS,EAAE,OAAO;IAClB,OAAO,EAAE,QAAQ;IACjB,uBAAuB,EAAE,QAAQ;IACjC,8BAA8B,EAAE,OAAO;IACvC,kCAAkC,EAAE,QAAQ;IAC5C,2BAA2B,EAAE,QAAQ;IACrC,wBAAwB,EAAE,OAAO;IACjC,OAAO,EAAE,OAAO;IAChB,qBAAqB,EAAE,OAAO;IAC9B,mBAAmB,EAAE,QAAQ;IAC7B,cAAc,EAAE,OAAO;IACvB,GAAG,EAAE,OAAO;IACZ,mBAAmB,EAAE,QAAQ;IAC7B,gBAAgB,EAAE,OAAO;IACzB,QAAQ,EAAE,OAAO;IACjB,oBAAoB,EAAE,OAAO;IAC7B,KAAK,EAAE,QAAQ;IACf,WAAW,EAAE,QAAQ;IACrB,MAAM,EAAE,OAAO;IACf,QAAQ,EAAE,aAAa;IACvB,oBAAoB,EAAE,QAAQ;IAC9B,WAAW,EAAE,OAAO;IACpB,mBAAmB,EAAE,OAAO;IAC5B,GAAG,EAAE,QAAQ;IACb,cAAc,EAAE,OAAO;IACvB,UAAU,EAAE,OAAO;IACnB,MAAM,EAAE,OAAO;IACf,gBAAgB,EAAE,OAAO;IACzB,gBAAgB,EAAE,OAAO;IACzB,IAAI,EAAE,OAAO;IACb,UAAU,EAAE,OAAO;IACnB,MAAM,EAAE,OAAO;IACf,qBAAqB,EAAE,OAAO;IAC9B,GAAG,EAAE,OAAO;IACZ,EAAE,EAAE,QAAQ;CACJ,CAAC;AAGX;;GAEG;AACI,MAAM,YAAY,GAAG,CAAC,IAAqB,EAAE,EAAE,CACpD,MAAM,CAAC,WAAW,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,CAAC,GAAG,EAAE,mBAAW,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC;AADpD,QAAA,YAAY,gBACwC;AAEjE;;GAEG;AACU,QAAA,WAAW,GAAG;IACzB,uBAAuB,EAAE,UAAU;IACnC,+BAA+B,EAAE,UAAU;IAC3C,+BAA+B,EAAE,UAAU;IAC3C,0BAA0B,EAAE,UAAU;IACtC,mBAAmB,EAAE,SAAS;IAC9B,KAAK,EAAE,WAAW;IAClB,OAAO,EAAE,WAAW;IACpB,OAAO,EAAE,WAAW;IACpB,mBAAmB,EAAE,WAAW;IAChC,GAAG,EAAE,UAAU;IACf,mBAAmB,EAAE,UAAU;IAC/B,gBAAgB,EAAE,UAAU;IAC5B,sBAAsB,EAAE,SAAS;IACjC,OAAO,EAAE,UAAU;CACX,CAAC;AAGX;;GAEG;AACI,MAAM,cAAc,GAAG,CAAC,IAAqB,EAAE,EAAE,CACtD,IAAI,CAAC,GAAG,CAAC,CAAC,GAAG,EAAE,EAAE,CAAC,GAAG,GAAG,GAAG,mBAAW,CAAC,GAAG,CAAC,EAAE,CAAC,CAAC;AADpC,QAAA,cAAc,kBACsB"}
|