Skip to content

Commit

Permalink
Merge branch 'release-1.32.90'
Browse files Browse the repository at this point in the history
* release-1.32.90:
  Bumping version to 1.32.90
  Update changelog based on model updates
  Move 3.8 and 3.9 builds back to macos-13 (#8647)
  • Loading branch information
aws-sdk-python-automation committed Apr 23, 2024
2 parents fe83824 + 8d7514d commit 563ceb9
Show file tree
Hide file tree
Showing 7 changed files with 74 additions and 4 deletions.
47 changes: 47 additions & 0 deletions .changes/1.32.90.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,47 @@
[
{
"category": "``bedrock``",
"description": "This release introduces Model Evaluation and Guardrails for Amazon Bedrock.",
"type": "api-change"
},
{
"category": "``bedrock-agent``",
"description": "Introducing the ability to create multiple data sources per knowledge base, specify S3 buckets as data sources from external accounts, and exposing levers to define the deletion behavior of the underlying vector store data.",
"type": "api-change"
},
{
"category": "``bedrock-agent-runtime``",
"description": "This release introduces zero-setup file upload support for the RetrieveAndGenerate API. This allows you to chat with your data without setting up a Knowledge Base.",
"type": "api-change"
},
{
"category": "``bedrock-runtime``",
"description": "This release introduces Guardrails for Amazon Bedrock.",
"type": "api-change"
},
{
"category": "``ce``",
"description": "Added additional metadata that might be applicable to your reservation recommendations.",
"type": "api-change"
},
{
"category": "``ec2``",
"description": "This release introduces EC2 AMI Deregistration Protection, a new AMI property that can be enabled by customers to protect an AMI against an unintended deregistration. This release also enables the AMI owners to view the AMI 'LastLaunchedTime' in DescribeImages API.",
"type": "api-change"
},
{
"category": "``pi``",
"description": "Clarifies how aggregation works for GetResourceMetrics in the Performance Insights API.",
"type": "api-change"
},
{
"category": "``rds``",
"description": "Fix the example ARN for ModifyActivityStreamRequest",
"type": "api-change"
},
{
"category": "``workspaces-web``",
"description": "Added InstanceType and MaxConcurrentSessions parameters on CreatePortal and UpdatePortal Operations as well as the ability to read Customer Managed Key & Additional Encryption Context parameters on supported resources (Portal, BrowserSettings, UserSettings, IPAccessSettings)",
"type": "api-change"
}
]
9 changes: 9 additions & 0 deletions .github/workflows/run-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,15 @@ jobs:
matrix:
python-version: ["3.8", "3.9", "3.10", "3.11", "3.12"]
os: [ubuntu-latest, macOS-latest, windows-latest]
# Python 3.8 and 3.9 do not run on m1 hardware which is now standard for
# macOS-latest.
# https://github.com/actions/setup-python/issues/696#issuecomment-1637587760
exclude:
- { python-version: "3.8", os: "macos-latest" }
- { python-version: "3.9", os: "macos-latest" }
include:
- { python-version: "3.8", os: "macos-13" }
- { python-version: "3.9", os: "macos-13" }

steps:
- uses: actions/checkout@v4
Expand Down
14 changes: 14 additions & 0 deletions CHANGELOG.rst
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,20 @@
CHANGELOG
=========

1.32.90
=======

* api-change:``bedrock``: This release introduces Model Evaluation and Guardrails for Amazon Bedrock.
* api-change:``bedrock-agent``: Introducing the ability to create multiple data sources per knowledge base, specify S3 buckets as data sources from external accounts, and exposing levers to define the deletion behavior of the underlying vector store data.
* api-change:``bedrock-agent-runtime``: This release introduces zero-setup file upload support for the RetrieveAndGenerate API. This allows you to chat with your data without setting up a Knowledge Base.
* api-change:``bedrock-runtime``: This release introduces Guardrails for Amazon Bedrock.
* api-change:``ce``: Added additional metadata that might be applicable to your reservation recommendations.
* api-change:``ec2``: This release introduces EC2 AMI Deregistration Protection, a new AMI property that can be enabled by customers to protect an AMI against an unintended deregistration. This release also enables the AMI owners to view the AMI 'LastLaunchedTime' in DescribeImages API.
* api-change:``pi``: Clarifies how aggregation works for GetResourceMetrics in the Performance Insights API.
* api-change:``rds``: Fix the example ARN for ModifyActivityStreamRequest
* api-change:``workspaces-web``: Added InstanceType and MaxConcurrentSessions parameters on CreatePortal and UpdatePortal Operations as well as the ability to read Customer Managed Key & Additional Encryption Context parameters on supported resources (Portal, BrowserSettings, UserSettings, IPAccessSettings)


1.32.89
=======

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.32.89'
__version__ = '1.32.90'

#
# Get our data path to be added to botocore's search path
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.32.'
# The full version, including alpha/beta/rc tags.
release = '1.32.89'
release = '1.32.90'

# 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.34.89
botocore==1.34.90
docutils>=0.10,<0.17
s3transfer>=0.10.0,<0.11.0
PyYAML>=3.10,<6.1
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.34.89',
'botocore==1.34.90',
'docutils>=0.10,<0.17',
's3transfer>=0.10.0,<0.11.0',
'PyYAML>=3.10,<6.1',
Expand Down

0 comments on commit 563ceb9

Please sign in to comment.