@aws/nx-plugin 0.71.0 → 0.73.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 (42) hide show
  1. package/LICENSE-THIRD-PARTY +222 -95
  2. package/package.json +10 -10
  3. package/src/infra/app/__snapshots__/generator.spec.ts.snap +13 -7
  4. package/src/infra/app/generator.js +3 -3
  5. package/src/infra/app/generator.js.map +1 -1
  6. package/src/preset/__snapshots__/generator.spec.ts.snap +7 -2
  7. package/src/preset/files/README.md +4 -2
  8. package/src/preset/generator.js +3 -1
  9. package/src/preset/generator.js.map +1 -1
  10. package/src/py/fast-api/generator.js +2 -3
  11. package/src/py/fast-api/generator.js.map +1 -1
  12. package/src/py/lambda-function/generator.js +2 -3
  13. package/src/py/lambda-function/generator.js.map +1 -1
  14. package/src/py/mcp-server/__snapshots__/generator.spec.ts.snap +2 -2
  15. package/src/py/mcp-server/generator.js +2 -3
  16. package/src/py/mcp-server/generator.js.map +1 -1
  17. package/src/py/project/generator.js +20 -11
  18. package/src/py/project/generator.js.map +1 -1
  19. package/src/py/strands-agent/__snapshots__/generator.spec.ts.snap +6 -6
  20. package/src/py/strands-agent/generator.js +2 -3
  21. package/src/py/strands-agent/generator.js.map +1 -1
  22. package/src/smithy/ts/api/__snapshots__/generator.spec.ts.snap +3 -0
  23. package/src/terraform/project/generator.js +1 -1
  24. package/src/terraform/project/generator.js.map +1 -1
  25. package/src/trpc/backend/files/src/router.ts.template +11 -8
  26. package/src/ts/lib/__snapshots__/generator.spec.ts.snap +30 -30
  27. package/src/ts/lib/eslint.d.ts +2 -1
  28. package/src/ts/lib/eslint.js +12 -16
  29. package/src/ts/lib/eslint.js.map +1 -1
  30. package/src/ts/lib/generator.js +7 -3
  31. package/src/ts/lib/generator.js.map +1 -1
  32. package/src/ts/lib/ts-project-utils.js +1 -1
  33. package/src/ts/lib/ts-project-utils.js.map +1 -1
  34. package/src/ts/mcp-server/__snapshots__/generator.spec.ts.snap +1 -1
  35. package/src/ts/nx-plugin/__snapshots__/generator.spec.ts.snap +1 -1
  36. package/src/ts/react-website/app/__snapshots__/generator.spec.ts.snap +72 -128
  37. package/src/utils/nxlv-python.d.ts +9 -0
  38. package/src/utils/nxlv-python.js +38 -0
  39. package/src/utils/nxlv-python.js.map +1 -0
  40. package/src/utils/versions.d.ts +25 -25
  41. package/src/utils/versions.js +24 -24
  42. package/src/utils/versions.js.map +1 -1
@@ -955,26 +955,23 @@ exports[`react-website generator > Tanstack router integration > should generate
955
955
  "inputs": ["default"]
956
956
  },
957
957
  "lint": {
958
- "cache": true,
959
- "configurations": {
960
- "fix": {
961
- "fix": true
962
- }
963
- },
964
- "inputs": [
965
- "default",
966
- "{workspaceRoot}/eslint.config.mjs",
967
- "{projectRoot}/eslint.config.mjs"
968
- ]
958
+ "cache": true
969
959
  },
970
960
  "@nx/eslint:lint": {
971
961
  "cache": true,
972
962
  "inputs": [
973
963
  "default",
974
- "{workspaceRoot}/.eslintrc.json",
975
- "{workspaceRoot}/.eslintignore",
976
- "{workspaceRoot}/eslint.config.mjs"
977
- ]
964
+ "{workspaceRoot}/eslint.config.mjs",
965
+ "{projectRoot}/eslint.config.mjs"
966
+ ],
967
+ "configurations": {
968
+ "fix": {
969
+ "fix": true
970
+ },
971
+ "skip-lint": {
972
+ "force": true
973
+ }
974
+ }
978
975
  },
979
976
  "@nx/vite:build": {
980
977
  "cache": true,
@@ -1016,6 +1013,14 @@ exports[`react-website generator > Tanstack router integration > should generate
1016
1013
  }
1017
1014
  }
1018
1015
  },
