Skip to content

Commit

Permalink
address feedbacks
Browse files Browse the repository at this point in the history
Co-authored-by: Trivikram Kamat <16024985+trivikr@users.noreply.github.com>
  • Loading branch information
AllanZhengYP and trivikr committed Apr 8, 2021
1 parent 6e3f8cc commit ec2df2c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .changes/next-release/bugfix-ManagedUpload-2bd31158.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"type": "bugfix",
"category": "ManagedUpload",
"description": "fix a bug that credentials refresh to frequently"
"description": "Use resolved credentials if customer supplies configured S3 Client"
}
2 changes: 1 addition & 1 deletion scripts/changelog/change-creator.js
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ function generateRandomIdentifier() {
* Ref: https://github.com/aws/aws-sdk-js/issues/3691
*/
function sanitizeFileName(filename) {
return filename.replace(/[^a-zA-Z0-9\\.]/g, '-');
return filename.replaceAll(/[^a-zA-Z0-9\\.]/g, '-');
}

var CHANGES_DIR = path.join(process.cwd(), '.changes');
Expand Down

0 comments on commit ec2df2c

Please sign in to comment.