Skip to content

Commit

Permalink
Updates SDK to v2.1440.0
Browse files Browse the repository at this point in the history
  • Loading branch information
awstools committed Aug 18, 2023
1 parent 9ef1fa3 commit 5d303e4
Show file tree
Hide file tree
Showing 16 changed files with 721 additions and 224 deletions.
12 changes: 12 additions & 0 deletions .changes/2.1440.0.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
[
{
"type": "feature",
"category": "CodeCommit",
"description": "Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file."
},
{
"type": "feature",
"category": "SecurityHub",
"description": "Added Inspector Lambda code Vulnerability section to ASFF, including GeneratorDetails, EpssScore, ExploitAvailable, and CodeVulnerabilities."
}
]
6 changes: 5 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,11 @@
# Changelog for AWS SDK for JavaScript
<!--LATEST=2.1439.0-->
<!--LATEST=2.1440.0-->
<!--ENTRYINSERT-->

## 2.1440.0
* feature: CodeCommit: Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file.
* feature: SecurityHub: Added Inspector Lambda code Vulnerability section to ASFF, including GeneratorDetails, EpssScore, ExploitAvailable, and CodeVulnerabilities.

## 2.1439.0
* feature: EC2: Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints
* feature: GameLift: Amazon GameLift updates its instance types support.
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ require('aws-sdk/lib/maintenance_mode_message').suppress = true;
To use the SDK in the browser, simply add the following script tag to your
HTML pages:

<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1439.0.min.js"></script>
<script src="https://sdk.amazonaws.com/js/aws-sdk-2.1440.0.min.js"></script>

You can also build a custom browser SDK with your specified set of AWS services.
This can allow you to reduce the SDK's size, specify different API versions of
Expand Down
44 changes: 44 additions & 0 deletions apis/codecommit-2015-04-13.min.json
Original file line number Diff line number Diff line change
Expand Up @@ -1485,6 +1485,50 @@
}
}
},
"ListFileCommitHistory": {
"input": {
"type": "structure",
"required": [
"repositoryName",
"filePath"
],
"members": {
"repositoryName": {},
"commitSpecifier": {},
"filePath": {},
"maxResults": {
"type": "integer"
},
"nextToken": {}
}
},
"output": {
"type": "structure",
"required": [
"revisionDag"
],
"members": {
"revisionDag": {
"type": "list",
"member": {
"type": "structure",
"members": {
"commit": {
"shape": "S1l"
},
"blobId": {},
"path": {},
"revisionChildren": {
"type": "list",
"member": {}
}
}
}
},
"nextToken": {}
}
}
},
"ListPullRequests": {
"input": {
"type": "structure",
Expand Down
188 changes: 162 additions & 26 deletions apis/codecommit-2015-04-13.normal.json

Large diffs are not rendered by default.

5 changes: 5 additions & 0 deletions apis/codecommit-2015-04-13.paginators.json
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,11 @@
"output_token": "nextToken",
"result_key": "branches"
},
"ListFileCommitHistory": {
"input_token": "nextToken",
"limit_key": "maxResults",
"output_token": "nextToken"
},
"ListPullRequests": {
"input_token": "nextToken",
"limit_key": "maxResults",
Expand Down
Loading

0 comments on commit 5d303e4

Please sign in to comment.