sst 2.49.2 → 2.49.3

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.
@@ -14,7 +14,7 @@ export const update = (program) => program.command("update [version]", "Update y
14
14
  try {
15
15
  const project = useProject();
16
16
  const files = await findAllPackageJson(project.paths.root);
17
- const metadata = await fetch(`https://registry.npmjs.org/sst/${args.version || "latest"}`).then((resp) => resp.json());
17
+ const metadata = await fetch(`https://registry.npmjs.org/sst/${args.version || "two"}`).then((resp) => resp.json());
18
18
  const allChanges = new Map();
19
19
  const allOldPackages = new Map();
20
20
  // Update all package.json files
package/credentials.js CHANGED
@@ -12,7 +12,7 @@ export const useAWSCredentialsProvider = lazy(() => {
12
12
  const project = useProject();
13
13
  Logger.debug("Using AWS profile", project.config.profile);
14
14
  const provider = fromNodeProviderChain({
15
- clientConfig: { region: project.config.region },
15
+ parentClientConfig: { region: project.config.region },
16
16
  profile: project.config.profile,
17
17
  roleArn: project.config.role,
18
18
  mfaCodeProvider: async (serialArn) => {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "sideEffects": false,
3
3
  "name": "sst",
4
- "version": "2.49.2",
4
+ "version": "2.49.3",
5
5
  "bin": {
6
6
  "sst": "cli/sst.js"
7
7
  },
package/package.json.bak CHANGED
@@ -5,7 +5,7 @@
5
5
  },
6
6
  "sideEffects": false,
7
7
  "name": "sst",
8
- "version": "2.49.2",
8
+ "version": "2.49.3",
9
9
  "bin": {
10
10
  "sst": "cli/sst.js"
11
11
  },