Skip to content

Commit

Permalink
Merge branch 'release-1.31.16'
Browse files Browse the repository at this point in the history
* release-1.31.16:
  Bumping version to 1.31.16
  Update to latest partitions and endpoints
  Update to latest models
  fix: random crashes in credentials.py (#2946)
  Avoid a KeyError when a ComponentLocator is being called concurrently (#2985)
  • Loading branch information
aws-sdk-python-automation committed Jul 31, 2023
2 parents 04dbad1 + 6d4c32d commit 8d7de13
Show file tree
Hide file tree
Showing 29 changed files with 3,765 additions and 1,908 deletions.
57 changes: 57 additions & 0 deletions .changes/1.31.16.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
[
{
"category": "``amplifyuibuilder``",
"description": "Amplify Studio releases GraphQL support for codegen job action.",
"type": "api-change"
},
{
"category": "``autoscaling``",
"description": "You can now configure an instance refresh to set its status to 'failed' when it detects that a specified CloudWatch alarm has gone into the ALARM state. You can also choose to roll back the instance refresh automatically when the alarm threshold is met.",
"type": "api-change"
},
{
"category": "``cleanrooms``",
"description": "This release introduces custom SQL queries - an expanded set of SQL you can run. This release adds analysis templates, a new resource for storing pre-defined custom SQL queries ahead of time. This release also adds the Custom analysis rule, which lets you approve analysis templates for querying.",
"type": "api-change"
},
{
"category": "``codestar-connections``",
"description": "New integration with the Gitlab provider type.",
"type": "api-change"
},
{
"category": "``drs``",
"description": "Add support for in-aws right sizing",
"type": "api-change"
},
{
"category": "``inspector2``",
"description": "This release adds 1 new API: BatchGetFindingDetails to retrieve enhanced vulnerability intelligence details for findings.",
"type": "api-change"
},
{
"category": "``lookoutequipment``",
"description": "This release includes new import resource, model versioning and resource policy features.",
"type": "api-change"
},
{
"category": "``omics``",
"description": "Add CreationType filter for ListReadSets",
"type": "api-change"
},
{
"category": "``rds``",
"description": "This release adds support for Aurora MySQL local write forwarding, which allows for forwarding of write operations from reader DB instances to the writer DB instance.",
"type": "api-change"
},
{
"category": "``route53``",
"description": "Amazon Route 53 now supports the Israel (Tel Aviv) Region (il-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.",
"type": "api-change"
},
{
"category": "``scheduler``",
"description": "This release introduces automatic deletion of schedules in EventBridge Scheduler. If configured, EventBridge Scheduler automatically deletes a schedule after the schedule has completed its last invocation.",
"type": "api-change"
}
]
16 changes: 16 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,22 @@
CHANGELOG
=========

1.31.16
=======

* api-change:``amplifyuibuilder``: Amplify Studio releases GraphQL support for codegen job action.
* api-change:``autoscaling``: You can now configure an instance refresh to set its status to 'failed' when it detects that a specified CloudWatch alarm has gone into the ALARM state. You can also choose to roll back the instance refresh automatically when the alarm threshold is met.
* api-change:``cleanrooms``: This release introduces custom SQL queries - an expanded set of SQL you can run. This release adds analysis templates, a new resource for storing pre-defined custom SQL queries ahead of time. This release also adds the Custom analysis rule, which lets you approve analysis templates for querying.
* api-change:``codestar-connections``: New integration with the Gitlab provider type.
* api-change:``drs``: Add support for in-aws right sizing
* api-change:``inspector2``: This release adds 1 new API: BatchGetFindingDetails to retrieve enhanced vulnerability intelligence details for findings.
* api-change:``lookoutequipment``: This release includes new import resource, model versioning and resource policy features.
* api-change:``omics``: Add CreationType filter for ListReadSets
* api-change:``rds``: This release adds support for Aurora MySQL local write forwarding, which allows for forwarding of write operations from reader DB instances to the writer DB instance.
* api-change:``route53``: Amazon Route 53 now supports the Israel (Tel Aviv) Region (il-central-1) for latency records, geoproximity records, and private DNS for Amazon VPCs in that region.
* api-change:``scheduler``: This release introduces automatic deletion of schedules in EventBridge Scheduler. If configured, EventBridge Scheduler automatically deletes a schedule after the schedule has completed its last invocation.


1.31.15
=======

Expand Down
2 changes: 1 addition & 1 deletion botocore/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@
import os
import re

__version__ = '1.31.15'
__version__ = '1.31.16'


class NullHandler(logging.Handler):
Expand Down
2 changes: 1 addition & 1 deletion botocore/credentials.py
Original file line number Diff line number Diff line change
Expand Up @@ -651,7 +651,7 @@ def _create_cache_key(self):

def _make_file_safe(self, filename):
# Replace :, path sep, and / to make it the string filename safe.
filename = filename.replace(':', '_').replace(os.path.sep, '_')
filename = filename.replace(':', '_').replace(os.sep, '_')
return filename.replace('/', '_')

def _get_credentials(self):
Expand Down

0 comments on commit 8d7de13

Please sign in to comment.