@aws/nx-plugin 0.76.0 → 0.77.0

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.
Files changed (36) hide show
  1. package/LICENSE-THIRD-PARTY +60 -2
  2. package/package.json +9 -9
  3. package/src/infra/app/__snapshots__/generator.spec.ts.snap +378 -7
  4. package/src/infra/app/files/app/src/main.ts.template +17 -2
  5. package/src/infra/app/generator.js +34 -9
  6. package/src/infra/app/generator.js.map +1 -1
  7. package/src/infra/app/schema.d.ts +1 -0
  8. package/src/infra/app/schema.json +6 -0
  9. package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +2 -2
  10. package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +6 -6
  11. package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +1 -1
  12. package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +1 -1
  13. package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +13 -13
  14. package/src/utils/files/common/infra-config/src/index.ts.template +3 -0
  15. package/src/utils/files/common/infra-config/src/resolve-stage.ts.template +23 -0
  16. package/src/utils/files/common/infra-config/src/stages.config.ts.template +48 -0
  17. package/src/utils/files/common/infra-config/src/stages.types.ts.template +66 -0
  18. package/src/utils/files/common/scripts/src/index.ts.template +1 -0
  19. package/src/utils/files/common/scripts/src/infra-deploy.ts.template +2 -0
  20. package/src/utils/files/common/scripts/src/infra-destroy.ts.template +2 -0
  21. package/src/utils/files/common/scripts/src/stage-credentials/cdk-command.ts.template +18 -0
  22. package/src/utils/files/common/scripts/src/stage-credentials/credentials.ts.template +100 -0
  23. package/src/utils/files/common/scripts/src/stage-credentials/run.ts.template +52 -0
  24. package/src/utils/files/common/scripts/src/stage-credentials/stage-parser.ts.template +15 -0
  25. package/src/utils/shared-constructs-constants.d.ts +4 -0
  26. package/src/utils/shared-constructs-constants.js +5 -1
  27. package/src/utils/shared-constructs-constants.js.map +1 -1
  28. package/src/utils/shared-infra-config.d.ts +11 -0
  29. package/src/utils/shared-infra-config.js +47 -0
  30. package/src/utils/shared-infra-config.js.map +1 -0
  31. package/src/utils/shared-scripts.d.ts +12 -0
  32. package/src/utils/shared-scripts.js +49 -0
  33. package/src/utils/shared-scripts.js.map +1 -0
  34. package/src/utils/versions.d.ts +29 -28
  35. package/src/utils/versions.js +28 -27
  36. package/src/utils/versions.js.map +1 -1
