Skip to content

Commit

Permalink
Release v1.44.327 (2023-08-18) (#4958)
Browse files Browse the repository at this point in the history
Release v1.44.327 (2023-08-18)
===

### Service Client Updates
* `service/codecommit`: Updates service API, documentation, and paginators
  * Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file.
* `service/securityhub`: Updates service API and documentation

### SDK Bugs
* `aws/credentials/ssocreds`: Modify sso token provider logic to handle possible nil val returned by CreateToken.
  * Fixes [4947](#4947)
  • Loading branch information
aws-sdk-go-automation authored Aug 18, 2023
1 parent ab7f358 commit 1dee181
Show file tree
Hide file tree
Showing 19 changed files with 2,292 additions and 489 deletions.
12 changes: 12 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,3 +1,15 @@
Release v1.44.327 (2023-08-18)
===

### Service Client Updates
* `service/codecommit`: Updates service API, documentation, and paginators
* Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file.
* `service/securityhub`: Updates service API and documentation

### SDK Bugs
* `aws/credentials/ssocreds`: Modify sso token provider logic to handle possible nil val returned by CreateToken.
* Fixes [4947](https://github.com/aws/aws-sdk-go/issues/4947)

Release v1.44.326 (2023-08-17)
===

Expand Down
2 changes: 0 additions & 2 deletions CHANGELOG_PENDING.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,3 @@
### SDK Enhancements

### SDK Bugs
* `aws/credentials/ssocreds`: Modify sso token provider logic to handle possible nil val returned by CreateToken.
* Fixes [4947](https://github.com/aws/aws-sdk-go/issues/4947)
15 changes: 11 additions & 4 deletions aws/endpoints/defaults.go

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion aws/version.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,4 +5,4 @@ package aws
const SDKName = "aws-sdk-go"

// SDKVersion is the version of this SDK
const SDKVersion = "1.44.326"
const SDKVersion = "1.44.327"
64 changes: 64 additions & 0 deletions models/apis/codecommit/2015-04-13/api-2.json
Original file line number Diff line number Diff line change
Expand Up @@ -1084,6 +1084,31 @@
{"shape":"InvalidContinuationTokenException"}
]
},
"ListFileCommitHistory":{
"name":"ListFileCommitHistory",
"http":{
"method":"POST",
"requestUri":"/"
},
"input":{"shape":"ListFileCommitHistoryRequest"},
"output":{"shape":"ListFileCommitHistoryResponse"},
"errors":[
{"shape":"RepositoryNameRequiredException"},
{"shape":"InvalidRepositoryNameException"},
{"shape":"RepositoryDoesNotExistException"},
{"shape":"InvalidContinuationTokenException"},
{"shape":"InvalidMaxResultsException"},
{"shape":"TipsDivergenceExceededException"},
{"shape":"CommitRequiredException"},
{"shape":"InvalidCommitException"},
{"shape":"CommitDoesNotExistException"},
{"shape":"EncryptionIntegrityChecksFailedException"},
{"shape":"EncryptionKeyAccessDeniedException"},
{"shape":"EncryptionKeyDisabledException"},
{"shape":"EncryptionKeyNotFoundException"},
{"shape":"EncryptionKeyUnavailableException"}
]
},
"ListPullRequests":{
"name":"ListPullRequests",
"http":{
Expand Down Expand Up @@ -3140,6 +3165,15 @@
},
"exception":true
},
"FileVersion":{
"type":"structure",
"members":{
"commit":{"shape":"Commit"},
"blobId":{"shape":"ObjectId"},
"path":{"shape":"Path"},
"revisionChildren":{"shape":"RevisionChildren"}
}
},
"FilesMetadata":{
"type":"list",
"member":{"shape":"FileMetadata"}
Expand Down Expand Up @@ -4003,6 +4037,28 @@
"nextToken":{"shape":"NextToken"}
}
},
"ListFileCommitHistoryRequest":{
"type":"structure",
"required":[
"repositoryName",
"filePath"
],
"members":{
"repositoryName":{"shape":"RepositoryName"},
"commitSpecifier":{"shape":"CommitName"},
"filePath":{"shape":"Path"},
"maxResults":{"shape":"Limit"},
"nextToken":{"shape":"NextToken"}
}
},
"ListFileCommitHistoryResponse":{
"type":"structure",
"required":["revisionDag"],
"members":{
"revisionDag":{"shape":"RevisionDag"},
"nextToken":{"shape":"NextToken"}
}
},
"ListPullRequestsInput":{
"type":"structure",
"required":["repositoryName"],
Expand Down Expand Up @@ -5088,6 +5144,14 @@
},
"exception":true
},
"RevisionChildren":{
"type":"list",
"member":{"shape":"RevisionId"}
},
"RevisionDag":{
"type":"list",
"member":{"shape":"FileVersion"}
},
"RevisionId":{"type":"string"},
"RevisionIdRequiredException":{
"type":"structure",
Expand Down
123 changes: 81 additions & 42 deletions models/apis/codecommit/2015-04-13/docs-2.json

Large diffs are not rendered by default.

Loading

0 comments on commit 1dee181

Please sign in to comment.