1016
+ "namedInputs": {
1017
+ "default": [
1018
+ {
1019
+ "dependentTasksOutputFiles": "**/*",
1020
+ "transitive": true
1021
+ }
1022
+ ]
1023
+ },
1019
1024
  "plugins": [
1020
1025
  {
1021
1026
  "plugin": "@nx/js/typescript",
@@ -1030,22 +1035,8 @@ exports[`react-website generator > Tanstack router integration > should generate
1030
1035
  "watchDepsName": "watch-deps"
1031
1036
  }
1032
1037
  }
1033
- },
1034
- {
1035
- "plugin": "@nx/eslint/plugin",
1036
- "options": {
1037
- "targetName": "lint"
1038
- }
1039
1038
  }
1040
- ],
1041
- "namedInputs": {
1042
- "default": [
1043
- {
1044
- "dependentTasksOutputFiles": "**/*",
1045
- "transitive": true
1046
- }
1047
- ]
1048
- }
1039
+ ]
1049
1040
  }
1050
1041
  "
1051
1042
  `;
@@ -1054,10 +1045,10 @@ exports[`react-website generator > Tanstack router integration > should generate
1054
1045
  "{
1055
1046
  "name": "@proj/source",
1056
1047
  "dependencies": {
1057
- "@cloudscape-design/board-components": "3.0.146",
1058
- "@cloudscape-design/components": "3.0.1188",
1048
+ "@cloudscape-design/board-components": "3.0.147",
1049
+ "@cloudscape-design/components": "3.0.1193",
1059
1050
  "@cloudscape-design/global-styles": "1.0.50",
1060
- "aws-cdk-lib": "2.236.0",
1051
+ "aws-cdk-lib": "2.237.1",
1061
1052
  "constructs": "10.4.5",
1062
1053
  "react": "19.2.4",
1063
1054
  "react-dom": "19.2.4",
@@ -1079,7 +1070,7 @@ exports[`react-website generator > Tanstack router integration > should generate
1079
1070
  "@tailwindcss/vite": "4.1.18",
1080
1071
  "@testing-library/dom": "10.4.0",
1081
1072
  "@testing-library/react": "16.3.0",
1082
- "@types/node": "22.19.7",
1073
+ "@types/node": "22.19.8",
1083
1074
  "@types/react": "^19.0.0",
1084
1075
  "@types/react-dom": "^19.0.0",
1085
1076
  "@vitejs/plugin-react": "^4.2.0",
@@ -1191,6 +1182,9 @@ exports[`react-website generator > Tanstack router integration > should generate
1191
1182
  "cwd": "{projectRoot}"
1192
1183
  }
1193
1184
  },
1185
+ "lint": {
1186
+ "executor": "@nx/eslint:lint"
1187
+ },
1194
1188
  "test": {
1195
1189
  "executor": "@nx/vitest:test",
1196
1190
  "outputs": ["{options.reportsDirectory}"],
@@ -1718,28 +1712,6 @@ export default defineConfig(() => ({
1718
1712
  "
1719
1713
  `;
1720
1714
 
1721
- exports[`react-website generator > Tanstack router integration > should generate website with no router correctly > packages/common/constructs/vitest.config.mts 1`] = `
1722
- "import { defineConfig } from 'vitest/config';
1723
-
1724
- export default defineConfig(() => ({
1725
- root: __dirname,
1726
- cacheDir: '../../../node_modules/.vite/packages/common/constructs',
1727
- test: {
1728
- name: '@proj/common-constructs',
1729
- watch: false,
1730
- globals: true,
1731
- environment: 'jsdom',
1732
- include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
1733
- reporters: ['default'],
1734
- coverage: {
1735
- reportsDirectory: './test-output/vitest/coverage',
1736
- provider: 'v8' as const,
1737
- },
1738
- },
1739
- }));
1740
- "
1741
- `;
1742
-
1743
1715
  exports[`react-website generator > Tanstack router integration > should generate website with no router correctly > pnpm-workspace.yaml 1`] = `
1744
1716
  "packages:
1745
1717
  - 'packages/*'
@@ -1842,6 +1814,10 @@ exports[`react-website generator > Tanstack router integration > should generate
1842
1814
  "sourceRoot": "test-app/src",
1843
1815
  "projectType": "application",
1844
1816
  "tags": [],
1817
+ "metadata": {
1818
+ "generator": "ts#react-website",
1819
+ "uxProvider": "Cloudscape"
1820
+ },
1845
1821
  "targets": {
1846
1822
  "build": {
1847
1823
  "dependsOn": ["lint", "compile", "bundle", "test"],
@@ -1942,10 +1918,6 @@ exports[`react-website generator > Tanstack router integration > should generate
1942
1918
  "reportsDirectory": "../coverage/test-app"
1943
1919
  }
1944
1920
  }
1945
- },
1946
- "metadata": {
1947
- "generator": "ts#react-website",
1948
- "uxProvider": "Cloudscape"
1949
1921
  }
1950
1922
  }
1951
1923
  "
@@ -2397,26 +2369,23 @@ exports[`react-website generator > Tanstack router integration > should generate
2397
2369
  "inputs": ["default"]
2398
2370
  },
2399
2371
  "lint": {
2400
- "cache": true,
2401
- "configurations": {
2402
- "fix": {
2403
- "fix": true
2404
- }
2405
- },
2406
- "inputs": [
2407
- "default",
2408
- "{workspaceRoot}/eslint.config.mjs",
2409
- "{projectRoot}/eslint.config.mjs"
2410
- ]
2372
+ "cache": true
2411
2373
  },
2412
2374
  "@nx/eslint:lint": {
2413
2375
  "cache": true,
2414
2376
  "inputs": [
2415
2377
  "default",
2416
- "{workspaceRoot}/.eslintrc.json",
2417
- "{workspaceRoot}/.eslintignore",
2418
- "{workspaceRoot}/eslint.config.mjs"
2419
- ]
2378
+ "{workspaceRoot}/eslint.config.mjs",
2379
+ "{projectRoot}/eslint.config.mjs"
2380
+ ],
2381
+ "configurations": {
2382
+ "fix": {
2383
+ "fix": true
2384
+ },
2385
+ "skip-lint": {
2386
+ "force": true
2387
+ }
2388
+ }
2420
2389
  },
2421
2390
  "@nx/vite:build": {
2422
2391
  "cache": true,
@@ -2458,6 +2427,14 @@ exports[`react-website generator > Tanstack router integration > should generate
2458
2427
  }
2459
2428
  }
2460
2429
  },
2430
+ "namedInputs": {
2431
+ "default": [
2432
+ {
2433
+ "dependentTasksOutputFiles": "**/*",
2434
+ "transitive": true
2435
+ }
2436
+ ]
2437
+ },
2461
2438
  "plugins": [
2462
2439
  {
2463
2440
  "plugin": "@nx/js/typescript",
@@ -2472,22 +2449,8 @@ exports[`react-website generator > Tanstack router integration > should generate
2472
2449
  "watchDepsName": "watch-deps"
2473
2450
  }
2474
2451
  }
2475
- },
2476
- {
2477
- "plugin": "@nx/eslint/plugin",
2478
- "options": {
2479
- "targetName": "lint"
2480
- }
2481
2452
  }
2482
- ],
2483
- "namedInputs": {
2484
- "default": [
2485
- {
2486
- "dependentTasksOutputFiles": "**/*",
2487
- "transitive": true
2488
- }
2489
- ]
2490
- }
2453
+ ]
2491
2454
  }
2492
2455
  "
2493
2456
  `;
@@ -2496,11 +2459,11 @@ exports[`react-website generator > Tanstack router integration > should generate
2496
2459
  "{
2497
2460
  "name": "@proj/source",
2498
2461
  "dependencies": {
2499
- "@cloudscape-design/board-components": "3.0.146",
2500
- "@cloudscape-design/components": "3.0.1188",
2462
+ "@cloudscape-design/board-components": "3.0.147",
2463
+ "@cloudscape-design/components": "3.0.1193",
2501
2464
  "@cloudscape-design/global-styles": "1.0.50",
2502
- "@tanstack/react-router": "1.157.16",
2503
- "aws-cdk-lib": "2.236.0",
2465
+ "@tanstack/react-router": "1.158.0",
2466
+ "aws-cdk-lib": "2.237.1",
2504
2467
  "constructs": "10.4.5",
2505
2468
  "react": "19.2.4",
2506
2469
  "react-dom": "19.2.4",
@@ -2520,13 +2483,13 @@ exports[`react-website generator > Tanstack router integration > should generate
2520
2483
  "@swc/core": "~1.5.7",
2521
2484
  "@swc/helpers": "~0.5.11",
2522
2485
  "@tailwindcss/vite": "4.1.18",
2523
- "@tanstack/router-generator": "1.157.16",
2524
- "@tanstack/router-plugin": "1.157.16",
2525
- "@tanstack/router-utils": "1.154.7",
2486
+ "@tanstack/router-generator": "1.158.0",
2487
+ "@tanstack/router-plugin": "1.158.0",
2488
+ "@tanstack/router-utils": "1.158.0",
2526
2489
  "@tanstack/virtual-file-routes": "1.154.7",
2527
2490
  "@testing-library/dom": "10.4.0",
2528
2491
  "@testing-library/react": "16.3.0",
2529
- "@types/node": "22.19.7",
2492
+ "@types/node": "22.19.8",
2530
2493
  "@types/react": "^19.0.0",
2531
2494
  "@types/react-dom": "^19.0.0",
2532
2495
  "@vitejs/plugin-react": "^4.2.0",
@@ -2638,6 +2601,9 @@ exports[`react-website generator > Tanstack router integration > should generate
2638
2601
  "cwd": "{projectRoot}"
2639
2602
  }
2640
2603
  },
2604
+ "lint": {
2605
+ "executor": "@nx/eslint:lint"
2606
+ },
2641
2607
  "test": {
2642
2608
  "executor": "@nx/vitest:test",
2643
2609
  "outputs": ["{options.reportsDirectory}"],
@@ -3165,28 +3131,6 @@ export default defineConfig(() => ({
3165
3131
  "
3166
3132
  `;
3167
3133
 
3168
- exports[`react-website generator > Tanstack router integration > should generate website with router correctly > packages/common/constructs/vitest.config.mts 1`] = `
3169
- "import { defineConfig } from 'vitest/config';
3170
-
3171
- export default defineConfig(() => ({
3172
- root: __dirname,
3173
- cacheDir: '../../../node_modules/.vite/packages/common/constructs',
3174
- test: {
3175
- name: '@proj/common-constructs',
3176
- watch: false,
3177
- globals: true,
3178
- environment: 'jsdom',
3179
- include: ['{src,tests}/**/*.{test,spec}.{js,mjs,cjs,ts,mts,cts,jsx,tsx}'],
3180
- reporters: ['default'],
3181
- coverage: {
3182
- reportsDirectory: './test-output/vitest/coverage',
3183
- provider: 'v8' as const,
3184
- },
3185
- },
3186
- }));
3187
- "
3188
- `;
3189
-
3190
3134
  exports[`react-website generator > Tanstack router integration > should generate website with router correctly > pnpm-workspace.yaml 1`] = `
3191
3135
  "packages:
3192
3136
  - 'packages/*'
@@ -3289,6 +3233,10 @@ exports[`react-website generator > Tanstack router integration > should generate
3289
3233
  "sourceRoot": "test-app/src",
3290
3234
  "projectType": "application",
3291
3235
  "tags": [],
3236
+ "metadata": {
3237
+ "generator": "ts#react-website",
3238
+ "uxProvider": "Cloudscape"
3239
+ },
3292
3240
  "targets": {
3293
3241
  "build": {
3294
3242
  "dependsOn": ["lint", "compile", "bundle", "test"],
@@ -3389,10 +3337,6 @@ exports[`react-website generator > Tanstack router integration > should generate
3389
3337
  "reportsDirectory": "../coverage/test-app"
3390
3338
  }
3391
3339
  }
3392
- },
3393
- "metadata": {
3394
- "generator": "ts#react-website",
3395
- "uxProvider": "Cloudscape"
3396
3340
  }
3397
3341
  }
3398
3342
  "
@@ -4583,11 +4527,11 @@ root &&
4583
4527
 
4584
4528
  exports[`react-website generator > should handle npm scope prefix correctly > scoped-dependencies 1`] = `
4585
4529
  {
4586
- "@cloudscape-design/board-components": "3.0.146",
4587
- "@cloudscape-design/components": "3.0.1188",
4530
+ "@cloudscape-design/board-components": "3.0.147",
4531
+ "@cloudscape-design/components": "3.0.1193",
4588
4532
  "@cloudscape-design/global-styles": "1.0.50",
4589
- "@tanstack/react-router": "1.157.16",
4590
- "aws-cdk-lib": "2.236.0",
4533
+ "@tanstack/react-router": "1.158.0",
4534
+ "aws-cdk-lib": "2.237.1",
4591
4535
  "constructs": "10.4.5",
4592
4536
  "react": "19.2.4",
4593
4537
  "react-dom": "19.2.4",
@@ -0,0 +1,9 @@
1
+ /**
2
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
3
+ * SPDX-License-Identifier: Apache-2.0
4
+ */
5
+ export declare const UVProvider: typeof import('@nxlv/python/dist/provider/uv/provider').UVProvider;
6
+ export type UVPyprojectToml = import('@nxlv/python/dist/provider/uv/types').UVPyprojectToml;
7
+ export declare const Logger: typeof import('@nxlv/python/dist/executors/utils/logger').Logger;
8
+ export declare const migrateToSharedVenvGenerator: typeof import('@nxlv/python/dist/generators/migrate-to-shared-venv/generator').default;
9
+ export declare const uvProjectGenerator: typeof import('@nxlv/python/dist/generators/uv-project/generator').default;
@@ -0,0 +1,38 @@
1
+ "use strict";
2
+ /**
3
+ * Copyright Amazon.com, Inc. or its affiliates. All Rights Reserved.
4
+ * SPDX-License-Identifier: Apache-2.0
5
+ */
6
+ var _a, _b;
7
+ Object.defineProperty(exports, "__esModule", { value: true });
8
+ exports.uvProjectGenerator = exports.migrateToSharedVenvGenerator = exports.Logger = exports.UVProvider = void 0;
9
+ const tslib_1 = require("tslib");
10
+ /**
11
+ * Re-exports internal modules from @nxlv/python that are not exposed
12
+ * via the package's "exports" field.
13
+ *
14
+ * Newer versions of Node.js and Vite strictly enforce the "exports" map
15
+ * in package.json, which prevents deep imports like:
16
+ * import { UVProvider } from '@nxlv/python/dist/provider/uv/provider'
17
+ *
18
+ * This module resolves the package location and loads the internal modules
19
+ * directly by filesystem path, bypassing the exports restriction.
20
+ */
21
+ const path_1 = tslib_1.__importDefault(require("path"));
22
+ // Resolve the @nxlv/python package root by finding its package.json
23
+ // (which IS listed in the exports map as "./package.json")
24
+ const nxlvPythonPkgJson = require.resolve('@nxlv/python/package.json');
25
+ const nxlvPythonRoot = path_1.default.dirname(nxlvPythonPkgJson);
26
+ // eslint-disable-next-line @typescript-eslint/no-require-imports
27
+ const uvProviderModule = require(path_1.default.join(nxlvPythonRoot, 'dist/provider/uv/provider'));
28
+ // eslint-disable-next-line @typescript-eslint/no-require-imports
29
+ const loggerModule = require(path_1.default.join(nxlvPythonRoot, 'dist/executors/utils/logger'));
30
+ // eslint-disable-next-line @typescript-eslint/no-require-imports
31
+ const migrateToSharedVenvModule = require(path_1.default.join(nxlvPythonRoot, 'dist/generators/migrate-to-shared-venv/generator'));
32
+ // eslint-disable-next-line @typescript-eslint/no-require-imports
33
+ const uvProjectModule = require(path_1.default.join(nxlvPythonRoot, 'dist/generators/uv-project/generator'));
34
+ exports.UVProvider = uvProviderModule.UVProvider;
35
+ exports.Logger = loggerModule.Logger;
36
+ exports.migrateToSharedVenvGenerator = (_a = migrateToSharedVenvModule.default) !== null && _a !== void 0 ? _a : migrateToSharedVenvModule;
37
+ exports.uvProjectGenerator = (_b = uvProjectModule.default) !== null && _b !== void 0 ? _b : uvProjectModule;
38
+ //# sourceMappingURL=nxlv-python.js.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"nxlv-python.js","sourceRoot":"","sources":["../../../../../packages/nx-plugin/src/utils/nxlv-python.ts"],"names":[],"mappings":";AAAA;;;GAGG;;;;;AAEH;;;;;;;;;;GAUG;AACH,wDAAwB;AAExB,oEAAoE;AACpE,2DAA2D;AAC3D,MAAM,iBAAiB,GAAG,OAAO,CAAC,OAAO,CAAC,2BAA2B,CAAC,CAAC;AACvE,MAAM,cAAc,GAAG,cAAI,CAAC,OAAO,CAAC,iBAAiB,CAAC,CAAC;AAEvD,iEAAiE;AACjE,MAAM,gBAAgB,GAAG,OAAO,CAC9B,cAAI,CAAC,IAAI,CAAC,cAAc,EAAE,2BAA2B,CAAC,CACvD,CAAC;AACF,iEAAiE;AACjE,MAAM,YAAY,GAAG,OAAO,CAC1B,cAAI,CAAC,IAAI,CAAC,cAAc,EAAE,6BAA6B,CAAC,CACzD,CAAC;AACF,iEAAiE;AACjE,MAAM,yBAAyB,GAAG,OAAO,CACvC,cAAI,CAAC,IAAI,CAAC,cAAc,EAAE,kDAAkD,CAAC,CAC9E,CAAC;AACF,iEAAiE;AACjE,MAAM,eAAe,GAAG,OAAO,CAC7B,cAAI,CAAC,IAAI,CAAC,cAAc,EAAE,sCAAsC,CAAC,CAClE,CAAC;AAEW,QAAA,UAAU,GACrB,gBAAgB,CAAC,UAAU,CAAC;AAOjB,QAAA,MAAM,GACjB,YAAY,CAAC,MAAM,CAAC;AAET,QAAA,4BAA4B,GACvC,MAAA,yBAAyB,CAAC,OAAO,mCAAI,yBAAyB,CAAC;AAEpD,QAAA,kBAAkB,GAC7B,MAAA,eAAe,CAAC,OAAO,mCAAI,eAAe,CAAC"}
@@ -6,9 +6,9 @@
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.980.0";
10
- readonly '@aws-sdk/client-dynamodb': "3.980.0";
11
- readonly '@aws-sdk/credential-providers': "3.980.0";
9
+ readonly '@aws-sdk/client-cognito-identity': "3.982.0";
10
+ readonly '@aws-sdk/client-dynamodb': "3.982.0";
11
+ readonly '@aws-sdk/credential-providers': "3.982.0";
12
12
  readonly '@aws-sdk/credential-provider-cognito-identity': "3.972.3";
13
13
  readonly '@aws-smithy/server-apigateway': "1.0.0-alpha.10";
14
14
  readonly '@aws-smithy/server-node': "1.0.0-alpha.10";
@@ -17,28 +17,28 @@ export declare const TS_VERSIONS: {
17
17
  readonly '@aws-lambda-powertools/tracer': "2.30.2";
18
18
  readonly '@aws-lambda-powertools/parser': "2.30.2";
19
19
  readonly '@middy/core': "6.4.5";
20
- readonly '@nxlv/python': "21.3.1";
20
+ readonly '@nxlv/python': "22.1.0";
21
21
  readonly '@nx-extend/terraform': "9.0.1";
22
- readonly '@nx/devkit': "22.4.3";
23
- readonly '@nx/react': "22.4.3";
24
- readonly 'create-nx-workspace': "22.4.3";
25
- readonly '@modelcontextprotocol/sdk': "1.25.3";
22
+ readonly '@nx/devkit': "22.4.4";
23
+ readonly '@nx/react': "22.4.4";
24
+ readonly 'create-nx-workspace': "22.4.4";
25
+ readonly '@modelcontextprotocol/sdk': "1.26.0";
26
26
  readonly '@modelcontextprotocol/inspector': "0.19.0";
27
27
  readonly '@strands-agents/sdk': "0.2.0";
28
- readonly '@tanstack/react-router': "1.157.16";
29
- readonly '@tanstack/router-plugin': "1.157.16";
30
- readonly '@tanstack/router-generator': "1.157.16";
28
+ readonly '@tanstack/react-router': "1.158.0";
29
+ readonly '@tanstack/router-plugin': "1.158.0";
30
+ readonly '@tanstack/router-generator': "1.158.0";
31
31
  readonly '@tanstack/virtual-file-routes': "1.154.7";
32
- readonly '@tanstack/router-utils': "1.154.7";
33
- readonly '@cloudscape-design/board-components': "3.0.146";
34
- readonly '@cloudscape-design/components': "3.0.1188";
32
+ readonly '@tanstack/router-utils': "1.158.0";
33
+ readonly '@cloudscape-design/board-components': "3.0.147";
34
+ readonly '@cloudscape-design/components': "3.0.1193";
35
35
  readonly '@cloudscape-design/global-styles': "1.0.50";
36
36
  readonly '@tanstack/react-query': "5.90.20";
37
37
  readonly '@tanstack/react-query-devtools': "5.91.3";
38
38
  readonly '@trpc/tanstack-react-query': "11.9.0";
39
39
  readonly '@trpc/client': "11.9.0";
40
40
  readonly '@trpc/server': "11.9.0";
41
- readonly '@types/node': "22.19.7";
41
+ readonly '@types/node': "22.19.8";
42
42
  readonly '@types/aws-lambda': "8.10.160";
43
43
  readonly '@types/cors': "2.8.19";
44
44
  readonly '@types/ws': "8.18.1";
@@ -46,8 +46,8 @@ export declare const TS_VERSIONS: {
46
46
  readonly '@smithy/types': "4.12.0";
47
47
  readonly aws4fetch: "1.0.20";
48
48
  readonly 'aws-cdk': "2.1104.0";
49
- readonly 'aws-cdk-lib': "2.236.0";
50
- readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.236.0-alpha.0";
49
+ readonly 'aws-cdk-lib': "2.237.1";
50
+ readonly '@aws-cdk/aws-bedrock-agentcore-alpha': "2.237.1-alpha.0";
51
51
  readonly 'aws-xray-sdk-core': "3.12.0";
52
52
  readonly constructs: "10.4.5";
53
53
  readonly cors: "2.8.6";
@@ -74,7 +74,7 @@ export declare const TS_VERSIONS: {
74
74
  readonly tsx: "4.21.0";
75
75
  readonly 'lucide-react': "0.563.0";
76
76
  readonly 'radix-ui': "1.4.3";
77
- readonly shadcn: "3.8.0";
77
+ readonly shadcn: "3.8.2";
78
78
  readonly 'tw-animate-css': "1.4.0";
79
79
  readonly 'tailwind-merge': "3.4.0";
80
80
  readonly 'vite-tsconfig-paths': "5.1.4";
@@ -86,7 +86,7 @@ export type ITsDepVersion = keyof typeof TS_VERSIONS;
86
86
  * Add versions to the given dependencies
87
87
  */
88
88
  export declare const withVersions: (deps: ITsDepVersion[]) => {
89
- [k: string]: "3.980.0" | "3.972.3" | "1.0.0-alpha.10" | "2.30.2" | "6.4.5" | "21.3.1" | "9.0.1" | "22.4.3" | "1.25.3" | "0.19.0" | "0.2.0" | "1.157.16" | "1.154.7" | "3.0.146" | "3.0.1188" | "1.0.50" | "5.90.20" | "5.91.3" | "11.9.0" | "22.19.7" | "8.10.160" | "2.8.19" | "8.18.1" | "5.0.6" | "4.12.0" | "1.0.20" | "2.1104.0" | "2.236.0" | "2.236.0-alpha.0" | "3.12.0" | "10.4.5" | "2.8.6" | "0.7.1" | "2.1.1" | "3.5.3" | "0.27.2" | "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.0" | "1.4.0" | "3.4.0" | "5.1.4" | "4.3.6" | "8.19.0";
89
+ [k: string]: "3.982.0" | "3.972.3" | "1.0.0-alpha.10" | "2.30.2" | "6.4.5" | "22.1.0" | "9.0.1" | "22.4.4" | "1.26.0" | "0.19.0" | "0.2.0" | "1.158.0" | "1.154.7" | "3.0.147" | "3.0.1193" | "1.0.50" | "5.90.20" | "5.91.3" | "11.9.0" | "22.19.8" | "8.10.160" | "2.8.19" | "8.18.1" | "5.0.6" | "4.12.0" | "1.0.20" | "2.1104.0" | "2.237.1" | "2.237.1-alpha.0" | "3.12.0" | "10.4.5" | "2.8.6" | "0.7.1" | "2.1.1" | "3.5.3" | "0.27.2" | "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.2" | "1.4.0" | "3.4.0" | "5.1.4" | "4.3.6" | "8.19.0";
90
90
  };
91
91
  /**
92
92
  * Versions for Python dependencies added by generators
@@ -95,17 +95,17 @@ export declare const PY_VERSIONS: {
95
95
  readonly 'aws-lambda-powertools': "==3.24.0";
96
96
  readonly 'aws-lambda-powertools[tracer]': "==3.24.0";
97
97
  readonly 'aws-lambda-powertools[parser]': "==3.24.0";
98
- readonly 'aws-opentelemetry-distro': "==0.14.2";
98
+ readonly 'aws-opentelemetry-distro': "==0.15.0";
99
99
  readonly 'bedrock-agentcore': "==0.1.7";
100
- readonly boto3: "==1.42.42";
100
+ readonly boto3: "==1.42.44";
101
101
  readonly checkov: "==3.2.500";
102
- readonly fastapi: "==0.128.1";
103
- readonly 'fastapi[standard]': "==0.128.1";
102
+ readonly fastapi: "==0.128.5";
103
+ readonly 'fastapi[standard]': "==0.128.5";
104
104
  readonly mangum: "==0.21.0";
105
105
  readonly mcp: "==1.26.0";
106
106
  readonly 'pip-check-updates': "==0.28.0";
107
- readonly 'strands-agents': "==1.24.0";
108
- readonly 'strands-agents-tools': "==0.2.19";
107
+ readonly 'strands-agents': "==1.25.0";
108
+ readonly 'strands-agents-tools': "==0.2.20";
109
109
  readonly uvicorn: "==0.40.0";
110
110
  };
111
111
  export type IPyDepVersion = keyof typeof PY_VERSIONS;
@@ -9,9 +9,9 @@ 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.980.0',
13
- '@aws-sdk/client-dynamodb': '3.980.0',
14
- '@aws-sdk/credential-providers': '3.980.0',
12
+ '@aws-sdk/client-cognito-identity': '3.982.0',
13
+ '@aws-sdk/client-dynamodb': '3.982.0',
14
+ '@aws-sdk/credential-providers': '3.982.0',
15
15
  '@aws-sdk/credential-provider-cognito-identity': '3.972.3',
16
16
  '@aws-smithy/server-apigateway': '1.0.0-alpha.10',
17
17
  '@aws-smithy/server-node': '1.0.0-alpha.10',
@@ -20,28 +20,28 @@ exports.TS_VERSIONS = {
20
20
  '@aws-lambda-powertools/tracer': '2.30.2',
21
21
  '@aws-lambda-powertools/parser': '2.30.2',
22
22
  '@middy/core': '6.4.5',
23
- '@nxlv/python': '21.3.1',
23
+ '@nxlv/python': '22.1.0',
24
24
  '@nx-extend/terraform': '9.0.1',
25
- '@nx/devkit': '22.4.3',
26
- '@nx/react': '22.4.3',
27
- 'create-nx-workspace': '22.4.3',
28
- '@modelcontextprotocol/sdk': '1.25.3',
25
+ '@nx/devkit': '22.4.4',
26
+ '@nx/react': '22.4.4',
27
+ 'create-nx-workspace': '22.4.4',
28
+ '@modelcontextprotocol/sdk': '1.26.0',
29
29
  '@modelcontextprotocol/inspector': '0.19.0',
30
30
  '@strands-agents/sdk': '0.2.0',
31
- '@tanstack/react-router': '1.157.16',
32
- '@tanstack/router-plugin': '1.157.16',
33
- '@tanstack/router-generator': '1.157.16',
31
+ '@tanstack/react-router': '1.158.0',
32
+ '@tanstack/router-plugin': '1.158.0',
33
+ '@tanstack/router-generator': '1.158.0',
34
34
  '@tanstack/virtual-file-routes': '1.154.7',
35
- '@tanstack/router-utils': '1.154.7',
36
- '@cloudscape-design/board-components': '3.0.146',
37
- '@cloudscape-design/components': '3.0.1188',
35
+ '@tanstack/router-utils': '1.158.0',
36
+ '@cloudscape-design/board-components': '3.0.147',
37
+ '@cloudscape-design/components': '3.0.1193',
38
38
  '@cloudscape-design/global-styles': '1.0.50',
39
39
  '@tanstack/react-query': '5.90.20',
40
40
  '@tanstack/react-query-devtools': '5.91.3',
41
41
  '@trpc/tanstack-react-query': '11.9.0',
42
42
  '@trpc/client': '11.9.0',
43
43
  '@trpc/server': '11.9.0',
44
- '@types/node': '22.19.7',
44
+ '@types/node': '22.19.8',
45
45
  '@types/aws-lambda': '8.10.160',
46
46
  '@types/cors': '2.8.19',
47
47
  '@types/ws': '8.18.1',
@@ -49,8 +49,8 @@ exports.TS_VERSIONS = {
49
49
  '@smithy/types': '4.12.0',
50
50
  aws4fetch: '1.0.20',
51
51
  'aws-cdk': '2.1104.0',
52
- 'aws-cdk-lib': '2.236.0',
53
- '@aws-cdk/aws-bedrock-agentcore-alpha': '2.236.0-alpha.0',
52
+ 'aws-cdk-lib': '2.237.1',
53
+ '@aws-cdk/aws-bedrock-agentcore-alpha': '2.237.1-alpha.0',
54
54
  'aws-xray-sdk-core': '3.12.0',
55
55
  constructs: '10.4.5',
56
56
  cors: '2.8.6',
@@ -77,7 +77,7 @@ exports.TS_VERSIONS = {
77
77
  tsx: '4.21.0',
78
78
  'lucide-react': '0.563.0',
79
79
  'radix-ui': '1.4.3',
80
- shadcn: '3.8.0',
80
+ shadcn: '3.8.2',
81
81
  'tw-animate-css': '1.4.0',
82
82
  'tailwind-merge': '3.4.0',
83
83
  'vite-tsconfig-paths': '5.1.4',
@@ -96,17 +96,17 @@ exports.PY_VERSIONS = {
96
96
  'aws-lambda-powertools': '==3.24.0',
97
97
  'aws-lambda-powertools[tracer]': '==3.24.0',
98
98
  'aws-lambda-powertools[parser]': '==3.24.0',
99
- 'aws-opentelemetry-distro': '==0.14.2',
99
+ 'aws-opentelemetry-distro': '==0.15.0',
100
100
  'bedrock-agentcore': '==0.1.7',
101
- boto3: '==1.42.42',
101
+ boto3: '==1.42.44',
102
102
  checkov: '==3.2.500',
103
- fastapi: '==0.128.1',
104
- 'fastapi[standard]': '==0.128.1',
103
+ fastapi: '==0.128.5',
104
+ 'fastapi[standard]': '==0.128.5',
105
105
  mangum: '==0.21.0',
106
106
  mcp: '==1.26.0',
107
107
  'pip-check-updates': '==0.28.0',
108
- 'strands-agents': '==1.24.0',
109
- 'strands-agents-tools': '==0.2.19',
108
+ 'strands-agents': '==1.25.0',
109
+ 'strands-agents-tools': '==0.2.20',
110
110
  uvicorn: '==0.40.0',
111
111
  };
112
112
  /**
@@ -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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"}