@@ -0,0 +1,49 @@
1
+ "use strict";
2
+ Object.defineProperty(exports, "__esModule", { value: true });
3
+ exports.sharedScriptsGenerator = sharedScriptsGenerator;
4
+ const tslib_1 = require("tslib");
5
+ /**
6
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
7
+ * SPDX-License-Identifier: Apache-2.0
8
+ */
9
+ const devkit_1 = require("@nx/devkit");
10
+ const npm_scope_1 = require("./npm-scope");
11
+ const generator_1 = tslib_1.__importDefault(require("../ts/lib/generator"));
12
+ const versions_1 = require("./versions");
13
+ const format_1 = require("./format");
14
+ const shared_constructs_constants_1 = require("./shared-constructs-constants");
15
+ /**
16
+ * Lazily creates the shared scripts package at packages/common/scripts/.
17
+ * Contains infra-deploy and infra-destroy scripts that resolve
18
+ * credentials from infra-config and call CDK.
19
+ * Invoked via `tsx packages/common/scripts/src/infra-deploy.ts` from NX targets.
20
+ */
21
+ function sharedScriptsGenerator(tree) {
22
+ return tslib_1.__awaiter(this, void 0, void 0, function* () {
23
+ const scriptsDir = (0, devkit_1.joinPathFragments)(shared_constructs_constants_1.PACKAGES_DIR, shared_constructs_constants_1.SHARED_SCRIPTS_DIR);
24
+ // Don't recreate if it already exists
25
+ if (tree.exists((0, devkit_1.joinPathFragments)(scriptsDir, 'project.json'))) {
26
+ return;
27
+ }
28
+ const npmScopePrefix = (0, npm_scope_1.getNpmScopePrefix)(tree);
29
+ const scopeAlias = (0, npm_scope_1.toScopeAlias)(npmScopePrefix);
30
+ yield (0, generator_1.default)(tree, {
31
+ name: shared_constructs_constants_1.SHARED_SCRIPTS_NAME,
32
+ directory: shared_constructs_constants_1.PACKAGES_DIR,
33
+ subDirectory: shared_constructs_constants_1.SHARED_SCRIPTS_DIR,
34
+ });
35
+ // Replace default src/ with our templates
36
+ tree.delete((0, devkit_1.joinPathFragments)(scriptsDir, 'src'));
37
+ (0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', shared_constructs_constants_1.SHARED_SCRIPTS_DIR, 'src'), (0, devkit_1.joinPathFragments)(scriptsDir, 'src'), { scopeAlias }, { overwriteStrategy: devkit_1.OverwriteStrategy.KeepExisting });
38
+ // Add AWS SDK deps as dev dependencies (used by deploy-time scripts for assumeRole)
39
+ (0, devkit_1.addDependenciesToPackageJson)(tree, {}, (0, versions_1.withVersions)(['@aws-sdk/client-sts', '@aws-sdk/credential-providers']));
40
+ // Generate README
41
+ (0, devkit_1.generateFiles)(tree, (0, devkit_1.joinPathFragments)(__dirname, 'files', 'common', 'readme'), scriptsDir, {
42
+ fullyQualifiedName: `${npmScopePrefix}${shared_constructs_constants_1.SHARED_SCRIPTS_NAME}`,
43
+ name: shared_constructs_constants_1.SHARED_SCRIPTS_NAME,
44
+ pkgMgrCmd: (0, devkit_1.getPackageManagerCommand)().exec,
45
+ }, { overwriteStrategy: devkit_1.OverwriteStrategy.Overwrite });
46
+ yield (0, format_1.formatFilesInSubtree)(tree);
47
+ });
48
+ }
49
+ //# sourceMappingURL=shared-scripts.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"shared-scripts.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/shared-scripts.ts"],"names":[],"mappings":";;AA4BA,wDAgDC;;AA5ED;;;GAGG;AACH,uCAOoB;AACpB,2CAA8D;AAC9D,4EAAqD;AACrD,yCAA0C;AAC1C,qCAAgD;AAChD,+EAIuC;AAEvC;;;;;GAKG;AACH,SAAsB,sBAAsB,CAAC,IAAU;;QACrD,MAAM,UAAU,GAAG,IAAA,0BAAiB,EAAC,0CAAY,EAAE,gDAAkB,CAAC,CAAC;QAEvE,sCAAsC;QACtC,IAAI,IAAI,CAAC,MAAM,CAAC,IAAA,0BAAiB,EAAC,UAAU,EAAE,cAAc,CAAC,CAAC,EAAE,CAAC;YAC/D,OAAO;QACT,CAAC;QAED,MAAM,cAAc,GAAG,IAAA,6BAAiB,EAAC,IAAI,CAAC,CAAC;QAC/C,MAAM,UAAU,GAAG,IAAA,wBAAY,EAAC,cAAc,CAAC,CAAC;QAEhD,MAAM,IAAA,mBAAkB,EAAC,IAAI,EAAE;YAC7B,IAAI,EAAE,iDAAmB;YACzB,SAAS,EAAE,0CAAY;YACvB,YAAY,EAAE,gDAAkB;SACjC,CAAC,CAAC;QAEH,0CAA0C;QAC1C,IAAI,CAAC,MAAM,CAAC,IAAA,0BAAiB,EAAC,UAAU,EAAE,KAAK,CAAC,CAAC,CAAC;QAClD,IAAA,sBAAa,EACX,IAAI,EACJ,IAAA,0BAAiB,EAAC,SAAS,EAAE,OAAO,EAAE,gDAAkB,EAAE,KAAK,CAAC,EAChE,IAAA,0BAAiB,EAAC,UAAU,EAAE,KAAK,CAAC,EACpC,EAAE,UAAU,EAAE,EACd,EAAE,iBAAiB,EAAE,0BAAiB,CAAC,YAAY,EAAE,CACtD,CAAC;QAEF,oFAAoF;QACpF,IAAA,qCAA4B,EAC1B,IAAI,EACJ,EAAE,EACF,IAAA,uBAAY,EAAC,CAAC,qBAAqB,EAAE,+BAA+B,CAAC,CAAC,CACvE,CAAC;QAEF,kBAAkB;QAClB,IAAA,sBAAa,EACX,IAAI,EACJ,IAAA,0BAAiB,EAAC,SAAS,EAAE,OAAO,EAAE,QAAQ,EAAE,QAAQ,CAAC,EACzD,UAAU,EACV;YACE,kBAAkB,EAAE,GAAG,cAAc,GAAG,iDAAmB,EAAE;YAC7D,IAAI,EAAE,iDAAmB;YACzB,SAAS,EAAE,IAAA,iCAAwB,GAAE,CAAC,IAAI;SAC3C,EACD,EAAE,iBAAiB,EAAE,0BAAiB,CAAC,SAAS,EAAE,CACnD,CAAC;QAEF,MAAM,IAAA,6BAAoB,EAAC,IAAI,CAAC,CAAC;IACnC,CAAC;CAAA"}
@@ -6,9 +6,10 @@
6
6
  * Versons for TypeScript dependencies added by generators
7
7
  */
8
8
  export declare const TS_VERSIONS: {
9
- readonly '@aws-sdk/client-cognito-identity': "3.987.0";
10
- readonly '@aws-sdk/client-dynamodb': "3.987.0";
11
- readonly '@aws-sdk/credential-providers': "3.987.0";
9
+ readonly '@aws-sdk/client-cognito-identity': "3.992.0";
10
+ readonly '@aws-sdk/client-dynamodb': "3.992.0";
11
+ readonly '@aws-sdk/client-sts': "3.992.0";
12
+ readonly '@aws-sdk/credential-providers': "3.992.0";
12
13
  readonly '@aws-sdk/credential-provider-cognito-identity': "3.972.3";
13
14
  readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
14
15
  readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
@@ -19,21 +20,21 @@ export declare const TS_VERSIONS: {
19
20
  readonly '@middy/core': "6.4.5";
20
21
  readonly '@nxlv/python': "22.1.0";
21
22
  readonly '@nx-extend/terraform': "9.0.1";
22
- readonly '@nx/devkit': "22.5.0";
23
- readonly '@nx/react': "22.5.0";
24
- readonly 'create-nx-workspace': "22.5.0";
25
- readonly '@modelcontextprotocol/sdk': "1.26.0";
23
+ readonly '@nx/devkit': "22.5.1";
24
+ readonly '@nx/react': "22.5.1";
25
+ readonly 'create-nx-workspace': "22.5.1";
26
+ readonly '@modelcontextprotocol/sdk': "1.27.0";
26
27
  readonly '@modelcontextprotocol/inspector': "0.19.0";
27
- readonly '@strands-agents/sdk': "0.2.1";
28
- readonly '@tanstack/react-router': "1.159.5";
29
- readonly '@tanstack/router-plugin': "1.159.5";
30
- readonly '@tanstack/router-generator': "1.159.4";
28
+ readonly '@strands-agents/sdk': "0.2.2";
29
+ readonly '@tanstack/react-router': "1.160.2";
30
+ readonly '@tanstack/router-plugin': "1.160.2";
31
+ readonly '@tanstack/router-generator': "1.160.1";
31
32
  readonly '@tanstack/virtual-file-routes': "1.154.7";
32
33
  readonly '@tanstack/router-utils': "1.158.0";
33
- readonly '@cloudscape-design/board-components': "3.0.147";
34
- readonly '@cloudscape-design/components': "3.0.1200";
34
+ readonly '@cloudscape-design/board-components': "3.0.149";
35
+ readonly '@cloudscape-design/components': "3.0.1204";
35
36
  readonly '@cloudscape-design/global-styles': "1.0.50";
36
- readonly '@tanstack/react-query': "5.90.20";
37
+ readonly '@tanstack/react-query': "5.90.21";
37
38
  readonly '@tanstack/react-query-devtools': "5.91.3";
38
39
  readonly '@trpc/tanstack-react-query': "11.10.0";
39
40
  readonly '@trpc/client': "11.10.0";
@@ -45,11 +46,11 @@ export declare const TS_VERSIONS: {
45
46
  readonly '@types/express': "5.0.6";
46
47
  readonly '@smithy/types': "4.12.0";
47
48
  readonly aws4fetch: "1.0.20";
48
- readonly 'aws-cdk': "2.1105.0";
49
+ readonly 'aws-cdk': "2.1106.0";
49
50
  readonly 'aws-cdk-lib': "2.238.0";
50
51
  readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.238.0-alpha.0";
51
52
  readonly 'aws-xray-sdk-core': "3.12.0";
52
- readonly constructs: "10.4.5";
53
+ readonly constructs: "10.5.0";
53
54
  readonly cors: "2.8.6";
54
55
  readonly 'class-variance-authority': "0.7.1";
55
56
  readonly clsx: "2.1.1";
@@ -66,17 +67,17 @@ export declare const TS_VERSIONS: {
66
67
  readonly 'react-oidc-context': "3.3.0";
67
68
  readonly react: "19.2.4";
68
69
  readonly 'react-dom': "19.2.4";
69
- readonly rimraf: "6.1.2";
70
+ readonly rimraf: "6.1.3";
70
71
  readonly rolldown: "1.0.0-rc.1";
71
72
  readonly 'source-map-support': "0.5.21";
72
73
  readonly tailwindcss: "4.1.18";
73
74
  readonly '@tailwindcss/vite': "4.1.18";
74
75
  readonly tsx: "4.21.0";
75
- readonly 'lucide-react': "0.563.0";
76
+ readonly 'lucide-react': "0.574.0";
76
77
  readonly 'radix-ui': "1.4.3";
77
- readonly shadcn: "3.8.4";
78
+ readonly shadcn: "3.8.5";
78
79
  readonly 'tw-animate-css': "1.4.0";
79
- readonly 'tailwind-merge': "3.4.0";
80
+ readonly 'tailwind-merge': "3.4.1";
80
81
  readonly 'vite-tsconfig-paths': "5.1.4";
81
82
  readonly zod: "4.3.6";
82
83
  readonly ws: "8.19.0";
@@ -86,7 +87,7 @@ export type ITsDepVersion = keyof typeof TS_VERSIONS;
86
87
  * Add versions to the given dependencies
87
88
  */
88
89
  export declare const withVersions: (deps: ITsDepVersion[]) => {
89
- [k: string]: "3.987.0" | "3.972.3" | "1.0.0-alpha.10" | "2.31.0" | "6.4.5" | "22.1.0" | "9.0.1" | "22.5.0" | "1.26.0" | "0.19.0" | "0.2.1" | "1.159.5" | "1.159.4" | "1.154.7" | "1.158.0" | "3.0.147" | "3.0.1200" | "1.0.50" | "5.90.20" | "5.91.3" | "11.10.0" | "22.19.11" | "8.10.160" | "2.8.19" | "8.18.1" | "5.0.6" | "4.12.0" | "1.0.20" | "2.1105.0" | "2.238.0" | "2.238.0-alpha.0" | "3.12.0" | "10.4.5" | "2.8.6" | "0.7.1" | "2.1.1" | "3.5.3" | "0.27.3" | "5.5.5" | "5.2.1" | "2.4.2" | "4.0.0" | "2.0.0" | "19.3.2" | "3.4.1" | "3.8.1" | "3.3.0" | "19.2.4" | "6.1.2" | "1.0.0-rc.1" | "0.5.21" | "4.1.18" | "4.21.0" | "0.563.0" | "1.4.3" | "3.8.4" | "1.4.0" | "3.4.0" | "5.1.4" | "4.3.6" | "8.19.0";
90
+ [k: string]: "3.992.0" | "3.972.3" | "1.0.0-alpha.10" | "2.31.0" | "6.4.5" | "22.1.0" | "9.0.1" | "22.5.1" | "1.27.0" | "0.19.0" | "0.2.2" | "1.160.2" | "1.160.1" | "1.154.7" | "1.158.0" | "3.0.149" | "3.0.1204" | "1.0.50" | "5.90.21" | "5.91.3" | "11.10.0" | "22.19.11" | "8.10.160" | "2.8.19" | "8.18.1" | "5.0.6" | "4.12.0" | "1.0.20" | "2.1106.0" | "2.238.0" | "2.238.0-alpha.0" | "3.12.0" | "10.5.0" | "2.8.6" | "0.7.1" | "2.1.1" | "3.5.3" | "0.27.3" | "5.5.5" | "5.2.1" | "2.4.2" | "4.0.0" | "2.0.0" | "19.3.2" | "3.4.1" | "3.8.1" | "3.3.0" | "19.2.4" | "6.1.3" | "1.0.0-rc.1" | "0.5.21" | "4.1.18" | "4.21.0" | "0.574.0" | "1.4.3" | "3.8.5" | "1.4.0" | "5.1.4" | "4.3.6" | "8.19.0";
90
91
  };
91
92
  /**
92
93
  * Versions for Python dependencies added by generators
@@ -97,16 +98,16 @@ export declare const PY_VERSIONS: {
97
98
  readonly 'aws-lambda-powertools[parser]': "==3.24.0";
98
99
  readonly 'aws-opentelemetry-distro': "==0.15.0";
99
100
  readonly 'bedrock-agentcore': "==0.1.7";
100
- readonly boto3: "==1.42.49";
101
- readonly checkov: "==3.2.501";
102
- readonly fastapi: "==0.129.0";
103
- readonly 'fastapi[standard]': "==0.129.0";
101
+ readonly boto3: "==1.42.54";
102
+ readonly checkov: "==3.2.505";
103
+ readonly fastapi: "==0.131.0";
104
+ readonly 'fastapi[standard]': "==0.131.0";
104
105
  readonly mangum: "==0.21.0";
105
106
  readonly mcp: "==1.26.0";
106
107
  readonly 'pip-check-updates': "==0.28.0";
107
- readonly 'strands-agents': "==1.26.0";
108
- readonly 'strands-agents-tools': "==0.2.20";
109
- readonly uvicorn: "==0.40.0";
108
+ readonly 'strands-agents': "==1.27.0";
109
+ readonly 'strands-agents-tools': "==0.2.21";
110
+ readonly uvicorn: "==0.41.0";
110
111
  };
111
112
  export type IPyDepVersion = keyof typeof PY_VERSIONS;
112
113
  /**
@@ -9,9 +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-sdk/client-cognito-identity': '3.987.0',
13
- '@aws-sdk/client-dynamodb': '3.987.0',
14
- '@aws-sdk/credential-providers': '3.987.0',
12
+ '@aws-sdk/client-cognito-identity': '3.992.0',
13
+ '@aws-sdk/client-dynamodb': '3.992.0',
14
+ '@aws-sdk/client-sts': '3.992.0',
15
+ '@aws-sdk/credential-providers': '3.992.0',
15
16
  '@aws-sdk/credential-provider-cognito-identity': '3.972.3',
16
17
  '@aws-smithy/server-apigateway': '1.0.0-alpha.10',
17
18
  '@aws-smithy/server-node': '1.0.0-alpha.10',
@@ -22,21 +23,21 @@ exports.TS_VERSIONS = {
22
23
  '@middy/core': '6.4.5',
23
24
  '@nxlv/python': '22.1.0',
24
25
  '@nx-extend/terraform': '9.0.1',
25
- '@nx/devkit': '22.5.0',
26
- '@nx/react': '22.5.0',
27
- 'create-nx-workspace': '22.5.0',
28
- '@modelcontextprotocol/sdk': '1.26.0',
26
+ '@nx/devkit': '22.5.1',
27
+ '@nx/react': '22.5.1',
28
+ 'create-nx-workspace': '22.5.1',
29
+ '@modelcontextprotocol/sdk': '1.27.0',
29
30
  '@modelcontextprotocol/inspector': '0.19.0',
30
- '@strands-agents/sdk': '0.2.1',
31
- '@tanstack/react-router': '1.159.5',
32
- '@tanstack/router-plugin': '1.159.5',
33
- '@tanstack/router-generator': '1.159.4',
31
+ '@strands-agents/sdk': '0.2.2',
32
+ '@tanstack/react-router': '1.160.2',
33
+ '@tanstack/router-plugin': '1.160.2',
34
+ '@tanstack/router-generator': '1.160.1',
34
35
  '@tanstack/virtual-file-routes': '1.154.7',
35
36
  '@tanstack/router-utils': '1.158.0',
36
- '@cloudscape-design/board-components': '3.0.147',
37
- '@cloudscape-design/components': '3.0.1200',
37
+ '@cloudscape-design/board-components': '3.0.149',
38
+ '@cloudscape-design/components': '3.0.1204',
38
39
  '@cloudscape-design/global-styles': '1.0.50',
39
- '@tanstack/react-query': '5.90.20',
40
+ '@tanstack/react-query': '5.90.21',
40
41
  '@tanstack/react-query-devtools': '5.91.3',
41
42
  '@trpc/tanstack-react-query': '11.10.0',
42
43
  '@trpc/client': '11.10.0',
@@ -48,11 +49,11 @@ exports.TS_VERSIONS = {
48
49
  '@types/express': '5.0.6',
49
50
  '@smithy/types': '4.12.0',
50
51
  aws4fetch: '1.0.20',
51
- 'aws-cdk': '2.1105.0',
52
+ 'aws-cdk': '2.1106.0',
52
53
  'aws-cdk-lib': '2.238.0',
53
54
  '@aws-cdk/aws-bedrock-agentcore-alpha': '2.238.0-alpha.0',
54
55
  'aws-xray-sdk-core': '3.12.0',
55
- constructs: '10.4.5',
56
+ constructs: '10.5.0',
56
57
  cors: '2.8.6',
57
58
  'class-variance-authority': '0.7.1',
58
59
  clsx: '2.1.1',
@@ -69,17 +70,17 @@ exports.TS_VERSIONS = {
69
70
  'react-oidc-context': '3.3.0',
70
71
  react: '19.2.4',
71
72
  'react-dom': '19.2.4',
72
- rimraf: '6.1.2',
73
+ rimraf: '6.1.3',
73
74
  rolldown: '1.0.0-rc.1',
74
75
  'source-map-support': '0.5.21',
75
76
  tailwindcss: '4.1.18',
76
77
  '@tailwindcss/vite': '4.1.18',
77
78
  tsx: '4.21.0',
78
- 'lucide-react': '0.563.0',
79
+ 'lucide-react': '0.574.0',
79
80
  'radix-ui': '1.4.3',
80
- shadcn: '3.8.4',
81
+ shadcn: '3.8.5',
81
82
  'tw-animate-css': '1.4.0',
82
- 'tailwind-merge': '3.4.0',
83
+ 'tailwind-merge': '3.4.1',
83
84
  'vite-tsconfig-paths': '5.1.4',
84
85
  zod: '4.3.6',
85
86
  ws: '8.19.0',
@@ -98,16 +99,16 @@ exports.PY_VERSIONS = {
98
99
  'aws-lambda-powertools[parser]': '==3.24.0',
99
100
  'aws-opentelemetry-distro': '==0.15.0',
100
101
  'bedrock-agentcore': '==0.1.7',
101
- boto3: '==1.42.49',
102
- checkov: '==3.2.501',
103
- fastapi: '==0.129.0',
104
- 'fastapi[standard]': '==0.129.0',
102
+ boto3: '==1.42.54',
103
+ checkov: '==3.2.505',
104
+ fastapi: '==0.131.0',
105
+ 'fastapi[standard]': '==0.131.0',
105
106
  mangum: '==0.21.0',
106
107
  mcp: '==1.26.0',
107
108
  'pip-check-updates': '==0.28.0',
108
- 'strands-agents': '==1.26.0',
109
- 'strands-agents-tools': '==0.2.20',
110
- uvicorn: '==0.40.0',
109
+ 'strands-agents': '==1.27.0',
110
+ 'strands-agents-tools': '==0.2.21',
111
+ uvicorn: '==0.41.0',
111
112
  };
112
113
  /**
113
114
  * 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":"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"}
1
+ {"version":3,"file":"versions.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/versions.ts"],"names":[],"mappings":"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"}