Skip to content

Commit

Permalink
Merge branch 'release-1.27.109'
Browse files Browse the repository at this point in the history
* release-1.27.109:
  Bumping version to 1.27.109
  Update changelog based on model updates
  Remove InvokeWithResponseStream from Lambda client
  • Loading branch information
aws-sdk-python-automation committed Apr 7, 2023
2 parents 746f66e + 0f39d4d commit 300c554
Show file tree
Hide file tree
Showing 8 changed files with 57 additions and 4 deletions.
37 changes: 37 additions & 0 deletions .changes/1.27.109.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,37 @@
[
{
"category": "``dlm``",
"description": "Updated timestamp format for GetLifecyclePolicy API",
"type": "api-change"
},
{
"category": "``docdb``",
"description": "This release adds a new parameter 'DBClusterParameterGroupName' to 'RestoreDBClusterFromSnapshot' API to associate the name of the DB cluster parameter group while performing restore.",
"type": "api-change"
},
{
"category": "``fsx``",
"description": "Amazon FSx for Lustre now supports creating data repository associations on Persistent_1 and Scratch_2 file systems.",
"type": "api-change"
},
{
"category": "``lambda``",
"description": "This release adds a new Lambda InvokeWithResponseStream API to support streaming Lambda function responses. The release also adds a new InvokeMode parameter to Function Url APIs to control whether the response will be streamed or buffered.",
"type": "api-change"
},
{
"category": "``quicksight``",
"description": "This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions.",
"type": "api-change"
},
{
"category": "``redshift-data``",
"description": "Update documentation of API descriptions as needed in support of temporary credentials with IAM identity.",
"type": "api-change"
},
{
"category": "``servicecatalog``",
"description": "Updates description for property",
"type": "api-change"
}
]
12 changes: 12 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,18 @@
CHANGELOG
=========

1.27.109
========

* api-change:``dlm``: Updated timestamp format for GetLifecyclePolicy API
* api-change:``docdb``: This release adds a new parameter 'DBClusterParameterGroupName' to 'RestoreDBClusterFromSnapshot' API to associate the name of the DB cluster parameter group while performing restore.
* api-change:``fsx``: Amazon FSx for Lustre now supports creating data repository associations on Persistent_1 and Scratch_2 file systems.
* api-change:``lambda``: This release adds a new Lambda InvokeWithResponseStream API to support streaming Lambda function responses. The release also adds a new InvokeMode parameter to Function Url APIs to control whether the response will be streamed or buffered.
* api-change:``quicksight``: This release has two changes: adding the OR condition to tag-based RLS rules in CreateDataSet and UpdateDataSet; adding RefreshSchedule and Incremental RefreshProperties operations for users to programmatically configure SPICE dataset ingestions.
* api-change:``redshift-data``: Update documentation of API descriptions as needed in support of temporary credentials with IAM identity.
* api-change:``servicecatalog``: Updates description for property


1.27.108
========

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

__version__ = '1.27.108'
__version__ = '1.27.109'

#
# Get our data path to be added to botocore's search path
Expand Down
3 changes: 3 additions & 0 deletions awscli/customizations/removals.py
Original file line number Diff line number Diff line change
Expand Up @@ -44,6 +44,9 @@ def register_removals(event_handler):
remove_commands=['subscribe-to-shard'])
cmd_remover.remove(on_event='building-command-table.lexv2-runtime',
remove_commands=['start-conversation'])
cmd_remover.remove(on_event='building-command-table.lambda',
remove_commands=['invoke-with-response-stream'])


class CommandRemover(object):
def __init__(self, events):
Expand Down
2 changes: 1 addition & 1 deletion doc/source/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@
# The short X.Y version.
version = '1.27.1'
# The full version, including alpha/beta/rc tags.
release = '1.27.108'
release = '1.27.109'

# The language for content autogenerated by Sphinx. Refer to documentation
# for a list of supported languages.
Expand Down
2 changes: 1 addition & 1 deletion setup.cfg
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ universal = 0

[metadata]
requires_dist =
botocore==1.29.108
botocore==1.29.109
docutils>=0.10,<0.17
s3transfer>=0.6.0,<0.7.0
PyYAML>=3.10,<5.5
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@ def find_version(*file_paths):


install_requires = [
'botocore==1.29.108',
'botocore==1.29.109',
'docutils>=0.10,<0.17',
's3transfer>=0.6.0,<0.7.0',
'PyYAML>=3.10,<5.5',
Expand Down
1 change: 1 addition & 0 deletions tests/functional/test_no_event_streams.py
Original file line number Diff line number Diff line change
Expand Up @@ -15,6 +15,7 @@
from awscli.clidriver import create_clidriver


# Excluded commands must be registered in awscli/customizations/removals.py
_ALLOWED_COMMANDS = [
's3api select-object-content'
]
Expand Down

0 comments on commit 300c554

Please sign in to comment.