@aws-sdk/credential-provider-node 3.972.0 → 3.972.2

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 (2) hide show
  1. package/README.md +3 -3
  2. package/package.json +10 -10
package/README.md CHANGED
@@ -27,8 +27,8 @@ If invalid configuration is encountered (such as a profile in
27
27
  that does not exist), then the chained provider will be rejected with an error
28
28
  and will not invoke the next provider in the list.
29
29
 
30
- _IMPORTANT_: if you intend to acquire credentials using EKS
31
- [IAM Roles for Service Accounts](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html),
30
+ _IMPORTANT_: if you intend to acquire credentials using EKS
31
+ [IAM Roles for Service Accounts](https://docs.aws.amazon.com/eks/latest/userguide/iam-roles-for-service-accounts.html),
32
32
  then you must explicitly specify a value for `roleAssumerWithWebIdentity`. There is a
33
33
  default function available in `@aws-sdk/client-sts` package. An example of using
34
34
  this:
@@ -41,7 +41,7 @@ const { S3Client, GetObjectCommand } = require("@aws-sdk/client-s3");
41
41
  const provider = defaultProvider({
42
42
  roleAssumerWithWebIdentity: getDefaultRoleAssumerWithWebIdentity({
43
43
  // You must explicitly pass a region if you are not using us-east-1
44
- region: "eu-west-1"
44
+ region: "eu-west-1",
45
45
  }),
46
46
  });
47
47
 
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@aws-sdk/credential-provider-node",
3
- "version": "3.972.0",
3
+ "version": "3.972.2",
4
4
  "description": "AWS credential provider that sources credentials from a Node.JS environment. ",
5
5
  "engines": {
6
6
  "node": ">=20.0.0"
@@ -31,13 +31,13 @@
31
31
  },
32
32
  "license": "Apache-2.0",
33
33
  "dependencies": {
34
- "@aws-sdk/credential-provider-env": "3.972.0",
35
- "@aws-sdk/credential-provider-http": "3.972.0",
36
- "@aws-sdk/credential-provider-ini": "3.972.0",
37
- "@aws-sdk/credential-provider-process": "3.972.0",
38
- "@aws-sdk/credential-provider-sso": "3.972.0",
39
- "@aws-sdk/credential-provider-web-identity": "3.972.0",
40
- "@aws-sdk/types": "3.972.0",
34
+ "@aws-sdk/credential-provider-env": "^3.972.2",
35
+ "@aws-sdk/credential-provider-http": "^3.972.3",
36
+ "@aws-sdk/credential-provider-ini": "^3.972.2",
37
+ "@aws-sdk/credential-provider-process": "^3.972.2",
38
+ "@aws-sdk/credential-provider-sso": "^3.972.2",
39
+ "@aws-sdk/credential-provider-web-identity": "^3.972.2",
40
+ "@aws-sdk/types": "^3.973.1",
41
41
  "@smithy/credential-provider-imds": "^4.2.8",
42
42
  "@smithy/property-provider": "^4.2.8",
43
43
  "@smithy/shared-ini-file-loader": "^4.4.3",
@@ -63,10 +63,10 @@
63
63
  "files": [
64
64
  "dist-*/**"
65
65
  ],
66
- "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages/credential-provider-node",
66
+ "homepage": "https://github.com/aws/aws-sdk-js-v3/tree/main/packages-internal/credential-provider-node",
67
67
  "repository": {
68
68
  "type": "git",
69
69
  "url": "https://github.com/aws/aws-sdk-js-v3.git",
70
- "directory": "packages/credential-provider-node"
70
+ "directory": "packages-internal/credential-provider-node"
71
71
  }
72
72
  }