chore(deps): update all non-major dependencies #18

Merged
stefan merged 1 commits from renovate/all-minor-patch into master 2024-04-05 13:02:36 +00:00
Member

This PR contains the following updates:

Package Update Change
apprise minor ==1.4.5 -> ==1.7.5
awslambdaric patch ==2.0.5 -> ==2.0.11
boto3 minor ==1.28.28 -> ==1.34.78
humanize (changelog) minor ==4.8.0 -> ==4.9.0

Release Notes

caronc/apprise (apprise)

v1.7.5

Compare Source

Details

📣 New Notification Services:
💡 Features
❤️ Life-Cycle Support
🐛 Bugfixes

Installation

Apprise is available on PyPI through pip:


### Install Apprise v1.7.5 from PyPI
pip install apprise==1.7.5

v1.7.4

Compare Source

Details

📣 New Notification Services:
💡 Features
❤️ Life-Cycle Support
  • n/a
🐛 Bugfixes

Apprise is available on PyPI through pip:


### Install Apprise v1.7.4 from PyPI
pip install apprise==1.7.4

v1.7.3

Compare Source

Details

Another minor release to push some outstanding bug-fixes that have accumulated and patched over the past month

📣 New Notification Services:
💡 Features
  • mailto:// comcast.net email template added (#​1059)
  • mailto:// improved custom email server handling (5ae212f)
    • to= and from_addr= are no longer required in most circumstances and can be automatically determined based on basic information provided.
  • ntfy:// markdown support added (#​1056)
    • just add ?format=markdown to format the content accordingly
❤️ Life-Cycle Support
  • paho-mqtt v2.0 was released and it's documentation for v1.6.1 was completely incompatible with it. For the stability of the mqtt:// plugin, paho-mqtt has been pinned to the stable v1.x release (#​1065)
🐛 Bugfixes
  • Fixed documents with respect to the use of yaml files (#​1069) - Thank you @​samueltardieu
    • Updated CLI so that it can read both .yml and .yaml files by default (#​1073)
  • macosx:// - Update terminal-notifier notify_paths (#​1052) - Thank you @​joergschultzelutter
  • Asynchronous Dynamic Module Loading Support (#​1071)
    • This was a bug introduced with Dynamic Module Loading (in Apprise v1.7.0) preventing threading/async support

Apprise is available on PyPI through pip:


### Install Apprise v1.7.3 from PyPI
pip install apprise==1.7.3

v1.7.2

Compare Source

Details

This was just a second small release add some improvements and bug fixes

See the release notes for Apprise v1.7.0 to see all of the bells and whistles now available!

💡 Features
  • Slack Integration Support thread_timestamp (#​1033)
  • Massive refactoring of overflow features split and truncate (#​1035 & #​1038)
❤️ Life-Cycle Support
  • Python 3.12 Support (#​1031)
  • Removed Spontit (upstream no longer in service) (#​1034)
🐛 Bugfixes
  • Resolved TypeError logging exception with Custom plugin loading (#​1042)
  • Update README.md (form:// and forms:// examples) (#​1045) - thank you @​dgtlmoon
Installation Instructions

Apprise is available on PyPI through pip:


### Install Apprise v1.7.2 from PyPI
pip install apprise==1.7.2

v1.7.1

Compare Source

Details

This was just a small release to patch a small bug (#​1032) preventing Apprise v1.7.0 from being compatible with the Apprise API.

See the release notes for Apprise v1.7.0 to see all of the bells and whistles now available!

🐛 Bugfixes
  • Resolved ConfigMemory AttributeError Exception (#​1032)
Installation Instructions

Apprise is available on PyPI through pip:


### Install Apprise v1.7.1 from PyPI
pip install apprise==1.7.1

v1.7.0

Compare Source

Details

📣 New Notification Services:
💡 Features
  • Massive Refactoring of Dynamic Module Loading (now on demand) (#​1020)
  • YAML (Configuration) Tag Group Support enhancement (#​998)
  • Emoji support added 🚀 (#​1011)
    • You can now provide :slightly_smiling_face: (as an example) in your apprise message body and have it swap to 🙂
    • All supported emoji's were based on @​ikatyang's Emoji Cheat Sheet
    • The emoji engine is not active by default but can be turned on in several ways:
      1. In your Apprise URL, simply add the parameter emojis=yes and they will be ran against that service only:

The below would run the title and body through the emoji engine to produce their unicode

emoji equivalent..

🚀 would become 🚀 and 👍 would become 👍

         apprise --title=":+1: Great work everyone!" \
                --body="So proud of you all! :rocket:." \
                "myschema://credentials?emojis=yes"
         ```

         You can also ensure that the emoji engine is always turned on via the CLI using the switch `--interpret-emojis` or it's synonymous equivalent `-j`
         ```bash

again ... 🚀 would become 🚀 and 👍 would become 👍

         apprise --title=":+1: Great work everyone!" \
                --body="So proud of you all! :rocket:." \
                --interpret-emojis
                "myschema://credentials"
         ```
    1. In your Apprise Asset object, just set `emojis=True`.  This becomes a bit more of a global switch and turns on the emoji support for all notifications regardless if the `emojis=yes` is set on the URL.
         ```python
         import apprise

if set to True:

Emoji Engine is enabled by default (but can be over-ridden on a per-url base ?emojis=no

if set to False:

Emoji Engine is never enabled (regardless of URL definition)

if set to None (Default):

Emoji Engine is enabled on demand (per URL definition only)

         asset = apprise.AppriseAsset(emojis=True)
         apobj = apprise.Apprise(asset=asset)

The below will be passed through the emoji engine because the asset enabled it

by default

         apobj.add("myschema://credentials")

The below will never use the emoji engine, regardless if it is enabled or not:

         apobj.add("myschema://credentials?emojis=no")
         ```
- This is documented [here](https://github.com/caronc/apprise/wiki/CLI_Usage#ok_hand-emoji-support) as well on the wiki
- Note that if the emoji engine is enabled, but the URL specifically says `?emojis=no`, then the engine will never be applied against it.
  • Telegram (tgram://) supports topics inline per target specified (#​1028)
    • Previously Supported:
      • tgram://{bot_token}/
      • tgram://{bot_token}/{chat_id}/
      • tgram://{bot_token}/{chat_id1}/{chat_id2}/{chat_id3}/
    • Newly Supported (in addition to the above):
      • tgram://{bot_token}/{chat_id}:{topic}/
      • tgram://{bot_token}/{chat_id1}:topic1}/{chat_id2}:{topic2}/{chat_id3}:{topic3}/
    • You are not required to provide a topic as it is purely optional:
      • tgram://{bot_token}/{chat_id1}/{chat_id2}:{topic2}/{chat_id3}/
  • Discord (discord://) support for user and role ping support (#​1004).
    • The discord message body can contain content such as the following to trigger the appropriate pings
      • user: <@&#8203;123>
      • role: <@&#8203;&456>
      • tag: @everyone
❤️ Life-Cycle Support
🐛 Bugfixes
  • n/a
Installation Instructions

Apprise is available on PyPI through pip:


### Install Apprise v1.7.0 from PyPI
pip install apprise==1.7.0

v1.6.0

Compare Source

Details

📣 New Notification Services:
💡 Features
  • mqtt:// added log entry on successful transmission for both consistency and to align with other plugins (#​946)

  • Refactored URLBase() object to prepare for API Webhook support in the Apprise API (#​973)

  • A global change to handles user= directive a better and auto-solves ambiguous situations where the URL looks like this: schema://username@hostname?user=username2 (#​947).

    In the past the username would get lost and be trumped with username2. This is fine, but to may Apprise more versatile, Now in these circumstances Apprise will interpret it as: schema://password@hostname?user=username. This change does not disrupt other common formatting such as:

    • schema://username:password@hostname
    • schema://username@hostname
    • schema://hostname?user=username&password=password
  • Default Attachment maximum attachment size changed from 5MB to 1GB (be3baed). This just makes it easier to use the API and CLI without issues. It lets the upstream service complain if the attachment is too large instead of Apprise restricting you.

  • xml:// custom URL parsing better handles customized XML elements (inserted, renamed and deleted); (#​945).

  • Configuration now supports Groups. You can now assign pre-defined tags to groups and trigger your notifications off of them. (#​967)

    • Groups are processed at the end, so there is no requirement to define it at the front or end of your configuration files.
    • Group definitions stack as well (so defining the same group again with append any entries to what was already assigned.
    • You can assign more groups to groups
    • You can assign multiple groups in one single declaration
    • Here is a simple TEXT example:

assign "tag1" and "tag2" to the group "group"

  group = tag1, tag2

Group assigned to a group plus another tag

  groupA = group, tag3

Support multi-assignments (also stackable)

both groupB and groupC would acquire tag1 and tag4

  groupB, groupC = tag1, tag4

Append another tag into a group already defined

  group = tag4

Just some URLs defined as examples

  tag1 = mailto://credentials
  tag2 = mailto://credentials
  tag3 = mailto://credentials
  tag4 = mailto://credentials
  ```

  If you were to send your notification to the tag `group` it would in fact trigger both `tag1`, `tag2`, and `tag4`:
  ```bash
  apprise -g 'group' -b "Test Message!"
  • Here is a simple YAML example:

You must define a groups section

  groups:
      group: tag1, tag2
      groupA: group, tag3
      group: tag4

Support multi assignments:

      groupB, groupC: tag1, tag4

Another way you can define your groups:

      groupD:
        - tagX: Place an optional comment here; this is ignored and only tagX is retrieved
        - tagY: Another spot to place an optional comment

You can also just list them:

      groupG:
         - tag1
         - tag3
         - group

Define your tags as usual here:

  urls:
     - json://localhost:
        - tag: tag1
     - form://localhost:
        - tag: tag2
     - mailto://credentials:
        - tag: tag3
     - mailto://credentials:
        - tag: tag4
  ```
❤️ Life-Cycle Support
  • MSG91 Rewrite due to massive upstream changes to their API. (#​966)
    • It's basically a completely new plugin with zero backwards compatibility with it's previous design. Functionality restored in this release.
  • Twitter plugin supports x:// in addition to tweet:// and twitter:// to align with re-branding (#​971)
  • Matrix updated to handle API v3. Attachment support not there, but works for v2. Simply add ?v=2 to your Apprise URL to use the older API for now. (#​970)
  • Downgraded License to BSDv2 (BSDv3 is too strict) (#​976)
🐛 Bugfixes
  • n/a
Installation Instructions

Apprise is available on PyPI through pip:


### Install Apprise v1.6.0 from PyPI
pip install apprise==1.6.0

v1.5.0

Compare Source

Details

📣 New Notification Services:
💡 Features
  • Matrix Attachment support! 📚 🚀
  • Discord:
    • Rate Limiting (429 Error code) handling/support (#​901)
      • basically retry our post once our limit timer has elapsed
    • Added href= variable that can be set on the Apprise URL which allows you to leverage the embed part of the API and turn your title into a hyperlink to the specified location. You can also use url= (as an alias to href=) (#​927)
  • All notifications now no longer require a body if at least 1 attachment was provided. This expands the use of Apprise to not constrict you to always include a body when the only intent you had was to post an attachment.

For the CLI you are still required to set the --body to "", but this no longer

generates an error

  apprise --attach="/path/to/attachment.zip  --body ""
  ```
  • Apprise.details() improvements
  • Added Matrix Attachment Support (#​921)
  • Support for Serialization via Pickle Library added. (#​929)

as an example ...

import apprise
import pickle

Instantiate our object

apobj = apprise.Apprise()

Add our URLs

apobj.add("json://localhost")
apobj.add("xml://localhost")
apobj.add("form://localhost")
apobj.add("mailto://user:pass@localhost")

Now serialize our object for any purpose

serialized = pickle.dumps(apobj)

do what you will; write this to disk, send it to a remote

server, etc.

We can re-load our serialized content and turn it back into

and object like so:

apobj_n2 = pickle.loads(serialized)

##### :heart: Life-Cycle Support
- Python 3.11 `getdefaultlocale()` deprecation warnings now handled (#&#8203;754)
- Gitter support removed as it is now leveraging [Matrix which Apprise already supports](https://github.com/caronc/apprise/wiki/Notify_matrix). (#&#8203;924)
##### :bug: Bugfixes
- Reddit RateLimit variables should be unique per instance (d7a5a60508c9fa57f8dfce9cf419973fbe86dbb0)
- `&nbsp;` placed in the Title/Subject of some notifications; this has now been fixed. (#&#8203;914)
- `gettext()` no longer installs `_` into the global namespace, but instead keeps the `_` at an `apprise` module scope. (#&#8203;821)
##### Installation Instructions
Apprise is available [on PyPI](https://pypi.org/project/apprise/) through _pip_:
```bash
### Install Apprise v1.5.0 from PyPI
pip install apprise==1.5.0
aws/aws-lambda-python-runtime-interface-client (awslambdaric)

v2.0.11: AWS Lambda Runtime Interface Client for Python v2.0.11

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.10...2.0.11

v2.0.10: AWS Lambda Runtime Interface Client for Python v2.0.10

Compare Source

What's Changed

Full Changelog: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.9...2.0.10

v2.0.9: AWS Lambda Runtime Interface Client for Python v2.0.9

Compare Source

What's Changed

Full Changelog: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.8...2.0.9

v2.0.8: AWS Lambda Runtime Interface Client for Python v2.0.8

Compare Source

What's Changed

Full Changelog: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.7...2.0.8

v2.0.7: AWS Lambda Runtime Interface Client for Python v2.0.7

Compare Source

What's Changed

Full Changelog: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.6...2.0.7

v2.0.6: AWS Lambda Runtime Interface Client for Python v2.0.6

Compare Source

What's Changed

New Contributors

Full Changelog: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.5...2.0.6

boto/boto3 (boto3)

v1.34.78

Compare Source

=======

  • api-change:b2bi: [botocore] Adding support for X12 5010 HIPAA EDI version and associated transaction sets.
  • api-change:cleanrooms: [botocore] Feature: New schemaStatusDetails field to the existing Schema object that displays a status on Schema API responses to show whether a schema is queryable or not. New BatchGetSchemaAnalysisRule API to retrieve multiple schemaAnalysisRules using a single API call.
  • api-change:ec2: [botocore] Amazon EC2 G6 instances powered by NVIDIA L4 Tensor Core GPUs can be used for a wide range of graphics-intensive and machine learning use cases. Gr6 instances also feature NVIDIA L4 GPUs and can be used for graphics workloads with higher memory requirements.
  • api-change:emr-containers: [botocore] This release adds support for integration with EKS AccessEntry APIs to enable automatic Cluster Access for EMR on EKS.
  • api-change:ivs: [botocore] API update to include an SRT ingest endpoint and passphrase for all channels.
  • api-change:verifiedpermissions: [botocore] Adds GroupConfiguration field to Identity Source API's

v1.34.77

Compare Source

=======

  • api-change:cleanroomsml: [botocore] The release includes a public SDK for AWS Clean Rooms ML APIs, making them globally available to developers worldwide.
  • api-change:cloudformation: [botocore] This release would return a new field - PolicyAction in cloudformation's existed DescribeChangeSetResponse, showing actions we are going to apply on the physical resource (e.g., Delete, Retain) according to the user's template
  • api-change:datazone: [botocore] This release supports the feature of dataQuality to enrich asset with dataQualityResult in Amazon DataZone.
  • api-change:docdb: [botocore] This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster.
  • api-change:groundstation: [botocore] This release adds visibilityStartTime and visibilityEndTime to DescribeContact and ListContacts responses.
  • api-change:lambda: [botocore] Add Ruby 3.3 (ruby3.3) support to AWS Lambda
  • api-change:medialive: [botocore] Cmaf Ingest outputs are now supported in Media Live
  • api-change:medical-imaging: [botocore] SearchImageSets API now supports following enhancements - Additional support for searching on UpdatedAt and SeriesInstanceUID - Support for searching existing filters between dates/times - Support for sorting the search result by Ascending/Descending - Additional parameters returned in the response
  • api-change:transfer: [botocore] Add ability to specify Security Policies for SFTP Connectors

v1.34.76

Compare Source

=======

  • api-change:ecs: [botocore] Documentation only update for Amazon ECS.
  • api-change:glue: [botocore] Adding View related fields to responses of read-only Table APIs.
  • api-change:ivschat: [botocore] Doc-only update. Changed "Resources" to "Key Concepts" in docs and updated text.
  • api-change:rolesanywhere: [botocore] This release increases the limit on the roleArns request parameter for the *Profile APIs that support it. This parameter can now take up to 250 role ARNs.
  • api-change:securityhub: [botocore] Documentation updates for AWS Security Hub

v1.34.75

Compare Source

=======

  • api-change:cloudwatch: [botocore] This release adds support for CloudWatch Anomaly Detection on cross-account metrics. SingleMetricAnomalyDetector and MetricDataQuery inputs to Anomaly Detection APIs now take an optional AccountId field.
  • api-change:datazone: [botocore] This release supports the feature of AI recommendations for descriptions to enrich the business data catalog in Amazon DataZone.
  • api-change:deadline: [botocore] AWS Deadline Cloud is a new fully managed service that helps customers set up, deploy, and scale rendering projects in minutes, so they can improve the efficiency of their rendering pipelines and take on more projects.
  • api-change:emr: [botocore] This release fixes a broken link in the documentation.
  • api-change:lightsail: [botocore] This release adds support to upgrade the TLS version of the distribution.

v1.34.74

Compare Source

=======

  • api-change:b2bi: [botocore] Supporting new EDI X12 transaction sets for X12 versions 4010, 4030, and 5010.
  • api-change:codebuild: [botocore] Add new fleet status code for Reserved Capacity.
  • api-change:codeconnections: [botocore] Duplicating the CodeStar Connections service into the new, rebranded AWS CodeConnections service.
  • api-change:internetmonitor: [botocore] This release adds support to allow customers to track cross account monitors through ListMonitor, GetMonitor, ListHealthEvents, GetHealthEvent, StartQuery APIs.
  • api-change:iotwireless: [botocore] Add support for retrieving key historical and live metrics for LoRaWAN devices and gateways
  • api-change:marketplace-catalog: [botocore] This release enhances the ListEntities API to support ResaleAuthorizationId filter and sort for OfferEntity in the request and the addition of a ResaleAuthorizationId field in the response of OfferSummary.
  • api-change:neptune-graph: [botocore] Add the new API Start-Import-Task for Amazon Neptune Analytics.
  • api-change:sagemaker: [botocore] This release adds support for custom images for the CodeEditor App on SageMaker Studio

v1.34.73

Compare Source

=======

  • api-change:codecatalyst: [botocore] This release adds support for understanding pending changes to subscriptions by including two new response parameters for the GetSubscription API for Amazon CodeCatalyst.
  • api-change:compute-optimizer: [botocore] This release enables AWS Compute Optimizer to analyze and generate recommendations with a new customization preference, Memory Utilization.
  • api-change:ec2: [botocore] Amazon EC2 C7gd, M7gd and R7gd metal instances with up to 3.8 TB of local NVMe-based SSD block-level storage have up to 45% improved real-time NVMe storage performance than comparable Graviton2-based instances.
  • api-change:eks: [botocore] Add multiple customer error code to handle customer caused failure when managing EKS node groups
  • api-change:guardduty: [botocore] Add EC2 support for GuardDuty Runtime Monitoring auto management.
  • api-change:neptune-graph: [botocore] Update ImportTaskCancelled waiter to evaluate task state correctly and minor documentation changes.
  • api-change:oam: [botocore] This release adds support for sharing AWS::InternetMonitor::Monitor resources.
  • api-change:quicksight: [botocore] Amazon QuickSight: Adds support for setting up VPC Endpoint restrictions for accessing QuickSight Website.

v1.34.72

Compare Source

=======

  • api-change:batch: [botocore] This feature allows AWS Batch to support configuration of imagePullSecrets and allowPrivilegeEscalation for jobs running on EKS
  • api-change:bedrock-agent: [botocore] This changes introduces metadata documents statistics and also updates the documentation for bedrock agent.
  • api-change:bedrock-agent-runtime: [botocore] This release introduces filtering support on Retrieve and RetrieveAndGenerate APIs.
  • api-change:elasticache: [botocore] Added minimum capacity to Amazon ElastiCache Serverless. This feature allows customer to ensure minimum capacity even without current load
  • api-change:secretsmanager: [botocore] Documentation updates for Secrets Manager

v1.34.71

Compare Source

=======

  • api-change:bedrock-agent-runtime: [botocore] This release adds support to customize prompts sent through the RetrieveAndGenerate API in Agents for Amazon Bedrock.
  • api-change:ce: [botocore] Adds support for backfill of cost allocation tags, with new StartCostAllocationTagBackfill and ListCostAllocationTagBackfillHistory API.
  • api-change:ec2: [botocore] Documentation updates for Elastic Compute Cloud (EC2).
  • api-change:ecs: [botocore] This is a documentation update for Amazon ECS.
  • api-change:finspace: [botocore] Add new operation delete-kx-cluster-node and add status parameter to list-kx-cluster-node operation.

v1.34.70

Compare Source

=======

  • api-change:codebuild: [botocore] Supporting GitLab and GitLab Self Managed as source types in AWS CodeBuild.
  • api-change:ec2: [botocore] Added support for ModifyInstanceMetadataDefaults and GetInstanceMetadataDefaults to set Instance Metadata Service account defaults
  • api-change:ecs: [botocore] Documentation only update for Amazon ECS.
  • api-change:emr-containers: [botocore] This release increases the number of supported job template parameters from 20 to 100.
  • api-change:globalaccelerator: [botocore] AWS Global Accelerator now supports cross-account sharing for bring your own IP addresses.
  • api-change:medialive: [botocore] Exposing TileMedia H265 options
  • api-change:sagemaker: [botocore] Introduced support for the following new instance types on SageMaker Studio for JupyterLab and CodeEditor applications: m6i, m6id, m7i, c6i, c6id, c7i, r6i, r6id, r7i, and p5

v1.34.69

Compare Source

=======

  • api-change:firehose: [botocore] Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy.
  • api-change:kendra: [botocore] Documentation update, March 2024. Corrects some docs for Amazon Kendra.
  • api-change:pricing: [botocore] Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs
  • api-change:rolesanywhere: [botocore] This release relaxes constraints on the durationSeconds request parameter for the *Profile APIs that support it. This parameter can now take on values that go up to 43200.
  • api-change:securityhub: [botocore] Added new resource detail object to ASFF, including resource for LastKnownExploitAt

v1.34.68

Compare Source

=======

  • api-change:codeartifact: [botocore] This release adds Package groups to CodeArtifact so you can more conveniently configure package origin controls for multiple packages.

v1.34.67

Compare Source

=======

  • api-change:accessanalyzer: [botocore] This release adds support for policy validation and external access findings for DynamoDB tables and streams. IAM Access Analyzer helps you author functional and secure resource-based policies and identify cross-account access. Updated service API, documentation, and paginators.
  • api-change:codebuild: [botocore] This release adds support for new webhook events (RELEASED and PRERELEASED) and filter types (TAG_NAME and RELEASE_NAME).
  • api-change:connect: [botocore] This release updates the *InstanceStorageConfig APIs to support a new ResourceType: REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS. Use this resource type to enable streaming for real-time analysis of chat contacts and to associate a Kinesis stream where real-time analysis chat segments will be published.
  • api-change:dynamodb: [botocore] This release introduces 3 new APIs ('GetResourcePolicy', 'PutResourcePolicy' and 'DeleteResourcePolicy') and modifies the existing 'CreateTable' API for the resource-based policy support. It also modifies several APIs to accept a 'TableArn' for the 'TableName' parameter.
  • api-change:managedblockchain-query: [botocore] AMB Query: update GetTransaction to include transactionId as input
  • api-change:savingsplans: [botocore] Introducing the Savings Plans Return feature enabling customers to return their Savings Plans within 7 days of purchase.

v1.34.66

Compare Source

=======

  • api-change:cloudformation: [botocore] Documentation update, March 2024. Corrects some formatting.
  • api-change:ec2: [botocore] This release adds the new DescribeMacHosts API operation for getting information about EC2 Mac Dedicated Hosts. Users can now see the latest macOS versions that their underlying Apple Mac can support without needing to be updated.
  • api-change:finspace: [botocore] Adding new attributes readWrite and onDemand to dataview models for Database Maintenance operations.
  • api-change:logs: [botocore] Update LogSamples field in Anomaly model to be a list of LogEvent
  • api-change:managedblockchain-query: [botocore] Introduces a new API for Amazon Managed Blockchain Query: ListFilteredTransactionEvents.

v1.34.65

Compare Source

=======

  • api-change:cloudformation: [botocore] This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed.
  • api-change:kms: [botocore] Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy
  • api-change:mediatailor: [botocore] This release adds support to allow customers to show different content within a channel depending on metadata associated with the viewer.
  • api-change:rds: [botocore] This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations.
  • api-change:s3: [botocore] Fix two issues with response root node names.
  • api-change:timestream-query: [botocore] Documentation updates, March 2024

v1.34.64

Compare Source

=======

  • api-change:backup: [botocore] This release introduces a boolean attribute ManagedByAWSBackupOnly as part of ListRecoveryPointsByResource api to filter the recovery points based on ownership. This attribute can be used to filter out the recovery points protected by AWSBackup.
  • api-change:codebuild: [botocore] AWS CodeBuild now supports overflow behavior on Reserved Capacity.
  • api-change:connect: [botocore] This release adds Hierarchy based Access Control fields to Security Profile public APIs and adds support for UserAttributeFilter to SearchUsers API.
  • api-change:ec2: [botocore] Add media accelerator and neuron device information on the describe instance types API.
  • api-change:kinesisanalyticsv2: [botocore] Support for Flink 1.18 in Managed Service for Apache Flink
  • api-change:s3: [botocore] Documentation updates for Amazon S3.
  • api-change:sagemaker: [botocore] Adds m6i, m6id, m7i, c6i, c6id, c7i, r6i r6id, r7i, p5 instance type support to Sagemaker Notebook Instances and miscellaneous wording fixes for previous Sagemaker documentation.
  • api-change:workspaces-thin-client: [botocore] Removed unused parameter kmsKeyArn from UpdateDeviceRequest

v1.34.63

Compare Source

=======

  • api-change:amplify: [botocore] Documentation updates for Amplify. Identifies the APIs available only to apps created using Amplify Gen 1.
  • api-change:ec2-instance-connect: [botocore] This release includes a new exception type "SerialConsoleSessionUnsupportedException" for SendSerialConsoleSSHPublicKey API.
  • api-change:elbv2: [botocore] This release allows you to configure HTTP client keep-alive duration for communication between clients and Application Load Balancers.
  • api-change:fis: [botocore] This release adds support for previewing target resources before running a FIS experiment. It also adds resource ARNs for actions, experiments, and experiment templates to API responses.
  • api-change:iot-roborunner: [botocore] The iot-roborunner client has been removed following the deprecation of the service.
  • api-change:rds: [botocore] Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2.
  • api-change:secretsmanager: [botocore] Doc only update for Secrets Manager
  • api-change:timestream-influxdb: [botocore] This is the initial SDK release for Amazon Timestream for InfluxDB. Amazon Timestream for InfluxDB is a new time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open source APIs.
  • enhancement:urllib3: [botocore] Added support for urllib3 2.2.1+ in Python 3.10+

v1.34.62

Compare Source

=======

  • api-change:ivs-realtime: [botocore] adds support for multiple new composition layout configuration options (grid, pip)
  • api-change:kinesisanalyticsv2: [botocore] Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs.
  • api-change:s3: [botocore] This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT).

v1.34.61

Compare Source

=======

  • api-change:cloudformation: [botocore] CloudFormation documentation update for March, 2024
  • api-change:connect: [botocore] This release increases MaxResults limit to 500 in request for SearchUsers, SearchQueues and SearchRoutingProfiles APIs of Amazon Connect.
  • api-change:ec2: [botocore] Documentation updates for Amazon EC2.
  • api-change:kafka: [botocore] Added support for specifying the starting position of topic replication in MSK-Replicator.
  • api-change:ssm: [botocore] March 2024 doc-only updates for Systems Manager.

v1.34.60

Compare Source

=======

  • api-change:codestar-connections: [botocore] Added a sync configuration enum to disable publishing of deployment status to source providers (PublishDeploymentStatus). Added a sync configuration enum (TriggerStackUpdateOn) to only trigger changes.
  • api-change:elasticache: [botocore] Revisions to API text that are now to be carried over to SDK text, changing usages of "SFO" in code examples to "us-west-1", and some other typos.
  • api-change:mediapackagev2: [botocore] This release enables customers to safely update their MediaPackage v2 channel groups, channels and origin endpoints using entity tags.

v1.34.59

Compare Source

=======

  • api-change:batch: [botocore] This release adds JobStateTimeLimitActions setting to the Job Queue API. It allows you to configure an action Batch can take for a blocking job in front of the queue after the defined period of time. The new parameter applies for ECS, EKS, and FARGATE Job Queues.
  • api-change:bedrock-agent-runtime: [botocore] Documentation update for Bedrock Runtime Agent
  • api-change:cloudtrail: [botocore] Added exceptions to CreateTrail, DescribeTrails, and ListImportFailures APIs.
  • api-change:codebuild: [botocore] This release adds support for a new webhook event: PULL_REQUEST_CLOSED.
  • api-change:cognito-idp: [botocore] Add ConcurrentModificationException to SetUserPoolMfaConfig
  • api-change:guardduty: [botocore] Add RDS Provisioned and Serverless Usage types
  • api-change:transfer: [botocore] Added DES_EDE3_CBC to the list of supported encryption algorithms for messages sent with an AS2 connector.

v1.34.58

Compare Source

=======

  • api-change:appconfig: [botocore] AWS AppConfig now supports dynamic parameters, which enhance the functionality of AppConfig Extensions by allowing you to provide parameter values to your Extensions at the time you deploy your configuration.
  • api-change:ec2: [botocore] This release adds an optional parameter to RegisterImage and CopyImage APIs to support tagging AMIs at the time of creation.
  • api-change:grafana: [botocore] Adds support for the new GrafanaToken as part of the Amazon Managed Grafana Enterprise plugins upgrade to associate your AWS account with a Grafana Labs account.
  • api-change:lambda: [botocore] Documentation updates for AWS Lambda
  • api-change:payment-cryptography-data: [botocore] AWS Payment Cryptography EMV Decrypt Feature Release
  • api-change:rds: [botocore] Updates Amazon RDS documentation for io2 storage for Multi-AZ DB clusters
  • api-change:snowball: [botocore] Doc-only update for change to EKS-Anywhere ordering.
  • api-change:wafv2: [botocore] You can increase the max request body inspection size for some regional resources. The size setting is in the web ACL association config. Also, the AWSManagedRulesBotControlRuleSet EnableMachineLearning setting now takes a Boolean instead of a primitive boolean type, for languages like Java.
  • api-change:workspaces: [botocore] Added note for user decoupling

v1.34.57

Compare Source

=======

  • api-change:dynamodb: [botocore] Doc only updates for DynamoDB documentation
  • api-change:imagebuilder: [botocore] Add PENDING status to Lifecycle Execution resource status. Add StartTime and EndTime to ListLifecycleExecutionResource API response.
  • api-change:mwaa: [botocore] Amazon MWAA adds support for Apache Airflow v2.8.1.
  • api-change:rds: [botocore] Updated the input of CreateDBCluster and ModifyDBCluster to support setting CA certificates. Updated the output of DescribeDBCluster to show current CA certificate setting value.
  • api-change:redshift: [botocore] Update for documentation only. Covers port ranges, definition updates for data sharing, and definition updates to cluster-snapshot documentation.
  • api-change:verifiedpermissions: [botocore] Deprecating details in favor of configuration for GetIdentitySource and ListIdentitySources APIs.

v1.34.56

Compare Source

=======

  • api-change:apigateway: [botocore] Documentation updates for Amazon API Gateway
  • api-change:chatbot: [botocore] Minor update to documentation.
  • api-change:organizations: [botocore] This release contains an endpoint addition
  • api-change:sesv2: [botocore] Adds support for providing custom headers within SendEmail and SendBulkEmail for SESv2.

v1.34.55

Compare Source

=======

  • api-change:cloudformation: [botocore] Add DetailedStatus field to DescribeStackEvents and DescribeStacks APIs
  • api-change:fsx: [botocore] Added support for creating FSx for NetApp ONTAP file systems with up to 12 HA pairs, delivering up to 72 GB/s of read throughput and 12 GB/s of write throughput.
  • api-change:organizations: [botocore] Documentation update for AWS Organizations

v1.34.54

Compare Source

=======

  • api-change:accessanalyzer: [botocore] Fixed a typo in description field.
  • api-change:autoscaling: [botocore] With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot Fleet improve the default price protection behavior of attribute-based instance type selection of Spot Instances, to consistently select from a wide range of instance types.
  • api-change:ec2: [botocore] With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot Fleet improve the default price protection behavior of attribute-based instance type selection of Spot Instances, to consistently select from a wide range of instance types.

v1.34.53

Compare Source

=======

  • api-change:docdb-elastic: [botocore] Launched Elastic Clusters Readable Secondaries, Start/Stop, Configurable Shard Instance count, Automatic Backups and Snapshot Copying
  • api-change:eks: [botocore] Added support for new AL2023 AMIs to the supported AMITypes.
  • api-change:lexv2-models: [botocore] This release makes AMAZON.QnAIntent generally available in Amazon Lex. This generative AI feature leverages large language models available through Amazon Bedrock to automate frequently asked questions (FAQ) experience for end-users.
  • api-change:migrationhuborchestrator: [botocore] Adds new CreateTemplate, UpdateTemplate and DeleteTemplate APIs.
  • api-change:quicksight: [botocore] TooltipTarget for Combo chart visuals; ColumnConfiguration limit increase to 2000; Documentation Update
  • api-change:sagemaker: [botocore] Adds support for ModelDataSource in Model Packages to support unzipped models. Adds support to specify SourceUri for models which allows registration of models without mandating a container for hosting. Using SourceUri, customers can decouple the model from hosting information during registration.
  • api-change:securitylake: [botocore] Add capability to update the Data Lake's MetaStoreManager Role in order to perform required data lake updates to use Iceberg table format in their data lake or update the role for any other reason.

v1.34.52

Compare Source

=======

  • api-change:batch: [botocore] This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs.
  • api-change:bedrock-agent-runtime: [botocore] This release adds support to override search strategy performed by the Retrieve and RetrieveAndGenerate APIs for Amazon Bedrock Agents
  • api-change:ce: [botocore] This release introduces the new API 'GetApproximateUsageRecords', which retrieves estimated usage records for hourly granularity or resource-level data at daily granularity.
  • api-change:ec2: [botocore] This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000.
  • api-change:iot: [botocore] This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL.
  • api-change:wafv2: [botocore] AWS WAF now supports configurable time windows for request aggregation with rate-based rules. Customers can now select time windows of 1 minute, 2 minutes or 10 minutes, in addition to the previously supported 5 minutes.

v1.34.51

Compare Source

=======

  • api-change:amplifyuibuilder: [botocore] We have added the ability to tag resources after they are created

v1.34.50

Compare Source

=======

  • api-change:apigateway: [botocore] Documentation updates for Amazon API Gateway.
  • api-change:drs: [botocore] Added volume status to DescribeSourceServer replicated volumes.
  • api-change:kafkaconnect: [botocore] Adds support for tagging, with new TagResource, UntagResource and ListTagsForResource APIs to manage tags and updates to existing APIs to allow tag on create. This release also adds support for the new DeleteWorkerConfiguration API.
  • api-change:rds: [botocore] This release adds support for gp3 data volumes for Multi-AZ DB Clusters.

v1.34.49

Compare Source

=======

  • api-change:appsync: [botocore] Documentation only updates for AppSync
  • api-change:qldb: [botocore] Clarify possible values for KmsKeyArn and EncryptionDescription.
  • api-change:rds: [botocore] Add pattern and length based validations for DBShardGroupIdentifier
  • api-change:rum: [botocore] Doc-only update for new RUM metrics that were added

v1.34.48

Compare Source

=======

  • api-change:internetmonitor: [botocore] This release adds IPv4 prefixes to health events
  • api-change:kinesisvideo: [botocore] Increasing NextToken parameter length restriction for List APIs from 512 to 1024.

v1.34.47

Compare Source

=======

  • api-change:iotevents: [botocore] Increase the maximum length of descriptions for Inputs, Detector Models, and Alarm Models
  • api-change:lookoutequipment: [botocore] This release adds a field exposing model quality to read APIs for models. It also adds a model quality field to the API response when creating an inference scheduler.
  • api-change:medialive: [botocore] MediaLive now supports the ability to restart pipelines in a running channel.
  • api-change:ssm: [botocore] This release adds support for sharing Systems Manager parameters with other AWS accounts.

v1.34.46

Compare Source

=======

  • api-change:dynamodb: [botocore] Publishing quick fix for doc only update.
  • api-change:firehose: [botocore] This release updates a few Firehose related APIs.
  • api-change:lambda: [botocore] Add .NET 8 (dotnet8) Runtime support to AWS Lambda.

v1.34.45

Compare Source

=======

  • api-change:amplify: [botocore] This release contains API changes that enable users to configure their Amplify domains with their own custom SSL/TLS certificate.
  • api-change:chatbot: [botocore] This release adds support for AWS Chatbot. You can now monitor, operate, and troubleshoot your AWS resources with interactive ChatOps using the AWS SDK.
  • api-change:config: [botocore] Documentation updates for the AWS Config CLI
  • api-change:ivs: [botocore] Changed description for latencyMode in Create/UpdateChannel and Channel/ChannelSummary.
  • api-change:keyspaces: [botocore] Documentation updates for Amazon Keyspaces
  • api-change:mediatailor: [botocore] MediaTailor: marking #AdBreak.OffsetMillis as required.

v1.34.44

Compare Source

=======

  • api-change:connectparticipant: [botocore] Doc only update to GetTranscript API reference guide to inform users about presence of events in the chat transcript.
  • api-change:emr: [botocore] adds fine grained control over Unhealthy Node Replacement to Amazon ElasticMapReduce
  • api-change:firehose: [botocore] This release adds support for Data Message Extraction for decompressed CloudWatch logs, and to use a custom file extension or time zone for S3 destinations.
  • api-change:lambda: [botocore] Documentation-only updates for Lambda to clarify a number of existing actions and properties.
  • api-change:rds: [botocore] Doc only update for a valid option in DB parameter group
  • api-change:sns: [botocore] This release marks phone numbers as sensitive inputs.

v1.34.43

Compare Source

=======

  • api-change:artifact: [botocore] This is the initial SDK release for AWS Artifact. AWS Artifact provides on-demand access to compliance and third-party compliance reports. This release includes access to List and Get reports, along with their metadata. This release also includes access to AWS Artifact notifications settings.
  • api-change:codepipeline: [botocore] Add ability to override timeout on action level.
  • api-change:detective: [botocore] Doc only updates for content enhancement
  • api-change:guardduty: [botocore] Marked fields IpAddressV4, PrivateIpAddress, Email as Sensitive.
  • api-change:healthlake: [botocore] This release adds a new response parameter, JobProgressReport, to the DescribeFHIRImportJob and ListFHIRImportJobs API operation. JobProgressReport provides details on the progress of the import job on the server.
  • api-change:opensearch: [botocore] Adds additional supported instance types.
  • api-change:polly: [botocore] Amazon Polly adds 1 new voice - Burcu (tr-TR)
  • api-change:sagemaker: [botocore] This release adds a new API UpdateClusterSoftware for SageMaker HyperPod. This API allows users to patch HyperPod clusters with latest platform softwares.
  • api-change:secretsmanager: [botocore] Doc only update for Secrets Manager
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.34.42

Compare Source

=======

  • api-change:controltower: [botocore] Adds support for new Baseline and EnabledBaseline APIs for automating multi-account governance.
  • api-change:lookoutequipment: [botocore] This feature allows customers to see pointwise model diagnostics results for their models.
  • api-change:qbusiness: [botocore] This release adds the metadata-boosting feature, which allows customers to easily fine-tune the underlying ranking of retrieved RAG passages in order to optimize Q&A answer relevance. It also adds new feedback reasons for the PutFeedback API.

v1.34.41

Compare Source

=======

  • bugfix:ContainerProvider: [botocore] Properly refreshes token from file from EKS in ContainerProvider
  • api-change:lightsail: [botocore] This release adds support to upgrade the major version of a database.
  • api-change:marketplace-catalog: [botocore] AWS Marketplace Catalog API now supports setting intent on requests
  • api-change:resource-explorer-2: [botocore] Resource Explorer now uses newly supported IPv4 'amazonaws.com' endpoints by default.
  • api-change:securitylake: [botocore] Documentation updates for Security Lake
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.34.40

Compare Source

=======

  • api-change:appsync: [botocore] Adds support for new options on GraphqlAPIs, Resolvers and Data Sources for emitting Amazon CloudWatch metrics for enhanced monitoring of AppSync APIs.
  • api-change:cloudwatch: [botocore] Update cloudwatch client to latest version
  • api-change:neptune-graph: [botocore] Adding a new option "parameters" for data plane api ExecuteQuery to support running parameterized query via SDK.
  • api-change:route53domains: [botocore] This release adds bill contact support for RegisterDomain, TransferDomain, UpdateDomainContact and GetDomainDetail API.

v1.34.39

Compare Source

=======

  • api-change:amp: [botocore] Overall documentation updates.
  • api-change:batch: [botocore] This feature allows Batch to support configuration of repository credentials for jobs running on ECS
  • api-change:braket: [botocore] Creating a job will result in DeviceOfflineException when using an offline device, and DeviceRetiredException when using a retired device.
  • api-change:cost-optimization-hub: [botocore] Adding includeMemberAccounts field to the response of ListEnrollmentStatuses API.
  • api-change:ecs: [botocore] Documentation only update for Amazon ECS.
  • api-change:iot: [botocore] This release allows AWS IoT Core users to enable Online Certificate Status Protocol (OCSP) Stapling for TLS X.509 Server Certificates when creating and updating AWS IoT Domain Configurations with Custom Domain.
  • api-change:pricing: [botocore] Add Throttling Exception to all APIs.

v1.34.38

Compare Source

=======

  • api-change:codepipeline: [botocore] Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths.
  • api-change:quicksight: [botocore] General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update
  • api-change:workspaces: [botocore] This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter "WorkspaceName".

v1.34.37

Compare Source

=======

  • api-change:datasync: [botocore] AWS DataSync now supports manifests for specifying files or objects to transfer.
  • api-change:lexv2-models: [botocore] Update lexv2-models client to latest version
  • api-change:redshift: [botocore] LisRecommendations API to fetch Amazon Redshift Advisor recommendations.

v1.34.36

Compare Source

=======

  • api-change:appsync: [botocore] Support for environment variables in AppSync GraphQL APIs
  • api-change:ecs: [botocore] This release is a documentation only update to address customer issues.
  • api-change:es: [botocore] This release adds clear visibility to the customers on the changes that they make on the domain.
  • api-change:logs: [botocore] This release adds a new field, logGroupArn, to the response of the logs:DescribeLogGroups action.
  • api-change:opensearch: [botocore] This release adds clear visibility to the customers on the changes that they make on the domain.
  • api-change:wafv2: [botocore] You can now delete an API key that you've created for use with your CAPTCHA JavaScript integration API.

v1.34.35

Compare Source

=======

  • api-change:glue: [botocore] Introduce Catalog Encryption Role within Glue Data Catalog Settings. Introduce SASL/PLAIN as an authentication method for Glue Kafka connections
  • api-change:workspaces: [botocore] Added definitions of various WorkSpace states

v1.34.34

Compare Source

=======

  • api-change:dynamodb: [botocore] Any number of users can execute up to 50 concurrent restores (any type of restore) in a given account.
  • api-change:sagemaker: [botocore] Amazon SageMaker Canvas adds GenerativeAiSettings support for CanvasAppSettings.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.34.33

Compare Source

=======

  • api-change:cognito-idp: [botocore] Added CreateIdentityProvider and UpdateIdentityProvider details for new SAML IdP features
  • api-change:ivs: [botocore] This release introduces a new resource Playback Restriction Policy which can be used to geo-restrict or domain-restrict channel stream playback when associated with a channel. New APIs to support this resource were introduced in the form of Create/Delete/Get/Update/List.
  • api-change:managedblockchain-query: [botocore] This release adds support for transactions that have not reached finality. It also removes support for the status property from the response of the GetTransaction operation. You can use the confirmationStatus and executionStatus properties to determine the status of the transaction.
  • api-change:mediaconvert: [botocore] This release includes support for broadcast-mixed audio description tracks.
  • api-change:neptune-graph: [botocore] Adding new APIs in SDK for Amazon Neptune Analytics. These APIs include operations to execute, cancel, list queries and get the graph summary.

v1.34.32

Compare Source

=======

  • api-change:cloudformation: [botocore] CloudFormation IaC generator allows you to scan existing resources in your account and select resources to generate a template for a new or existing CloudFormation stack.
  • api-change:elbv2: [botocore] Update elbv2 client to latest version
  • api-change:glue: [botocore] Update page size limits for GetJobRuns and GetTriggers APIs.
  • api-change:ssm: [botocore] This release adds an optional Duration parameter to StateManager Associations. This allows customers to specify how long an apply-only-on-cron association execution should run. Once the specified Duration is out all the ongoing cancellable commands or automations are cancelled.

v1.34.31

Compare Source

=======

  • api-change:datazone: [botocore] Add new skipDeletionCheck to DeleteDomain. Add new skipDeletionCheck to DeleteProject which also automatically deletes dependent objects
  • api-change:route53: [botocore] Update the SDKs for text changes in the APIs.

v1.34.30

Compare Source

=======

  • api-change:autoscaling: [botocore] EC2 Auto Scaling customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type.
  • api-change:comprehend: [botocore] Comprehend PII analysis now supports Spanish input documents.
  • api-change:ec2: [botocore] EC2 Fleet customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type.
  • api-change:mwaa: [botocore] This release adds MAINTENANCE environment status for Amazon MWAA environments.
  • api-change:rds: [botocore] Introduced support for the InsufficientDBInstanceCapacityFault error in the RDS RestoreDBClusterFromSnapshot and RestoreDBClusterToPointInTime API methods. This provides enhanced error handling, ensuring a more robust experience.
  • api-change:snowball: [botocore] Modified description of createaddress to include direction to add path when providing a JSON file.

v1.34.29

Compare Source

=======

  • api-change:connect: [botocore] Update list and string length limits for predefined attributes.
  • api-change:inspector2: [botocore] This release adds ECR container image scanning based on their lastRecordedPullTime.
  • api-change:sagemaker: [botocore] Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs.

v1.34.28

Compare Source

=======

  • api-change:acm-pca: [botocore] AWS Private CA now supports an option to omit the CDP extension from issued certificates, when CRL revocation is enabled.
  • api-change:lightsail: [botocore] This release adds support for IPv6-only instance plans.

v1.34.27

Compare Source

=======

  • api-change:ec2: [botocore] Introduced a new clientToken request parameter on CreateNetworkAcl and CreateRouteTable APIs. The clientToken parameter allows idempotent operations on the APIs.
  • api-change:ecs: [botocore] Documentation updates for Amazon ECS.
  • api-change:outposts: [botocore] DeviceSerialNumber parameter is now optional in StartConnection API
  • api-change:rds: [botocore] This release adds support for Aurora Limitless Database.
  • api-change:storagegateway: [botocore] Add DeprecationDate and SoftwareVersion to response of ListGateways.

v1.34.26

Compare Source

=======

  • api-change:inspector2: [botocore] This release adds support for CIS scans on EC2 instances.

v1.34.25

Compare Source

=======

  • enhancement:documentation: [botocore] Updates the GitHub issue creation link in our README

v1.34.24

Compare Source

=======

  • api-change:appconfigdata: [botocore] Fix FIPS Endpoints in aws-us-gov.
  • api-change:cloud9: [botocore] Doc-only update around removing AL1 from list of available AMIs for Cloud9
  • api-change:cloudfront-keyvaluestore: [botocore] This release improves upon the DescribeKeyValueStore API by returning two additional fields, Status of the KeyValueStore and the FailureReason in case of failures during creation of KeyValueStore.
  • api-change:connectcases: [botocore] This release adds the ability to view audit history on a case and introduces a new parameter, performedBy, for CreateCase and UpdateCase API's.
  • api-change:ec2: [botocore] Documentation updates for Amazon EC2.
  • api-change:ecs: [botocore] This release adds support for Transport Layer Security (TLS) and Configurable Timeout to ECS Service Connect. TLS facilitates privacy and data security for inter-service communications, while Configurable Timeout allows customized per-request timeout and idle timeout for Service Connect services.
  • api-change:finspace: [botocore] Allow customer to set zip default through command line arguments.
  • api-change:organizations: [botocore] Doc only update for quota increase change
  • api-change:rds: [botocore] Introduced support for the InsufficientDBInstanceCapacityFault error in the RDS CreateDBCluster API method. This provides enhanced error handling, ensuring a more robust experience when creating database clusters with insufficient instance capacity.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.34.23

Compare Source

=======

  • api-change:athena: [botocore] Introducing new NotebookS3LocationUri parameter to Athena ImportNotebook API. Payload is no longer required and either Payload or NotebookS3LocationUri needs to be provided (not both) for a successful ImportNotebook API call. If both are provided, an InvalidRequestException will be thrown.
  • api-change:codebuild: [botocore] Release CodeBuild Reserved Capacity feature
  • api-change:dynamodb: [botocore] This release adds support for including ApproximateCreationDateTimePrecision configurations in EnableKinesisStreamingDestination API, adds the same as an optional field in the response of DescribeKinesisStreamingDestination, and adds support for a new UpdateKinesisStreamingDestination API.
  • api-change:qconnect: [botocore] Increased Quick Response name max length to 100

v1.34.22

Compare Source

=======

  • api-change:b2bi: [botocore] Increasing TestMapping inputFileContent file size limit to 5MB and adding file size limit 250KB for TestParsing input file. This release also includes exposing InternalServerException for Tag APIs.
  • api-change:cloudtrail: [botocore] This release adds a new API ListInsightsMetricData to retrieve metric data from CloudTrail Insights.
  • api-change:connect: [botocore] GetMetricDataV2 now supports 3 groupings
  • api-change:drs: [botocore] Removed invalid and unnecessary default values.
  • api-change:firehose: [botocore] Allow support for Snowflake as a Kinesis Data Firehose delivery destination.
  • api-change:sagemaker-featurestore-runtime: [botocore] Increase BatchGetRecord limits from 10 items to 100 items

v1.34.21

Compare Source

=======

  • api-change:dynamodb: [botocore] Updating note for enabling streams for UpdateTable.
  • api-change:keyspaces: [botocore] This release adds support for Multi-Region Replication with provisioned tables, and Keyspaces auto scaling APIs

v1.34.20

Compare Source

=======

  • api-change:iot: [botocore] Revert release of LogTargetTypes
  • api-change:iotfleetwise: [botocore] Updated APIs: SignalNodeType query parameter has been added to ListSignalCatalogNodesRequest and ListVehiclesResponse has been extended with attributes field.
  • api-change:macie2: [botocore] This release adds support for analyzing Amazon S3 objects that are encrypted using dual-layer server-side encryption with AWS KMS keys (DSSE-KMS). It also adds support for reporting DSSE-KMS details in statistics and metadata about encryption settings for S3 buckets and objects.
  • api-change:payment-cryptography: [botocore] Provide an additional option for key exchange using RSA wrap/unwrap in addition to tr-34/tr-31 in ImportKey and ExportKey operations. Added new key usage (type) TR31_M1_ISO_9797_1_MAC_KEY, for use with Generate/VerifyMac dataplane operations with ISO9797 Algorithm 1 MAC calculations.
  • api-change:personalize-runtime: [botocore] Documentation updates for Amazon Personalize
  • api-change:personalize: [botocore] Documentation updates for Amazon Personalize.
  • api-change:rekognition: [botocore] This release adds ContentType and TaxonomyLevel attributes to DetectModerationLabels and GetMediaAnalysisJob API responses.
  • api-change:securityhub: [botocore] Documentation updates for AWS Security Hub

v1.34.19

Compare Source

=======

  • api-change:sagemaker: [botocore] This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.

v1.34.18

Compare Source

=======

  • api-change:connect: [botocore] Supervisor Barge for Chat is now supported through the MonitorContact API.
  • api-change:connectparticipant: [botocore] Introduce new Supervisor participant role
  • api-change:location: [botocore] Location SDK documentation update. Added missing fonts to the MapConfiguration data type. Updated note for the SubMunicipality property in the place data type.
  • api-change:mwaa: [botocore] This Amazon MWAA feature release includes new fields in CreateWebLoginToken response model. The new fields IamIdentity and AirflowIdentity will let you match identifications, as the Airflow identity length is currently hashed to 64 characters.
  • api-change:s3control: [botocore] S3 On Outposts team adds dualstack endpoints support for S3Control and S3Outposts API calls.
  • api-change:supplychain: [botocore] This release includes APIs CreateBillOfMaterialsImportJob and GetBillOfMaterialsImportJob.
  • api-change:transfer: [botocore] AWS Transfer Family now supports static IP addresses for SFTP & AS2 connectors and for async MDNs on AS2 servers.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.34.17

Compare Source

=======

  • api-change:ec2: [botocore] This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks.
  • api-change:ecs: [botocore] This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks.
  • api-change:events: [botocore] Update events client to latest version
  • api-change:iot: [botocore] Add ConflictException to Update APIs of AWS IoT Software Package Catalog
  • api-change:iotfleetwise: [botocore] The following dataTypes have been removed: CUSTOMER_DECODED_INTERFACE in NetworkInterfaceType; CUSTOMER_DECODED_SIGNAL_INFO_IS_NULL in SignalDecoderFailureReason; CUSTOMER_DECODED_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL in NetworkInterfaceFailureReason; CUSTOMER_DECODED_SIGNAL in SignalDecoderType
  • api-change:secretsmanager: [botocore] Doc only update for Secrets Manager
  • api-change:workspaces: [botocore] Added AWS Workspaces RebootWorkspaces API - Extended Reboot documentation update

v1.34.16

Compare Source

=======

  • api-change:connectcampaigns: [botocore] Minor pattern updates for Campaign and Dial Request API fields.
  • api-change:location: [botocore] This release adds API support for custom layers for the maps service APIs: CreateMap, UpdateMap, DescribeMap.
  • api-change:logs: [botocore] Add support for account level subscription filter policies to PutAccountPolicy, DescribeAccountPolicies, and DeleteAccountPolicy APIs. Additionally, PutAccountPolicy has been modified with new optional "selectionCriteria" parameter for resource selection.
  • api-change:qconnect: [botocore] QueryAssistant and GetRecommendations will be discontinued starting June 1, 2024. To receive generative responses after March 1, 2024 you will need to create a new Assistant in the Connect console and integrate the Amazon Q in Connect JavaScript library (amazon-q-connectjs) into your applications.
  • api-change:redshift-serverless: [botocore] Updates to ConfigParameter for RSS workgroup, removal of use_fips_ssl
  • api-change:route53: [botocore] Route53 now supports geoproximity routing in AWS regions
  • api-change:wisdom: [botocore] QueryAssistant and GetRecommendations will be discontinued starting June 1, 2024. To receive generative responses after March 1, 2024 you will need to create a new Assistant in the Connect console and integrate the Amazon Q in Connect JavaScript library (amazon-q-connectjs) into your applications.

v1.34.15

Compare Source

=======

  • api-change:codebuild: [botocore] Aws CodeBuild now supports new compute type BUILD_GENERAL1_XLARGE
  • api-change:ec2: [botocore] Amazon EC2 R7iz bare metal instances are powered by custom 4th generation Intel Xeon Scalable processors.
  • api-change:route53resolver: [botocore] This release adds support for query type configuration on firewall rules that enables customers for granular action (ALLOW, ALERT, BLOCK) by DNS query type.

v1.34.14

Compare Source

=======

  • api-change:connect: [botocore] Minor trait updates for User APIs
  • api-change:kms: [botocore] Documentation updates for AWS Key Management Service (KMS).
  • api-change:redshift-serverless: [botocore] use_fips_ssl and require_ssl parameter support for Workgroup, UpdateWorkgroup, and CreateWorkgroup

v1.34.13

Compare Source

=======

  • api-change:config: [botocore] Updated ResourceType enum with new resource types onboarded by AWS Config in November and December 2023.
  • api-change:docdb: [botocore] Adding PerformanceInsightsEnabled and PerformanceInsightsKMSKeyId fields to DescribeDBInstances Response.
  • api-change:ecs: [botocore] This release adds support for managed instance draining which facilitates graceful termination of Amazon ECS instances.
  • api-change:es: [botocore] This release adds support for new or existing Amazon OpenSearch domains to enable TLS 1.3 or TLS 1.2 with perfect forward secrecy cipher suites for domain endpoints.
  • api-change:lightsail: [botocore] This release adds support to set up an HTTPS endpoint on an instance.
  • api-change:opensearch: [botocore] This release adds support for new or existing Amazon OpenSearch domains to enable TLS 1.3 or TLS 1.2 with perfect forward secrecy cipher suites for domain endpoints.
  • api-change:sagemaker: [botocore] Adding support for provisioned throughput mode for SageMaker Feature Groups
  • api-change:servicecatalog: [botocore] Added Idempotency token support to Service Catalog AssociateServiceActionWithProvisioningArtifact, DisassociateServiceActionFromProvisioningArtifact, DeleteServiceAction API
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.34.12

Compare Source

=======

  • api-change:connect: [botocore] Amazon Connect, Contact Lens Evaluation API increase evaluation notes max length to 3072.
  • api-change:mediaconvert: [botocore] This release includes video engine updates including HEVC improvements, support for ingesting VP9 encoded video in MP4 containers, and support for user-specified 3D LUTs.

v1.34.11

Compare Source

=======

  • api-change:apprunner: [botocore] AWS App Runner adds Python 3.11 and Node.js 18 runtimes.
  • api-change:location: [botocore] This release introduces a new parameter to bypasses an API key's expiry conditions and delete the key.
  • api-change:quicksight: [botocore] Add LinkEntityArn support for different partitions; Add UnsupportedUserEditionException in UpdateDashboardLinks API; Add support for New Reader Experience Topics

v1.34.10

Compare Source

=======

  • api-change:codestar-connections: [botocore] New integration with the GitLab self-managed provider type.
  • api-change:kinesis-video-archived-media: [botocore] NoDataRetentionException thrown when GetImages requested for a Stream that does not retain data (that is, has a DataRetentionInHours of 0).
  • api-change:sagemaker: [botocore] Amazon SageMaker Studio now supports Docker access from within app container

v1.34.9

Compare Source

======

  • api-change:emr: [botocore] Update emr client to latest version

v1.34.8

Compare Source

======

  • api-change:iam: [botocore] Documentation updates for AWS Identity and Access Management (IAM).
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.34.7

Compare Source

=======

  • api-change:cloudwatch: [botocore] This release adds support for CloudWatch Anomaly Detection on cross-account metrics. SingleMetricAnomalyDetector and MetricDataQuery inputs to Anomaly Detection APIs now take an optional AccountId field.
  • api-change:datazone: [botocore] This release supports the feature of AI recommendations for descriptions to enrich the business data catalog in Amazon DataZone.
  • api-change:deadline: [botocore] AWS Deadline Cloud is a new fully managed service that helps customers set up, deploy, and scale rendering projects in minutes, so they can improve the efficiency of their rendering pipelines and take on more projects.
  • api-change:emr: [botocore] This release fixes a broken link in the documentation.
  • api-change:lightsail: [botocore] This release adds support to upgrade the TLS version of the distribution.

v1.34.6

Compare Source

=======

  • api-change:firehose: [botocore] Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy.
  • api-change:kendra: [botocore] Documentation update, March 2024. Corrects some docs for Amazon Kendra.
  • api-change:pricing: [botocore] Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs
  • api-change:rolesanywhere: [botocore] This release relaxes constraints on the durationSeconds request parameter for the *Profile APIs that support it. This parameter can now take on values that go up to 43200.
  • api-change:securityhub: [botocore] Added new resource detail object to ASFF, including resource for LastKnownExploitAt

v1.34.5

Compare Source

=======

  • api-change:batch: [botocore] This release adds JobStateTimeLimitActions setting to the Job Queue API. It allows you to configure an action Batch can take for a blocking job in front of the queue after the defined period of time. The new parameter applies for ECS, EKS, and FARGATE Job Queues.
  • api-change:bedrock-agent-runtime: [botocore] Documentation update for Bedrock Runtime Agent
  • api-change:cloudtrail: [botocore] Added exceptions to CreateTrail, DescribeTrails, and ListImportFailures APIs.
  • api-change:codebuild: [botocore] This release adds support for a new webhook event: PULL_REQUEST_CLOSED.
  • api-change:cognito-idp: [botocore] Add ConcurrentModificationException to SetUserPoolMfaConfig
  • api-change:guardduty: [botocore] Add RDS Provisioned and Serverless Usage types
  • api-change:transfer: [botocore] Added DES_EDE3_CBC to the list of supported encryption algorithms for messages sent with an AS2 connector.

v1.34.4

Compare Source

=======

  • api-change:appsync: [botocore] Documentation only updates for AppSync
  • api-change:qldb: [botocore] Clarify possible values for KmsKeyArn and EncryptionDescription.
  • api-change:rds: [botocore] Add pattern and length based validations for DBShardGroupIdentifier
  • api-change:rum: [botocore] Doc-only update for new RUM metrics that were added

v1.34.3

Compare Source

=======

  • api-change:amp: [botocore] Overall documentation updates.
  • api-change:batch: [botocore] This feature allows Batch to support configuration of repository credentials for jobs running on ECS
  • api-change:braket: [botocore] Creating a job will result in DeviceOfflineException when using an offline device, and DeviceRetiredException when using a retired device.
  • api-change:cost-optimization-hub: [botocore] Adding includeMemberAccounts field to the response of ListEnrollmentStatuses API.
  • api-change:ecs: [botocore] Documentation only update for Amazon ECS.
  • api-change:iot: [botocore] This release allows AWS IoT Core users to enable Online Certificate Status Protocol (OCSP) Stapling for TLS X.509 Server Certificates when creating and updating AWS IoT Domain Configurations with Custom Domain.
  • api-change:pricing: [botocore] Add Throttling Exception to all APIs.

v1.34.2

Compare Source

=======

  • api-change:connect: [botocore] Update list and string length limits for predefined attributes.
  • api-change:inspector2: [botocore] This release adds ECR container image scanning based on their lastRecordedPullTime.
  • api-change:sagemaker: [botocore] Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs.

v1.34.1

Compare Source

=======

  • api-change:sagemaker: [botocore] This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts.

v1.34.0

Compare Source

======

  • feature:Python: End of support for Python 3.7
  • feature:Python: [botocore] End of support for Python 3.7
  • api-change:drs: [botocore] Adding AgentVersion to SourceServer and RecoveryInstance structures

v1.33.13

Compare Source

=======

  • api-change:imagebuilder: [botocore] This release adds the Image Workflows feature to give more flexibility and control over the image building and testing process.
  • api-change:location: [botocore] This release 1) adds sub-municipality field in Places API for searching and getting places information, and 2) allows optimizing route calculation based on expected arrival time.
  • api-change:logs: [botocore] This release introduces the StartLiveTail API to tail ingested logs in near real time.

v1.33.12

Compare Source

=======

  • api-change:neptune: [botocore] This release adds a new parameter configuration setting to the Neptune cluster related APIs that can be leveraged to switch between the underlying supported storage modes.
  • api-change:pinpoint: [botocore] This release includes Amazon Pinpoint API documentation updates pertaining to campaign message sending rate limits.
  • api-change:securityhub: [botocore] Added new resource detail objects to ASFF, including resources for AwsDynamoDbTable, AwsEc2ClientVpnEndpoint, AwsMskCluster, AwsS3AccessPoint, AwsS3Bucket
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.33.11

Compare Source

=======

  • api-change:cloudwatch: [botocore] Update cloudwatch client to latest version
  • api-change:ec2: [botocore] M2 Mac instances are built on Apple M2 Mac mini computers. I4i instances are powered by 3rd generation Intel Xeon Scalable processors. C7i compute optimized, M7i general purpose and R7i memory optimized instances are powered by custom 4th Generation Intel Xeon Scalable processors.
  • api-change:finspace: [botocore] Releasing Scaling Group, Dataview, and Volume APIs

v1.33.10

Compare Source

=======

  • api-change:codedeploy: [botocore] This release adds support for two new CodeDeploy features: 1) zonal deployments for Amazon EC2 in-place deployments, 2) deployments triggered by Auto Scaling group termination lifecycle hook events.

v1.33.9

Compare Source

======

  • api-change:backup: [botocore] AWS Backup - Features: Add VaultType to the output of DescribeRecoveryPoint, ListRecoveryPointByBackupVault API and add ResourceType to the input of ListRestoreJobs API
  • api-change:comprehend: [botocore] Documentation updates for Trust and Safety features.
  • api-change:connect: [botocore] Releasing Tagging Support for Instance Management APIS
  • api-change:ec2: [botocore] Releasing the new cpuManufacturer attribute within the DescribeInstanceTypes API response which notifies our customers with information on who the Manufacturer is for the processor attached to the instance, for example: Intel.
  • api-change:payment-cryptography: [botocore] AWS Payment Cryptography IPEK feature release

v1.33.8

Compare Source

======

  • api-change:athena: [botocore] Adding IdentityCenter enabled request for interactive query
  • api-change:cleanroomsml: [botocore] Updated service title from cleanroomsml to CleanRoomsML.
  • api-change:cloudformation: [botocore] Documentation update, December 2023
  • api-change:ec2: [botocore] Adds A10G, T4G, and H100 as accelerator name options and Habana as an accelerator manufacturer option for attribute based selection

v1.33.7

Compare Source

======

  • api-change:billingconductor: [botocore] This release adds the ability to specify a linked account of the billing group for the custom line item resource.
  • api-change:braket: [botocore] This release enhances service support to create quantum tasks and hybrid jobs associated with Braket Direct Reservations.
  • api-change:cloud9: [botocore] This release adds the requirement to include the imageId parameter in the CreateEnvironmentEC2 API call.
  • api-change:cloudformation: [botocore] Including UPDATE_* states as a success status for CreateStack waiter.
  • api-change:finspace: [botocore] Release General Purpose type clusters
  • api-change:medialive: [botocore] Adds support for custom color correction on channels using 3D LUT files.
  • api-change:servicecatalog-appregistry: [botocore] Documentation-only updates for Dawn
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.33.6

Compare Source

======

  • api-change:qconnect: [botocore] This release adds the PutFeedback API and allows providing feedback against the specified assistant for the specified target.
  • api-change:rbin: [botocore] Added resource identifier in the output and updated error handling.
  • api-change:verifiedpermissions: [botocore] Adds description field to PolicyStore API's and namespaces field to GetSchema.

v1.33.5

Compare Source

======

  • api-change:arc-zonal-shift: [botocore] This release adds a new capability, zonal autoshift. You can configure zonal autoshift so that AWS shifts traffic for a resource away from an Availability Zone, on your behalf, when AWS determines that there is an issue that could potentially affect customers in the Availability Zone.
  • api-change:glue: [botocore] Adds observation and analyzer support to the GetDataQualityResult and BatchGetDataQualityResult APIs.
  • api-change:sagemaker: [botocore] This release adds support for 1/ Code Editor, based on Code-OSS, Visual Studio Code Open Source, a new fully managed IDE option in SageMaker Studio 2/ JupyterLab, a new fully managed JupyterLab IDE experience in SageMaker Studio

v1.33.4

Compare Source

======

  • bugfix:s3transfer: Raise floor for s3transfer to 0.8.2 to avoid any conflicts with the awscrt
  • api-change:marketplace-agreement: [botocore] The AWS Marketplace Agreement Service provides an API interface that helps AWS Marketplace sellers manage their agreements, including listing, filtering, and viewing details about their agreements.
  • api-change:marketplace-catalog: [botocore] This release enhances the ListEntities API to support new entity type-specific strongly typed filters in the request and entity type-specific strongly typed summaries in the response.
  • api-change:marketplace-deployment: [botocore] AWS Marketplace Deployment is a new service that provides essential features that facilitate the deployment of software, data, and services procured through AWS Marketplace.
  • api-change:redshift-serverless: [botocore] This release adds the following support for Amazon Redshift Serverless: 1) cross-account cross-VPCs, 2) copying snapshots across Regions, 3) scheduling snapshot creation, and 4) restoring tables from a recovery point.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.33.3

Compare Source

======

  • api-change:application-autoscaling: [botocore] Amazon SageMaker customers can now use Application Auto Scaling to automatically scale the number of Inference Component copies across an endpoint to meet the varying demand of their workloads.
  • api-change:cleanrooms: [botocore] AWS Clean Rooms now provides differential privacy to protect against user-identification attempts and machine learning modeling to allow two parties to identify similar users in their data.
  • api-change:cleanroomsml: [botocore] Public Preview SDK release of AWS Clean Rooms ML APIs
  • api-change:opensearch: [botocore] Launching Amazon OpenSearch Service support for new zero-ETL integration with Amazon S3. Customers can now manage their direct query data sources to Amazon S3 programatically
  • api-change:opensearchserverless: [botocore] Amazon OpenSearch Serverless collections support an additional attribute called standby-replicas. This allows to specify whether a collection should have redundancy enabled.
  • api-change:sagemaker-runtime: [botocore] Update sagemaker-runtime client to latest version
  • api-change:sagemaker: [botocore] This release adds following support 1/ Improved SDK tooling for model deployment. 2/ New Inference Component based features to lower inference costs and latency 3/ SageMaker HyperPod management. 4/ Additional parameters for FM Fine Tuning in Autopilot
  • api-change:sts: [botocore] Documentation updates for AWS Security Token Service.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.33.2

Compare Source

======

  • api-change:accessanalyzer: [botocore] This release adds support for external access findings for S3 directory buckets to help you easily identify cross-account access. Updated service API, documentation, and paginators.
  • api-change:bedrock-agent-runtime: [botocore] This release introduces Agents for Amazon Bedrock Runtime
  • api-change:bedrock-agent: [botocore] This release introduces Agents for Amazon Bedrock
  • api-change:bedrock-runtime: [botocore] This release adds support for minor versions/aliases for invoke model identifier.
  • api-change:bedrock: [botocore] This release adds support for customization types, model life cycle status and minor versions/aliases for model identifiers.
  • api-change:connect: [botocore] Added support for following capabilities: Amazon Connect's in-app, web, and video calling. Two-way SMS integrations. Contact Lens real-time chat analytics feature. Amazon Connect Analytics Datalake capability. Capability to configure real time chat rules.
  • api-change:customer-profiles: [botocore] This release introduces DetectProfileObjectType API to auto generate object type mapping.
  • api-change:qbusiness: [botocore] Amazon Q - a generative AI powered application that your employees can use to ask questions and get answers from knowledge spread across disparate content repositories, summarize reports, write articles, take actions, and much more - all within their company's connected content repositories.
  • api-change:qconnect: [botocore] Amazon Q in Connect, an LLM-enhanced evolution of Amazon Connect Wisdom. This release adds generative AI support to Amazon Q Connect QueryAssistant and GetRecommendations APIs.
  • api-change:s3: [botocore] Adds support for S3 Express One Zone.
  • api-change:s3control: [botocore] Adds support for S3 Express One Zone, and InvocationSchemaVersion 2.0 for S3 Batch Operations.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.33.1

Compare Source

=======

  • api-change:imagebuilder: [botocore] This release adds the Image Workflows feature to give more flexibility and control over the image building and testing process.
  • api-change:location: [botocore] This release 1) adds sub-municipality field in Places API for searching and getting places information, and 2) allows optimizing route calculation based on expected arrival time.
  • api-change:logs: [botocore] This release introduces the StartLiveTail API to tail ingested logs in near real time.

v1.33.0

Compare Source

======

  • enhancement:Versioning: Bump boto3 from 1.29.7 to 1.33.0 to match Botocore versioning scheme.
  • feature:s3: Boto3 will now opt into using the awscrt on select EC2 instance types for s3 transfers.
  • feature:Versioning: [botocore] With the release of Botocore 1.33.0, Boto3 and Botocore will share the same version number.
  • api-change:appsync: [botocore] This update enables introspection of Aurora cluster databases using the RDS Data API
  • api-change:b2bi: [botocore] This is the initial SDK release for AWS B2B Data Interchange.
  • api-change:backup: [botocore] AWS Backup now supports restore testing, a new feature that allows customers to automate restore testing and validating their backups. Additionally, this release adds support for EBS Snapshots Archive tier.
  • api-change:controltower: [botocore] This release adds the following support: 1. The EnableControl API can configure controls that are configurable. 2. The GetEnabledControl API shows the configured parameters on an enabled control. 3. The new UpdateEnabledControl API can change parameters on an enabled control.
  • api-change:efs: [botocore] Update efs client to latest version
  • api-change:fis: [botocore] AWS FIS adds support for multi-account experiments & empty target resolution. This release also introduces the CreateTargetAccountConfiguration API that allows experiments across multiple AWS accounts, and the ListExperimentResolvedTargets API to list target details.
  • api-change:glue: [botocore] add observations support to DQ CodeGen config model + update document for connectiontypes supported by ConnectorData entities
  • api-change:rds: [botocore] Updates Amazon RDS documentation for support for RDS for Db2.
  • api-change:securityhub: [botocore] Adds and updates APIs to support central configuration. This feature allows the Security Hub delegated administrator to configure Security Hub for their entire AWS Org across multiple regions from a home Region. With this release, findings also include account name and application metadata.
  • api-change:transcribe: [botocore] This release adds support for AWS HealthScribe APIs within Amazon Transcribe
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.29.7

Compare Source

======

  • enhancement:AWSCRT: [botocore] Update awscrt version to 0.19.17
  • api-change:accessanalyzer: [botocore] IAM Access Analyzer now continuously monitors IAM roles and users in your AWS account or organization to generate findings for unused access. Additionally, IAM Access Analyzer now provides custom policy checks to validate that IAM policies adhere to your security standards ahead of deployments.
  • api-change:amp: [botocore] This release adds support for the Amazon Managed Service for Prometheus collector, a fully managed, agentless Prometheus metrics scraping capability.
  • api-change:bcm-data-exports: [botocore] Users can create, read, update, delete Exports of billing and cost management data. Users can get details of Export Executions and details of Tables for exporting. Tagging support is provided for Exports
  • api-change:cloudtrail: [botocore] CloudTrail Lake now supports federating event data stores. giving users the ability to run queries against their event data using Amazon Athena.
  • api-change:codestar-connections: [botocore] This release adds support for the CloudFormation Git sync feature. Git sync enables updating a CloudFormation stack from a template stored in a Git repository.
  • api-change:compute-optimizer: [botocore] This release enables AWS Compute Optimizer to analyze and generate recommendations with customization and discounts preferences.
  • api-change:config: [botocore] Support Periodic Recording for Configuration Recorder
  • api-change:controltower: [botocore] Add APIs to create and manage a landing zone.
  • api-change:cost-optimization-hub: [botocore] This release launches Cost Optimization Hub, a new AWS Billing and Cost Management feature that helps you consolidate and prioritize cost optimization recommendations across your AWS Organizations member accounts and AWS Regions, so that you can get the most out of your AWS spend.
  • api-change:detective: [botocore] Added new APIs in Detective to support resource investigations
  • api-change:ecs: [botocore] Adds a new 'type' property to the Setting structure. Adds a new AccountSetting - guardDutyActivate for ECS.
  • api-change:efs: [botocore] Update efs client to latest version
  • api-change:eks-auth: [botocore] This release adds support for EKS Pod Identity feature. EKS Pod Identity makes it easy for customers to obtain IAM permissions for their applications running in the EKS clusters.
  • api-change:eks: [botocore] This release adds support for EKS Pod Identity feature. EKS Pod Identity makes it easy for customers to obtain IAM permissions for the applications running in their EKS clusters.
  • api-change:elbv2: [botocore] Update elbv2 client to latest version
  • api-change:freetier: [botocore] This is the initial SDK release for the AWS Free Tier GetFreeTierUsage API
  • api-change:fsx: [botocore] Added support for FSx for ONTAP scale-out file systems and FlexGroup volumes. Added the HAPairs field and ThroughputCapacityPerHAPair for filesystem. Added AggregateConfiguration (containing Aggregates and ConstituentsPerAggregate) and SizeInBytes for volume.
  • api-change:guardduty: [botocore] Add support for Runtime Monitoring for ECS and ECS-EC2.
  • api-change:iotfleetwise: [botocore] AWS IoT FleetWise introduces new APIs for vision system data, such as data collected from cameras, radars, and lidars. You can now model and decode complex data types.
  • api-change:lakeformation: [botocore] This release adds four new APIs "DescribeLakeFormationIdentityCenterConfiguration", "CreateLakeFormationIdentityCenterConfiguration", "DescribeLakeFormationIdentityCenterConfiguration", and "DeleteLakeFormationIdentityCenterConfiguration", and also updates the corresponding documentation.
  • api-change:lexv2-models: [botocore] Update lexv2-models client to latest version
  • api-change:lexv2-runtime: [botocore] Update lexv2-runtime client to latest version
  • api-change:logs: [botocore] Added APIs to Create, Update, Get, List and Delete LogAnomalyDetectors and List and Update Anomalies in Detector. Added LogGroupClass attribute for LogGroups to classify loggroup as Standard loggroup with all capabilities or InfrequentAccess loggroup with limited capabilities.
  • api-change:managedblockchain: [botocore] Add optional NetworkType property to Accessor APIs
  • api-change:personalize-events: [botocore] This release enables PutActions and PutActionInteractions
  • api-change:personalize-runtime: [botocore] Enables metadata in recommendations and next best action recommendations
  • api-change:personalize: [botocore] Enables metadata in recommendations, recommendations with themes, and next best action recommendations
  • api-change:quicksight: [botocore] This release launches new APIs for trusted identity propagation setup and supports creating datasources using trusted identity propagation as authentication method for QuickSight accounts configured with IAM Identity Center.
  • api-change:redshift: [botocore] This release adds support for multi-data warehouse writes through data sharing.
  • api-change:repostspace: [botocore] Initial release of AWS re:Post Private
  • api-change:s3: [botocore] Adding new params - Key and Prefix, to S3 API operations for supporting S3 Access Grants. Note - These updates will not change any of the existing S3 API functionality.
  • api-change:s3control: [botocore] Introduce Amazon S3 Access Grants, a new S3 access control feature that maps identities in directories such as Active Directory, or AWS Identity and Access Management (IAM) Principals, to datasets in S3.
  • api-change:secretsmanager: [botocore] AWS Secrets Manager has released the BatchGetSecretValue API, which allows customers to fetch up to 20 Secrets with a single request using a list of secret names or filters.
  • api-change:securityhub: [botocore] Adds and updates APIs to support customizable security controls. This feature allows Security Hub customers to provide custom parameters for security controls. With this release, findings for controls that support custom parameters will include the parameters used to generate the findings.
  • api-change:stepfunctions: [botocore] Update stepfunctions client to latest version
  • api-change:transcribe: [botocore] This release adds support for transcriptions from audio sources in 64 new languages and introduces generative call summarization in Transcribe Call Analytics (Post call)
  • api-change:workspaces-thin-client: [botocore] Initial release of Amazon WorkSpaces Thin Client
  • api-change:workspaces: [botocore] The release introduces Multi-Region Resilience one-way data replication that allows you to replicate data from your primary WorkSpace to a standby WorkSpace in another AWS Region. DescribeWorkspaces now returns the status of data replication.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.29.6

Compare Source

======

  • bugfix:sqs: [botocore] Rolled back recent change to wire format protocol
  • api-change:kinesis: [botocore] This release adds support for resource based policies on streams and consumers.
  • api-change:s3control: [botocore] Amazon S3 Batch Operations now manages buckets or prefixes in a single step.
  • api-change:sagemaker: [botocore] This feature adds the end user license agreement status as a model access configuration parameter.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.29.5

Compare Source

======

  • api-change:cloudfront-keyvaluestore: [botocore] This release adds support for CloudFront KeyValueStore, a globally managed key value datastore associated with CloudFront Functions.
  • api-change:cloudfront: [botocore] This release adds support for CloudFront KeyValueStore, a globally managed key value datastore associated with CloudFront Functions.
  • api-change:ec2: [botocore] Documentation updates for Amazon EC2.
  • api-change:inspector-scan: [botocore] This release adds support for the new Amazon Inspector Scan API. The new Inspector Scan API can synchronously scan SBOMs adhering to the CycloneDX v1.5 format.
  • api-change:iotsitewise: [botocore] Adds 1/ user-defined unique identifier for asset and model metadata, 2/ asset model components, and 3/ query API for asset metadata and telemetry data. Supports 4/ multi variate anomaly detection using Amazon Lookout for Equipment, 5/ warm storage tier, and 6/ buffered ingestion of time series data.
  • api-change:iottwinmaker: [botocore] This release adds following support. 1. New APIs for metadata bulk operations. 2. Modify the component type API to support composite component types - nesting component types within one another. 3. New list APIs for components and properties. 4. Support the larger scope digital twin modeling.
  • api-change:s3: [botocore] Add support for automatic date based partitioning in S3 Server Access Logs.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.29.4

Compare Source

======

  • enhancement:IMDS: [botocore] Adds a config option to opt out of IMDSv1 fallback
  • api-change:codestar-connections: [botocore] This release updates a few CodeStar Connections related APIs.
  • api-change:docdb: [botocore] Amazon DocumentDB updates for new cluster storage configuration: Amazon DocumentDB I/O-Optimized.
  • api-change:ec2: [botocore] This release adds support for Security group referencing over Transit gateways, enabling you to simplify Security group management and control of instance-to-instance traffic across VPCs that are connected by Transit gateway.

v1.29.3

Compare Source

======

  • api-change:macie: [botocore] The macie client has been removed following the deprecation of the service.
  • api-change:appmesh: [botocore] Change the default value of these fields from 0 to null: MaxConnections, MaxPendingRequests, MaxRequests, HealthCheckThreshold, PortNumber, and HealthCheckPolicy -> port. Users are not expected to perceive the change, except that badRequestException is thrown when required fields missing configured.
  • api-change:athena: [botocore] Adding SerivicePreProcessing time metric
  • api-change:cloud9: [botocore] A minor doc only update related to changing the date of an API change.
  • api-change:cloudformation: [botocore] This release adds a new flag ImportExistingResources to CreateChangeSet. Specify this parameter on a CREATE- or UPDATE-type change set to import existing resources with custom names instead of recreating them.
  • api-change:codepipeline: [botocore] CodePipeline now supports overriding source revisions to achieve manual re-deploy of a past revision
  • api-change:codestar-connections: [botocore] This release adds support for the CloudFormation Git sync feature. Git sync enables updating a CloudFormation stack from a template stored in a Git repository.
  • api-change:connect: [botocore] This release adds WISDOM_QUICK_RESPONSES as new IntegrationType of Connect IntegrationAssociation resource and bug fixes.
  • api-change:dlm: [botocore] Added support for SAP HANA in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies with pre and post scripts.
  • api-change:ec2: [botocore] This release adds new features for Amazon VPC IP Address Manager (IPAM) Allowing a choice between Free and Advanced Tiers, viewing public IP address insights across regions and in Amazon Cloudwatch, use IPAM to plan your subnet IPs within a VPC and bring your own autonomous system number to IPAM.
  • api-change:ecr: [botocore] Documentation and operational updates for Amazon ECR, adding support for pull through cache rules for upstream registries that require authentication.
  • api-change:emr: [botocore] Update emr client to latest version
  • api-change:events: [botocore] Update events client to latest version
  • api-change:internetmonitor: [botocore] Adds new querying capabilities for running data queries on a monitor
  • api-change:ivs: [botocore] type & defaulting refinement to various range properties
  • api-change:ivschat: [botocore] type & defaulting refinement to various range properties
  • api-change:kinesisvideo: [botocore] Docs only build to bring up-to-date with public docs.
  • api-change:location: [botocore] Remove default value and allow nullable for request parameters having minimum value larger than zero.
  • api-change:medialive: [botocore] MediaLive has now added support for per-output static image overlay.
  • api-change:mgn: [botocore] Removed invalid and unnecessary default values.
  • api-change:osis: [botocore] Add support for enabling a persistent buffer when creating or updating an OpenSearch Ingestion pipeline. Add tags to Pipeline and PipelineSummary response models.
  • api-change:pipes: [botocore] TargetParameters now properly supports BatchJobParameters.ArrayProperties.Size and BatchJobParameters.RetryStrategy.Attempts being optional, and EcsTaskParameters.Overrides.EphemeralStorage.SizeInGiB now properly required when setting EphemeralStorage
  • api-change:rds: [botocore] This release adds support for option groups and replica enhancements to Amazon RDS Custom.
  • api-change:redshift-serverless: [botocore] Updated SDK for Amazon Redshift Serverless, which provides the ability to configure a connection with IAM Identity Center to manage user and group access to databases.
  • api-change:redshift: [botocore] Updated SDK for Amazon Redshift, which you can use to configure a connection with IAM Identity Center to manage access to databases. With these, you can create a connection through a managed application. You can also change a managed application, delete it, or get information about an existing one.
  • api-change:s3: [botocore] Removes all default 0 values for numbers and false values for booleans
  • api-change:sso-admin: [botocore] Improves support for configuring RefreshToken and TokenExchange grants on applications.
  • api-change:sso-oidc: [botocore] Adding support for sso-oauth:CreateTokenWithIAM.
  • api-change:sts: [botocore] API updates for the AWS Security Token Service
  • api-change:trustedadvisor: [botocore] AWS Trusted Advisor introduces new APIs to enable you to programmatically access Trusted Advisor best practice checks, recommendations, and prioritized recommendations. Trusted Advisor APIs enable you to integrate Trusted Advisor with your operational tools to automate your workloads.
  • api-change:verifiedpermissions: [botocore] Adding BatchIsAuthorized API which supports multiple authorization requests against a PolicyStore
  • api-change:wisdom: [botocore] This release adds QuickResponse as a new Wisdom resource and Wisdom APIs for import, create, read, search, update and delete QuickResponse resources.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.29.2

Compare Source

======

  • api-change:codecatalyst: [botocore] This release includes updates to the Dev Environment APIs to include an optional vpcConnectionName parameter that supports using Dev Environments with Amazon VPC.
  • api-change:dlm: [botocore] This release adds support for Amazon Data Lifecycle Manager default policies for EBS snapshots and EBS-backed AMIs.
  • api-change:ec2: [botocore] Enable use of tenant-specific PublicSigningKeyUrl from device trust providers and onboard jumpcloud as a new device trust provider.
  • api-change:fsx: [botocore] Enables customers to update their PerUnitStorageThroughput on their Lustre file systems.
  • api-change:glue: [botocore] Introduces new column statistics APIs to support statistics generation for tables within the Glue Data Catalog.
  • api-change:imagebuilder: [botocore] This release adds the Image Lifecycle Management feature to automate the process of deprecating, disabling and deleting outdated images and their associated resources.
  • api-change:iot: [botocore] GA release the ability to index and search devices based on their GeoLocation data. With GeoQueries you can narrow your search to retrieve devices located in the desired geographic boundary.
  • api-change:ivs-realtime: [botocore] This release introduces server side composition and recording for stages.
  • api-change:kafka: [botocore] Added a new API response field which determines if there is an action required from the customer regarding their cluster.
  • api-change:lambda: [botocore] Adds support for logging configuration in Lambda Functions. Customers will have more control how their function logs are captured and to which cloud watch log group they are delivered also.
  • api-change:macie2: [botocore] This release adds support for configuring Macie to assume an IAM role when retrieving sample occurrences of sensitive data reported by findings.
  • api-change:mediapackage: [botocore] DRM_TOP_LEVEL_COMPACT allows placing content protection elements at the MPD level and referenced at the AdaptationSet level
  • api-change:pinpoint-sms-voice-v2: [botocore] Amazon Pinpoint now offers additional operations as part of version 2 of the SMS and voice APIs. This release includes 26 new APIs to create and manage phone number registrations, add verified destination numbers, and request sender IDs.
  • api-change:polly: [botocore] Add new engine - long-form - dedicated for longer content, such as news articles, training materials, or marketing videos.
  • api-change:quicksight: [botocore] Custom permission support for QuickSight roles; Three new datasources STARBURST, TRINO, BIGQUERY; Lenient mode changes the default behavior to allow for exporting and importing with certain UI allowed errors, Support for permissions and tags export and import.
  • api-change:sagemaker: [botocore] Amazon SageMaker Studio now supports Trainium instance types - trn1.2xlarge, trn1.32xlarge, trn1n.32xlarge.
  • api-change:ssm-incidents: [botocore] Introduces new APIs ListIncidentFindings and BatchGetIncidentFindings to use findings related to an incident.
  • api-change:ssm: [botocore] This release introduces the ability to filter automation execution steps which have parent steps. In addition, runbook variable information is returned by GetAutomationExecution and parent step information is returned by the DescribeAutomationStepExecutions API.
  • api-change:sso-admin: [botocore] Instances bound to a single AWS account, API operations for managing instances and applications, and assignments to applications are now supported. Trusted identity propagation is also supported, with new API operations for managing trusted token issuers and application grants and scopes.
  • api-change:transfer: [botocore] Introduced S3StorageOptions for servers to enable directory listing optimizations and added Type fields to logical directory mappings.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.29.1

Compare Source

======

  • enhancement:Package Size: [botocore] The botocore .whl file distributed on PyPI now provides compressed service models to improve total size on disk.
  • api-change:autoscaling: [botocore] This release introduces Instance Maintenance Policy, a new EC2 Auto Scaling capability that allows customers to define whether instances are launched before or after existing instances are terminated during instance replacement operations.
  • api-change:cloudtrail: [botocore] The Lake Repricing feature lets customers configure a BillingMode for an event data store. The BillingMode determines the cost for ingesting and storing events and the default and maximum retention period for the event data store.
  • api-change:codecatalyst: [botocore] This release adds functionality for retrieving information about workflows and workflow runs and starting workflow runs in Amazon CodeCatalyst.
  • api-change:ec2: [botocore] AWS EBS now supports Snapshot Lock, giving users the ability to lock an EBS Snapshot to prohibit deletion of the snapshot. This release introduces the LockSnapshot, UnlockSnapshot & DescribeLockedSnapshots APIs to manage lock configuration for snapshots. The release also includes the dl2q_24xlarge.
  • api-change:finspace-data: [botocore] Adding deprecated trait to APIs in this name space.
  • api-change:finspace: [botocore] Adding deprecated trait on Dataset Browser Environment APIs
  • api-change:lambda: [botocore] Add Java 21 (java21) support to AWS Lambda
  • api-change:mwaa: [botocore] This Amazon MWAA release adds support for customer-managed VPC endpoints. This lets you choose whether to create, and manage your environment's VPC endpoints, or to have Amazon MWAA create, and manage them for you.
  • api-change:rds: [botocore] Updates Amazon RDS documentation for support for upgrading RDS for MySQL snapshots from version 5.7 to version 8.0.
  • api-change:redshift: [botocore] The custom domain name SDK for Amazon Redshift provisioned clusters is updated with additional required parameters for modify and delete operations. Additionally, users can provide domain names with longer top-level domains.
  • api-change:s3control: [botocore] Add 5 APIs to create, update, get, list, delete S3 Storage Lens group(eg. CreateStorageLensGroup), 3 APIs for tagging(TagResource,UntagResource,ListTagsForResource), and update to StorageLensConfiguration to allow metrics to be aggregated on Storage Lens groups.
  • api-change:ssm-sap: [botocore] Update the default value of MaxResult to 50.

v1.29.0

Compare Source

======

  • feature:ContainerProvider: [botocore] Added Support for EKS container credentials
  • api-change:backup: [botocore] AWS Backup - Features: Provide Job Summary for your backup activity.
  • api-change:cleanrooms: [botocore] This feature provides the ability for the collaboration creator to configure either the member who can run queries or a different member in the collaboration to be billed for query compute costs.
  • api-change:connect: [botocore] Introducing SegmentAttributes parameter for StartChatContact API
  • api-change:glue: [botocore] Introduces new storage optimization APIs to support automatic compaction of Apache Iceberg tables.
  • api-change:iot: [botocore] This release introduces new attributes in API CreateSecurityProfile, UpdateSecurityProfile and DescribeSecurityProfile to support management of Metrics Export for AWS IoT Device Defender Detect.
  • api-change:lambda: [botocore] Add Python 3.12 (python3.12) support to AWS Lambda
  • api-change:mediatailor: [botocore] Removed unnecessary default values.
  • api-change:pipes: [botocore] Added support (via new LogConfiguration field in CreatePipe and UpdatePipe APIs) for logging to Amazon CloudWatch Logs, Amazon Simple Storage Service (Amazon S3), and Amazon Kinesis Data Firehose
  • api-change:resource-explorer-2: [botocore] Resource Explorer supports multi-account search. You can now use Resource Explorer to search and discover resources across AWS accounts within your organization or organizational unit.
  • api-change:sagemaker: [botocore] This release makes Model Registry Inference Specification fields as not required.
  • api-change:signer: [botocore] Documentation updates for AWS Signer
  • api-change:stepfunctions: [botocore] Update stepfunctions client to latest version
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.85

Compare Source

=======

  • enhancement:AWSCRT: [botocore] Update awscrt version to 0.19.12
  • api-change:dataexchange: [botocore] Removed Required trait for DataSet.OriginDetails.ProductId.
  • api-change:dms: [botocore] Added new Db2 LUW Target endpoint with related endpoint settings. New executeTimeout endpoint setting for mysql endpoint. New ReplicationDeprovisionTime field for serverless describe-replications.
  • api-change:ec2: [botocore] Adds the new EC2 DescribeInstanceTopology API, which you can use to retrieve the network topology of your running instances on select platform types to determine their relative proximity to each other.
  • api-change:ecs: [botocore] Adds a Client Token parameter to the ECS RunTask API. The Client Token parameter allows for idempotent RunTask requests.
  • api-change:emr: [botocore] Update emr client to latest version
  • api-change:servicecatalog-appregistry: [botocore] When the customer associates a resource collection to their application with this new feature, then a new application tag will be applied to all supported resources that are part of that collection. This allows customers to more easily find the application that is associated with those resources.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.84

Compare Source

=======

  • enhancement:AWSCRT: [botocore] Update awscrt version to 0.19.10
  • api-change:controltower: [botocore] AWS Control Tower supports tagging for enabled controls. This release introduces TagResource, UntagResource and ListTagsForResource APIs to manage tags in existing enabled controls. It updates EnabledControl API to tag resources at creation time.
  • api-change:cur: [botocore] This release adds support for tagging and customers can now tag report definitions. Additionally, ReportStatus is now added to report definition to show when the last delivered time stamp and if it succeeded or not.
  • api-change:ec2: [botocore] EC2 adds API updates to enable ENA Express at instance launch time.
  • api-change:fms: [botocore] Adds optimizeUnassociatedWebACL flag to ManagedServiceData, updates third-party firewall examples, and other minor documentation updates.
  • api-change:marketplace-entitlement: [botocore] Update marketplace-entitlement client to latest version
  • api-change:mediaconvert: [botocore] This release includes the ability to specify any input source as the primary input for corresponding follow modes, and allows users to specify fit and fill behaviors without resizing content.
  • api-change:rds: [botocore] Updates Amazon RDS documentation for zero-ETL integrations.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.83

Compare Source

=======

  • api-change:cloudformation: [botocore] Added new ConcurrencyMode feature for AWS CloudFormation StackSets for faster deployments to target accounts.
  • api-change:cloudtrail: [botocore] The Insights in Lake feature lets customers enable CloudTrail Insights on a source CloudTrail Lake event data store and create a destination event data store to collect Insights events based on unusual management event activity in the source event data store.
  • api-change:comprehend: [botocore] This release adds support for toxicity detection and prompt safety classification.
  • api-change:connect: [botocore] This release adds the ability to integrate customer lambda functions with Connect attachments for scanning and updates the ListIntegrationAssociations API to support filtering on IntegrationArn.
  • api-change:ec2: [botocore] AWS EBS now supports Block Public Access for EBS Snapshots. This release introduces the EnableSnapshotBlockPublicAccess, DisableSnapshotBlockPublicAccess and GetSnapshotBlockPublicAccessState APIs to manage account-level public access settings for EBS Snapshots in an AWS Region.
  • api-change:eks: [botocore] Adding EKS Anywhere subscription related operations.
  • api-change:lambda: [botocore] Add Custom runtime on Amazon Linux 2023 (provided.al2023) support to AWS Lambda.
  • api-change:logs: [botocore] Update to support new APIs for delivery of logs from AWS services.
  • api-change:omics: [botocore] Support UBAM filetype for Omics Storage and make referenceArn optional
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.82

Compare Source

=======

  • api-change:sqs: [botocore] This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix.

v1.28.81

Compare Source

=======

  • api-change:connect: [botocore] This release clarifies in our public documentation that InstanceId is a requirement for SearchUsers API requests.
  • api-change:connectcases: [botocore] This release adds the ability to add/view comment authors through CreateRelatedItem and SearchRelatedItems API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html
  • api-change:datasync: [botocore] This change allows for 0 length access keys and secret keys for object storage locations. Users can now pass in empty string credentials.
  • api-change:guardduty: [botocore] Added API support for new GuardDuty EKS Audit Log finding types.
  • api-change:lambda: [botocore] Add Node 20 (nodejs20.x) support to AWS Lambda.
  • api-change:lexv2-models: [botocore] Update lexv2-models client to latest version
  • api-change:omics: [botocore] Adding Run UUID and Run Output URI: GetRun and StartRun API response has two new fields "uuid" and "runOutputUri".
  • api-change:rds: [botocore] This Amazon RDS release adds support for patching the OS of an RDS Custom for Oracle DB instance. You can now upgrade the database or operating system using the modify-db-instance command.
  • api-change:redshift-serverless: [botocore] Added a new parameter in the workgroup that helps you control your cost for compute resources. This feature provides a ceiling for RPUs that Amazon Redshift Serverless can scale up to. When automatic compute scaling is required, having a higher value for MaxRPU can enhance query throughput.
  • api-change:resiliencehub: [botocore] AWS Resilience Hub enhances Resiliency Score, providing actionable recommendations to improve application resilience. Amazon Elastic Kubernetes Service (EKS) operational recommendations have been added to help improve the resilience posture of your applications.
  • api-change:sqs: [botocore] This release enables customers to call SQS using AWS JSON-1.0 protocol.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.80

Compare Source

=======

  • api-change:dataexchange: [botocore] Updated SendDataSetNotificationRequest Comment to be maximum length 4096.
  • api-change:dlm: [botocore] Added support for pre and post scripts in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies.
  • api-change:rds: [botocore] This Amazon RDS release adds support for the multi-tenant configuration. In this configuration, an RDS DB instance can contain multiple tenant databases. In RDS for Oracle, a tenant database is a pluggable database (PDB).
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.79

Compare Source

=======

  • api-change:ce: [botocore] This release extends the GetReservationPurchaseRecommendation API to support recommendations for Amazon MemoryDB reservations.
  • api-change:codebuild: [botocore] AWS CodeBuild now supports AWS Lambda compute.
  • api-change:connect: [botocore] Added new API that allows Amazon Connect Outbound Campaigns to create contacts in Amazon Connect when ingesting your dial requests.
  • api-change:docdb: [botocore] Update the input of CreateDBInstance and ModifyDBInstance to support setting CA Certificates. Update the output of DescribeDBInstance and DescribeDBEngineVersions to show current and supported CA certificates.
  • api-change:iam: [botocore] Add partitional endpoint for iso-e.
  • api-change:mwaa: [botocore] This release adds support for Apache Airflow version 2.7.2. This version release includes support for deferrable operators and triggers.
  • api-change:polly: [botocore] Amazon Polly adds new US English voices - Danielle and Gregory. Danielle and Gregory are available as Neural voices only.
  • api-change:route53: [botocore] Add partitional endpoints for iso-e and iso-f.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.78

Compare Source

=======

  • api-change:config: [botocore] Updated ResourceType enum with new resource types onboarded by AWS Config in October 2023.
  • api-change:connect: [botocore] Amazon Connect Chat introduces Create Persistent Contact Association API, allowing customers to choose when to resume previous conversations from previous chats, eliminating the need to repeat themselves and allowing agents to provide personalized service with access to entire conversation history.
  • api-change:iotwireless: [botocore] Added LoRaWAN version 1.0.4 support
  • api-change:launch-wizard: [botocore] AWS Launch Wizard is a service that helps reduce the time it takes to deploy applications to the cloud while providing a guided deployment experience.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.77

Compare Source

=======

  • api-change:apprunner: [botocore] AWS App Runner now supports using dual-stack address type for the public endpoint of your incoming traffic.
  • api-change:connect: [botocore] GetMetricDataV2 API: Update to include new metrics PERCENT_NON_TALK_TIME, PERCENT_TALK_TIME, PERCENT_TALK_TIME_AGENT, PERCENT_TALK_TIME_CUSTOMER
  • api-change:gamelift: [botocore] Amazon GameLift adds support for shared credentials, which allows applications that are deployed on managed EC2 fleets to interact with other AWS resources.
  • api-change:glue: [botocore] This release introduces Google BigQuery Source and Target in AWS Glue CodeGenConfigurationNode.
  • api-change:network-firewall: [botocore] This release introduces the stateless rule analyzer, which enables you to analyze your stateless rules for asymmetric routing.
  • api-change:quicksight: [botocore] This release introduces Float Decimal Type as SubType in QuickSight SPICE datasets and Custom week start and Custom timezone options in Analysis and Dashboard
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.76

Compare Source

=======

  • api-change:connect: [botocore] Adds the BatchGetFlowAssociation API which returns flow associations (flow-resource) corresponding to the list of resourceArns supplied in the request. This release also adds IsDefault, LastModifiedRegion and LastModifiedTime fields to the responses of several Describe and List APIs.
  • api-change:globalaccelerator: [botocore] Global Accelerator now support accelerators with cross account endpoints.
  • api-change:rds: [botocore] This release adds support for customized networking resources to Amazon RDS Custom.
  • api-change:redshift: [botocore] Added support for Multi-AZ deployments for Provisioned RA3 clusters that provide 99.99% SLA availability.
  • api-change:sagemaker: [botocore] Support for batch transform input in Model dashboard

v1.28.75

Compare Source

=======

  • api-change:amplify: [botocore] Add backend field to CreateBranch and UpdateBranch requests. Add pagination support for ListApps, ListDomainAssociations, ListBranches, and ListJobs
  • api-change:application-insights: [botocore] Automate attaching managed policies
  • api-change:ec2: [botocore] Capacity Blocks for ML are a new EC2 purchasing option for reserving GPU instances on a future date to support short duration machine learning (ML) workloads. Capacity Blocks automatically place instances close together inside Amazon EC2 UltraClusters for low-latency, high-throughput networking.
  • api-change:m2: [botocore] Added name filter ability for ListDataSets API, added ForceUpdate for Updating environment and BatchJob submission using S3BatchJobIdentifier
  • api-change:neptunedata: [botocore] Minor change to not retry CancelledByUserException
  • api-change:translate: [botocore] Added support for Brevity translation settings feature.

v1.28.74

Compare Source

=======

  • api-change:connect: [botocore] This release adds InstanceId field for phone number APIs.
  • api-change:dataexchange: [botocore] We added a new API action: SendDataSetNotification.
  • api-change:datasync: [botocore] Platform version changes to support AL1 deprecation initiative.
  • api-change:finspace: [botocore] Introducing new API UpdateKxClusterCodeConfiguration, introducing new cache types for clusters and introducing new deployment modes for updating clusters.
  • api-change:mediapackagev2: [botocore] This feature allows customers to create a combination of manifest filtering, startover and time delay configuration that applies to all egress requests by default.
  • api-change:rds: [botocore] This release launches the CreateIntegration, DeleteIntegration, and DescribeIntegrations APIs to manage zero-ETL Integrations.
  • api-change:redshift-serverless: [botocore] Added support for custom domain names for Amazon Redshift Serverless workgroups. This feature enables customers to create a custom domain name and use ACM to generate fully secure connections to it.
  • api-change:resiliencehub: [botocore] Introduced the ability to filter applications by their last assessment date and time and have included metrics for the application's estimated workload Recovery Time Objective (RTO) and estimated workload Recovery Point Objective (RPO).
  • api-change:s3outposts: [botocore] Updated ListOutpostsWithS3 API response to include S3OutpostArn for use with AWS RAM.
  • api-change:wisdom: [botocore] This release added necessary API documents on creating a Wisdom knowledge base to integrate with S3.

v1.28.73

Compare Source

=======

  • api-change:emr: [botocore] Update emr client to latest version
  • api-change:neptune: [botocore] Update TdeCredentialPassword type to SensitiveString
  • api-change:pinpoint: [botocore] Updated documentation to describe the case insensitivity for EndpointIds.
  • api-change:redshift: [botocore] added support to create a dual stack cluster
  • api-change:wafv2: [botocore] Updates the descriptions for the calls that manage web ACL associations, to provide information for customer-managed IAM policies.

v1.28.72

Compare Source

=======

  • api-change:appstream: [botocore] This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance.
  • api-change:ec2: [botocore] Launching GetSecurityGroupsForVpc API. This API gets security groups that can be associated by the AWS account making the request with network interfaces in the specified VPC.
  • api-change:network-firewall: [botocore] Network Firewall now supports inspection of outbound SSL/TLS traffic.
  • api-change:opensearch: [botocore] You can specify ipv4 or dualstack IPAddressType for cluster endpoints. If you specify IPAddressType as dualstack, the new endpoint will be visible under the 'EndpointV2' parameter and will support IPv4 and IPv6 requests. Whereas, the 'Endpoint' will continue to serve IPv4 requests.
  • api-change:redshift: [botocore] Add Redshift APIs GetResourcePolicy, DeleteResourcePolicy, PutResourcePolicy and DescribeInboundIntegrations for the new Amazon Redshift Zero-ETL integration feature, which can be used to control data ingress into Redshift namespace, and view inbound integrations.
  • api-change:sagemaker: [botocore] Amazon Sagemaker Autopilot now supports Text Generation jobs.
  • api-change:sns: [botocore] Message Archiving and Replay is now supported in Amazon SNS for FIFO topics.
  • api-change:ssm-sap: [botocore] AWS Systems Manager for SAP added support for registration and discovery of SAP ABAP applications
  • api-change:transfer: [botocore] No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged.
  • api-change:endpoint-rules: [botocore] Update endpoint-rules client to latest version

v1.28.71

Compare Source

=======

  • enhancement:Configuration: [botocore] Adds client context params support to Config.
  • api-change:connectcases: [botocore] Increase maximum length of CommentBody to 3000, and increase maximum length of StringValue to 1500
  • api-change:groundstation: [botocore] This release will allow KMS alias names to be used when creating Mission Profiles
  • api-change:iam: [botocore] Updates to GetAccessKeyLastUsed action to replace NoSuchEntity error with AccessDeniedException error.

v1.28.70

Compare Source

=======

  • api-change:codepipeline: [botocore] Add ability to trigger pipelines from git tags, define variables at pipeline level and new pipeline type V2.
  • api-change:ec2: [botocore] This release updates the documentation for InstanceInterruptionBehavior and HibernationOptionsRequest to more accurately describe the behavior of these two parameters when using Spot hibernation.
  • api-change:eks: [botocore] Added support for Cluster Subnet and Security Group mutability.
  • api-change:iam: [botocore] Add the partitional endpoint for IAM in iso-f.
  • api-change:migrationhub-config: [botocore] This release introduces DeleteHomeRegionControl API that customers can use to delete the Migration Hub Home Region configuration
  • api-change:migrationhubstrategy: [botocore] This release introduces multi-data-source feature in Migration Hub Strategy Recommendations. This feature now supports vCenter as a data source to fetch inventory in addition to ADS and Import from file workflow that is currently supported with MHSR collector.
  • api-change:opensearchserverless: [botocore] This release includes the following new APIs: CreateLifecyclePolicy, UpdateLifecyclePolicy, BatchGetLifecyclePolicy, DeleteLifecyclePolicy, ListLifecyclePolicies and BatchGetEffectiveLifecyclePolicy to support the data lifecycle management feature.

v1.28.69

Compare Source

=======

  • api-change:marketplacecommerceanalytics: [botocore] The StartSupportDataExport operation has been deprecated as part of the Product Support Connection deprecation. As of December 2022, Product Support Connection is no longer supported.
  • api-change:networkmanager: [botocore] This release adds API support for Tunnel-less Connect (NoEncap Protocol) for AWS Cloud WAN
  • api-change:redshift-serverless: [botocore] This release adds support for customers to see the patch version and workgroup version in Amazon Redshift Serverless.
  • api-change:rekognition: [botocore] Amazon Rekognition introduces StartMediaAnalysisJob, GetMediaAnalysisJob, and ListMediaAnalysisJobs operations to run a bulk analysis of images with a Detect Moderation model.

v1.28.68

Compare Source

=======

  • api-change:appconfig: [botocore] Update KmsKeyIdentifier constraints to support AWS KMS multi-Region keys.
  • api-change:appintegrations: [botocore] Updated ScheduleConfig to be an optional input to CreateDataIntegration to support event driven downloading of files from sources such as Amazon s3 using Amazon Connect AppIntegrations.
  • api-change:connect: [botocore] This release adds support for updating phone number metadata, such as phone number description.
  • api-change:discovery: [botocore] This release introduces three new APIs: StartBatchDeleteConfigurationTask, DescribeBatchDeleteConfigurationTask, and BatchDeleteAgents.
  • api-change:medical-imaging: [botocore] Updates on documentation links
  • api-change:ssm: [botocore] This release introduces a new API: DeleteOpsItem. This allows deletion of an OpsItem.

v1.28.67

Compare Source

=======

  • api-change:gamesparks: [botocore] The gamesparks client has been removed following the deprecation of the service.
  • api-change:ec2: [botocore] Amazon EC2 C7a instances, powered by 4th generation AMD EPYC processors, are ideal for high performance, compute-intensive workloads such as high performance computing. Amazon EC2 R7i instances are next-generation memory optimized and powered by custom 4th Generation Intel Xeon Scalable processors.
  • api-change:managedblockchain-query: [botocore] This release adds support for Ethereum Sepolia network
  • api-change:neptunedata: [botocore] Doc changes to add IAM action mappings for the data actions.
  • api-change:omics: [botocore] This change enables customers to retrieve failure reasons with detailed status messages for their failed runs
  • api-change:opensearch: [botocore] Added Cluster Administrative options for node restart, opensearch process restart and opensearch dashboard restart for Multi-AZ without standby domains
  • api-change:quicksight: [botocore] This release adds the following: 1) Trino and Starburst Database Connectors 2) Custom total for tables and pivot tables 3) Enable restricted folders 4) Add rolling dates for time equality filters 5) Refine DataPathValue and introduce DataPathType 6) Add SeriesType to ReferenceLineDataConfiguration
  • api-change:secretsmanager: [botocore] Documentation updates for Secrets Manager
  • api-change:servicecatalog: [botocore] Introduce support for EXTERNAL product and provisioning artifact type in CreateProduct and CreateProvisioningArtifact APIs.
  • api-change:verifiedpermissions: [botocore] Improving Amazon Verified Permissions Create experience
  • api-change:workspaces: [botocore] Documentation updates for WorkSpaces

v1.28.66

Compare Source

=======

  • api-change:cloud9: [botocore] Update to imageId parameter behavior and dates updated.
  • api-change:dynamodb: [botocore] Updating descriptions for several APIs.
  • api-change:kendra: [botocore] Changes for a new feature in Amazon Kendra's Query API to Collapse/Expand query results
  • api-change:rds: [botocore] This release adds support for upgrading the storage file system configuration on the DB instance using a blue/green deployment or a read replica.
  • api-change:wisdom: [botocore] This release adds an max limit of 25 recommendation ids for NotifyRecommendationsReceived API.

v1.28.65

Compare Source

=======

  • api-change:codepipeline: [botocore] Add retryMode ALL_ACTIONS to RetryStageExecution API that retries a failed stage starting from first action in the stage
  • api-change:discovery: [botocore] This release introduces three new APIs: StartBatchDeleteConfigurationTask, DescribeBatchDeleteConfigurationTask, and BatchDeleteAgents.
  • api-change:ecs: [botocore] Documentation only updates to address Amazon ECS tickets.
  • api-change:globalaccelerator: [botocore] Fixed error where ListCustomRoutingEndpointGroups did not have a paginator
  • api-change:guardduty: [botocore] Add domainWithSuffix finding field to dnsRequestAction
  • api-change:kafka: [botocore] AWS Managed Streaming for Kafka is launching MSK Replicator, a new feature that enables customers to reliably replicate data across Amazon MSK clusters in same or different AWS regions. You can now use SDK to create, list, describe, delete, update, and manage tags of MSK Replicators.
  • api-change:route53-recovery-cluster: [botocore] Adds Owner field to ListRoutingControls API.
  • api-change:route53-recovery-control-config: [botocore] Adds permissions for GetResourcePolicy to support returning details about AWS Resource Access Manager resource policies for shared resources.

v1.28.64

Compare Source

=======

  • api-change:cloudformation: [botocore] SDK and documentation updates for UpdateReplacePolicy
  • api-change:drs: [botocore] Updated exsiting API to allow AWS Elastic Disaster Recovery support of launching recovery into existing EC2 instances.
  • api-change:entityresolution: [botocore] This launch expands our matching techniques to include provider-based matching to help customer match, link, and enhance records with minimal data movement. With data service providers, we have removed the need for customers to build bespoke integrations,.
  • api-change:managedblockchain-query: [botocore] This release introduces two new APIs: GetAssetContract and ListAssetContracts. This release also adds support for Bitcoin Testnet.
  • api-change:mediapackagev2: [botocore] This release allows customers to manage MediaPackage v2 resource using CloudFormation.
  • api-change:opensearch: [botocore] This release allows customers to list and associate optional plugin packages with compatible Amazon OpenSearch Service clusters for enhanced functionality.
  • api-change:redshift-serverless: [botocore] Added support for managing credentials of serverless namespace admin using AWS Secrets Manager.
  • api-change:redshift: [botocore] Added support for managing credentials of provisioned cluster admin using AWS Secrets Manager.
  • api-change:sesv2: [botocore] This release provides enhanced visibility into your SES identity verification status. This will offer you more actionable insights, enabling you to promptly address any verification-related issues.
  • api-change:transfer: [botocore] Documentation updates for AWS Transfer Family
  • api-change:xray: [botocore] This releases enhances GetTraceSummaries API to support new TimeRangeType Service to query trace summaries by segment end time.

v1.28.63

Compare Source

=======

  • api-change:auditmanager: [botocore] This release introduces a new limit to the awsAccounts parameter. When you create or update an assessment, there is now a limit of 200 AWS accounts that can be specified in the assessment scope.
  • api-change:autoscaling: [botocore] Update the NotificationMetadata field to only allow visible ascii characters. Add paginators to DescribeInstanceRefreshes, DescribeLoadBalancers, and DescribeLoadBalancerTargetGroups
  • api-change:config: [botocore] Add enums for resource types supported by Config
  • api-change:controltower: [botocore] Added new EnabledControl resource details to ListEnabledControls API and added new GetEnabledControl API.
  • api-change:customer-profiles: [botocore] Adds sensitive trait to various shapes in Customer Profiles Calculated Attribute API model.
  • api-change:ec2: [botocore] This release adds Ubuntu Pro as a supported platform for On-Demand Capacity Reservations and adds support for setting an Amazon Machine Image (AMI) to disabled state. Disabling the AMI makes it private if it was previously shared, and prevents new EC2 instance launches from it.
  • api-change:elbv2: [botocore] Update elbv2 client to latest version
  • api-change:glue: [botocore] Extending version control support to GitLab and Bitbucket from AWSGlue
  • api-change:inspector2: [botocore] Add MacOs ec2 platform support
  • api-change:ivs-realtime: [botocore] Update GetParticipant to return additional metadata.
  • api-change:lambda: [botocore] Adds support for Lambda functions to access Dual-Stack subnets over IPv6, via an opt-in flag in CreateFunction and UpdateFunctionConfiguration APIs
  • api-change:location: [botocore] This release adds endpoint updates for all AWS Location resource operations.
  • api-change:machinelearning: [botocore] This release marks Password field as sensitive
  • api-change:pricing: [botocore] Documentation updates for Price List
  • api-change:rds: [botocore] This release adds support for adding a dedicated log volume to open-source RDS instances.
  • api-change:rekognition: [botocore] Amazon Rekognition introduces support for Custom Moderation. This allows the enhancement of accuracy for detect moderation labels operations by creating custom adapters tuned on customer data.
  • api-change:sagemaker: [botocore] Amazon SageMaker Canvas adds KendraSettings and DirectDeploySettings support for CanvasAppSettings
  • api-change:textract: [botocore] This release adds 9 new APIs for adapter and adapter version management, 3 new APIs for tagging, and updates AnalyzeDocument and StartDocumentAnalysis API parameters for using adapters.
  • api-change:transcribe: [botocore] This release is to enable m4a format to customers
  • api-change:workspaces: [botocore] Updated the CreateWorkspaces action documentation to clarify that the PCoIP protocol is only available for Windows bundles.

v1.28.62

Compare Source

=======

  • enhancement:Dependencies: [botocore] Add support for urllib3 2.0 for Python 3.10+
  • api-change:ec2: [botocore] Documentation updates for Elastic Compute Cloud (EC2).
  • api-change:fsx: [botocore] After performing steps to repair the Active Directory configuration of a file system, use this action to initiate the process of attempting to recover to the file system.
  • api-change:marketplace-catalog: [botocore] This release adds support for Document type as an alternative for stringified JSON for StartChangeSet, DescribeChangeSet and DescribeEntity APIs
  • api-change:quicksight: [botocore] NullOption in FilterListConfiguration; Dataset schema/table max length increased; Support total placement for pivot table visual; Lenient mode relaxes the validation to create resources with definition; Data sources can be added to folders; Redshift data sources support IAM Role-based authentication
  • api-change:transfer: [botocore] This release updates the max character limit of PreAuthenticationLoginBanner and PostAuthenticationLoginBanner to 4096 characters

v1.28.61

Compare Source

=======

  • api-change:omics: [botocore] Add Etag Support for Omics Storage in ListReadSets and GetReadSetMetadata API
  • api-change:rds: [botocore] Updates Amazon RDS documentation for corrections and minor improvements.
  • api-change:route53: [botocore] Add hostedzonetype filter to ListHostedZones API.
  • api-change:securityhub: [botocore] Added new resource detail objects to ASFF, including resources for AwsEventsEventbus, AwsEventsEndpoint, AwsDmsEndpoint, AwsDmsReplicationTask, AwsDmsReplicationInstance, AwsRoute53HostedZone, and AwsMskCluster
  • api-change:storagegateway: [botocore] Add SoftwareVersion to response of DescribeGatewayInformation.
  • api-change:workspaces: [botocore] This release introduces Manage applications. This feature allows users to manage their WorkSpaces applications by associating or disassociating their WorkSpaces with applications. The DescribeWorkspaces API will now additionally return OperatingSystemName in its responses.

v1.28.60

Compare Source

=======

  • api-change:appconfig: [botocore] AWS AppConfig introduces KMS customer-managed key (CMK) encryption support for data saved to AppConfig's hosted configuration store.
  • api-change:datazone: [botocore] Initial release of Amazon DataZone
  • api-change:mediatailor: [botocore] Updates DescribeVodSource to include a list of ad break opportunities in the response
  • api-change:mgn: [botocore] This release includes the following new APIs: ListConnectors, CreateConnector, UpdateConnector, DeleteConnector and UpdateSourceServer to support the source action framework feature.
  • api-change:sagemaker: [botocore] Adding support for AdditionalS3DataSource, a data source used for training or inference that is in addition to the input dataset or model data.

v1.28.59

Compare Source

=======

  • api-change:connect: [botocore] GetMetricDataV2 API: Update to include new metrics CONTACTS_RESOLVED_IN_X , AVG_HOLD_TIME_ALL_CONTACTS , AVG_RESOLUTION_TIME , ABANDONMENT_RATE , AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS with added features: Interval Period, TimeZone, Negate MetricFilters, Extended date time range.
  • api-change:location: [botocore] Amazon Location Service adds support for bounding polygon queries. Additionally, the GeofenceCount field has been added to the DescribeGeofenceCollection API response.
  • api-change:mediaconvert: [botocore] This release adds the ability to replace video frames without modifying the audio essence.
  • api-change:oam: [botocore] This release adds support for sharing AWS::ApplicationInsights::Application resources.
  • api-change:sagemaker: [botocore] This release allows users to run Selective Execution in SageMaker Pipelines without SourcePipelineExecutionArn if selected steps do not have any dependent steps.
  • api-change:wellarchitected: [botocore] AWS Well-Architected now supports Review Templates that allows you to create templates with pre-filled answers for Well-Architected and Custom Lens best practices.

v1.28.58

Compare Source

=======

  • api-change:bedrock-runtime: [botocore] Add model timeout exception for InvokeModelWithResponseStream API and update validator for invoke model identifier.
  • api-change:bedrock: [botocore] Provisioned throughput feature with Amazon and third-party base models, and update validators for model identifier and taggable resource ARNs.
  • api-change:ec2: [botocore] Introducing Amazon EC2 R7iz instances with 3.9 GHz sustained all-core turbo frequency and deliver up to 20% better performance than previous generation z1d instances.
  • api-change:managedblockchain: [botocore] Remove Rinkeby as option from Ethereum APIs
  • api-change:rds: [botocore] Adds DefaultCertificateForNewLaunches field in the DescribeCertificates API response.
  • api-change:sso: [botocore] Fix FIPS Endpoints in aws-us-gov.
  • api-change:sts: [botocore] STS API updates for assumeRole
  • api-change:transfer: [botocore] Documentation updates for AWS Transfer Family

v1.28.57

Compare Source

=======

  • api-change:bedrock-runtime: [botocore] Run Inference: Added support to run the inference on models. Includes set of APIs for running inference in streaming and non-streaming mode.
  • api-change:bedrock: [botocore] Model Invocation logging added to enable or disable logs in customer account. Model listing and description support added. Provisioned Throughput feature added. Custom model support added for creating custom models. Also includes list, and delete functions for custom model.
  • api-change:budgets: [botocore] Update DescribeBudgets and DescribeBudgetNotificationsForAccount MaxResults limit to 1000.
  • api-change:ec2: [botocore] Adds support for Customer Managed Key encryption for Amazon Verified Access resources
  • api-change:iotfleetwise: [botocore] AWS IoT FleetWise now supports encryption through a customer managed AWS KMS key. The PutEncryptionConfiguration and GetEncryptionConfiguration APIs were added.
  • api-change:sagemaker-featurestore-runtime: [botocore] Feature Store supports read/write of records with collection type features.
  • api-change:sagemaker: [botocore] Online store feature groups supports Standard and InMemory tier storage types for low latency storage for real-time data retrieval. The InMemory tier supports collection types List, Set, and Vector.
  • api-change:wafv2: [botocore] Correct and improve the documentation for the FieldToMatch option JA3 fingerprint.

v1.28.56

Compare Source

=======

  • api-change:cognito-idp: [botocore] The UserPoolType Status field is no longer used.
  • api-change:firehose: [botocore] Features : Adding support for new data ingestion source to Kinesis Firehose - AWS Managed Services Kafka.
  • api-change:iot: [botocore] Added support for IoT Rules Engine Kafka Action Headers
  • api-change:textract: [botocore] This release adds new feature - Layout to Analyze Document API which can automatically extract layout elements such as titles, paragraphs, headers, section headers, lists, page numbers, footers, table areas, key-value areas and figure areas and order the elements as a human would read.

v1.28.55

Compare Source

=======

  • api-change:appintegrations: [botocore] The Amazon AppIntegrations service adds a set of APIs (in preview) to manage third party applications to be used in Amazon Connect agent workspace.
  • api-change:apprunner: [botocore] This release allows an App Runner customer to specify a custom source directory to run the build & start command. This change allows App Runner to support monorepo based repositories
  • api-change:codedeploy: [botocore] CodeDeploy now supports In-place and Blue/Green EC2 deployments with multiple Classic Load Balancers and multiple Target Groups.
  • api-change:connect: [botocore] This release updates a set of Amazon Connect APIs that provides the ability to integrate third party applications in the Amazon Connect agent workspace.
  • api-change:dynamodb: [botocore] Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table
  • api-change:ec2: [botocore] The release includes AWS verified access to support FIPs compliance in North America regions
  • api-change:lakeformation: [botocore] This release adds three new API support "CreateLakeFormationOptIn", "DeleteLakeFormationOptIn" and "ListLakeFormationOptIns", and also updates the corresponding documentation.
  • api-change:pinpoint: [botocore] Update documentation for RemoveAttributes to more accurately reflect its behavior when attributes are deleted.
  • api-change:s3: [botocore] This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK.

v1.28.54

Compare Source

=======

  • api-change:amplifyuibuilder: [botocore] Support for generating code that is compatible with future versions of amplify project dependencies.
  • api-change:chime-sdk-media-pipelines: [botocore] Adds support for sending WebRTC audio to Amazon Kineses Video Streams.
  • api-change:emr-serverless: [botocore] This release adds support for application-wide default job configurations.
  • api-change:finspace-data: [botocore] Adding sensitive trait to attributes. Change max SessionDuration from 720 to 60. Correct "ApiAccess" attribute to "apiAccess" to maintain consistency between APIs.
  • api-change:quicksight: [botocore] Added ability to tag users upon creation.
  • api-change:ssm: [botocore] This release updates the enum values for ResourceType in SSM DescribeInstanceInformation input and ConnectionStatus in GetConnectionStatus output.
  • api-change:wafv2: [botocore] You can now perform an exact match against the web request's JA3 fingerprint.

v1.28.53

Compare Source

=======

  • api-change:braket: [botocore] This release adds support to view the device queue depth (the number of queued quantum tasks and hybrid jobs on a device) and queue position for a quantum task and hybrid job.
  • api-change:dms: [botocore] new vendors for DMS CSF: MongoDB, MariaDB, DocumentDb and Redshift
  • api-change:ec2: [botocore] EC2 M2 Pro Mac instances are powered by Apple M2 Pro Mac Mini computers featuring 12 core CPU, 19 core GPU, 32 GiB of memory, and 16 core Apple Neural Engine and uniquely enabled by the AWS Nitro System through high-speed Thunderbolt connections.
  • api-change:efs: [botocore] Update efs client to latest version
  • api-change:guardduty: [botocore] Add EKS_CLUSTER_NAME to filter and sort key.
  • api-change:mediaconvert: [botocore] This release supports the creation of of audio-only tracks in CMAF output groups.

v1.28.52

Compare Source

=======

  • api-change:appconfig: [botocore] Enabling boto3 paginators for list APIs and adding documentation around ServiceQuotaExceededException errors
  • api-change:apprunner: [botocore] This release adds improvements for managing App Runner auto scaling configuration resources. New APIs: UpdateDefaultAutoScalingConfiguration and ListServicesForAutoScalingConfiguration. Updated API: DeleteAutoScalingConfiguration.
  • api-change:codeartifact: [botocore] Add support for the Swift package format.
  • api-change:kinesisvideo: [botocore] Updated DescribeMediaStorageConfiguration, StartEdgeConfigurationUpdate, ImageGenerationConfiguration$SamplingInterval, and UpdateMediaStorageConfiguration to match AWS Docs.
  • api-change:logs: [botocore] Add ClientToken to QueryDefinition CFN Handler in CWL
  • api-change:s3: [botocore] Fix an issue where the SDK can fail to unmarshall response due to NumberFormatException
  • api-change:servicediscovery: [botocore] Adds a new DiscoverInstancesRevision API and also adds InstanceRevision field to the DiscoverInstances API response.
  • api-change:sso-oidc: [botocore] Update FIPS endpoints in aws-us-gov.

v1.28.51

Compare Source

=======

  • api-change:ec2: [botocore] This release adds support for C7i, and R7a instance types.
  • api-change:outposts: [botocore] This release adds the InstanceFamilies field to the ListAssets response.
  • api-change:sagemaker: [botocore] This release adds support for one-time model monitoring schedules that are executed immediately without delay, explicit data analysis windows for model monitoring schedules and exclude features attributes to remove features from model monitor analysis.

v1.28.50

Compare Source

=======

  • api-change:discovery: [botocore] Add sensitive protection for customer information
  • api-change:macie2: [botocore] This release changes the default managedDataIdentifierSelector setting for new classification jobs to RECOMMENDED. By default, new classification jobs now use the recommended set of managed data identifiers.
  • api-change:workmail: [botocore] This release includes four new APIs UpdateUser, UpdateGroup, ListGroupsForEntity and DescribeEntity, along with RemoteUsers and some enhancements to existing APIs.

v1.28.49

Compare Source

=======

  • api-change:appstream: [botocore] This release introduces app block builder, allowing customers to provision a resource to package applications into an app block
  • api-change:connect: [botocore] New rule type (OnMetricDataUpdate) has been added
  • api-change:datasync: [botocore] Documentation-only updates for AWS DataSync.
  • api-change:sagemaker: [botocore] This release introduces Skip Model Validation for Model Packages

v1.28.48

Compare Source

=======

  • api-change:appstream: [botocore] This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance.
  • api-change:cloudformation: [botocore] Documentation updates for AWS CloudFormation
  • api-change:entityresolution: [botocore] Changed "ResolutionTechniques" and "MappedInputFields" in workflow and schema mapping operations to be required fields.
  • api-change:lookoutequipment: [botocore] This release adds APIs for the new scheduled retraining feature.

v1.28.47

Compare Source

=======

  • api-change:cloud9: [botocore] Update to include information on Ubuntu 18 deprecation.
  • api-change:drs: [botocore] Updated existing APIs and added new ones to support using AWS Elastic Disaster Recovery post-launch actions. Added support for new regions.
  • api-change:firehose: [botocore] DocumentIdOptions has been added for the Amazon OpenSearch destination.
  • api-change:guardduty: [botocore] Add managementType field to ListCoverage API response.
  • api-change:internetmonitor: [botocore] This release updates the Amazon CloudWatch Internet Monitor API domain name.
  • api-change:ivs-realtime: [botocore] Doc only update that changes description for ParticipantToken.
  • api-change:simspaceweaver: [botocore] Edited the introductory text for the API reference.
  • api-change:xray: [botocore] Add StartTime field in GetTraceSummaries API response for each TraceSummary.

v1.28.46

Compare Source

=======

  • api-change:ec2: [botocore] This release adds support for restricting public sharing of AMIs through AMI Block Public Access
  • api-change:events: [botocore] Update events client to latest version
  • api-change:kendra: [botocore] Amazon Kendra now supports confidence score buckets for retrieved passage results using the Retrieve API.

v1.28.45

Compare Source

=======

  • api-change:ecr: [botocore] This release will have ValidationException be thrown from ECR LifecyclePolicy APIs in regions LifecyclePolicy is not supported, this includes existing Amazon Dedicated Cloud (ADC) regions. This release will also change Tag: TagValue and Tag: TagKey to required.
  • api-change:medialive: [botocore] AWS Elemental Link now supports attaching a Link UHD device to a MediaConnect flow.
  • api-change:quicksight: [botocore] This release launches new updates to QuickSight KPI visuals - support for sparklines, new templated layout and new targets for conditional formatting rules.

v1.28.44

Compare Source

=======

  • api-change:fsx: [botocore] Amazon FSx documentation fixes
  • api-change:sagemaker: [botocore] Autopilot APIs will now support holiday featurization for Timeseries models. The models will now hold holiday metadata and should be able to accommodate holiday effect during inference.
  • api-change:sso-admin: [botocore] Content updates to IAM Identity Center API for China Regions.
  • api-change:workspaces: [botocore] A new field "ErrorDetails" will be added to the output of "DescribeWorkspaceImages" API call. This field provides in-depth details about the error occurred during image import process. These details include the possible causes of the errors and troubleshooting information.

v1.28.43

Compare Source

=======

  • api-change:neptunedata: [botocore] Minor changes to send unsigned requests to Neptune clusters
  • api-change:securityhub: [botocore] Documentation updates for AWS Security Hub
  • api-change:simspaceweaver: [botocore] BucketName and ObjectKey are now required for the S3Location data type. BucketName is now required for the S3Destination data type.

v1.28.42

Compare Source

=======

  • api-change:appflow: [botocore] Adding OAuth2.0 support for servicenow connector.
  • api-change:ec2: [botocore] This release adds 'outpost' location type to the DescribeInstanceTypeOfferings API, allowing customers that have been allowlisted for outpost to query their offerings in the API.
  • api-change:elbv2: [botocore] Update elbv2 client to latest version
  • api-change:medialive: [botocore] Adds advanced Output Locking options for Epoch Locking: Custom Epoch and Jam Sync Time
  • api-change:wafv2: [botocore] The targeted protection level of the Bot Control managed rule group now provides optional, machine-learning analysis of traffic statistics to detect some bot-related activity. You can enable or disable the machine learning functionality through the API.

v1.28.41

Compare Source

=======

  • api-change:billingconductor: [botocore] This release adds support for line item filtering in for the custom line item resource.
  • api-change:cloud9: [botocore] Added support for Ubuntu 22.04 that was not picked up in a previous Trebuchet request. Doc-only update.
  • api-change:compute-optimizer: [botocore] This release adds support to provide recommendations for G4dn and P3 instances that use NVIDIA GPUs.
  • api-change:ec2: [botocore] Introducing Amazon EC2 C7gd, M7gd, and R7gd Instances with up to 3.8 TB of local NVMe-based SSD block-level storage. These instances are powered by AWS Graviton3 processors, delivering up to 25% better performance over Graviton2-based instances.
  • api-change:ecs: [botocore] Documentation only update for Amazon ECS.
  • api-change:events: [botocore] Update events client to latest version
  • api-change:rds: [botocore] Add support for feature integration with AWS Backup.
  • api-change:sagemaker: [botocore] SageMaker Neo now supports data input shape derivation for Pytorch 2.0 and XGBoost compilation job for cloud instance targets. You can skip DataInputConfig field during compilation job creation. You can also access derived information from model in DescribeCompilationJob response.
  • api-change:vpc-lattice: [botocore] This release adds Lambda event structure version config support for LAMBDA target groups. It also adds newline support for auth policies.

v1.28.40

Compare Source

=======

  • api-change:chime-sdk-media-pipelines: [botocore] This release adds support for the Voice Analytics feature for customer-owned KVS streams as part of the Amazon Chime SDK call analytics.
  • api-change:connect: [botocore] Amazon Connect adds the ability to read, create, update, delete, and list view resources, and adds the ability to read, create, delete, and list view versions.
  • api-change:identitystore: [botocore] New Identity Store content for China Region launch
  • api-change:neptunedata: [botocore] Removed the descriptive text in the introduction.

v1.28.39

Compare Source

=======

  • api-change:chime-sdk-media-pipelines: [botocore] This release adds support for feature Voice Enhancement for Call Recording as part of Amazon Chime SDK call analytics.
  • api-change:cloudhsm: [botocore] Deprecating CloudHSM Classic API Service.
  • api-change:connectcampaigns: [botocore] Amazon Connect outbound campaigns has launched agentless dialing mode which enables customers to make automated outbound calls without agent engagement. This release updates three of the campaign management API's to support the new agentless dialing mode and the new dialing capacity field.
  • api-change:connectparticipant: [botocore] Amazon Connect Participant Service adds the ability to get a view resource using a view token, which is provided in a participant message, with the release of the DescribeView API.
  • api-change:customer-profiles: [botocore] Adds sensitive trait to various shapes in Customer Profiles API model.
  • api-change:ecs: [botocore] This release adds support for an account-level setting that you can use to configure the number of days for AWS Fargate task retirement.
  • api-change:grafana: [botocore] Marking SAML RoleValues attribute as sensitive and updating VpcConfiguration attributes to match documentation.
  • api-change:health: [botocore] Adds new API DescribeEntityAggregatesForOrganization that retrieves entity aggregates across your organization. Also adds support for resource status filtering in DescribeAffectedEntitiesForOrganization, resource status aggregates in the DescribeEntityAggregates response, and new resource statuses.
  • api-change:ivs: [botocore] Updated "type" description for CreateChannel, UpdateChannel, Channel, and ChannelSummary.
  • api-change:kafkaconnect: [botocore] Minor model changes for Kafka Connect as well as endpoint updates.
  • api-change:payment-cryptography-data: [botocore] Make KeyCheckValue field optional when using asymmetric keys as Key Check Values typically only apply to symmetric keys
  • api-change:sagemaker-runtime: [botocore] Update sagemaker-runtime client to latest version

v1.28.38

Compare Source

=======

  • api-change:appflow: [botocore] Add SAP source connector parallel and pagination feature
  • api-change:apprunner: [botocore] App Runner adds support for Bitbucket. You can now create App Runner connection that connects to your Bitbucket repositories and deploy App Runner service with the source code stored in a Bitbucket repository.
  • api-change:auditmanager: [botocore] This release marks some assessment metadata as sensitive. We added a sensitive trait to the following attributes: assessmentName, emailAddress, scope, createdBy, lastUpdatedBy, and userName.
  • api-change:cleanrooms: [botocore] This release decouples member abilities in a collaboration. With this change, the member who can run queries no longer needs to be the same as the member who can receive results.
  • api-change:datasync: [botocore] AWS DataSync introduces Task Reports, a new feature that provides detailed reports of data transfer operations for each task execution.
  • api-change:neptunedata: [botocore] Allows customers to execute data plane actions like bulk loading graphs, issuing graph queries using Gremlin and openCypher directly from the SDK.
  • api-change:network-firewall: [botocore] Network Firewall increasing pagination token string length
  • api-change:pca-connector-ad: [botocore] The Connector for AD allows you to use a fully-managed AWS Private CA as a drop-in replacement for your self-managed enterprise CAs without local agents or proxy servers. Enterprises that use AD to manage Windows environments can reduce their private certificate authority (CA) costs and complexity.
  • api-change:sagemaker: [botocore] Amazon SageMaker Canvas adds IdentityProviderOAuthSettings support for CanvasAppSettings

v1.28.37

Compare Source

=======

  • api-change:cognito-idp: [botocore] Added API example requests and responses for several operations. Fixed the validation regex for user pools Identity Provider name.
  • api-change:fsx: [botocore] Documentation updates for project quotas.
  • api-change:omics: [botocore] Add RetentionMode support for Runs.
  • api-change:sesv2: [botocore] Adds support for the new Export and Message Insights features: create, get, list and cancel export jobs; get message insights.

v1.28.36

Compare Source

=======

  • api-change:backup: [botocore] Add support for customizing time zone for backup window in backup plan rules.
  • api-change:compute-optimizer: [botocore] This release enables AWS Compute Optimizer to analyze and generate licensing optimization recommendations for sql server running on EC2 instances.
  • api-change:organizations: [botocore] Documentation updates for permissions and links.
  • api-change:securitylake: [botocore] Remove incorrect regex enforcement on pagination tokens.
  • api-change:service-quotas: [botocore] Service Quotas now supports viewing the applied quota value and requesting a quota increase for a specific resource in an AWS account.
  • api-change:workspaces-web: [botocore] WorkSpaces Web now enables Admins to configure which cookies are synchronized from an end-user's local browser to the in-session browser. In conjunction with a browser extension, this feature enables enhanced Single-Sign On capability by reducing the number of times an end-user has to authenticate.

v1.28.35

Compare Source

=======

  • api-change:cloudtrail: [botocore] Add ThrottlingException with error code 429 to handle CloudTrail Delegated Admin request rate exceeded on organization resources.
  • api-change:cloudwatch: [botocore] Update cloudwatch client to latest version
  • api-change:detective: [botocore] Added protections to interacting with fields containing customer information.

v1.28.34

Compare Source

=======

  • api-change:ec2: [botocore] Amazon EC2 M7a instances, powered by 4th generation AMD EPYC processors, deliver up to 50% higher performance compared to M6a instances. Amazon EC2 Hpc7a instances, powered by 4th Gen AMD EPYC processors, deliver up to 2.5x better performance compared to Amazon EC2 Hpc6a instances.
  • api-change:glue: [botocore] Added API attributes that help in the monitoring of sessions.
  • api-change:mediaconvert: [botocore] This release includes additional audio channel tags in Quicktime outputs, support for film grain synthesis for AV1 outputs, ability to create audio-only FLAC outputs, and ability to specify Amazon S3 destination storage class.
  • api-change:medialive: [botocore] MediaLive now supports passthrough of KLV data to a HLS output group with a TS container. MediaLive now supports setting an attenuation mode for AC3 audio when the coding mode is 3/2 LFE. MediaLive now supports specifying whether to include filler NAL units in RTMP output group settings.
  • api-change:mediatailor: [botocore] Adds new source location AUTODETECT_SIGV4 access type.
  • api-change:quicksight: [botocore] Excel support in Snapshot Export APIs. Removed Required trait for some insight Computations. Namespace-shared Folders support. Global Filters support. Table pin Column support.
  • api-change:rds: [botocore] This release updates the supported versions for Percona XtraBackup in Aurora MySQL.
  • api-change:s3control: [botocore] Updates to endpoint ruleset tests to address Smithy validation issues and standardize the capitalization of DualStack.
  • api-change:verifiedpermissions: [botocore] Documentation updates for Amazon Verified Permissions.

v1.28.33

Compare Source

=======

  • api-change:apigateway: [botocore] This release adds RootResourceId to GetRestApi response.
  • api-change:ec2: [botocore] Marking fields as sensitive on BundleTask and GetPasswordData
  • api-change:polly: [botocore] Amazon Polly adds 1 new voice - Zayd (ar-AE)

v1.28.32

Compare Source

=======

  • api-change:ce: [botocore] This release adds the LastUpdatedDate and LastUsedDate timestamps to help you manage your cost allocation tags.
  • api-change:globalaccelerator: [botocore] Global Accelerator now supports Client Ip Preservation for Network Load Balancer endpoints.
  • api-change:rds: [botocore] Adding parameters to CreateCustomDbEngineVersion reserved for future use.
  • api-change:verifiedpermissions: [botocore] Documentation updates for Amazon Verified Permissions. Increases max results per page for ListPolicyStores, ListPolicies, and ListPolicyTemplates APIs from 20 to 50.

v1.28.31

Compare Source

=======

  • api-change:cloud9: [botocore] Doc only update to add Ubuntu 22.04 as an Image ID option for Cloud9
  • api-change:ec2: [botocore] The DeleteKeyPair API has been updated to return the keyPairId when an existing key pair is deleted.
  • api-change:finspace: [botocore] Allow customers to manage outbound traffic from their Kx Environment when attaching a transit gateway by providing network acl entries. Allow the customer to choose how they want to update the databases on a cluster allowing updates to possibly be faster than usual.
  • api-change:rds: [botocore] Adding support for RDS Aurora Global Database Unplanned Failover
  • api-change:route53domains: [botocore] Fixed typos in description fields

v1.28.30

Compare Source

=======

  • api-change:codecommit: [botocore] Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file.
  • api-change:securityhub: [botocore] Added Inspector Lambda code Vulnerability section to ASFF, including GeneratorDetails, EpssScore, ExploitAvailable, and CodeVulnerabilities.

v1.28.29

Compare Source

=======

  • api-change:ec2: [botocore] Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints
  • api-change:gamelift: [botocore] Amazon GameLift updates its instance types support.
python-humanize/humanize (humanize)

v4.9.0

Compare Source

Added

Changed

Fixed


Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Renovate Bot.

This PR contains the following updates: | Package | Update | Change | |---|---|---| | [apprise](https://github.com/caronc/apprise) | minor | `==1.4.5` -> `==1.7.5` | | [awslambdaric](https://github.com/aws/aws-lambda-python-runtime-interface-client) | patch | `==2.0.5` -> `==2.0.11` | | [boto3](https://github.com/boto/boto3) | minor | `==1.28.28` -> `==1.34.78` | | [humanize](https://github.com/python-humanize/humanize) ([changelog](https://github.com/python-humanize/humanize/releases)) | minor | `==4.8.0` -> `==4.9.0` | --- ### Release Notes <details> <summary>caronc/apprise (apprise)</summary> ### [`v1.7.5`](https://github.com/caronc/apprise/releases/tag/v1.7.5) [Compare Source](https://github.com/caronc/apprise/compare/v1.7.4...v1.7.5) #### Details ##### :mega: New Notification Services: - [Free-Mobile](https://github.com/caronc/apprise/wiki/Notify_freemobile) Support added in [#&#8203;1090](https://github.com/caronc/apprise/issues/1090) ##### :bulb: Features - Improved markdown to html conversions in https://github.com/caronc/apprise/pull/1089 ##### :heart: Life-Cycle Support - Added test case to strengthen YAML configuration validation in https://github.com/caronc/apprise/pull/1043 ##### :bug: Bugfixes - Improved async/threading attachment support in https://github.com/caronc/apprise/pull/1086 - Improved variable parsing in YAML files in https://github.com/caronc/apprise/pull/1088 #### Installation Apprise is available [on PyPI](https://pypi.org/project/apprise/) through *pip*: ```bash ### Install Apprise v1.7.5 from PyPI pip install apprise==1.7.5 ``` ### [`v1.7.4`](https://github.com/caronc/apprise/releases/tag/v1.7.4) [Compare Source](https://github.com/caronc/apprise/compare/v1.7.3...v1.7.4) #### Details ##### :mega: New Notification Services: - [LunaSea](https://github.com/caronc/apprise/wiki/Notify_lunasea) Support added. ([#&#8203;1072](https://github.com/caronc/apprise/issues/1072)) ##### :bulb: Features - `.conf` configuration file support added to CLI. This PR also resolved some documentation ambiguity in https://github.com/caronc/apprise/pull/1080 ##### :heart: Life-Cycle Support - n/a ##### :bug: Bugfixes - Custom module deadlock import fix in https://github.com/caronc/apprise/pull/1077 - This was primary reason for this (Apprise) release; to resolve this bug introduced in [#&#8203;1071](https://github.com/caronc/apprise/issues/1071) (in Apprise v1.7.3). Apprise is available [on PyPI](https://pypi.org/project/apprise/) through *pip*: ```bash ### Install Apprise v1.7.4 from PyPI pip install apprise==1.7.4 ``` ### [`v1.7.3`](https://github.com/caronc/apprise/releases/tag/v1.7.3) [Compare Source](https://github.com/caronc/apprise/compare/v1.7.2...v1.7.3) #### Details Another minor release to push some outstanding bug-fixes that have accumulated and patched over the past month ##### :mega: New Notification Services: - [Revolt](https://github.com/caronc/apprise/wiki/Notify_revolt) Support added. ([#&#8203;1057](https://github.com/caronc/apprise/issues/1057) and [#&#8203;1062](https://github.com/caronc/apprise/issues/1062)) - Thank you [@&#8203;ktwrd](https://github.com/ktwrd) ##### :bulb: Features - `mailto://` comcast.net email template added ([#&#8203;1059](https://github.com/caronc/apprise/issues/1059)) - `mailto://` improved custom email server handling ([`5ae212f`](https://github.com/caronc/apprise/commit/5ae212fbafb94a3d03c61739d2e81f7502595902)) - `to=` and `from_addr=` are no longer required in most circumstances and can be automatically determined based on basic information provided. - `ntfy://` markdown support added ([#&#8203;1056](https://github.com/caronc/apprise/issues/1056)) - just add `?format=markdown` to format the content accordingly ##### :heart: Life-Cycle Support - `paho-mqtt` v2.0 was released and it's documentation for v1.6.1 was completely incompatible with it. For the stability of the `mqtt://` plugin, `paho-mqtt` has been pinned to the stable v1.x release ([#&#8203;1065](https://github.com/caronc/apprise/issues/1065)) ##### :bug: Bugfixes - Fixed documents with respect to the use of `yaml` files ([#&#8203;1069](https://github.com/caronc/apprise/issues/1069)) - Thank you [@&#8203;samueltardieu](https://github.com/samueltardieu) - Updated CLI so that it can read both `.yml` and `.yaml` files by default ([#&#8203;1073](https://github.com/caronc/apprise/issues/1073)) - `macosx://` - Update terminal-notifier notify_paths ([#&#8203;1052](https://github.com/caronc/apprise/issues/1052)) - Thank you [@&#8203;joergschultzelutter](https://github.com/joergschultzelutter) - Asynchronous Dynamic Module Loading Support ([#&#8203;1071](https://github.com/caronc/apprise/issues/1071)) - This was a bug introduced with Dynamic Module Loading (in Apprise v1.7.0) preventing threading/async support Apprise is available [on PyPI](https://pypi.org/project/apprise/) through *pip*: ```bash ### Install Apprise v1.7.3 from PyPI pip install apprise==1.7.3 ``` ### [`v1.7.2`](https://github.com/caronc/apprise/releases/tag/v1.7.2) [Compare Source](https://github.com/caronc/apprise/compare/v1.7.1...v1.7.2) #### Details This was just a second small release add some improvements and bug fixes See [the release notes for Apprise v1.7.0](https://github.com/caronc/apprise/releases/tag/v1.7.0) to see all of the bells and whistles now available! ##### :bulb: Features - Slack Integration Support thread_timestamp ([#&#8203;1033](https://github.com/caronc/apprise/issues/1033)) - Massive refactoring of `overflow` features `split` and `truncate` ([#&#8203;1035](https://github.com/caronc/apprise/issues/1035) & [#&#8203;1038](https://github.com/caronc/apprise/issues/1038)) ##### :heart: Life-Cycle Support - Python 3.12 Support ([#&#8203;1031](https://github.com/caronc/apprise/issues/1031)) - Removed Spontit (upstream no longer in service) ([#&#8203;1034](https://github.com/caronc/apprise/issues/1034)) ##### :bug: Bugfixes - Resolved TypeError logging exception with Custom plugin loading ([#&#8203;1042](https://github.com/caronc/apprise/issues/1042)) - Update README.md (form:// and forms:// examples) ([#&#8203;1045](https://github.com/caronc/apprise/issues/1045)) - thank you [@&#8203;dgtlmoon](https://github.com/dgtlmoon) ##### Installation Instructions Apprise is available [on PyPI](https://pypi.org/project/apprise/) through *pip*: ```bash ### Install Apprise v1.7.2 from PyPI pip install apprise==1.7.2 ``` ### [`v1.7.1`](https://github.com/caronc/apprise/releases/tag/v1.7.1) [Compare Source](https://github.com/caronc/apprise/compare/v1.7.0...v1.7.1) #### Details This was just a small release to patch a small bug ([#&#8203;1032](https://github.com/caronc/apprise/issues/1032)) preventing Apprise v1.7.0 from being compatible with the [Apprise API](https://github.com/caronc/apprise-api/). See [the release notes for Apprise v1.7.0](https://github.com/caronc/apprise/releases/tag/v1.7.0) to see all of the bells and whistles now available! ##### :bug: Bugfixes - Resolved ConfigMemory AttributeError Exception ([#&#8203;1032](https://github.com/caronc/apprise/issues/1032)) ##### Installation Instructions Apprise is available [on PyPI](https://pypi.org/project/apprise/) through *pip*: ```bash ### Install Apprise v1.7.1 from PyPI pip install apprise==1.7.1 ``` ### [`v1.7.0`](https://github.com/caronc/apprise/releases/tag/v1.7.0) [Compare Source](https://github.com/caronc/apprise/compare/v1.6.0...v1.7.0) #### Details ##### :mega: New Notification Services: - [Threema Gateway](https://github.com/caronc/apprise/wiki/Notify_threema) Support added. ([#&#8203;993](https://github.com/caronc/apprise/issues/993)) - [Synology Chat](https://github.com/caronc/apprise/wiki/Notify_synology) Support added. ([#&#8203;944](https://github.com/caronc/apprise/issues/944)) - [APRS (Automated Packet Reporting System)](https://github.com/caronc/apprise/wiki/Notify_aprs) Ham Radio Support added. ([#&#8203;1005](https://github.com/caronc/apprise/issues/1005)); thanks [@&#8203;joergschultzelutter](https://github.com/joergschultzelutter) - [WeCom Bot](https:z/github.com/caronc/apprise/wiki/Notify_wecombot) Support added. ([#&#8203;1016](https://github.com/caronc/apprise/issues/1016)) - [httpSMS](https://github.com/caronc/apprise/wiki/Notify_httpsms) Support added. ([#&#8203;1017](https://github.com/caronc/apprise/issues/1017)) - [SMS Manager](https://github.com/caronc/apprise/wiki/Notify_sms_manager) Support added. ([#&#8203;1018](https://github.com/caronc/apprise/issues/1018)) - [BulkVS](https://github.com/caronc/apprise/wiki/Notify_bulkvs) Support added. ([#&#8203;1014](https://github.com/caronc/apprise/issues/1014)) ##### :bulb: Features - Massive Refactoring of Dynamic Module Loading (now on demand) ([#&#8203;1020](https://github.com/caronc/apprise/issues/1020)) - YAML (Configuration) Tag Group Support enhancement ([#&#8203;998](https://github.com/caronc/apprise/issues/998)) - Emoji support added :rocket: ([#&#8203;1011](https://github.com/caronc/apprise/issues/1011)) - You can now provide `:slightly_smiling_face:` (as an example) in your apprise message body and have it swap to :slightly_smiling_face: - All supported emoji's were based on [@&#8203;ikatyang](https://github.com/ikatyang)'s [Emoji Cheat Sheet](https://github.com/ikatyang/emoji-cheat-sheet) - The emoji engine is not active by default but can be turned on in several ways: 1. In your Apprise URL, simply add the parameter `emojis=yes` and they will be ran against that service only: ```bash ``` ### The below would run the title and body through the emoji engine to produce their unicode ### emoji equivalent.. ### :rocket: would become 🚀 and :+1: would become 👍 apprise --title=":+1: Great work everyone!" \ --body="So proud of you all! :rocket:." \ "myschema://credentials?emojis=yes" ``` You can also ensure that the emoji engine is always turned on via the CLI using the switch `--interpret-emojis` or it's synonymous equivalent `-j` ```bash ### again ... :rocket: would become 🚀 and :+1: would become 👍 apprise --title=":+1: Great work everyone!" \ --body="So proud of you all! :rocket:." \ --interpret-emojis "myschema://credentials" ``` 1. In your Apprise Asset object, just set `emojis=True`. This becomes a bit more of a global switch and turns on the emoji support for all notifications regardless if the `emojis=yes` is set on the URL. ```python import apprise ### if set to True: ### Emoji Engine is enabled by default (but can be over-ridden on a per-url base ?emojis=no ### if set to False: ### Emoji Engine is never enabled (regardless of URL definition) ### if set to None (Default): ### Emoji Engine is enabled on demand (per URL definition only) asset = apprise.AppriseAsset(emojis=True) apobj = apprise.Apprise(asset=asset) ### The below will be passed through the emoji engine because the asset enabled it ### by default apobj.add("myschema://credentials") ### The below will never use the emoji engine, regardless if it is enabled or not: apobj.add("myschema://credentials?emojis=no") ``` - This is documented [here](https://github.com/caronc/apprise/wiki/CLI_Usage#ok_hand-emoji-support) as well on the wiki - Note that if the emoji engine is enabled, but the URL specifically says `?emojis=no`, then the engine will never be applied against it. - Telegram (`tgram://`) supports topics inline per target specified ([#&#8203;1028](https://github.com/caronc/apprise/issues/1028)) - Previously Supported: - `tgram://{bot_token}/` - `tgram://{bot_token}/{chat_id}/` - `tgram://{bot_token}/{chat_id1}/{chat_id2}/{chat_id3}/` - Newly Supported (in addition to the above): - `tgram://{bot_token}/{chat_id}:{topic}/` - `tgram://{bot_token}/{chat_id1}:topic1}/{chat_id2}:{topic2}/{chat_id3}:{topic3}/` - You are not required to provide a topic as it is purely optional: - `tgram://{bot_token}/{chat_id1}/{chat_id2}:{topic2}/{chat_id3}/` - Discord (`discord://`) support for `user` and `role` ping support ([#&#8203;1004](https://github.com/caronc/apprise/issues/1004)). - The discord message body can contain content such as the following to trigger the appropriate pings - user: `<@&#8203;123>` - role: `<@&#8203;&456>` - tag: `@everyone` ##### :heart: Life-Cycle Support - Removal of left-over Python 2 code ([#&#8203;1012](https://github.com/caronc/apprise/issues/1012)); thanks [@&#8203;a-detiste](https://github.com/a-detiste) ##### :bug: Bugfixes - n/a ##### Installation Instructions Apprise is available [on PyPI](https://pypi.org/project/apprise/) through *pip*: ```bash ### Install Apprise v1.7.0 from PyPI pip install apprise==1.7.0 ``` ### [`v1.6.0`](https://github.com/caronc/apprise/releases/tag/v1.6.0) [Compare Source](https://github.com/caronc/apprise/compare/v1.5.0...v1.6.0) #### Details ##### :mega: New Notification Services: - [Notifiarr](https://github.com/caronc/apprise/wiki/Notify_notifiarr) Support added. ([#&#8203;953](https://github.com/caronc/apprise/issues/953)) ##### :bulb: Features - `mqtt://` added log entry on successful transmission for both consistency and to align with other plugins ([#&#8203;946](https://github.com/caronc/apprise/issues/946)) - Refactored URLBase() object to prepare for API Webhook support in the Apprise API ([#&#8203;973](https://github.com/caronc/apprise/issues/973)) - A global change to handles `user=` directive a better and auto-solves ambiguous situations where the URL looks like this: `schema://username@hostname?user=username2` ([#&#8203;947](https://github.com/caronc/apprise/issues/947)). In the past the `username` would get lost and be trumped with `username2`. This is fine, but to may Apprise more versatile, Now in these circumstances Apprise will interpret it as: `schema://password@hostname?user=username`. This change does not disrupt other common formatting such as: - `schema://username:password@hostname` - `schema://username@hostname` - `schema://hostname?user=username&password=password` - Default Attachment maximum attachment size changed from 5MB to 1GB ([`be3baed`](https://github.com/caronc/apprise/commit/be3baed7e3d33bae973f1714df4ebbf65aa33f85)). This just makes it easier to use the API and CLI without issues. It lets the upstream service complain if the attachment is too large instead of Apprise restricting you. - `xml://` custom URL parsing better handles customized XML elements (inserted, renamed and deleted); ([#&#8203;945](https://github.com/caronc/apprise/issues/945)). - Configuration now supports *Groups*. You can now assign pre-defined *tags* to groups and trigger your notifications off of them. ([#&#8203;967](https://github.com/caronc/apprise/issues/967)) - Groups are processed at the end, so there is no requirement to define it at the front or end of your configuration files. - Group definitions stack as well (so defining the same group again with append any entries to what was already assigned. - You can assign more *groups* to *groups* - You can assign multiple groups in one single declaration - Here is a simple TEXT example: ```bash ``` ### assign "tag1" and "tag2" to the group "group" group = tag1, tag2 ### Group assigned to a group plus another tag groupA = group, tag3 ### Support multi-assignments (also stackable) ### both groupB and groupC would acquire tag1 and tag4 groupB, groupC = tag1, tag4 ### Append another tag into a group already defined group = tag4 ### Just some URLs defined as examples tag1 = mailto://credentials tag2 = mailto://credentials tag3 = mailto://credentials tag4 = mailto://credentials ``` If you were to send your notification to the tag `group` it would in fact trigger both `tag1`, `tag2`, and `tag4`: ```bash apprise -g 'group' -b "Test Message!" - Here is a simple YAML example: ```yaml ``` ### You must define a groups section groups: group: tag1, tag2 groupA: group, tag3 group: tag4 ### Support multi assignments: groupB, groupC: tag1, tag4 ### Another way you can define your groups: groupD: - tagX: Place an optional comment here; this is ignored and only tagX is retrieved - tagY: Another spot to place an optional comment ### You can also just list them: groupG: - tag1 - tag3 - group ### Define your tags as usual here: urls: - json://localhost: - tag: tag1 - form://localhost: - tag: tag2 - mailto://credentials: - tag: tag3 - mailto://credentials: - tag: tag4 ``` ##### :heart: Life-Cycle Support - [MSG91](https://github.com/caronc/apprise/wiki/Notify_msg91) Rewrite due to massive upstream changes to their API. ([#&#8203;966](https://github.com/caronc/apprise/issues/966)) - It's basically a completely new plugin with zero backwards compatibility with it's previous design. Functionality restored in this release. - Twitter plugin supports `x://` in addition to `tweet://` and `twitter://` to align with re-branding ([#&#8203;971](https://github.com/caronc/apprise/issues/971)) - [Matrix](https://github.com/caronc/apprise/wiki/Notify_matrix) updated to handle API v3. Attachment support not there, but works for v2. Simply add `?v=2` to your Apprise URL to use the older API for now. ([#&#8203;970](https://github.com/caronc/apprise/issues/970)) - Downgraded License to BSDv2 (BSDv3 is too strict) ([#&#8203;976](https://github.com/caronc/apprise/issues/976)) ##### :bug: Bugfixes - n/a ##### Installation Instructions Apprise is available [on PyPI](https://pypi.org/project/apprise/) through *pip*: ```bash ### Install Apprise v1.6.0 from PyPI pip install apprise==1.6.0 ``` ### [`v1.5.0`](https://github.com/caronc/apprise/releases/tag/v1.5.0) [Compare Source](https://github.com/caronc/apprise/compare/v1.4.5...v1.5.0) #### Details ##### :mega: New Notification Services: - [Pushy](https://github.com/caronc/apprise/wiki/Notify_pushy) Support added. ([#&#8203;902](https://github.com/caronc/apprise/issues/902)) - [PushDeer](https://github.com/caronc/apprise/wiki/Notify_pushdeer) Support added. ([#&#8203;904](https://github.com/caronc/apprise/issues/904)) - [PushMe](https://github.com/caronc/apprise/wiki/Notify_pushme) Support added. ([#&#8203;928](https://github.com/caronc/apprise/issues/928)) - [RSyslog](https://github.com/caronc/apprise/wiki/Notify_rsyslog) Support added. ([#&#8203;930](https://github.com/caronc/apprise/issues/930)) - `rsyslog://` split from the original `syslog://` Service ##### :bulb: Features - Matrix Attachment support! :books: :rocket: - Discord: - Rate Limiting (429 Error code) handling/support ([#&#8203;901](https://github.com/caronc/apprise/issues/901)) - basically retry our post once our limit timer has elapsed - Added `href=` variable that can be set on the Apprise URL which allows you to leverage the `embed` part of the API and turn your `title` into a hyperlink to the specified location. You can also use `url=` (as an alias to `href=`) ([#&#8203;927](https://github.com/caronc/apprise/issues/927)) - All notifications now no longer require a `body` **if** at least 1 `attachment` was provided. This expands the use of Apprise to not constrict you to always include a `body` when the only intent you had was to post an attachment. - ```bash ``` ### For the CLI you are still required to set the `--body` to "", but this no longer ### generates an error apprise --attach="/path/to/attachment.zip --body "" ``` - `Apprise.details()` improvements - consistency ([#&#8203;919](https://github.com/caronc/apprise/issues/919)) - `attachment_support` variable added ([#&#8203;916](https://github.com/caronc/apprise/issues/916)) - Added Matrix Attachment Support ([#&#8203;921](https://github.com/caronc/apprise/issues/921)) - Support for Serialization via Pickle Library added. ([#&#8203;929](https://github.com/caronc/apprise/issues/929)) ```python ``` ### as an example ... import apprise import pickle ### Instantiate our object apobj = apprise.Apprise() ### Add our URLs apobj.add("json://localhost") apobj.add("xml://localhost") apobj.add("form://localhost") apobj.add("mailto://user:pass@localhost") ### Now serialize our object for any purpose serialized = pickle.dumps(apobj) ### do what you will; write this to disk, send it to a remote ### server, etc. ### We can re-load our serialized content and turn it back into ### and object like so: apobj_n2 = pickle.loads(serialized) ##### :heart: Life-Cycle Support - Python 3.11 `getdefaultlocale()` deprecation warnings now handled (#&#8203;754) - Gitter support removed as it is now leveraging [Matrix which Apprise already supports](https://github.com/caronc/apprise/wiki/Notify_matrix). (#&#8203;924) ##### :bug: Bugfixes - Reddit RateLimit variables should be unique per instance (d7a5a60508c9fa57f8dfce9cf419973fbe86dbb0) - `&nbsp;` placed in the Title/Subject of some notifications; this has now been fixed. (#&#8203;914) - `gettext()` no longer installs `_` into the global namespace, but instead keeps the `_` at an `apprise` module scope. (#&#8203;821) ##### Installation Instructions Apprise is available [on PyPI](https://pypi.org/project/apprise/) through _pip_: ```bash ### Install Apprise v1.5.0 from PyPI pip install apprise==1.5.0 </details> <details> <summary>aws/aws-lambda-python-runtime-interface-client (awslambdaric)</summary> ### [`v2.0.11`](https://github.com/aws/aws-lambda-python-runtime-interface-client/releases/tag/2.0.11): AWS Lambda Runtime Interface Client for Python v2.0.11 [Compare Source](https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.10...2.0.11) #### What's Changed - Upgrade simplejson to `3.18.4` by [@&#8203;kpark-hrp](https://github.com/kpark-hrp) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/136 - Bump to version 2.0.11. by [@&#8203;briensea](https://github.com/briensea) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/137 #### New Contributors - [@&#8203;kpark-hrp](https://github.com/kpark-hrp) made their first contribution in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/136 **Full Changelog**: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.10...2.0.11 ### [`v2.0.10`](https://github.com/aws/aws-lambda-python-runtime-interface-client/releases/tag/2.0.10): AWS Lambda Runtime Interface Client for Python v2.0.10 [Compare Source](https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.9...2.0.10) #### What's Changed - Update format of unhandled exception warning message. by [@&#8203;briensea](https://github.com/briensea) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/132 - Bump version to 2.0.10. by [@&#8203;briensea](https://github.com/briensea) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/133 **Full Changelog**: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.9...2.0.10 ### [`v2.0.9`](https://github.com/aws/aws-lambda-python-runtime-interface-client/releases/tag/2.0.9): AWS Lambda Runtime Interface Client for Python v2.0.9 [Compare Source](https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.8...2.0.9) #### What's Changed - Log warning on unhandled exception. by [@&#8203;briensea](https://github.com/briensea) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/120 - Bump version to 2.0.9 by [@&#8203;briensea](https://github.com/briensea) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/131 **Full Changelog**: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.8...2.0.9 ### [`v2.0.8`](https://github.com/aws/aws-lambda-python-runtime-interface-client/releases/tag/2.0.8): AWS Lambda Runtime Interface Client for Python v2.0.8 [Compare Source](https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.7...2.0.8) #### What's Changed - Onboarded Python3.12 ([#&#8203;118](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/118)) - Fix runtime_client blocking main thread from SIGTERM being handled. Enabled by default only for Python3.12 ([#&#8203;115](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/115)) by [@&#8203;tgsong](https://github.com/tgsong) ([#&#8203;124](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/124)) by [@&#8203;pushkarchawda](https://github.com/pushkarchawda) ([#&#8203;125](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/125)) by [@&#8203;alex-pewpew](https://github.com/alex-pewpew) - Use unicode chars instead of escape sequences in json encoder output. Enabled by default only for Python3.12 ([#&#8203;88](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/88)) by [@&#8203;mdsakalu](https://github.com/mdsakalu) ([#&#8203;122](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/122)) by [@&#8203;briensea](https://github.com/briensea) - Cold start improvements ([#&#8203;121](https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/121)) by [@&#8203;alex-pewpew](https://github.com/alex-pewpew) **Full Changelog**: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.7...2.0.8 ### [`v2.0.7`](https://github.com/aws/aws-lambda-python-runtime-interface-client/releases/tag/2.0.7): AWS Lambda Runtime Interface Client for Python v2.0.7 [Compare Source](https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.6...2.0.7) #### What's Changed - Use AWS_LAMBDA_LOG_LEVEL env var to set log level for text format by [@&#8203;kotyara1005](https://github.com/kotyara1005) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/111 - Bump version to 2.0.7 by [@&#8203;alex-pewpew](https://github.com/alex-pewpew) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/112 **Full Changelog**: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.6...2.0.7 ### [`v2.0.6`](https://github.com/aws/aws-lambda-python-runtime-interface-client/releases/tag/2.0.6): AWS Lambda Runtime Interface Client for Python v2.0.6 [Compare Source](https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.5...2.0.6) #### What's Changed - Emit logs in JSON format by [@&#8203;kotyara1005](https://github.com/kotyara1005) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/101 - Bunp version to 2.0.6. by [@&#8203;briensea](https://github.com/briensea) in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/110 #### New Contributors - [@&#8203;kotyara1005](https://github.com/kotyara1005) made their first contribution in https://github.com/aws/aws-lambda-python-runtime-interface-client/pull/101 **Full Changelog**: https://github.com/aws/aws-lambda-python-runtime-interface-client/compare/2.0.5...2.0.6 </details> <details> <summary>boto/boto3 (boto3)</summary> ### [`v1.34.78`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13478) [Compare Source](https://github.com/boto/boto3/compare/1.34.77...1.34.78) \======= - api-change:`b2bi`: \[`botocore`] Adding support for X12 5010 HIPAA EDI version and associated transaction sets. - api-change:`cleanrooms`: \[`botocore`] Feature: New schemaStatusDetails field to the existing Schema object that displays a status on Schema API responses to show whether a schema is queryable or not. New BatchGetSchemaAnalysisRule API to retrieve multiple schemaAnalysisRules using a single API call. - api-change:`ec2`: \[`botocore`] Amazon EC2 G6 instances powered by NVIDIA L4 Tensor Core GPUs can be used for a wide range of graphics-intensive and machine learning use cases. Gr6 instances also feature NVIDIA L4 GPUs and can be used for graphics workloads with higher memory requirements. - api-change:`emr-containers`: \[`botocore`] This release adds support for integration with EKS AccessEntry APIs to enable automatic Cluster Access for EMR on EKS. - api-change:`ivs`: \[`botocore`] API update to include an SRT ingest endpoint and passphrase for all channels. - api-change:`verifiedpermissions`: \[`botocore`] Adds GroupConfiguration field to Identity Source API's ### [`v1.34.77`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13477) [Compare Source](https://github.com/boto/boto3/compare/1.34.76...1.34.77) \======= - api-change:`cleanroomsml`: \[`botocore`] The release includes a public SDK for AWS Clean Rooms ML APIs, making them globally available to developers worldwide. - api-change:`cloudformation`: \[`botocore`] This release would return a new field - PolicyAction in cloudformation's existed DescribeChangeSetResponse, showing actions we are going to apply on the physical resource (e.g., Delete, Retain) according to the user's template - api-change:`datazone`: \[`botocore`] This release supports the feature of dataQuality to enrich asset with dataQualityResult in Amazon DataZone. - api-change:`docdb`: \[`botocore`] This release adds Global Cluster Switchover capability which enables you to change your global cluster's primary AWS Region, the region that serves writes, while preserving the replication between all regions in the global cluster. - api-change:`groundstation`: \[`botocore`] This release adds visibilityStartTime and visibilityEndTime to DescribeContact and ListContacts responses. - api-change:`lambda`: \[`botocore`] Add Ruby 3.3 (ruby3.3) support to AWS Lambda - api-change:`medialive`: \[`botocore`] Cmaf Ingest outputs are now supported in Media Live - api-change:`medical-imaging`: \[`botocore`] SearchImageSets API now supports following enhancements - Additional support for searching on UpdatedAt and SeriesInstanceUID - Support for searching existing filters between dates/times - Support for sorting the search result by Ascending/Descending - Additional parameters returned in the response - api-change:`transfer`: \[`botocore`] Add ability to specify Security Policies for SFTP Connectors ### [`v1.34.76`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13476) [Compare Source](https://github.com/boto/boto3/compare/1.34.75...1.34.76) \======= - api-change:`ecs`: \[`botocore`] Documentation only update for Amazon ECS. - api-change:`glue`: \[`botocore`] Adding View related fields to responses of read-only Table APIs. - api-change:`ivschat`: \[`botocore`] Doc-only update. Changed "Resources" to "Key Concepts" in docs and updated text. - api-change:`rolesanywhere`: \[`botocore`] This release increases the limit on the roleArns request parameter for the \*Profile APIs that support it. This parameter can now take up to 250 role ARNs. - api-change:`securityhub`: \[`botocore`] Documentation updates for AWS Security Hub ### [`v1.34.75`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13475) [Compare Source](https://github.com/boto/boto3/compare/1.34.74...1.34.75) \======= - api-change:`cloudwatch`: \[`botocore`] This release adds support for CloudWatch Anomaly Detection on cross-account metrics. SingleMetricAnomalyDetector and MetricDataQuery inputs to Anomaly Detection APIs now take an optional AccountId field. - api-change:`datazone`: \[`botocore`] This release supports the feature of AI recommendations for descriptions to enrich the business data catalog in Amazon DataZone. - api-change:`deadline`: \[`botocore`] AWS Deadline Cloud is a new fully managed service that helps customers set up, deploy, and scale rendering projects in minutes, so they can improve the efficiency of their rendering pipelines and take on more projects. - api-change:`emr`: \[`botocore`] This release fixes a broken link in the documentation. - api-change:`lightsail`: \[`botocore`] This release adds support to upgrade the TLS version of the distribution. ### [`v1.34.74`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13474) [Compare Source](https://github.com/boto/boto3/compare/1.34.73...1.34.74) \======= - api-change:`b2bi`: \[`botocore`] Supporting new EDI X12 transaction sets for X12 versions 4010, 4030, and 5010. - api-change:`codebuild`: \[`botocore`] Add new fleet status code for Reserved Capacity. - api-change:`codeconnections`: \[`botocore`] Duplicating the CodeStar Connections service into the new, rebranded AWS CodeConnections service. - api-change:`internetmonitor`: \[`botocore`] This release adds support to allow customers to track cross account monitors through ListMonitor, GetMonitor, ListHealthEvents, GetHealthEvent, StartQuery APIs. - api-change:`iotwireless`: \[`botocore`] Add support for retrieving key historical and live metrics for LoRaWAN devices and gateways - api-change:`marketplace-catalog`: \[`botocore`] This release enhances the ListEntities API to support ResaleAuthorizationId filter and sort for OfferEntity in the request and the addition of a ResaleAuthorizationId field in the response of OfferSummary. - api-change:`neptune-graph`: \[`botocore`] Add the new API Start-Import-Task for Amazon Neptune Analytics. - api-change:`sagemaker`: \[`botocore`] This release adds support for custom images for the CodeEditor App on SageMaker Studio ### [`v1.34.73`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13473) [Compare Source](https://github.com/boto/boto3/compare/1.34.72...1.34.73) \======= - api-change:`codecatalyst`: \[`botocore`] This release adds support for understanding pending changes to subscriptions by including two new response parameters for the GetSubscription API for Amazon CodeCatalyst. - api-change:`compute-optimizer`: \[`botocore`] This release enables AWS Compute Optimizer to analyze and generate recommendations with a new customization preference, Memory Utilization. - api-change:`ec2`: \[`botocore`] Amazon EC2 C7gd, M7gd and R7gd metal instances with up to 3.8 TB of local NVMe-based SSD block-level storage have up to 45% improved real-time NVMe storage performance than comparable Graviton2-based instances. - api-change:`eks`: \[`botocore`] Add multiple customer error code to handle customer caused failure when managing EKS node groups - api-change:`guardduty`: \[`botocore`] Add EC2 support for GuardDuty Runtime Monitoring auto management. - api-change:`neptune-graph`: \[`botocore`] Update ImportTaskCancelled waiter to evaluate task state correctly and minor documentation changes. - api-change:`oam`: \[`botocore`] This release adds support for sharing AWS::InternetMonitor::Monitor resources. - api-change:`quicksight`: \[`botocore`] Amazon QuickSight: Adds support for setting up VPC Endpoint restrictions for accessing QuickSight Website. ### [`v1.34.72`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13472) [Compare Source](https://github.com/boto/boto3/compare/1.34.71...1.34.72) \======= - api-change:`batch`: \[`botocore`] This feature allows AWS Batch to support configuration of imagePullSecrets and allowPrivilegeEscalation for jobs running on EKS - api-change:`bedrock-agent`: \[`botocore`] This changes introduces metadata documents statistics and also updates the documentation for bedrock agent. - api-change:`bedrock-agent-runtime`: \[`botocore`] This release introduces filtering support on Retrieve and RetrieveAndGenerate APIs. - api-change:`elasticache`: \[`botocore`] Added minimum capacity to Amazon ElastiCache Serverless. This feature allows customer to ensure minimum capacity even without current load - api-change:`secretsmanager`: \[`botocore`] Documentation updates for Secrets Manager ### [`v1.34.71`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13471) [Compare Source](https://github.com/boto/boto3/compare/1.34.70...1.34.71) \======= - api-change:`bedrock-agent-runtime`: \[`botocore`] This release adds support to customize prompts sent through the RetrieveAndGenerate API in Agents for Amazon Bedrock. - api-change:`ce`: \[`botocore`] Adds support for backfill of cost allocation tags, with new StartCostAllocationTagBackfill and ListCostAllocationTagBackfillHistory API. - api-change:`ec2`: \[`botocore`] Documentation updates for Elastic Compute Cloud (EC2). - api-change:`ecs`: \[`botocore`] This is a documentation update for Amazon ECS. - api-change:`finspace`: \[`botocore`] Add new operation delete-kx-cluster-node and add status parameter to list-kx-cluster-node operation. ### [`v1.34.70`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13470) [Compare Source](https://github.com/boto/boto3/compare/1.34.69...1.34.70) \======= - api-change:`codebuild`: \[`botocore`] Supporting GitLab and GitLab Self Managed as source types in AWS CodeBuild. - api-change:`ec2`: \[`botocore`] Added support for ModifyInstanceMetadataDefaults and GetInstanceMetadataDefaults to set Instance Metadata Service account defaults - api-change:`ecs`: \[`botocore`] Documentation only update for Amazon ECS. - api-change:`emr-containers`: \[`botocore`] This release increases the number of supported job template parameters from 20 to 100. - api-change:`globalaccelerator`: \[`botocore`] AWS Global Accelerator now supports cross-account sharing for bring your own IP addresses. - api-change:`medialive`: \[`botocore`] Exposing TileMedia H265 options - api-change:`sagemaker`: \[`botocore`] Introduced support for the following new instance types on SageMaker Studio for JupyterLab and CodeEditor applications: m6i, m6id, m7i, c6i, c6id, c7i, r6i, r6id, r7i, and p5 ### [`v1.34.69`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13469) [Compare Source](https://github.com/boto/boto3/compare/1.34.68...1.34.69) \======= - api-change:`firehose`: \[`botocore`] Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy. - api-change:`kendra`: \[`botocore`] Documentation update, March 2024. Corrects some docs for Amazon Kendra. - api-change:`pricing`: \[`botocore`] Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs - api-change:`rolesanywhere`: \[`botocore`] This release relaxes constraints on the durationSeconds request parameter for the \*Profile APIs that support it. This parameter can now take on values that go up to 43200. - api-change:`securityhub`: \[`botocore`] Added new resource detail object to ASFF, including resource for LastKnownExploitAt ### [`v1.34.68`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13468) [Compare Source](https://github.com/boto/boto3/compare/1.34.67...1.34.68) \======= - api-change:`codeartifact`: \[`botocore`] This release adds Package groups to CodeArtifact so you can more conveniently configure package origin controls for multiple packages. ### [`v1.34.67`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13467) [Compare Source](https://github.com/boto/boto3/compare/1.34.66...1.34.67) \======= - api-change:`accessanalyzer`: \[`botocore`] This release adds support for policy validation and external access findings for DynamoDB tables and streams. IAM Access Analyzer helps you author functional and secure resource-based policies and identify cross-account access. Updated service API, documentation, and paginators. - api-change:`codebuild`: \[`botocore`] This release adds support for new webhook events (RELEASED and PRERELEASED) and filter types (TAG_NAME and RELEASE_NAME). - api-change:`connect`: \[`botocore`] This release updates the \*InstanceStorageConfig APIs to support a new ResourceType: REAL_TIME_CONTACT_ANALYSIS_CHAT_SEGMENTS. Use this resource type to enable streaming for real-time analysis of chat contacts and to associate a Kinesis stream where real-time analysis chat segments will be published. - api-change:`dynamodb`: \[`botocore`] This release introduces 3 new APIs ('GetResourcePolicy', 'PutResourcePolicy' and 'DeleteResourcePolicy') and modifies the existing 'CreateTable' API for the resource-based policy support. It also modifies several APIs to accept a 'TableArn' for the 'TableName' parameter. - api-change:`managedblockchain-query`: \[`botocore`] AMB Query: update GetTransaction to include transactionId as input - api-change:`savingsplans`: \[`botocore`] Introducing the Savings Plans Return feature enabling customers to return their Savings Plans within 7 days of purchase. ### [`v1.34.66`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13466) [Compare Source](https://github.com/boto/boto3/compare/1.34.65...1.34.66) \======= - api-change:`cloudformation`: \[`botocore`] Documentation update, March 2024. Corrects some formatting. - api-change:`ec2`: \[`botocore`] This release adds the new DescribeMacHosts API operation for getting information about EC2 Mac Dedicated Hosts. Users can now see the latest macOS versions that their underlying Apple Mac can support without needing to be updated. - api-change:`finspace`: \[`botocore`] Adding new attributes readWrite and onDemand to dataview models for Database Maintenance operations. - api-change:`logs`: \[`botocore`] Update LogSamples field in Anomaly model to be a list of LogEvent - api-change:`managedblockchain-query`: \[`botocore`] Introduces a new API for Amazon Managed Blockchain Query: ListFilteredTransactionEvents. ### [`v1.34.65`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13465) [Compare Source](https://github.com/boto/boto3/compare/1.34.64...1.34.65) \======= - api-change:`cloudformation`: \[`botocore`] This release supports for a new API ListStackSetAutoDeploymentTargets, which provider auto-deployment configuration as a describable resource. Customers can now view the specific combinations of regions and OUs that are being auto-deployed. - api-change:`kms`: \[`botocore`] Adds the ability to use the default policy name by omitting the policyName parameter in calls to PutKeyPolicy and GetKeyPolicy - api-change:`mediatailor`: \[`botocore`] This release adds support to allow customers to show different content within a channel depending on metadata associated with the viewer. - api-change:`rds`: \[`botocore`] This release launches the ModifyIntegration API and support for data filtering for zero-ETL Integrations. - api-change:`s3`: \[`botocore`] Fix two issues with response root node names. - api-change:`timestream-query`: \[`botocore`] Documentation updates, March 2024 ### [`v1.34.64`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13464) [Compare Source](https://github.com/boto/boto3/compare/1.34.63...1.34.64) \======= - api-change:`backup`: \[`botocore`] This release introduces a boolean attribute ManagedByAWSBackupOnly as part of ListRecoveryPointsByResource api to filter the recovery points based on ownership. This attribute can be used to filter out the recovery points protected by AWSBackup. - api-change:`codebuild`: \[`botocore`] AWS CodeBuild now supports overflow behavior on Reserved Capacity. - api-change:`connect`: \[`botocore`] This release adds Hierarchy based Access Control fields to Security Profile public APIs and adds support for UserAttributeFilter to SearchUsers API. - api-change:`ec2`: \[`botocore`] Add media accelerator and neuron device information on the describe instance types API. - api-change:`kinesisanalyticsv2`: \[`botocore`] Support for Flink 1.18 in Managed Service for Apache Flink - api-change:`s3`: \[`botocore`] Documentation updates for Amazon S3. - api-change:`sagemaker`: \[`botocore`] Adds m6i, m6id, m7i, c6i, c6id, c7i, r6i r6id, r7i, p5 instance type support to Sagemaker Notebook Instances and miscellaneous wording fixes for previous Sagemaker documentation. - api-change:`workspaces-thin-client`: \[`botocore`] Removed unused parameter kmsKeyArn from UpdateDeviceRequest ### [`v1.34.63`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13463) [Compare Source](https://github.com/boto/boto3/compare/1.34.62...1.34.63) \======= - api-change:`amplify`: \[`botocore`] Documentation updates for Amplify. Identifies the APIs available only to apps created using Amplify Gen 1. - api-change:`ec2-instance-connect`: \[`botocore`] This release includes a new exception type "SerialConsoleSessionUnsupportedException" for SendSerialConsoleSSHPublicKey API. - api-change:`elbv2`: \[`botocore`] This release allows you to configure HTTP client keep-alive duration for communication between clients and Application Load Balancers. - api-change:`fis`: \[`botocore`] This release adds support for previewing target resources before running a FIS experiment. It also adds resource ARNs for actions, experiments, and experiment templates to API responses. - api-change:`iot-roborunner`: \[`botocore`] The iot-roborunner client has been removed following the deprecation of the service. - api-change:`rds`: \[`botocore`] Updates Amazon RDS documentation for EBCDIC collation for RDS for Db2. - api-change:`secretsmanager`: \[`botocore`] Doc only update for Secrets Manager - api-change:`timestream-influxdb`: \[`botocore`] This is the initial SDK release for Amazon Timestream for InfluxDB. Amazon Timestream for InfluxDB is a new time-series database engine that makes it easy for application developers and DevOps teams to run InfluxDB databases on AWS for near real-time time-series applications using open source APIs. - enhancement:`urllib3`: \[`botocore`] Added support for urllib3 2.2.1+ in Python 3.10+ ### [`v1.34.62`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13462) [Compare Source](https://github.com/boto/boto3/compare/1.34.61...1.34.62) \======= - api-change:`ivs-realtime`: \[`botocore`] adds support for multiple new composition layout configuration options (grid, pip) - api-change:`kinesisanalyticsv2`: \[`botocore`] Support new RuntimeEnvironmentUpdate parameter within UpdateApplication API allowing callers to change the Flink version upon which their application runs. - api-change:`s3`: \[`botocore`] This release makes the default option for S3 on Outposts request signing to use the SigV4A algorithm when using AWS Common Runtime (CRT). ### [`v1.34.61`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13461) [Compare Source](https://github.com/boto/boto3/compare/1.34.60...1.34.61) \======= - api-change:`cloudformation`: \[`botocore`] CloudFormation documentation update for March, 2024 - api-change:`connect`: \[`botocore`] This release increases MaxResults limit to 500 in request for SearchUsers, SearchQueues and SearchRoutingProfiles APIs of Amazon Connect. - api-change:`ec2`: \[`botocore`] Documentation updates for Amazon EC2. - api-change:`kafka`: \[`botocore`] Added support for specifying the starting position of topic replication in MSK-Replicator. - api-change:`ssm`: \[`botocore`] March 2024 doc-only updates for Systems Manager. ### [`v1.34.60`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13460) [Compare Source](https://github.com/boto/boto3/compare/1.34.59...1.34.60) \======= - api-change:`codestar-connections`: \[`botocore`] Added a sync configuration enum to disable publishing of deployment status to source providers (PublishDeploymentStatus). Added a sync configuration enum (TriggerStackUpdateOn) to only trigger changes. - api-change:`elasticache`: \[`botocore`] Revisions to API text that are now to be carried over to SDK text, changing usages of "SFO" in code examples to "us-west-1", and some other typos. - api-change:`mediapackagev2`: \[`botocore`] This release enables customers to safely update their MediaPackage v2 channel groups, channels and origin endpoints using entity tags. ### [`v1.34.59`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13459) [Compare Source](https://github.com/boto/boto3/compare/1.34.58...1.34.59) \======= - api-change:`batch`: \[`botocore`] This release adds JobStateTimeLimitActions setting to the Job Queue API. It allows you to configure an action Batch can take for a blocking job in front of the queue after the defined period of time. The new parameter applies for ECS, EKS, and FARGATE Job Queues. - api-change:`bedrock-agent-runtime`: \[`botocore`] Documentation update for Bedrock Runtime Agent - api-change:`cloudtrail`: \[`botocore`] Added exceptions to CreateTrail, DescribeTrails, and ListImportFailures APIs. - api-change:`codebuild`: \[`botocore`] This release adds support for a new webhook event: PULL_REQUEST_CLOSED. - api-change:`cognito-idp`: \[`botocore`] Add ConcurrentModificationException to SetUserPoolMfaConfig - api-change:`guardduty`: \[`botocore`] Add RDS Provisioned and Serverless Usage types - api-change:`transfer`: \[`botocore`] Added DES_EDE3\_CBC to the list of supported encryption algorithms for messages sent with an AS2 connector. ### [`v1.34.58`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13458) [Compare Source](https://github.com/boto/boto3/compare/1.34.57...1.34.58) \======= - api-change:`appconfig`: \[`botocore`] AWS AppConfig now supports dynamic parameters, which enhance the functionality of AppConfig Extensions by allowing you to provide parameter values to your Extensions at the time you deploy your configuration. - api-change:`ec2`: \[`botocore`] This release adds an optional parameter to RegisterImage and CopyImage APIs to support tagging AMIs at the time of creation. - api-change:`grafana`: \[`botocore`] Adds support for the new GrafanaToken as part of the Amazon Managed Grafana Enterprise plugins upgrade to associate your AWS account with a Grafana Labs account. - api-change:`lambda`: \[`botocore`] Documentation updates for AWS Lambda - api-change:`payment-cryptography-data`: \[`botocore`] AWS Payment Cryptography EMV Decrypt Feature Release - api-change:`rds`: \[`botocore`] Updates Amazon RDS documentation for io2 storage for Multi-AZ DB clusters - api-change:`snowball`: \[`botocore`] Doc-only update for change to EKS-Anywhere ordering. - api-change:`wafv2`: \[`botocore`] You can increase the max request body inspection size for some regional resources. The size setting is in the web ACL association config. Also, the AWSManagedRulesBotControlRuleSet EnableMachineLearning setting now takes a Boolean instead of a primitive boolean type, for languages like Java. - api-change:`workspaces`: \[`botocore`] Added note for user decoupling ### [`v1.34.57`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13457) [Compare Source](https://github.com/boto/boto3/compare/1.34.56...1.34.57) \======= - api-change:`dynamodb`: \[`botocore`] Doc only updates for DynamoDB documentation - api-change:`imagebuilder`: \[`botocore`] Add PENDING status to Lifecycle Execution resource status. Add StartTime and EndTime to ListLifecycleExecutionResource API response. - api-change:`mwaa`: \[`botocore`] Amazon MWAA adds support for Apache Airflow v2.8.1. - api-change:`rds`: \[`botocore`] Updated the input of CreateDBCluster and ModifyDBCluster to support setting CA certificates. Updated the output of DescribeDBCluster to show current CA certificate setting value. - api-change:`redshift`: \[`botocore`] Update for documentation only. Covers port ranges, definition updates for data sharing, and definition updates to cluster-snapshot documentation. - api-change:`verifiedpermissions`: \[`botocore`] Deprecating details in favor of configuration for GetIdentitySource and ListIdentitySources APIs. ### [`v1.34.56`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13456) [Compare Source](https://github.com/boto/boto3/compare/1.34.55...1.34.56) \======= - api-change:`apigateway`: \[`botocore`] Documentation updates for Amazon API Gateway - api-change:`chatbot`: \[`botocore`] Minor update to documentation. - api-change:`organizations`: \[`botocore`] This release contains an endpoint addition - api-change:`sesv2`: \[`botocore`] Adds support for providing custom headers within SendEmail and SendBulkEmail for SESv2. ### [`v1.34.55`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13455) [Compare Source](https://github.com/boto/boto3/compare/1.34.54...1.34.55) \======= - api-change:`cloudformation`: \[`botocore`] Add DetailedStatus field to DescribeStackEvents and DescribeStacks APIs - api-change:`fsx`: \[`botocore`] Added support for creating FSx for NetApp ONTAP file systems with up to 12 HA pairs, delivering up to 72 GB/s of read throughput and 12 GB/s of write throughput. - api-change:`organizations`: \[`botocore`] Documentation update for AWS Organizations ### [`v1.34.54`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13454) [Compare Source](https://github.com/boto/boto3/compare/1.34.53...1.34.54) \======= - api-change:`accessanalyzer`: \[`botocore`] Fixed a typo in description field. - api-change:`autoscaling`: \[`botocore`] With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot Fleet improve the default price protection behavior of attribute-based instance type selection of Spot Instances, to consistently select from a wide range of instance types. - api-change:`ec2`: \[`botocore`] With this release, Amazon EC2 Auto Scaling groups, EC2 Fleet, and Spot Fleet improve the default price protection behavior of attribute-based instance type selection of Spot Instances, to consistently select from a wide range of instance types. ### [`v1.34.53`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13453) [Compare Source](https://github.com/boto/boto3/compare/1.34.52...1.34.53) \======= - api-change:`docdb-elastic`: \[`botocore`] Launched Elastic Clusters Readable Secondaries, Start/Stop, Configurable Shard Instance count, Automatic Backups and Snapshot Copying - api-change:`eks`: \[`botocore`] Added support for new AL2023 AMIs to the supported AMITypes. - api-change:`lexv2-models`: \[`botocore`] This release makes AMAZON.QnAIntent generally available in Amazon Lex. This generative AI feature leverages large language models available through Amazon Bedrock to automate frequently asked questions (FAQ) experience for end-users. - api-change:`migrationhuborchestrator`: \[`botocore`] Adds new CreateTemplate, UpdateTemplate and DeleteTemplate APIs. - api-change:`quicksight`: \[`botocore`] TooltipTarget for Combo chart visuals; ColumnConfiguration limit increase to 2000; Documentation Update - api-change:`sagemaker`: \[`botocore`] Adds support for ModelDataSource in Model Packages to support unzipped models. Adds support to specify SourceUri for models which allows registration of models without mandating a container for hosting. Using SourceUri, customers can decouple the model from hosting information during registration. - api-change:`securitylake`: \[`botocore`] Add capability to update the Data Lake's MetaStoreManager Role in order to perform required data lake updates to use Iceberg table format in their data lake or update the role for any other reason. ### [`v1.34.52`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13452) [Compare Source](https://github.com/boto/boto3/compare/1.34.51...1.34.52) \======= - api-change:`batch`: \[`botocore`] This release adds Batch support for configuration of multicontainer jobs in ECS, Fargate, and EKS. This support is available for all types of jobs, including both array jobs and multi-node parallel jobs. - api-change:`bedrock-agent-runtime`: \[`botocore`] This release adds support to override search strategy performed by the Retrieve and RetrieveAndGenerate APIs for Amazon Bedrock Agents - api-change:`ce`: \[`botocore`] This release introduces the new API 'GetApproximateUsageRecords', which retrieves estimated usage records for hourly granularity or resource-level data at daily granularity. - api-change:`ec2`: \[`botocore`] This release increases the range of MaxResults for GetNetworkInsightsAccessScopeAnalysisFindings to 1,000. - api-change:`iot`: \[`botocore`] This release reduces the maximum results returned per query invocation from 500 to 100 for the SearchIndex API. This change has no implications as long as the API is invoked until the nextToken is NULL. - api-change:`wafv2`: \[`botocore`] AWS WAF now supports configurable time windows for request aggregation with rate-based rules. Customers can now select time windows of 1 minute, 2 minutes or 10 minutes, in addition to the previously supported 5 minutes. ### [`v1.34.51`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13451) [Compare Source](https://github.com/boto/boto3/compare/1.34.50...1.34.51) \======= - api-change:`amplifyuibuilder`: \[`botocore`] We have added the ability to tag resources after they are created ### [`v1.34.50`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13450) [Compare Source](https://github.com/boto/boto3/compare/1.34.49...1.34.50) \======= - api-change:`apigateway`: \[`botocore`] Documentation updates for Amazon API Gateway. - api-change:`drs`: \[`botocore`] Added volume status to DescribeSourceServer replicated volumes. - api-change:`kafkaconnect`: \[`botocore`] Adds support for tagging, with new TagResource, UntagResource and ListTagsForResource APIs to manage tags and updates to existing APIs to allow tag on create. This release also adds support for the new DeleteWorkerConfiguration API. - api-change:`rds`: \[`botocore`] This release adds support for gp3 data volumes for Multi-AZ DB Clusters. ### [`v1.34.49`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13449) [Compare Source](https://github.com/boto/boto3/compare/1.34.48...1.34.49) \======= - api-change:`appsync`: \[`botocore`] Documentation only updates for AppSync - api-change:`qldb`: \[`botocore`] Clarify possible values for KmsKeyArn and EncryptionDescription. - api-change:`rds`: \[`botocore`] Add pattern and length based validations for DBShardGroupIdentifier - api-change:`rum`: \[`botocore`] Doc-only update for new RUM metrics that were added ### [`v1.34.48`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13448) [Compare Source](https://github.com/boto/boto3/compare/1.34.47...1.34.48) \======= - api-change:`internetmonitor`: \[`botocore`] This release adds IPv4 prefixes to health events - api-change:`kinesisvideo`: \[`botocore`] Increasing NextToken parameter length restriction for List APIs from 512 to 1024. ### [`v1.34.47`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13447) [Compare Source](https://github.com/boto/boto3/compare/1.34.46...1.34.47) \======= - api-change:`iotevents`: \[`botocore`] Increase the maximum length of descriptions for Inputs, Detector Models, and Alarm Models - api-change:`lookoutequipment`: \[`botocore`] This release adds a field exposing model quality to read APIs for models. It also adds a model quality field to the API response when creating an inference scheduler. - api-change:`medialive`: \[`botocore`] MediaLive now supports the ability to restart pipelines in a running channel. - api-change:`ssm`: \[`botocore`] This release adds support for sharing Systems Manager parameters with other AWS accounts. ### [`v1.34.46`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13446) [Compare Source](https://github.com/boto/boto3/compare/1.34.45...1.34.46) \======= - api-change:`dynamodb`: \[`botocore`] Publishing quick fix for doc only update. - api-change:`firehose`: \[`botocore`] This release updates a few Firehose related APIs. - api-change:`lambda`: \[`botocore`] Add .NET 8 (dotnet8) Runtime support to AWS Lambda. ### [`v1.34.45`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13445) [Compare Source](https://github.com/boto/boto3/compare/1.34.44...1.34.45) \======= - api-change:`amplify`: \[`botocore`] This release contains API changes that enable users to configure their Amplify domains with their own custom SSL/TLS certificate. - api-change:`chatbot`: \[`botocore`] This release adds support for AWS Chatbot. You can now monitor, operate, and troubleshoot your AWS resources with interactive ChatOps using the AWS SDK. - api-change:`config`: \[`botocore`] Documentation updates for the AWS Config CLI - api-change:`ivs`: \[`botocore`] Changed description for latencyMode in Create/UpdateChannel and Channel/ChannelSummary. - api-change:`keyspaces`: \[`botocore`] Documentation updates for Amazon Keyspaces - api-change:`mediatailor`: \[`botocore`] MediaTailor: marking #AdBreak.OffsetMillis as required. ### [`v1.34.44`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13444) [Compare Source](https://github.com/boto/boto3/compare/1.34.43...1.34.44) \======= - api-change:`connectparticipant`: \[`botocore`] Doc only update to GetTranscript API reference guide to inform users about presence of events in the chat transcript. - api-change:`emr`: \[`botocore`] adds fine grained control over Unhealthy Node Replacement to Amazon ElasticMapReduce - api-change:`firehose`: \[`botocore`] This release adds support for Data Message Extraction for decompressed CloudWatch logs, and to use a custom file extension or time zone for S3 destinations. - api-change:`lambda`: \[`botocore`] Documentation-only updates for Lambda to clarify a number of existing actions and properties. - api-change:`rds`: \[`botocore`] Doc only update for a valid option in DB parameter group - api-change:`sns`: \[`botocore`] This release marks phone numbers as sensitive inputs. ### [`v1.34.43`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13443) [Compare Source](https://github.com/boto/boto3/compare/1.34.42...1.34.43) \======= - api-change:`artifact`: \[`botocore`] This is the initial SDK release for AWS Artifact. AWS Artifact provides on-demand access to compliance and third-party compliance reports. This release includes access to List and Get reports, along with their metadata. This release also includes access to AWS Artifact notifications settings. - api-change:`codepipeline`: \[`botocore`] Add ability to override timeout on action level. - api-change:`detective`: \[`botocore`] Doc only updates for content enhancement - api-change:`guardduty`: \[`botocore`] Marked fields IpAddressV4, PrivateIpAddress, Email as Sensitive. - api-change:`healthlake`: \[`botocore`] This release adds a new response parameter, JobProgressReport, to the DescribeFHIRImportJob and ListFHIRImportJobs API operation. JobProgressReport provides details on the progress of the import job on the server. - api-change:`opensearch`: \[`botocore`] Adds additional supported instance types. - api-change:`polly`: \[`botocore`] Amazon Polly adds 1 new voice - Burcu (tr-TR) - api-change:`sagemaker`: \[`botocore`] This release adds a new API UpdateClusterSoftware for SageMaker HyperPod. This API allows users to patch HyperPod clusters with latest platform softwares. - api-change:`secretsmanager`: \[`botocore`] Doc only update for Secrets Manager - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.34.42`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13442) [Compare Source](https://github.com/boto/boto3/compare/1.34.41...1.34.42) \======= - api-change:`controltower`: \[`botocore`] Adds support for new Baseline and EnabledBaseline APIs for automating multi-account governance. - api-change:`lookoutequipment`: \[`botocore`] This feature allows customers to see pointwise model diagnostics results for their models. - api-change:`qbusiness`: \[`botocore`] This release adds the metadata-boosting feature, which allows customers to easily fine-tune the underlying ranking of retrieved RAG passages in order to optimize Q\&A answer relevance. It also adds new feedback reasons for the PutFeedback API. ### [`v1.34.41`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13441) [Compare Source](https://github.com/boto/boto3/compare/1.34.40...1.34.41) \======= - bugfix:ContainerProvider: \[`botocore`] Properly refreshes token from file from EKS in ContainerProvider - api-change:`lightsail`: \[`botocore`] This release adds support to upgrade the major version of a database. - api-change:`marketplace-catalog`: \[`botocore`] AWS Marketplace Catalog API now supports setting intent on requests - api-change:`resource-explorer-2`: \[`botocore`] Resource Explorer now uses newly supported IPv4 'amazonaws.com' endpoints by default. - api-change:`securitylake`: \[`botocore`] Documentation updates for Security Lake - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.34.40`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13440) [Compare Source](https://github.com/boto/boto3/compare/1.34.39...1.34.40) \======= - api-change:`appsync`: \[`botocore`] Adds support for new options on GraphqlAPIs, Resolvers and Data Sources for emitting Amazon CloudWatch metrics for enhanced monitoring of AppSync APIs. - api-change:`cloudwatch`: \[`botocore`] Update cloudwatch client to latest version - api-change:`neptune-graph`: \[`botocore`] Adding a new option "parameters" for data plane api ExecuteQuery to support running parameterized query via SDK. - api-change:`route53domains`: \[`botocore`] This release adds bill contact support for RegisterDomain, TransferDomain, UpdateDomainContact and GetDomainDetail API. ### [`v1.34.39`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13439) [Compare Source](https://github.com/boto/boto3/compare/1.34.38...1.34.39) \======= - api-change:`amp`: \[`botocore`] Overall documentation updates. - api-change:`batch`: \[`botocore`] This feature allows Batch to support configuration of repository credentials for jobs running on ECS - api-change:`braket`: \[`botocore`] Creating a job will result in DeviceOfflineException when using an offline device, and DeviceRetiredException when using a retired device. - api-change:`cost-optimization-hub`: \[`botocore`] Adding includeMemberAccounts field to the response of ListEnrollmentStatuses API. - api-change:`ecs`: \[`botocore`] Documentation only update for Amazon ECS. - api-change:`iot`: \[`botocore`] This release allows AWS IoT Core users to enable Online Certificate Status Protocol (OCSP) Stapling for TLS X.509 Server Certificates when creating and updating AWS IoT Domain Configurations with Custom Domain. - api-change:`pricing`: \[`botocore`] Add Throttling Exception to all APIs. ### [`v1.34.38`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13438) [Compare Source](https://github.com/boto/boto3/compare/1.34.37...1.34.38) \======= - api-change:`codepipeline`: \[`botocore`] Add ability to execute pipelines with new parallel & queued execution modes and add support for triggers with filtering on branches and file paths. - api-change:`quicksight`: \[`botocore`] General Interactions for Visuals; Waterfall Chart Color Configuration; Documentation Update - api-change:`workspaces`: \[`botocore`] This release introduces User-Decoupling feature. This feature allows Workspaces Core customers to provision workspaces without providing users. CreateWorkspaces and DescribeWorkspaces APIs will now take a new optional parameter "WorkspaceName". ### [`v1.34.37`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13437) [Compare Source](https://github.com/boto/boto3/compare/1.34.36...1.34.37) \======= - api-change:`datasync`: \[`botocore`] AWS DataSync now supports manifests for specifying files or objects to transfer. - api-change:`lexv2-models`: \[`botocore`] Update lexv2-models client to latest version - api-change:`redshift`: \[`botocore`] LisRecommendations API to fetch Amazon Redshift Advisor recommendations. ### [`v1.34.36`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13436) [Compare Source](https://github.com/boto/boto3/compare/1.34.35...1.34.36) \======= - api-change:`appsync`: \[`botocore`] Support for environment variables in AppSync GraphQL APIs - api-change:`ecs`: \[`botocore`] This release is a documentation only update to address customer issues. - api-change:`es`: \[`botocore`] This release adds clear visibility to the customers on the changes that they make on the domain. - api-change:`logs`: \[`botocore`] This release adds a new field, logGroupArn, to the response of the logs:DescribeLogGroups action. - api-change:`opensearch`: \[`botocore`] This release adds clear visibility to the customers on the changes that they make on the domain. - api-change:`wafv2`: \[`botocore`] You can now delete an API key that you've created for use with your CAPTCHA JavaScript integration API. ### [`v1.34.35`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13435) [Compare Source](https://github.com/boto/boto3/compare/1.34.34...1.34.35) \======= - api-change:`glue`: \[`botocore`] Introduce Catalog Encryption Role within Glue Data Catalog Settings. Introduce SASL/PLAIN as an authentication method for Glue Kafka connections - api-change:`workspaces`: \[`botocore`] Added definitions of various WorkSpace states ### [`v1.34.34`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13434) [Compare Source](https://github.com/boto/boto3/compare/1.34.33...1.34.34) \======= - api-change:`dynamodb`: \[`botocore`] Any number of users can execute up to 50 concurrent restores (any type of restore) in a given account. - api-change:`sagemaker`: \[`botocore`] Amazon SageMaker Canvas adds GenerativeAiSettings support for CanvasAppSettings. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.34.33`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13433) [Compare Source](https://github.com/boto/boto3/compare/1.34.32...1.34.33) \======= - api-change:`cognito-idp`: \[`botocore`] Added CreateIdentityProvider and UpdateIdentityProvider details for new SAML IdP features - api-change:`ivs`: \[`botocore`] This release introduces a new resource Playback Restriction Policy which can be used to geo-restrict or domain-restrict channel stream playback when associated with a channel. New APIs to support this resource were introduced in the form of Create/Delete/Get/Update/List. - api-change:`managedblockchain-query`: \[`botocore`] This release adds support for transactions that have not reached finality. It also removes support for the status property from the response of the GetTransaction operation. You can use the confirmationStatus and executionStatus properties to determine the status of the transaction. - api-change:`mediaconvert`: \[`botocore`] This release includes support for broadcast-mixed audio description tracks. - api-change:`neptune-graph`: \[`botocore`] Adding new APIs in SDK for Amazon Neptune Analytics. These APIs include operations to execute, cancel, list queries and get the graph summary. ### [`v1.34.32`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13432) [Compare Source](https://github.com/boto/boto3/compare/1.34.31...1.34.32) \======= - api-change:`cloudformation`: \[`botocore`] CloudFormation IaC generator allows you to scan existing resources in your account and select resources to generate a template for a new or existing CloudFormation stack. - api-change:`elbv2`: \[`botocore`] Update elbv2 client to latest version - api-change:`glue`: \[`botocore`] Update page size limits for GetJobRuns and GetTriggers APIs. - api-change:`ssm`: \[`botocore`] This release adds an optional Duration parameter to StateManager Associations. This allows customers to specify how long an apply-only-on-cron association execution should run. Once the specified Duration is out all the ongoing cancellable commands or automations are cancelled. ### [`v1.34.31`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13431) [Compare Source](https://github.com/boto/boto3/compare/1.34.30...1.34.31) \======= - api-change:`datazone`: \[`botocore`] Add new skipDeletionCheck to DeleteDomain. Add new skipDeletionCheck to DeleteProject which also automatically deletes dependent objects - api-change:`route53`: \[`botocore`] Update the SDKs for text changes in the APIs. ### [`v1.34.30`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13430) [Compare Source](https://github.com/boto/boto3/compare/1.34.29...1.34.30) \======= - api-change:`autoscaling`: \[`botocore`] EC2 Auto Scaling customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type. - api-change:`comprehend`: \[`botocore`] Comprehend PII analysis now supports Spanish input documents. - api-change:`ec2`: \[`botocore`] EC2 Fleet customers who use attribute based instance-type selection can now intuitively define their Spot instances price protection limit as a percentage of the lowest priced On-Demand instance type. - api-change:`mwaa`: \[`botocore`] This release adds MAINTENANCE environment status for Amazon MWAA environments. - api-change:`rds`: \[`botocore`] Introduced support for the InsufficientDBInstanceCapacityFault error in the RDS RestoreDBClusterFromSnapshot and RestoreDBClusterToPointInTime API methods. This provides enhanced error handling, ensuring a more robust experience. - api-change:`snowball`: \[`botocore`] Modified description of createaddress to include direction to add path when providing a JSON file. ### [`v1.34.29`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13429) [Compare Source](https://github.com/boto/boto3/compare/1.34.28...1.34.29) \======= - api-change:`connect`: \[`botocore`] Update list and string length limits for predefined attributes. - api-change:`inspector2`: \[`botocore`] This release adds ECR container image scanning based on their lastRecordedPullTime. - api-change:`sagemaker`: \[`botocore`] Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs. ### [`v1.34.28`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13428) [Compare Source](https://github.com/boto/boto3/compare/1.34.27...1.34.28) \======= - api-change:`acm-pca`: \[`botocore`] AWS Private CA now supports an option to omit the CDP extension from issued certificates, when CRL revocation is enabled. - api-change:`lightsail`: \[`botocore`] This release adds support for IPv6-only instance plans. ### [`v1.34.27`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13427) [Compare Source](https://github.com/boto/boto3/compare/1.34.26...1.34.27) \======= - api-change:`ec2`: \[`botocore`] Introduced a new clientToken request parameter on CreateNetworkAcl and CreateRouteTable APIs. The clientToken parameter allows idempotent operations on the APIs. - api-change:`ecs`: \[`botocore`] Documentation updates for Amazon ECS. - api-change:`outposts`: \[`botocore`] DeviceSerialNumber parameter is now optional in StartConnection API - api-change:`rds`: \[`botocore`] This release adds support for Aurora Limitless Database. - api-change:`storagegateway`: \[`botocore`] Add DeprecationDate and SoftwareVersion to response of ListGateways. ### [`v1.34.26`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13426) [Compare Source](https://github.com/boto/boto3/compare/1.34.25...1.34.26) \======= - api-change:`inspector2`: \[`botocore`] This release adds support for CIS scans on EC2 instances. ### [`v1.34.25`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13425) [Compare Source](https://github.com/boto/boto3/compare/1.34.24...1.34.25) \======= - enhancement:documentation: \[`botocore`] Updates the GitHub issue creation link in our README ### [`v1.34.24`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13424) [Compare Source](https://github.com/boto/boto3/compare/1.34.23...1.34.24) \======= - api-change:`appconfigdata`: \[`botocore`] Fix FIPS Endpoints in aws-us-gov. - api-change:`cloud9`: \[`botocore`] Doc-only update around removing AL1 from list of available AMIs for Cloud9 - api-change:`cloudfront-keyvaluestore`: \[`botocore`] This release improves upon the DescribeKeyValueStore API by returning two additional fields, Status of the KeyValueStore and the FailureReason in case of failures during creation of KeyValueStore. - api-change:`connectcases`: \[`botocore`] This release adds the ability to view audit history on a case and introduces a new parameter, performedBy, for CreateCase and UpdateCase API's. - api-change:`ec2`: \[`botocore`] Documentation updates for Amazon EC2. - api-change:`ecs`: \[`botocore`] This release adds support for Transport Layer Security (TLS) and Configurable Timeout to ECS Service Connect. TLS facilitates privacy and data security for inter-service communications, while Configurable Timeout allows customized per-request timeout and idle timeout for Service Connect services. - api-change:`finspace`: \[`botocore`] Allow customer to set zip default through command line arguments. - api-change:`organizations`: \[`botocore`] Doc only update for quota increase change - api-change:`rds`: \[`botocore`] Introduced support for the InsufficientDBInstanceCapacityFault error in the RDS CreateDBCluster API method. This provides enhanced error handling, ensuring a more robust experience when creating database clusters with insufficient instance capacity. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.34.23`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13423) [Compare Source](https://github.com/boto/boto3/compare/1.34.22...1.34.23) \======= - api-change:`athena`: \[`botocore`] Introducing new NotebookS3LocationUri parameter to Athena ImportNotebook API. Payload is no longer required and either Payload or NotebookS3LocationUri needs to be provided (not both) for a successful ImportNotebook API call. If both are provided, an InvalidRequestException will be thrown. - api-change:`codebuild`: \[`botocore`] Release CodeBuild Reserved Capacity feature - api-change:`dynamodb`: \[`botocore`] This release adds support for including ApproximateCreationDateTimePrecision configurations in EnableKinesisStreamingDestination API, adds the same as an optional field in the response of DescribeKinesisStreamingDestination, and adds support for a new UpdateKinesisStreamingDestination API. - api-change:`qconnect`: \[`botocore`] Increased Quick Response name max length to 100 ### [`v1.34.22`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13422) [Compare Source](https://github.com/boto/boto3/compare/1.34.21...1.34.22) \======= - api-change:`b2bi`: \[`botocore`] Increasing TestMapping inputFileContent file size limit to 5MB and adding file size limit 250KB for TestParsing input file. This release also includes exposing InternalServerException for Tag APIs. - api-change:`cloudtrail`: \[`botocore`] This release adds a new API ListInsightsMetricData to retrieve metric data from CloudTrail Insights. - api-change:`connect`: \[`botocore`] GetMetricDataV2 now supports 3 groupings - api-change:`drs`: \[`botocore`] Removed invalid and unnecessary default values. - api-change:`firehose`: \[`botocore`] Allow support for Snowflake as a Kinesis Data Firehose delivery destination. - api-change:`sagemaker-featurestore-runtime`: \[`botocore`] Increase BatchGetRecord limits from 10 items to 100 items ### [`v1.34.21`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13421) [Compare Source](https://github.com/boto/boto3/compare/1.34.20...1.34.21) \======= - api-change:`dynamodb`: \[`botocore`] Updating note for enabling streams for UpdateTable. - api-change:`keyspaces`: \[`botocore`] This release adds support for Multi-Region Replication with provisioned tables, and Keyspaces auto scaling APIs ### [`v1.34.20`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13420) [Compare Source](https://github.com/boto/boto3/compare/1.34.19...1.34.20) \======= - api-change:`iot`: \[`botocore`] Revert release of LogTargetTypes - api-change:`iotfleetwise`: \[`botocore`] Updated APIs: SignalNodeType query parameter has been added to ListSignalCatalogNodesRequest and ListVehiclesResponse has been extended with attributes field. - api-change:`macie2`: \[`botocore`] This release adds support for analyzing Amazon S3 objects that are encrypted using dual-layer server-side encryption with AWS KMS keys (DSSE-KMS). It also adds support for reporting DSSE-KMS details in statistics and metadata about encryption settings for S3 buckets and objects. - api-change:`payment-cryptography`: \[`botocore`] Provide an additional option for key exchange using RSA wrap/unwrap in addition to tr-34/tr-31 in ImportKey and ExportKey operations. Added new key usage (type) TR31\_M1\_ISO\_9797\_1\_MAC_KEY, for use with Generate/VerifyMac dataplane operations with ISO9797 Algorithm 1 MAC calculations. - api-change:`personalize-runtime`: \[`botocore`] Documentation updates for Amazon Personalize - api-change:`personalize`: \[`botocore`] Documentation updates for Amazon Personalize. - api-change:`rekognition`: \[`botocore`] This release adds ContentType and TaxonomyLevel attributes to DetectModerationLabels and GetMediaAnalysisJob API responses. - api-change:`securityhub`: \[`botocore`] Documentation updates for AWS Security Hub ### [`v1.34.19`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13419) [Compare Source](https://github.com/boto/boto3/compare/1.34.18...1.34.19) \======= - api-change:`sagemaker`: \[`botocore`] This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts. ### [`v1.34.18`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13418) [Compare Source](https://github.com/boto/boto3/compare/1.34.17...1.34.18) \======= - api-change:`connect`: \[`botocore`] Supervisor Barge for Chat is now supported through the MonitorContact API. - api-change:`connectparticipant`: \[`botocore`] Introduce new Supervisor participant role - api-change:`location`: \[`botocore`] Location SDK documentation update. Added missing fonts to the MapConfiguration data type. Updated note for the SubMunicipality property in the place data type. - api-change:`mwaa`: \[`botocore`] This Amazon MWAA feature release includes new fields in CreateWebLoginToken response model. The new fields IamIdentity and AirflowIdentity will let you match identifications, as the Airflow identity length is currently hashed to 64 characters. - api-change:`s3control`: \[`botocore`] S3 On Outposts team adds dualstack endpoints support for S3Control and S3Outposts API calls. - api-change:`supplychain`: \[`botocore`] This release includes APIs CreateBillOfMaterialsImportJob and GetBillOfMaterialsImportJob. - api-change:`transfer`: \[`botocore`] AWS Transfer Family now supports static IP addresses for SFTP & AS2 connectors and for async MDNs on AS2 servers. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.34.17`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13417) [Compare Source](https://github.com/boto/boto3/compare/1.34.16...1.34.17) \======= - api-change:`ec2`: \[`botocore`] This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks. - api-change:`ecs`: \[`botocore`] This release adds support for adding an ElasticBlockStorage volume configurations in ECS RunTask/StartTask/CreateService/UpdateService APIs. The configuration allows for attaching EBS volumes to ECS Tasks. - api-change:`events`: \[`botocore`] Update events client to latest version - api-change:`iot`: \[`botocore`] Add ConflictException to Update APIs of AWS IoT Software Package Catalog - api-change:`iotfleetwise`: \[`botocore`] The following dataTypes have been removed: CUSTOMER_DECODED_INTERFACE in NetworkInterfaceType; CUSTOMER_DECODED_SIGNAL_INFO_IS_NULL in SignalDecoderFailureReason; CUSTOMER_DECODED_SIGNAL_NETWORK_INTERFACE_INFO_IS_NULL in NetworkInterfaceFailureReason; CUSTOMER_DECODED_SIGNAL in SignalDecoderType - api-change:`secretsmanager`: \[`botocore`] Doc only update for Secrets Manager - api-change:`workspaces`: \[`botocore`] Added AWS Workspaces RebootWorkspaces API - Extended Reboot documentation update ### [`v1.34.16`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13416) [Compare Source](https://github.com/boto/boto3/compare/1.34.15...1.34.16) \======= - api-change:`connectcampaigns`: \[`botocore`] Minor pattern updates for Campaign and Dial Request API fields. - api-change:`location`: \[`botocore`] This release adds API support for custom layers for the maps service APIs: CreateMap, UpdateMap, DescribeMap. - api-change:`logs`: \[`botocore`] Add support for account level subscription filter policies to PutAccountPolicy, DescribeAccountPolicies, and DeleteAccountPolicy APIs. Additionally, PutAccountPolicy has been modified with new optional "selectionCriteria" parameter for resource selection. - api-change:`qconnect`: \[`botocore`] QueryAssistant and GetRecommendations will be discontinued starting June 1, 2024. To receive generative responses after March 1, 2024 you will need to create a new Assistant in the Connect console and integrate the Amazon Q in Connect JavaScript library (amazon-q-connectjs) into your applications. - api-change:`redshift-serverless`: \[`botocore`] Updates to ConfigParameter for RSS workgroup, removal of use_fips_ssl - api-change:`route53`: \[`botocore`] Route53 now supports geoproximity routing in AWS regions - api-change:`wisdom`: \[`botocore`] QueryAssistant and GetRecommendations will be discontinued starting June 1, 2024. To receive generative responses after March 1, 2024 you will need to create a new Assistant in the Connect console and integrate the Amazon Q in Connect JavaScript library (amazon-q-connectjs) into your applications. ### [`v1.34.15`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13415) [Compare Source](https://github.com/boto/boto3/compare/1.34.14...1.34.15) \======= - api-change:`codebuild`: \[`botocore`] Aws CodeBuild now supports new compute type BUILD_GENERAL1\_XLARGE - api-change:`ec2`: \[`botocore`] Amazon EC2 R7iz bare metal instances are powered by custom 4th generation Intel Xeon Scalable processors. - api-change:`route53resolver`: \[`botocore`] This release adds support for query type configuration on firewall rules that enables customers for granular action (ALLOW, ALERT, BLOCK) by DNS query type. ### [`v1.34.14`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13414) [Compare Source](https://github.com/boto/boto3/compare/1.34.13...1.34.14) \======= - api-change:`connect`: \[`botocore`] Minor trait updates for User APIs - api-change:`kms`: \[`botocore`] Documentation updates for AWS Key Management Service (KMS). - api-change:`redshift-serverless`: \[`botocore`] use_fips_ssl and require_ssl parameter support for Workgroup, UpdateWorkgroup, and CreateWorkgroup ### [`v1.34.13`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13413) [Compare Source](https://github.com/boto/boto3/compare/1.34.12...1.34.13) \======= - api-change:`config`: \[`botocore`] Updated ResourceType enum with new resource types onboarded by AWS Config in November and December 2023. - api-change:`docdb`: \[`botocore`] Adding PerformanceInsightsEnabled and PerformanceInsightsKMSKeyId fields to DescribeDBInstances Response. - api-change:`ecs`: \[`botocore`] This release adds support for managed instance draining which facilitates graceful termination of Amazon ECS instances. - api-change:`es`: \[`botocore`] This release adds support for new or existing Amazon OpenSearch domains to enable TLS 1.3 or TLS 1.2 with perfect forward secrecy cipher suites for domain endpoints. - api-change:`lightsail`: \[`botocore`] This release adds support to set up an HTTPS endpoint on an instance. - api-change:`opensearch`: \[`botocore`] This release adds support for new or existing Amazon OpenSearch domains to enable TLS 1.3 or TLS 1.2 with perfect forward secrecy cipher suites for domain endpoints. - api-change:`sagemaker`: \[`botocore`] Adding support for provisioned throughput mode for SageMaker Feature Groups - api-change:`servicecatalog`: \[`botocore`] Added Idempotency token support to Service Catalog AssociateServiceActionWithProvisioningArtifact, DisassociateServiceActionFromProvisioningArtifact, DeleteServiceAction API - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.34.12`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13412) [Compare Source](https://github.com/boto/boto3/compare/1.34.11...1.34.12) \======= - api-change:`connect`: \[`botocore`] Amazon Connect, Contact Lens Evaluation API increase evaluation notes max length to 3072. - api-change:`mediaconvert`: \[`botocore`] This release includes video engine updates including HEVC improvements, support for ingesting VP9 encoded video in MP4 containers, and support for user-specified 3D LUTs. ### [`v1.34.11`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13411) [Compare Source](https://github.com/boto/boto3/compare/1.34.10...1.34.11) \======= - api-change:`apprunner`: \[`botocore`] AWS App Runner adds Python 3.11 and Node.js 18 runtimes. - api-change:`location`: \[`botocore`] This release introduces a new parameter to bypasses an API key's expiry conditions and delete the key. - api-change:`quicksight`: \[`botocore`] Add LinkEntityArn support for different partitions; Add UnsupportedUserEditionException in UpdateDashboardLinks API; Add support for New Reader Experience Topics ### [`v1.34.10`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13410) [Compare Source](https://github.com/boto/boto3/compare/1.34.9...1.34.10) \======= - api-change:`codestar-connections`: \[`botocore`] New integration with the GitLab self-managed provider type. - api-change:`kinesis-video-archived-media`: \[`botocore`] NoDataRetentionException thrown when GetImages requested for a Stream that does not retain data (that is, has a DataRetentionInHours of 0). - api-change:`sagemaker`: \[`botocore`] Amazon SageMaker Studio now supports Docker access from within app container ### [`v1.34.9`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1349) [Compare Source](https://github.com/boto/boto3/compare/1.34.8...1.34.9) \====== - api-change:`emr`: \[`botocore`] Update emr client to latest version ### [`v1.34.8`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1348) [Compare Source](https://github.com/boto/boto3/compare/1.34.7...1.34.8) \====== - api-change:`iam`: \[`botocore`] Documentation updates for AWS Identity and Access Management (IAM). - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.34.7`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13475) [Compare Source](https://github.com/boto/boto3/compare/1.34.6...1.34.7) \======= - api-change:`cloudwatch`: \[`botocore`] This release adds support for CloudWatch Anomaly Detection on cross-account metrics. SingleMetricAnomalyDetector and MetricDataQuery inputs to Anomaly Detection APIs now take an optional AccountId field. - api-change:`datazone`: \[`botocore`] This release supports the feature of AI recommendations for descriptions to enrich the business data catalog in Amazon DataZone. - api-change:`deadline`: \[`botocore`] AWS Deadline Cloud is a new fully managed service that helps customers set up, deploy, and scale rendering projects in minutes, so they can improve the efficiency of their rendering pipelines and take on more projects. - api-change:`emr`: \[`botocore`] This release fixes a broken link in the documentation. - api-change:`lightsail`: \[`botocore`] This release adds support to upgrade the TLS version of the distribution. ### [`v1.34.6`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13469) [Compare Source](https://github.com/boto/boto3/compare/1.34.5...1.34.6) \======= - api-change:`firehose`: \[`botocore`] Updates Amazon Firehose documentation for message regarding Enforcing Tags IAM Policy. - api-change:`kendra`: \[`botocore`] Documentation update, March 2024. Corrects some docs for Amazon Kendra. - api-change:`pricing`: \[`botocore`] Add ResourceNotFoundException to ListPriceLists and GetPriceListFileUrl APIs - api-change:`rolesanywhere`: \[`botocore`] This release relaxes constraints on the durationSeconds request parameter for the \*Profile APIs that support it. This parameter can now take on values that go up to 43200. - api-change:`securityhub`: \[`botocore`] Added new resource detail object to ASFF, including resource for LastKnownExploitAt ### [`v1.34.5`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13459) [Compare Source](https://github.com/boto/boto3/compare/1.34.4...1.34.5) \======= - api-change:`batch`: \[`botocore`] This release adds JobStateTimeLimitActions setting to the Job Queue API. It allows you to configure an action Batch can take for a blocking job in front of the queue after the defined period of time. The new parameter applies for ECS, EKS, and FARGATE Job Queues. - api-change:`bedrock-agent-runtime`: \[`botocore`] Documentation update for Bedrock Runtime Agent - api-change:`cloudtrail`: \[`botocore`] Added exceptions to CreateTrail, DescribeTrails, and ListImportFailures APIs. - api-change:`codebuild`: \[`botocore`] This release adds support for a new webhook event: PULL_REQUEST_CLOSED. - api-change:`cognito-idp`: \[`botocore`] Add ConcurrentModificationException to SetUserPoolMfaConfig - api-change:`guardduty`: \[`botocore`] Add RDS Provisioned and Serverless Usage types - api-change:`transfer`: \[`botocore`] Added DES_EDE3\_CBC to the list of supported encryption algorithms for messages sent with an AS2 connector. ### [`v1.34.4`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13449) [Compare Source](https://github.com/boto/boto3/compare/1.34.3...1.34.4) \======= - api-change:`appsync`: \[`botocore`] Documentation only updates for AppSync - api-change:`qldb`: \[`botocore`] Clarify possible values for KmsKeyArn and EncryptionDescription. - api-change:`rds`: \[`botocore`] Add pattern and length based validations for DBShardGroupIdentifier - api-change:`rum`: \[`botocore`] Doc-only update for new RUM metrics that were added ### [`v1.34.3`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13439) [Compare Source](https://github.com/boto/boto3/compare/1.34.2...1.34.3) \======= - api-change:`amp`: \[`botocore`] Overall documentation updates. - api-change:`batch`: \[`botocore`] This feature allows Batch to support configuration of repository credentials for jobs running on ECS - api-change:`braket`: \[`botocore`] Creating a job will result in DeviceOfflineException when using an offline device, and DeviceRetiredException when using a retired device. - api-change:`cost-optimization-hub`: \[`botocore`] Adding includeMemberAccounts field to the response of ListEnrollmentStatuses API. - api-change:`ecs`: \[`botocore`] Documentation only update for Amazon ECS. - api-change:`iot`: \[`botocore`] This release allows AWS IoT Core users to enable Online Certificate Status Protocol (OCSP) Stapling for TLS X.509 Server Certificates when creating and updating AWS IoT Domain Configurations with Custom Domain. - api-change:`pricing`: \[`botocore`] Add Throttling Exception to all APIs. ### [`v1.34.2`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13429) [Compare Source](https://github.com/boto/boto3/compare/1.34.1...1.34.2) \======= - api-change:`connect`: \[`botocore`] Update list and string length limits for predefined attributes. - api-change:`inspector2`: \[`botocore`] This release adds ECR container image scanning based on their lastRecordedPullTime. - api-change:`sagemaker`: \[`botocore`] Amazon SageMaker Automatic Model Tuning now provides an API to programmatically delete tuning jobs. ### [`v1.34.1`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13419) [Compare Source](https://github.com/boto/boto3/compare/1.34.0...1.34.1) \======= - api-change:`sagemaker`: \[`botocore`] This release will have ValidationException thrown if certain invalid app types are provided. The release will also throw ValidationException if more than 10 account ids are provided in VpcOnlyTrustedAccounts. ### [`v1.34.0`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1340) [Compare Source](https://github.com/boto/boto3/compare/1.33.13...1.34.0) \====== - feature:Python: End of support for Python 3.7 - feature:Python: \[`botocore`] End of support for Python 3.7 - api-change:`drs`: \[`botocore`] Adding AgentVersion to SourceServer and RecoveryInstance structures ### [`v1.33.13`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13313) [Compare Source](https://github.com/boto/boto3/compare/1.33.12...1.33.13) \======= - api-change:`imagebuilder`: \[`botocore`] This release adds the Image Workflows feature to give more flexibility and control over the image building and testing process. - api-change:`location`: \[`botocore`] This release 1) adds sub-municipality field in Places API for searching and getting places information, and 2) allows optimizing route calculation based on expected arrival time. - api-change:`logs`: \[`botocore`] This release introduces the StartLiveTail API to tail ingested logs in near real time. ### [`v1.33.12`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13312) [Compare Source](https://github.com/boto/boto3/compare/1.33.11...1.33.12) \======= - api-change:`neptune`: \[`botocore`] This release adds a new parameter configuration setting to the Neptune cluster related APIs that can be leveraged to switch between the underlying supported storage modes. - api-change:`pinpoint`: \[`botocore`] This release includes Amazon Pinpoint API documentation updates pertaining to campaign message sending rate limits. - api-change:`securityhub`: \[`botocore`] Added new resource detail objects to ASFF, including resources for AwsDynamoDbTable, AwsEc2ClientVpnEndpoint, AwsMskCluster, AwsS3AccessPoint, AwsS3Bucket - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.33.11`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13311) [Compare Source](https://github.com/boto/boto3/compare/1.33.10...1.33.11) \======= - api-change:`cloudwatch`: \[`botocore`] Update cloudwatch client to latest version - api-change:`ec2`: \[`botocore`] M2 Mac instances are built on Apple M2 Mac mini computers. I4i instances are powered by 3rd generation Intel Xeon Scalable processors. C7i compute optimized, M7i general purpose and R7i memory optimized instances are powered by custom 4th Generation Intel Xeon Scalable processors. - api-change:`finspace`: \[`botocore`] Releasing Scaling Group, Dataview, and Volume APIs ### [`v1.33.10`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13310) [Compare Source](https://github.com/boto/boto3/compare/1.33.9...1.33.10) \======= - api-change:`codedeploy`: \[`botocore`] This release adds support for two new CodeDeploy features: 1) zonal deployments for Amazon EC2 in-place deployments, 2) deployments triggered by Auto Scaling group termination lifecycle hook events. ### [`v1.33.9`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1339) [Compare Source](https://github.com/boto/boto3/compare/1.33.8...1.33.9) \====== - api-change:`backup`: \[`botocore`] AWS Backup - Features: Add VaultType to the output of DescribeRecoveryPoint, ListRecoveryPointByBackupVault API and add ResourceType to the input of ListRestoreJobs API - api-change:`comprehend`: \[`botocore`] Documentation updates for Trust and Safety features. - api-change:`connect`: \[`botocore`] Releasing Tagging Support for Instance Management APIS - api-change:`ec2`: \[`botocore`] Releasing the new cpuManufacturer attribute within the DescribeInstanceTypes API response which notifies our customers with information on who the Manufacturer is for the processor attached to the instance, for example: Intel. - api-change:`payment-cryptography`: \[`botocore`] AWS Payment Cryptography IPEK feature release ### [`v1.33.8`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1338) [Compare Source](https://github.com/boto/boto3/compare/1.33.7...1.33.8) \====== - api-change:`athena`: \[`botocore`] Adding IdentityCenter enabled request for interactive query - api-change:`cleanroomsml`: \[`botocore`] Updated service title from cleanroomsml to CleanRoomsML. - api-change:`cloudformation`: \[`botocore`] Documentation update, December 2023 - api-change:`ec2`: \[`botocore`] Adds A10G, T4G, and H100 as accelerator name options and Habana as an accelerator manufacturer option for attribute based selection ### [`v1.33.7`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1337) [Compare Source](https://github.com/boto/boto3/compare/1.33.6...1.33.7) \====== - api-change:`billingconductor`: \[`botocore`] This release adds the ability to specify a linked account of the billing group for the custom line item resource. - api-change:`braket`: \[`botocore`] This release enhances service support to create quantum tasks and hybrid jobs associated with Braket Direct Reservations. - api-change:`cloud9`: \[`botocore`] This release adds the requirement to include the imageId parameter in the CreateEnvironmentEC2 API call. - api-change:`cloudformation`: \[`botocore`] Including UPDATE_\* states as a success status for CreateStack waiter. - api-change:`finspace`: \[`botocore`] Release General Purpose type clusters - api-change:`medialive`: \[`botocore`] Adds support for custom color correction on channels using 3D LUT files. - api-change:`servicecatalog-appregistry`: \[`botocore`] Documentation-only updates for Dawn - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.33.6`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1336) [Compare Source](https://github.com/boto/boto3/compare/1.33.5...1.33.6) \====== - api-change:`qconnect`: \[`botocore`] This release adds the PutFeedback API and allows providing feedback against the specified assistant for the specified target. - api-change:`rbin`: \[`botocore`] Added resource identifier in the output and updated error handling. - api-change:`verifiedpermissions`: \[`botocore`] Adds description field to PolicyStore API's and namespaces field to GetSchema. ### [`v1.33.5`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1335) [Compare Source](https://github.com/boto/boto3/compare/1.33.4...1.33.5) \====== - api-change:`arc-zonal-shift`: \[`botocore`] This release adds a new capability, zonal autoshift. You can configure zonal autoshift so that AWS shifts traffic for a resource away from an Availability Zone, on your behalf, when AWS determines that there is an issue that could potentially affect customers in the Availability Zone. - api-change:`glue`: \[`botocore`] Adds observation and analyzer support to the GetDataQualityResult and BatchGetDataQualityResult APIs. - api-change:`sagemaker`: \[`botocore`] This release adds support for 1/ Code Editor, based on Code-OSS, Visual Studio Code Open Source, a new fully managed IDE option in SageMaker Studio 2/ JupyterLab, a new fully managed JupyterLab IDE experience in SageMaker Studio ### [`v1.33.4`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1334) [Compare Source](https://github.com/boto/boto3/compare/1.33.3...1.33.4) \====== - bugfix:`s3transfer`: Raise floor for `s3transfer` to 0.8.2 to avoid any conflicts with the awscrt - api-change:`marketplace-agreement`: \[`botocore`] The AWS Marketplace Agreement Service provides an API interface that helps AWS Marketplace sellers manage their agreements, including listing, filtering, and viewing details about their agreements. - api-change:`marketplace-catalog`: \[`botocore`] This release enhances the ListEntities API to support new entity type-specific strongly typed filters in the request and entity type-specific strongly typed summaries in the response. - api-change:`marketplace-deployment`: \[`botocore`] AWS Marketplace Deployment is a new service that provides essential features that facilitate the deployment of software, data, and services procured through AWS Marketplace. - api-change:`redshift-serverless`: \[`botocore`] This release adds the following support for Amazon Redshift Serverless: 1) cross-account cross-VPCs, 2) copying snapshots across Regions, 3) scheduling snapshot creation, and 4) restoring tables from a recovery point. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.33.3`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1333) [Compare Source](https://github.com/boto/boto3/compare/1.33.2...1.33.3) \====== - api-change:`application-autoscaling`: \[`botocore`] Amazon SageMaker customers can now use Application Auto Scaling to automatically scale the number of Inference Component copies across an endpoint to meet the varying demand of their workloads. - api-change:`cleanrooms`: \[`botocore`] AWS Clean Rooms now provides differential privacy to protect against user-identification attempts and machine learning modeling to allow two parties to identify similar users in their data. - api-change:`cleanroomsml`: \[`botocore`] Public Preview SDK release of AWS Clean Rooms ML APIs - api-change:`opensearch`: \[`botocore`] Launching Amazon OpenSearch Service support for new zero-ETL integration with Amazon S3. Customers can now manage their direct query data sources to Amazon S3 programatically - api-change:`opensearchserverless`: \[`botocore`] Amazon OpenSearch Serverless collections support an additional attribute called standby-replicas. This allows to specify whether a collection should have redundancy enabled. - api-change:`sagemaker-runtime`: \[`botocore`] Update sagemaker-runtime client to latest version - api-change:`sagemaker`: \[`botocore`] This release adds following support 1/ Improved SDK tooling for model deployment. 2/ New Inference Component based features to lower inference costs and latency 3/ SageMaker HyperPod management. 4/ Additional parameters for FM Fine Tuning in Autopilot - api-change:`sts`: \[`botocore`] Documentation updates for AWS Security Token Service. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.33.2`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1332) [Compare Source](https://github.com/boto/boto3/compare/1.33.1...1.33.2) \====== - api-change:`accessanalyzer`: \[`botocore`] This release adds support for external access findings for S3 directory buckets to help you easily identify cross-account access. Updated service API, documentation, and paginators. - api-change:`bedrock-agent-runtime`: \[`botocore`] This release introduces Agents for Amazon Bedrock Runtime - api-change:`bedrock-agent`: \[`botocore`] This release introduces Agents for Amazon Bedrock - api-change:`bedrock-runtime`: \[`botocore`] This release adds support for minor versions/aliases for invoke model identifier. - api-change:`bedrock`: \[`botocore`] This release adds support for customization types, model life cycle status and minor versions/aliases for model identifiers. - api-change:`connect`: \[`botocore`] Added support for following capabilities: Amazon Connect's in-app, web, and video calling. Two-way SMS integrations. Contact Lens real-time chat analytics feature. Amazon Connect Analytics Datalake capability. Capability to configure real time chat rules. - api-change:`customer-profiles`: \[`botocore`] This release introduces DetectProfileObjectType API to auto generate object type mapping. - api-change:`qbusiness`: \[`botocore`] Amazon Q - a generative AI powered application that your employees can use to ask questions and get answers from knowledge spread across disparate content repositories, summarize reports, write articles, take actions, and much more - all within their company's connected content repositories. - api-change:`qconnect`: \[`botocore`] Amazon Q in Connect, an LLM-enhanced evolution of Amazon Connect Wisdom. This release adds generative AI support to Amazon Q Connect QueryAssistant and GetRecommendations APIs. - api-change:`s3`: \[`botocore`] Adds support for S3 Express One Zone. - api-change:`s3control`: \[`botocore`] Adds support for S3 Express One Zone, and InvocationSchemaVersion 2.0 for S3 Batch Operations. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.33.1`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#13313) [Compare Source](https://github.com/boto/boto3/compare/1.33.0...1.33.1) \======= - api-change:`imagebuilder`: \[`botocore`] This release adds the Image Workflows feature to give more flexibility and control over the image building and testing process. - api-change:`location`: \[`botocore`] This release 1) adds sub-municipality field in Places API for searching and getting places information, and 2) allows optimizing route calculation based on expected arrival time. - api-change:`logs`: \[`botocore`] This release introduces the StartLiveTail API to tail ingested logs in near real time. ### [`v1.33.0`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1330) [Compare Source](https://github.com/boto/boto3/compare/1.29.7...1.33.0) \====== - enhancement:Versioning: Bump boto3 from 1.29.7 to 1.33.0 to match Botocore versioning scheme. - feature:`s3`: Boto3 will now opt into using the awscrt on select EC2 instance types for s3 transfers. - feature:Versioning: \[`botocore`] With the release of Botocore 1.33.0, Boto3 and Botocore will share the same version number. - api-change:`appsync`: \[`botocore`] This update enables introspection of Aurora cluster databases using the RDS Data API - api-change:`b2bi`: \[`botocore`] This is the initial SDK release for AWS B2B Data Interchange. - api-change:`backup`: \[`botocore`] AWS Backup now supports restore testing, a new feature that allows customers to automate restore testing and validating their backups. Additionally, this release adds support for EBS Snapshots Archive tier. - api-change:`controltower`: \[`botocore`] This release adds the following support: 1. The EnableControl API can configure controls that are configurable. 2. The GetEnabledControl API shows the configured parameters on an enabled control. 3. The new UpdateEnabledControl API can change parameters on an enabled control. - api-change:`efs`: \[`botocore`] Update efs client to latest version - api-change:`fis`: \[`botocore`] AWS FIS adds support for multi-account experiments & empty target resolution. This release also introduces the CreateTargetAccountConfiguration API that allows experiments across multiple AWS accounts, and the ListExperimentResolvedTargets API to list target details. - api-change:`glue`: \[`botocore`] add observations support to DQ CodeGen config model + update document for connectiontypes supported by ConnectorData entities - api-change:`rds`: \[`botocore`] Updates Amazon RDS documentation for support for RDS for Db2. - api-change:`securityhub`: \[`botocore`] Adds and updates APIs to support central configuration. This feature allows the Security Hub delegated administrator to configure Security Hub for their entire AWS Org across multiple regions from a home Region. With this release, findings also include account name and application metadata. - api-change:`transcribe`: \[`botocore`] This release adds support for AWS HealthScribe APIs within Amazon Transcribe - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.29.7`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1297) [Compare Source](https://github.com/boto/boto3/compare/1.29.6...1.29.7) \====== - enhancement:AWSCRT: \[`botocore`] Update awscrt version to 0.19.17 - api-change:`accessanalyzer`: \[`botocore`] IAM Access Analyzer now continuously monitors IAM roles and users in your AWS account or organization to generate findings for unused access. Additionally, IAM Access Analyzer now provides custom policy checks to validate that IAM policies adhere to your security standards ahead of deployments. - api-change:`amp`: \[`botocore`] This release adds support for the Amazon Managed Service for Prometheus collector, a fully managed, agentless Prometheus metrics scraping capability. - api-change:`bcm-data-exports`: \[`botocore`] Users can create, read, update, delete Exports of billing and cost management data. Users can get details of Export Executions and details of Tables for exporting. Tagging support is provided for Exports - api-change:`cloudtrail`: \[`botocore`] CloudTrail Lake now supports federating event data stores. giving users the ability to run queries against their event data using Amazon Athena. - api-change:`codestar-connections`: \[`botocore`] This release adds support for the CloudFormation Git sync feature. Git sync enables updating a CloudFormation stack from a template stored in a Git repository. - api-change:`compute-optimizer`: \[`botocore`] This release enables AWS Compute Optimizer to analyze and generate recommendations with customization and discounts preferences. - api-change:`config`: \[`botocore`] Support Periodic Recording for Configuration Recorder - api-change:`controltower`: \[`botocore`] Add APIs to create and manage a landing zone. - api-change:`cost-optimization-hub`: \[`botocore`] This release launches Cost Optimization Hub, a new AWS Billing and Cost Management feature that helps you consolidate and prioritize cost optimization recommendations across your AWS Organizations member accounts and AWS Regions, so that you can get the most out of your AWS spend. - api-change:`detective`: \[`botocore`] Added new APIs in Detective to support resource investigations - api-change:`ecs`: \[`botocore`] Adds a new 'type' property to the Setting structure. Adds a new AccountSetting - guardDutyActivate for ECS. - api-change:`efs`: \[`botocore`] Update efs client to latest version - api-change:`eks-auth`: \[`botocore`] This release adds support for EKS Pod Identity feature. EKS Pod Identity makes it easy for customers to obtain IAM permissions for their applications running in the EKS clusters. - api-change:`eks`: \[`botocore`] This release adds support for EKS Pod Identity feature. EKS Pod Identity makes it easy for customers to obtain IAM permissions for the applications running in their EKS clusters. - api-change:`elbv2`: \[`botocore`] Update elbv2 client to latest version - api-change:`freetier`: \[`botocore`] This is the initial SDK release for the AWS Free Tier GetFreeTierUsage API - api-change:`fsx`: \[`botocore`] Added support for FSx for ONTAP scale-out file systems and FlexGroup volumes. Added the HAPairs field and ThroughputCapacityPerHAPair for filesystem. Added AggregateConfiguration (containing Aggregates and ConstituentsPerAggregate) and SizeInBytes for volume. - api-change:`guardduty`: \[`botocore`] Add support for Runtime Monitoring for ECS and ECS-EC2. - api-change:`iotfleetwise`: \[`botocore`] AWS IoT FleetWise introduces new APIs for vision system data, such as data collected from cameras, radars, and lidars. You can now model and decode complex data types. - api-change:`lakeformation`: \[`botocore`] This release adds four new APIs "DescribeLakeFormationIdentityCenterConfiguration", "CreateLakeFormationIdentityCenterConfiguration", "DescribeLakeFormationIdentityCenterConfiguration", and "DeleteLakeFormationIdentityCenterConfiguration", and also updates the corresponding documentation. - api-change:`lexv2-models`: \[`botocore`] Update lexv2-models client to latest version - api-change:`lexv2-runtime`: \[`botocore`] Update lexv2-runtime client to latest version - api-change:`logs`: \[`botocore`] Added APIs to Create, Update, Get, List and Delete LogAnomalyDetectors and List and Update Anomalies in Detector. Added LogGroupClass attribute for LogGroups to classify loggroup as Standard loggroup with all capabilities or InfrequentAccess loggroup with limited capabilities. - api-change:`managedblockchain`: \[`botocore`] Add optional NetworkType property to Accessor APIs - api-change:`personalize-events`: \[`botocore`] This release enables PutActions and PutActionInteractions - api-change:`personalize-runtime`: \[`botocore`] Enables metadata in recommendations and next best action recommendations - api-change:`personalize`: \[`botocore`] Enables metadata in recommendations, recommendations with themes, and next best action recommendations - api-change:`quicksight`: \[`botocore`] This release launches new APIs for trusted identity propagation setup and supports creating datasources using trusted identity propagation as authentication method for QuickSight accounts configured with IAM Identity Center. - api-change:`redshift`: \[`botocore`] This release adds support for multi-data warehouse writes through data sharing. - api-change:`repostspace`: \[`botocore`] Initial release of AWS re:Post Private - api-change:`s3`: \[`botocore`] Adding new params - Key and Prefix, to S3 API operations for supporting S3 Access Grants. Note - These updates will not change any of the existing S3 API functionality. - api-change:`s3control`: \[`botocore`] Introduce Amazon S3 Access Grants, a new S3 access control feature that maps identities in directories such as Active Directory, or AWS Identity and Access Management (IAM) Principals, to datasets in S3. - api-change:`secretsmanager`: \[`botocore`] AWS Secrets Manager has released the BatchGetSecretValue API, which allows customers to fetch up to 20 Secrets with a single request using a list of secret names or filters. - api-change:`securityhub`: \[`botocore`] Adds and updates APIs to support customizable security controls. This feature allows Security Hub customers to provide custom parameters for security controls. With this release, findings for controls that support custom parameters will include the parameters used to generate the findings. - api-change:`stepfunctions`: \[`botocore`] Update stepfunctions client to latest version - api-change:`transcribe`: \[`botocore`] This release adds support for transcriptions from audio sources in 64 new languages and introduces generative call summarization in Transcribe Call Analytics (Post call) - api-change:`workspaces-thin-client`: \[`botocore`] Initial release of Amazon WorkSpaces Thin Client - api-change:`workspaces`: \[`botocore`] The release introduces Multi-Region Resilience one-way data replication that allows you to replicate data from your primary WorkSpace to a standby WorkSpace in another AWS Region. DescribeWorkspaces now returns the status of data replication. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.29.6`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1296) [Compare Source](https://github.com/boto/boto3/compare/1.29.5...1.29.6) \====== - bugfix:sqs: \[`botocore`] Rolled back recent change to wire format protocol - api-change:`kinesis`: \[`botocore`] This release adds support for resource based policies on streams and consumers. - api-change:`s3control`: \[`botocore`] Amazon S3 Batch Operations now manages buckets or prefixes in a single step. - api-change:`sagemaker`: \[`botocore`] This feature adds the end user license agreement status as a model access configuration parameter. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.29.5`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1295) [Compare Source](https://github.com/boto/boto3/compare/1.29.4...1.29.5) \====== - api-change:`cloudfront-keyvaluestore`: \[`botocore`] This release adds support for CloudFront KeyValueStore, a globally managed key value datastore associated with CloudFront Functions. - api-change:`cloudfront`: \[`botocore`] This release adds support for CloudFront KeyValueStore, a globally managed key value datastore associated with CloudFront Functions. - api-change:`ec2`: \[`botocore`] Documentation updates for Amazon EC2. - api-change:`inspector-scan`: \[`botocore`] This release adds support for the new Amazon Inspector Scan API. The new Inspector Scan API can synchronously scan SBOMs adhering to the CycloneDX v1.5 format. - api-change:`iotsitewise`: \[`botocore`] Adds 1/ user-defined unique identifier for asset and model metadata, 2/ asset model components, and 3/ query API for asset metadata and telemetry data. Supports 4/ multi variate anomaly detection using Amazon Lookout for Equipment, 5/ warm storage tier, and 6/ buffered ingestion of time series data. - api-change:`iottwinmaker`: \[`botocore`] This release adds following support. 1. New APIs for metadata bulk operations. 2. Modify the component type API to support composite component types - nesting component types within one another. 3. New list APIs for components and properties. 4. Support the larger scope digital twin modeling. - api-change:`s3`: \[`botocore`] Add support for automatic date based partitioning in S3 Server Access Logs. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.29.4`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1294) [Compare Source](https://github.com/boto/boto3/compare/1.29.3...1.29.4) \====== - enhancement:IMDS: \[`botocore`] Adds a config option to opt out of IMDSv1 fallback - api-change:`codestar-connections`: \[`botocore`] This release updates a few CodeStar Connections related APIs. - api-change:`docdb`: \[`botocore`] Amazon DocumentDB updates for new cluster storage configuration: Amazon DocumentDB I/O-Optimized. - api-change:`ec2`: \[`botocore`] This release adds support for Security group referencing over Transit gateways, enabling you to simplify Security group management and control of instance-to-instance traffic across VPCs that are connected by Transit gateway. ### [`v1.29.3`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1293) [Compare Source](https://github.com/boto/boto3/compare/1.29.2...1.29.3) \====== - api-change:`macie`: \[`botocore`] The macie client has been removed following the deprecation of the service. - api-change:`appmesh`: \[`botocore`] Change the default value of these fields from 0 to null: MaxConnections, MaxPendingRequests, MaxRequests, HealthCheckThreshold, PortNumber, and HealthCheckPolicy -> port. Users are not expected to perceive the change, except that badRequestException is thrown when required fields missing configured. - api-change:`athena`: \[`botocore`] Adding SerivicePreProcessing time metric - api-change:`cloud9`: \[`botocore`] A minor doc only update related to changing the date of an API change. - api-change:`cloudformation`: \[`botocore`] This release adds a new flag ImportExistingResources to CreateChangeSet. Specify this parameter on a CREATE- or UPDATE-type change set to import existing resources with custom names instead of recreating them. - api-change:`codepipeline`: \[`botocore`] CodePipeline now supports overriding source revisions to achieve manual re-deploy of a past revision - api-change:`codestar-connections`: \[`botocore`] This release adds support for the CloudFormation Git sync feature. Git sync enables updating a CloudFormation stack from a template stored in a Git repository. - api-change:`connect`: \[`botocore`] This release adds WISDOM_QUICK_RESPONSES as new IntegrationType of Connect IntegrationAssociation resource and bug fixes. - api-change:`dlm`: \[`botocore`] Added support for SAP HANA in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies with pre and post scripts. - api-change:`ec2`: \[`botocore`] This release adds new features for Amazon VPC IP Address Manager (IPAM) Allowing a choice between Free and Advanced Tiers, viewing public IP address insights across regions and in Amazon Cloudwatch, use IPAM to plan your subnet IPs within a VPC and bring your own autonomous system number to IPAM. - api-change:`ecr`: \[`botocore`] Documentation and operational updates for Amazon ECR, adding support for pull through cache rules for upstream registries that require authentication. - api-change:`emr`: \[`botocore`] Update emr client to latest version - api-change:`events`: \[`botocore`] Update events client to latest version - api-change:`internetmonitor`: \[`botocore`] Adds new querying capabilities for running data queries on a monitor - api-change:`ivs`: \[`botocore`] type & defaulting refinement to various range properties - api-change:`ivschat`: \[`botocore`] type & defaulting refinement to various range properties - api-change:`kinesisvideo`: \[`botocore`] Docs only build to bring up-to-date with public docs. - api-change:`location`: \[`botocore`] Remove default value and allow nullable for request parameters having minimum value larger than zero. - api-change:`medialive`: \[`botocore`] MediaLive has now added support for per-output static image overlay. - api-change:`mgn`: \[`botocore`] Removed invalid and unnecessary default values. - api-change:`osis`: \[`botocore`] Add support for enabling a persistent buffer when creating or updating an OpenSearch Ingestion pipeline. Add tags to Pipeline and PipelineSummary response models. - api-change:`pipes`: \[`botocore`] TargetParameters now properly supports BatchJobParameters.ArrayProperties.Size and BatchJobParameters.RetryStrategy.Attempts being optional, and EcsTaskParameters.Overrides.EphemeralStorage.SizeInGiB now properly required when setting EphemeralStorage - api-change:`rds`: \[`botocore`] This release adds support for option groups and replica enhancements to Amazon RDS Custom. - api-change:`redshift-serverless`: \[`botocore`] Updated SDK for Amazon Redshift Serverless, which provides the ability to configure a connection with IAM Identity Center to manage user and group access to databases. - api-change:`redshift`: \[`botocore`] Updated SDK for Amazon Redshift, which you can use to configure a connection with IAM Identity Center to manage access to databases. With these, you can create a connection through a managed application. You can also change a managed application, delete it, or get information about an existing one. - api-change:`s3`: \[`botocore`] Removes all default 0 values for numbers and false values for booleans - api-change:`sso-admin`: \[`botocore`] Improves support for configuring RefreshToken and TokenExchange grants on applications. - api-change:`sso-oidc`: \[`botocore`] Adding support for `sso-oauth:CreateTokenWithIAM`. - api-change:`sts`: \[`botocore`] API updates for the AWS Security Token Service - api-change:`trustedadvisor`: \[`botocore`] AWS Trusted Advisor introduces new APIs to enable you to programmatically access Trusted Advisor best practice checks, recommendations, and prioritized recommendations. Trusted Advisor APIs enable you to integrate Trusted Advisor with your operational tools to automate your workloads. - api-change:`verifiedpermissions`: \[`botocore`] Adding BatchIsAuthorized API which supports multiple authorization requests against a PolicyStore - api-change:`wisdom`: \[`botocore`] This release adds QuickResponse as a new Wisdom resource and Wisdom APIs for import, create, read, search, update and delete QuickResponse resources. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.29.2`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1292) [Compare Source](https://github.com/boto/boto3/compare/1.29.1...1.29.2) \====== - api-change:`codecatalyst`: \[`botocore`] This release includes updates to the Dev Environment APIs to include an optional vpcConnectionName parameter that supports using Dev Environments with Amazon VPC. - api-change:`dlm`: \[`botocore`] This release adds support for Amazon Data Lifecycle Manager default policies for EBS snapshots and EBS-backed AMIs. - api-change:`ec2`: \[`botocore`] Enable use of tenant-specific PublicSigningKeyUrl from device trust providers and onboard jumpcloud as a new device trust provider. - api-change:`fsx`: \[`botocore`] Enables customers to update their PerUnitStorageThroughput on their Lustre file systems. - api-change:`glue`: \[`botocore`] Introduces new column statistics APIs to support statistics generation for tables within the Glue Data Catalog. - api-change:`imagebuilder`: \[`botocore`] This release adds the Image Lifecycle Management feature to automate the process of deprecating, disabling and deleting outdated images and their associated resources. - api-change:`iot`: \[`botocore`] GA release the ability to index and search devices based on their GeoLocation data. With GeoQueries you can narrow your search to retrieve devices located in the desired geographic boundary. - api-change:`ivs-realtime`: \[`botocore`] This release introduces server side composition and recording for stages. - api-change:`kafka`: \[`botocore`] Added a new API response field which determines if there is an action required from the customer regarding their cluster. - api-change:`lambda`: \[`botocore`] Adds support for logging configuration in Lambda Functions. Customers will have more control how their function logs are captured and to which cloud watch log group they are delivered also. - api-change:`macie2`: \[`botocore`] This release adds support for configuring Macie to assume an IAM role when retrieving sample occurrences of sensitive data reported by findings. - api-change:`mediapackage`: \[`botocore`] DRM_TOP_LEVEL_COMPACT allows placing content protection elements at the MPD level and referenced at the AdaptationSet level - api-change:`pinpoint-sms-voice-v2`: \[`botocore`] Amazon Pinpoint now offers additional operations as part of version 2 of the SMS and voice APIs. This release includes 26 new APIs to create and manage phone number registrations, add verified destination numbers, and request sender IDs. - api-change:`polly`: \[`botocore`] Add new engine - long-form - dedicated for longer content, such as news articles, training materials, or marketing videos. - api-change:`quicksight`: \[`botocore`] Custom permission support for QuickSight roles; Three new datasources STARBURST, TRINO, BIGQUERY; Lenient mode changes the default behavior to allow for exporting and importing with certain UI allowed errors, Support for permissions and tags export and import. - api-change:`sagemaker`: \[`botocore`] Amazon SageMaker Studio now supports Trainium instance types - trn1.2xlarge, trn1.32xlarge, trn1n.32xlarge. - api-change:`ssm-incidents`: \[`botocore`] Introduces new APIs ListIncidentFindings and BatchGetIncidentFindings to use findings related to an incident. - api-change:`ssm`: \[`botocore`] This release introduces the ability to filter automation execution steps which have parent steps. In addition, runbook variable information is returned by GetAutomationExecution and parent step information is returned by the DescribeAutomationStepExecutions API. - api-change:`sso-admin`: \[`botocore`] Instances bound to a single AWS account, API operations for managing instances and applications, and assignments to applications are now supported. Trusted identity propagation is also supported, with new API operations for managing trusted token issuers and application grants and scopes. - api-change:`transfer`: \[`botocore`] Introduced S3StorageOptions for servers to enable directory listing optimizations and added Type fields to logical directory mappings. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.29.1`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1291) [Compare Source](https://github.com/boto/boto3/compare/1.29.0...1.29.1) \====== - enhancement:Package Size: \[`botocore`] The botocore .whl file distributed on PyPI now provides compressed service models to improve total size on disk. - api-change:`autoscaling`: \[`botocore`] This release introduces Instance Maintenance Policy, a new EC2 Auto Scaling capability that allows customers to define whether instances are launched before or after existing instances are terminated during instance replacement operations. - api-change:`cloudtrail`: \[`botocore`] The Lake Repricing feature lets customers configure a BillingMode for an event data store. The BillingMode determines the cost for ingesting and storing events and the default and maximum retention period for the event data store. - api-change:`codecatalyst`: \[`botocore`] This release adds functionality for retrieving information about workflows and workflow runs and starting workflow runs in Amazon CodeCatalyst. - api-change:`ec2`: \[`botocore`] AWS EBS now supports Snapshot Lock, giving users the ability to lock an EBS Snapshot to prohibit deletion of the snapshot. This release introduces the LockSnapshot, UnlockSnapshot & DescribeLockedSnapshots APIs to manage lock configuration for snapshots. The release also includes the dl2q\_24xlarge. - api-change:`finspace-data`: \[`botocore`] Adding deprecated trait to APIs in this name space. - api-change:`finspace`: \[`botocore`] Adding deprecated trait on Dataset Browser Environment APIs - api-change:`lambda`: \[`botocore`] Add Java 21 (java21) support to AWS Lambda - api-change:`mwaa`: \[`botocore`] This Amazon MWAA release adds support for customer-managed VPC endpoints. This lets you choose whether to create, and manage your environment's VPC endpoints, or to have Amazon MWAA create, and manage them for you. - api-change:`rds`: \[`botocore`] Updates Amazon RDS documentation for support for upgrading RDS for MySQL snapshots from version 5.7 to version 8.0. - api-change:`redshift`: \[`botocore`] The custom domain name SDK for Amazon Redshift provisioned clusters is updated with additional required parameters for modify and delete operations. Additionally, users can provide domain names with longer top-level domains. - api-change:`s3control`: \[`botocore`] Add 5 APIs to create, update, get, list, delete S3 Storage Lens group(eg. CreateStorageLensGroup), 3 APIs for tagging(TagResource,UntagResource,ListTagsForResource), and update to StorageLensConfiguration to allow metrics to be aggregated on Storage Lens groups. - api-change:`ssm-sap`: \[`botocore`] Update the default value of MaxResult to 50. ### [`v1.29.0`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#1290) [Compare Source](https://github.com/boto/boto3/compare/1.28.85...1.29.0) \====== - feature:ContainerProvider: \[`botocore`] Added Support for EKS container credentials - api-change:`backup`: \[`botocore`] AWS Backup - Features: Provide Job Summary for your backup activity. - api-change:`cleanrooms`: \[`botocore`] This feature provides the ability for the collaboration creator to configure either the member who can run queries or a different member in the collaboration to be billed for query compute costs. - api-change:`connect`: \[`botocore`] Introducing SegmentAttributes parameter for StartChatContact API - api-change:`glue`: \[`botocore`] Introduces new storage optimization APIs to support automatic compaction of Apache Iceberg tables. - api-change:`iot`: \[`botocore`] This release introduces new attributes in API CreateSecurityProfile, UpdateSecurityProfile and DescribeSecurityProfile to support management of Metrics Export for AWS IoT Device Defender Detect. - api-change:`lambda`: \[`botocore`] Add Python 3.12 (python3.12) support to AWS Lambda - api-change:`mediatailor`: \[`botocore`] Removed unnecessary default values. - api-change:`pipes`: \[`botocore`] Added support (via new LogConfiguration field in CreatePipe and UpdatePipe APIs) for logging to Amazon CloudWatch Logs, Amazon Simple Storage Service (Amazon S3), and Amazon Kinesis Data Firehose - api-change:`resource-explorer-2`: \[`botocore`] Resource Explorer supports multi-account search. You can now use Resource Explorer to search and discover resources across AWS accounts within your organization or organizational unit. - api-change:`sagemaker`: \[`botocore`] This release makes Model Registry Inference Specification fields as not required. - api-change:`signer`: \[`botocore`] Documentation updates for AWS Signer - api-change:`stepfunctions`: \[`botocore`] Update stepfunctions client to latest version - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.85`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12885) [Compare Source](https://github.com/boto/boto3/compare/1.28.84...1.28.85) \======= - enhancement:AWSCRT: \[`botocore`] Update awscrt version to 0.19.12 - api-change:`dataexchange`: \[`botocore`] Removed Required trait for DataSet.OriginDetails.ProductId. - api-change:`dms`: \[`botocore`] Added new Db2 LUW Target endpoint with related endpoint settings. New executeTimeout endpoint setting for mysql endpoint. New ReplicationDeprovisionTime field for serverless describe-replications. - api-change:`ec2`: \[`botocore`] Adds the new EC2 DescribeInstanceTopology API, which you can use to retrieve the network topology of your running instances on select platform types to determine their relative proximity to each other. - api-change:`ecs`: \[`botocore`] Adds a Client Token parameter to the ECS RunTask API. The Client Token parameter allows for idempotent RunTask requests. - api-change:`emr`: \[`botocore`] Update emr client to latest version - api-change:`servicecatalog-appregistry`: \[`botocore`] When the customer associates a resource collection to their application with this new feature, then a new application tag will be applied to all supported resources that are part of that collection. This allows customers to more easily find the application that is associated with those resources. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.84`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12884) [Compare Source](https://github.com/boto/boto3/compare/1.28.83...1.28.84) \======= - enhancement:AWSCRT: \[`botocore`] Update awscrt version to 0.19.10 - api-change:`controltower`: \[`botocore`] AWS Control Tower supports tagging for enabled controls. This release introduces TagResource, UntagResource and ListTagsForResource APIs to manage tags in existing enabled controls. It updates EnabledControl API to tag resources at creation time. - api-change:`cur`: \[`botocore`] This release adds support for tagging and customers can now tag report definitions. Additionally, ReportStatus is now added to report definition to show when the last delivered time stamp and if it succeeded or not. - api-change:`ec2`: \[`botocore`] EC2 adds API updates to enable ENA Express at instance launch time. - api-change:`fms`: \[`botocore`] Adds optimizeUnassociatedWebACL flag to ManagedServiceData, updates third-party firewall examples, and other minor documentation updates. - api-change:`marketplace-entitlement`: \[`botocore`] Update marketplace-entitlement client to latest version - api-change:`mediaconvert`: \[`botocore`] This release includes the ability to specify any input source as the primary input for corresponding follow modes, and allows users to specify fit and fill behaviors without resizing content. - api-change:`rds`: \[`botocore`] Updates Amazon RDS documentation for zero-ETL integrations. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.83`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12883) [Compare Source](https://github.com/boto/boto3/compare/1.28.82...1.28.83) \======= - api-change:`cloudformation`: \[`botocore`] Added new ConcurrencyMode feature for AWS CloudFormation StackSets for faster deployments to target accounts. - api-change:`cloudtrail`: \[`botocore`] The Insights in Lake feature lets customers enable CloudTrail Insights on a source CloudTrail Lake event data store and create a destination event data store to collect Insights events based on unusual management event activity in the source event data store. - api-change:`comprehend`: \[`botocore`] This release adds support for toxicity detection and prompt safety classification. - api-change:`connect`: \[`botocore`] This release adds the ability to integrate customer lambda functions with Connect attachments for scanning and updates the ListIntegrationAssociations API to support filtering on IntegrationArn. - api-change:`ec2`: \[`botocore`] AWS EBS now supports Block Public Access for EBS Snapshots. This release introduces the EnableSnapshotBlockPublicAccess, DisableSnapshotBlockPublicAccess and GetSnapshotBlockPublicAccessState APIs to manage account-level public access settings for EBS Snapshots in an AWS Region. - api-change:`eks`: \[`botocore`] Adding EKS Anywhere subscription related operations. - api-change:`lambda`: \[`botocore`] Add Custom runtime on Amazon Linux 2023 (provided.al2023) support to AWS Lambda. - api-change:`logs`: \[`botocore`] Update to support new APIs for delivery of logs from AWS services. - api-change:`omics`: \[`botocore`] Support UBAM filetype for Omics Storage and make referenceArn optional - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.82`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12882) [Compare Source](https://github.com/boto/boto3/compare/1.28.81...1.28.82) \======= - api-change:`sqs`: \[`botocore`] This release enables customers to call SQS using AWS JSON-1.0 protocol and bug fix. ### [`v1.28.81`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12881) [Compare Source](https://github.com/boto/boto3/compare/1.28.80...1.28.81) \======= - api-change:`connect`: \[`botocore`] This release clarifies in our public documentation that InstanceId is a requirement for SearchUsers API requests. - api-change:`connectcases`: \[`botocore`] This release adds the ability to add/view comment authors through CreateRelatedItem and SearchRelatedItems API. For more information see https://docs.aws.amazon.com/cases/latest/APIReference/Welcome.html - api-change:`datasync`: \[`botocore`] This change allows for 0 length access keys and secret keys for object storage locations. Users can now pass in empty string credentials. - api-change:`guardduty`: \[`botocore`] Added API support for new GuardDuty EKS Audit Log finding types. - api-change:`lambda`: \[`botocore`] Add Node 20 (nodejs20.x) support to AWS Lambda. - api-change:`lexv2-models`: \[`botocore`] Update lexv2-models client to latest version - api-change:`omics`: \[`botocore`] Adding Run UUID and Run Output URI: GetRun and StartRun API response has two new fields "uuid" and "runOutputUri". - api-change:`rds`: \[`botocore`] This Amazon RDS release adds support for patching the OS of an RDS Custom for Oracle DB instance. You can now upgrade the database or operating system using the modify-db-instance command. - api-change:`redshift-serverless`: \[`botocore`] Added a new parameter in the workgroup that helps you control your cost for compute resources. This feature provides a ceiling for RPUs that Amazon Redshift Serverless can scale up to. When automatic compute scaling is required, having a higher value for MaxRPU can enhance query throughput. - api-change:`resiliencehub`: \[`botocore`] AWS Resilience Hub enhances Resiliency Score, providing actionable recommendations to improve application resilience. Amazon Elastic Kubernetes Service (EKS) operational recommendations have been added to help improve the resilience posture of your applications. - api-change:`sqs`: \[`botocore`] This release enables customers to call SQS using AWS JSON-1.0 protocol. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.80`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12880) [Compare Source](https://github.com/boto/boto3/compare/1.28.79...1.28.80) \======= - api-change:`dataexchange`: \[`botocore`] Updated SendDataSetNotificationRequest Comment to be maximum length 4096. - api-change:`dlm`: \[`botocore`] Added support for pre and post scripts in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies. - api-change:`rds`: \[`botocore`] This Amazon RDS release adds support for the multi-tenant configuration. In this configuration, an RDS DB instance can contain multiple tenant databases. In RDS for Oracle, a tenant database is a pluggable database (PDB). - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.79`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12879) [Compare Source](https://github.com/boto/boto3/compare/1.28.78...1.28.79) \======= - api-change:`ce`: \[`botocore`] This release extends the GetReservationPurchaseRecommendation API to support recommendations for Amazon MemoryDB reservations. - api-change:`codebuild`: \[`botocore`] AWS CodeBuild now supports AWS Lambda compute. - api-change:`connect`: \[`botocore`] Added new API that allows Amazon Connect Outbound Campaigns to create contacts in Amazon Connect when ingesting your dial requests. - api-change:`docdb`: \[`botocore`] Update the input of CreateDBInstance and ModifyDBInstance to support setting CA Certificates. Update the output of DescribeDBInstance and DescribeDBEngineVersions to show current and supported CA certificates. - api-change:`iam`: \[`botocore`] Add partitional endpoint for iso-e. - api-change:`mwaa`: \[`botocore`] This release adds support for Apache Airflow version 2.7.2. This version release includes support for deferrable operators and triggers. - api-change:`polly`: \[`botocore`] Amazon Polly adds new US English voices - Danielle and Gregory. Danielle and Gregory are available as Neural voices only. - api-change:`route53`: \[`botocore`] Add partitional endpoints for iso-e and iso-f. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.78`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12878) [Compare Source](https://github.com/boto/boto3/compare/1.28.77...1.28.78) \======= - api-change:`config`: \[`botocore`] Updated ResourceType enum with new resource types onboarded by AWS Config in October 2023. - api-change:`connect`: \[`botocore`] Amazon Connect Chat introduces Create Persistent Contact Association API, allowing customers to choose when to resume previous conversations from previous chats, eliminating the need to repeat themselves and allowing agents to provide personalized service with access to entire conversation history. - api-change:`iotwireless`: \[`botocore`] Added LoRaWAN version 1.0.4 support - api-change:`launch-wizard`: \[`botocore`] AWS Launch Wizard is a service that helps reduce the time it takes to deploy applications to the cloud while providing a guided deployment experience. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.77`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12877) [Compare Source](https://github.com/boto/boto3/compare/1.28.76...1.28.77) \======= - api-change:`apprunner`: \[`botocore`] AWS App Runner now supports using dual-stack address type for the public endpoint of your incoming traffic. - api-change:`connect`: \[`botocore`] GetMetricDataV2 API: Update to include new metrics PERCENT_NON_TALK_TIME, PERCENT_TALK_TIME, PERCENT_TALK_TIME_AGENT, PERCENT_TALK_TIME_CUSTOMER - api-change:`gamelift`: \[`botocore`] Amazon GameLift adds support for shared credentials, which allows applications that are deployed on managed EC2 fleets to interact with other AWS resources. - api-change:`glue`: \[`botocore`] This release introduces Google BigQuery Source and Target in AWS Glue CodeGenConfigurationNode. - api-change:`network-firewall`: \[`botocore`] This release introduces the stateless rule analyzer, which enables you to analyze your stateless rules for asymmetric routing. - api-change:`quicksight`: \[`botocore`] This release introduces Float Decimal Type as SubType in QuickSight SPICE datasets and Custom week start and Custom timezone options in Analysis and Dashboard - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.76`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12876) [Compare Source](https://github.com/boto/boto3/compare/1.28.75...1.28.76) \======= - api-change:`connect`: \[`botocore`] Adds the BatchGetFlowAssociation API which returns flow associations (flow-resource) corresponding to the list of resourceArns supplied in the request. This release also adds IsDefault, LastModifiedRegion and LastModifiedTime fields to the responses of several Describe and List APIs. - api-change:`globalaccelerator`: \[`botocore`] Global Accelerator now support accelerators with cross account endpoints. - api-change:`rds`: \[`botocore`] This release adds support for customized networking resources to Amazon RDS Custom. - api-change:`redshift`: \[`botocore`] Added support for Multi-AZ deployments for Provisioned RA3 clusters that provide 99.99% SLA availability. - api-change:`sagemaker`: \[`botocore`] Support for batch transform input in Model dashboard ### [`v1.28.75`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12875) [Compare Source](https://github.com/boto/boto3/compare/1.28.74...1.28.75) \======= - api-change:`amplify`: \[`botocore`] Add backend field to CreateBranch and UpdateBranch requests. Add pagination support for ListApps, ListDomainAssociations, ListBranches, and ListJobs - api-change:`application-insights`: \[`botocore`] Automate attaching managed policies - api-change:`ec2`: \[`botocore`] Capacity Blocks for ML are a new EC2 purchasing option for reserving GPU instances on a future date to support short duration machine learning (ML) workloads. Capacity Blocks automatically place instances close together inside Amazon EC2 UltraClusters for low-latency, high-throughput networking. - api-change:`m2`: \[`botocore`] Added name filter ability for ListDataSets API, added ForceUpdate for Updating environment and BatchJob submission using S3BatchJobIdentifier - api-change:`neptunedata`: \[`botocore`] Minor change to not retry CancelledByUserException - api-change:`translate`: \[`botocore`] Added support for Brevity translation settings feature. ### [`v1.28.74`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12874) [Compare Source](https://github.com/boto/boto3/compare/1.28.73...1.28.74) \======= - api-change:`connect`: \[`botocore`] This release adds InstanceId field for phone number APIs. - api-change:`dataexchange`: \[`botocore`] We added a new API action: SendDataSetNotification. - api-change:`datasync`: \[`botocore`] Platform version changes to support AL1 deprecation initiative. - api-change:`finspace`: \[`botocore`] Introducing new API UpdateKxClusterCodeConfiguration, introducing new cache types for clusters and introducing new deployment modes for updating clusters. - api-change:`mediapackagev2`: \[`botocore`] This feature allows customers to create a combination of manifest filtering, startover and time delay configuration that applies to all egress requests by default. - api-change:`rds`: \[`botocore`] This release launches the CreateIntegration, DeleteIntegration, and DescribeIntegrations APIs to manage zero-ETL Integrations. - api-change:`redshift-serverless`: \[`botocore`] Added support for custom domain names for Amazon Redshift Serverless workgroups. This feature enables customers to create a custom domain name and use ACM to generate fully secure connections to it. - api-change:`resiliencehub`: \[`botocore`] Introduced the ability to filter applications by their last assessment date and time and have included metrics for the application's estimated workload Recovery Time Objective (RTO) and estimated workload Recovery Point Objective (RPO). - api-change:`s3outposts`: \[`botocore`] Updated ListOutpostsWithS3 API response to include S3OutpostArn for use with AWS RAM. - api-change:`wisdom`: \[`botocore`] This release added necessary API documents on creating a Wisdom knowledge base to integrate with S3. ### [`v1.28.73`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12873) [Compare Source](https://github.com/boto/boto3/compare/1.28.72...1.28.73) \======= - api-change:`emr`: \[`botocore`] Update emr client to latest version - api-change:`neptune`: \[`botocore`] Update TdeCredentialPassword type to SensitiveString - api-change:`pinpoint`: \[`botocore`] Updated documentation to describe the case insensitivity for EndpointIds. - api-change:`redshift`: \[`botocore`] added support to create a dual stack cluster - api-change:`wafv2`: \[`botocore`] Updates the descriptions for the calls that manage web ACL associations, to provide information for customer-managed IAM policies. ### [`v1.28.72`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12872) [Compare Source](https://github.com/boto/boto3/compare/1.28.71...1.28.72) \======= - api-change:`appstream`: \[`botocore`] This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance. - api-change:`ec2`: \[`botocore`] Launching GetSecurityGroupsForVpc API. This API gets security groups that can be associated by the AWS account making the request with network interfaces in the specified VPC. - api-change:`network-firewall`: \[`botocore`] Network Firewall now supports inspection of outbound SSL/TLS traffic. - api-change:`opensearch`: \[`botocore`] You can specify ipv4 or dualstack IPAddressType for cluster endpoints. If you specify IPAddressType as dualstack, the new endpoint will be visible under the 'EndpointV2' parameter and will support IPv4 and IPv6 requests. Whereas, the 'Endpoint' will continue to serve IPv4 requests. - api-change:`redshift`: \[`botocore`] Add Redshift APIs GetResourcePolicy, DeleteResourcePolicy, PutResourcePolicy and DescribeInboundIntegrations for the new Amazon Redshift Zero-ETL integration feature, which can be used to control data ingress into Redshift namespace, and view inbound integrations. - api-change:`sagemaker`: \[`botocore`] Amazon Sagemaker Autopilot now supports Text Generation jobs. - api-change:`sns`: \[`botocore`] Message Archiving and Replay is now supported in Amazon SNS for FIFO topics. - api-change:`ssm-sap`: \[`botocore`] AWS Systems Manager for SAP added support for registration and discovery of SAP ABAP applications - api-change:`transfer`: \[`botocore`] No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged. - api-change:`endpoint-rules`: \[`botocore`] Update endpoint-rules client to latest version ### [`v1.28.71`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12871) [Compare Source](https://github.com/boto/boto3/compare/1.28.70...1.28.71) \======= - enhancement:Configuration: \[`botocore`] Adds client context params support to `Config`. - api-change:`connectcases`: \[`botocore`] Increase maximum length of CommentBody to 3000, and increase maximum length of StringValue to 1500 - api-change:`groundstation`: \[`botocore`] This release will allow KMS alias names to be used when creating Mission Profiles - api-change:`iam`: \[`botocore`] Updates to GetAccessKeyLastUsed action to replace NoSuchEntity error with AccessDeniedException error. ### [`v1.28.70`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12870) [Compare Source](https://github.com/boto/boto3/compare/1.28.69...1.28.70) \======= - api-change:`codepipeline`: \[`botocore`] Add ability to trigger pipelines from git tags, define variables at pipeline level and new pipeline type V2. - api-change:`ec2`: \[`botocore`] This release updates the documentation for InstanceInterruptionBehavior and HibernationOptionsRequest to more accurately describe the behavior of these two parameters when using Spot hibernation. - api-change:`eks`: \[`botocore`] Added support for Cluster Subnet and Security Group mutability. - api-change:`iam`: \[`botocore`] Add the partitional endpoint for IAM in iso-f. - api-change:`migrationhub-config`: \[`botocore`] This release introduces DeleteHomeRegionControl API that customers can use to delete the Migration Hub Home Region configuration - api-change:`migrationhubstrategy`: \[`botocore`] This release introduces multi-data-source feature in Migration Hub Strategy Recommendations. This feature now supports vCenter as a data source to fetch inventory in addition to ADS and Import from file workflow that is currently supported with MHSR collector. - api-change:`opensearchserverless`: \[`botocore`] This release includes the following new APIs: CreateLifecyclePolicy, UpdateLifecyclePolicy, BatchGetLifecyclePolicy, DeleteLifecyclePolicy, ListLifecyclePolicies and BatchGetEffectiveLifecyclePolicy to support the data lifecycle management feature. ### [`v1.28.69`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12869) [Compare Source](https://github.com/boto/boto3/compare/1.28.68...1.28.69) \======= - api-change:`marketplacecommerceanalytics`: \[`botocore`] The StartSupportDataExport operation has been deprecated as part of the Product Support Connection deprecation. As of December 2022, Product Support Connection is no longer supported. - api-change:`networkmanager`: \[`botocore`] This release adds API support for Tunnel-less Connect (NoEncap Protocol) for AWS Cloud WAN - api-change:`redshift-serverless`: \[`botocore`] This release adds support for customers to see the patch version and workgroup version in Amazon Redshift Serverless. - api-change:`rekognition`: \[`botocore`] Amazon Rekognition introduces StartMediaAnalysisJob, GetMediaAnalysisJob, and ListMediaAnalysisJobs operations to run a bulk analysis of images with a Detect Moderation model. ### [`v1.28.68`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12868) [Compare Source](https://github.com/boto/boto3/compare/1.28.67...1.28.68) \======= - api-change:`appconfig`: \[`botocore`] Update KmsKeyIdentifier constraints to support AWS KMS multi-Region keys. - api-change:`appintegrations`: \[`botocore`] Updated ScheduleConfig to be an optional input to CreateDataIntegration to support event driven downloading of files from sources such as Amazon s3 using Amazon Connect AppIntegrations. - api-change:`connect`: \[`botocore`] This release adds support for updating phone number metadata, such as phone number description. - api-change:`discovery`: \[`botocore`] This release introduces three new APIs: StartBatchDeleteConfigurationTask, DescribeBatchDeleteConfigurationTask, and BatchDeleteAgents. - api-change:`medical-imaging`: \[`botocore`] Updates on documentation links - api-change:`ssm`: \[`botocore`] This release introduces a new API: DeleteOpsItem. This allows deletion of an OpsItem. ### [`v1.28.67`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12867) [Compare Source](https://github.com/boto/boto3/compare/1.28.66...1.28.67) \======= - api-change:`gamesparks`: \[`botocore`] The gamesparks client has been removed following the deprecation of the service. - api-change:`ec2`: \[`botocore`] Amazon EC2 C7a instances, powered by 4th generation AMD EPYC processors, are ideal for high performance, compute-intensive workloads such as high performance computing. Amazon EC2 R7i instances are next-generation memory optimized and powered by custom 4th Generation Intel Xeon Scalable processors. - api-change:`managedblockchain-query`: \[`botocore`] This release adds support for Ethereum Sepolia network - api-change:`neptunedata`: \[`botocore`] Doc changes to add IAM action mappings for the data actions. - api-change:`omics`: \[`botocore`] This change enables customers to retrieve failure reasons with detailed status messages for their failed runs - api-change:`opensearch`: \[`botocore`] Added Cluster Administrative options for node restart, opensearch process restart and opensearch dashboard restart for Multi-AZ without standby domains - api-change:`quicksight`: \[`botocore`] This release adds the following: 1) Trino and Starburst Database Connectors 2) Custom total for tables and pivot tables 3) Enable restricted folders 4) Add rolling dates for time equality filters 5) Refine DataPathValue and introduce DataPathType 6) Add SeriesType to ReferenceLineDataConfiguration - api-change:`secretsmanager`: \[`botocore`] Documentation updates for Secrets Manager - api-change:`servicecatalog`: \[`botocore`] Introduce support for EXTERNAL product and provisioning artifact type in CreateProduct and CreateProvisioningArtifact APIs. - api-change:`verifiedpermissions`: \[`botocore`] Improving Amazon Verified Permissions Create experience - api-change:`workspaces`: \[`botocore`] Documentation updates for WorkSpaces ### [`v1.28.66`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12866) [Compare Source](https://github.com/boto/boto3/compare/1.28.65...1.28.66) \======= - api-change:`cloud9`: \[`botocore`] Update to imageId parameter behavior and dates updated. - api-change:`dynamodb`: \[`botocore`] Updating descriptions for several APIs. - api-change:`kendra`: \[`botocore`] Changes for a new feature in Amazon Kendra's Query API to Collapse/Expand query results - api-change:`rds`: \[`botocore`] This release adds support for upgrading the storage file system configuration on the DB instance using a blue/green deployment or a read replica. - api-change:`wisdom`: \[`botocore`] This release adds an max limit of 25 recommendation ids for NotifyRecommendationsReceived API. ### [`v1.28.65`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12865) [Compare Source](https://github.com/boto/boto3/compare/1.28.64...1.28.65) \======= - api-change:`codepipeline`: \[`botocore`] Add retryMode ALL_ACTIONS to RetryStageExecution API that retries a failed stage starting from first action in the stage - api-change:`discovery`: \[`botocore`] This release introduces three new APIs: StartBatchDeleteConfigurationTask, DescribeBatchDeleteConfigurationTask, and BatchDeleteAgents. - api-change:`ecs`: \[`botocore`] Documentation only updates to address Amazon ECS tickets. - api-change:`globalaccelerator`: \[`botocore`] Fixed error where ListCustomRoutingEndpointGroups did not have a paginator - api-change:`guardduty`: \[`botocore`] Add domainWithSuffix finding field to dnsRequestAction - api-change:`kafka`: \[`botocore`] AWS Managed Streaming for Kafka is launching MSK Replicator, a new feature that enables customers to reliably replicate data across Amazon MSK clusters in same or different AWS regions. You can now use SDK to create, list, describe, delete, update, and manage tags of MSK Replicators. - api-change:`route53-recovery-cluster`: \[`botocore`] Adds Owner field to ListRoutingControls API. - api-change:`route53-recovery-control-config`: \[`botocore`] Adds permissions for GetResourcePolicy to support returning details about AWS Resource Access Manager resource policies for shared resources. ### [`v1.28.64`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12864) [Compare Source](https://github.com/boto/boto3/compare/1.28.63...1.28.64) \======= - api-change:`cloudformation`: \[`botocore`] SDK and documentation updates for UpdateReplacePolicy - api-change:`drs`: \[`botocore`] Updated exsiting API to allow AWS Elastic Disaster Recovery support of launching recovery into existing EC2 instances. - api-change:`entityresolution`: \[`botocore`] This launch expands our matching techniques to include provider-based matching to help customer match, link, and enhance records with minimal data movement. With data service providers, we have removed the need for customers to build bespoke integrations,. - api-change:`managedblockchain-query`: \[`botocore`] This release introduces two new APIs: GetAssetContract and ListAssetContracts. This release also adds support for Bitcoin Testnet. - api-change:`mediapackagev2`: \[`botocore`] This release allows customers to manage MediaPackage v2 resource using CloudFormation. - api-change:`opensearch`: \[`botocore`] This release allows customers to list and associate optional plugin packages with compatible Amazon OpenSearch Service clusters for enhanced functionality. - api-change:`redshift-serverless`: \[`botocore`] Added support for managing credentials of serverless namespace admin using AWS Secrets Manager. - api-change:`redshift`: \[`botocore`] Added support for managing credentials of provisioned cluster admin using AWS Secrets Manager. - api-change:`sesv2`: \[`botocore`] This release provides enhanced visibility into your SES identity verification status. This will offer you more actionable insights, enabling you to promptly address any verification-related issues. - api-change:`transfer`: \[`botocore`] Documentation updates for AWS Transfer Family - api-change:`xray`: \[`botocore`] This releases enhances GetTraceSummaries API to support new TimeRangeType Service to query trace summaries by segment end time. ### [`v1.28.63`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12863) [Compare Source](https://github.com/boto/boto3/compare/1.28.62...1.28.63) \======= - api-change:`auditmanager`: \[`botocore`] This release introduces a new limit to the awsAccounts parameter. When you create or update an assessment, there is now a limit of 200 AWS accounts that can be specified in the assessment scope. - api-change:`autoscaling`: \[`botocore`] Update the NotificationMetadata field to only allow visible ascii characters. Add paginators to DescribeInstanceRefreshes, DescribeLoadBalancers, and DescribeLoadBalancerTargetGroups - api-change:`config`: \[`botocore`] Add enums for resource types supported by Config - api-change:`controltower`: \[`botocore`] Added new EnabledControl resource details to ListEnabledControls API and added new GetEnabledControl API. - api-change:`customer-profiles`: \[`botocore`] Adds sensitive trait to various shapes in Customer Profiles Calculated Attribute API model. - api-change:`ec2`: \[`botocore`] This release adds Ubuntu Pro as a supported platform for On-Demand Capacity Reservations and adds support for setting an Amazon Machine Image (AMI) to disabled state. Disabling the AMI makes it private if it was previously shared, and prevents new EC2 instance launches from it. - api-change:`elbv2`: \[`botocore`] Update elbv2 client to latest version - api-change:`glue`: \[`botocore`] Extending version control support to GitLab and Bitbucket from AWSGlue - api-change:`inspector2`: \[`botocore`] Add MacOs ec2 platform support - api-change:`ivs-realtime`: \[`botocore`] Update GetParticipant to return additional metadata. - api-change:`lambda`: \[`botocore`] Adds support for Lambda functions to access Dual-Stack subnets over IPv6, via an opt-in flag in CreateFunction and UpdateFunctionConfiguration APIs - api-change:`location`: \[`botocore`] This release adds endpoint updates for all AWS Location resource operations. - api-change:`machinelearning`: \[`botocore`] This release marks Password field as sensitive - api-change:`pricing`: \[`botocore`] Documentation updates for Price List - api-change:`rds`: \[`botocore`] This release adds support for adding a dedicated log volume to open-source RDS instances. - api-change:`rekognition`: \[`botocore`] Amazon Rekognition introduces support for Custom Moderation. This allows the enhancement of accuracy for detect moderation labels operations by creating custom adapters tuned on customer data. - api-change:`sagemaker`: \[`botocore`] Amazon SageMaker Canvas adds KendraSettings and DirectDeploySettings support for CanvasAppSettings - api-change:`textract`: \[`botocore`] This release adds 9 new APIs for adapter and adapter version management, 3 new APIs for tagging, and updates AnalyzeDocument and StartDocumentAnalysis API parameters for using adapters. - api-change:`transcribe`: \[`botocore`] This release is to enable m4a format to customers - api-change:`workspaces`: \[`botocore`] Updated the CreateWorkspaces action documentation to clarify that the PCoIP protocol is only available for Windows bundles. ### [`v1.28.62`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12862) [Compare Source](https://github.com/boto/boto3/compare/1.28.61...1.28.62) \======= - enhancement:Dependencies: \[`botocore`] Add support for urllib3 2.0 for Python 3.10+ - api-change:`ec2`: \[`botocore`] Documentation updates for Elastic Compute Cloud (EC2). - api-change:`fsx`: \[`botocore`] After performing steps to repair the Active Directory configuration of a file system, use this action to initiate the process of attempting to recover to the file system. - api-change:`marketplace-catalog`: \[`botocore`] This release adds support for Document type as an alternative for stringified JSON for StartChangeSet, DescribeChangeSet and DescribeEntity APIs - api-change:`quicksight`: \[`botocore`] NullOption in FilterListConfiguration; Dataset schema/table max length increased; Support total placement for pivot table visual; Lenient mode relaxes the validation to create resources with definition; Data sources can be added to folders; Redshift data sources support IAM Role-based authentication - api-change:`transfer`: \[`botocore`] This release updates the max character limit of PreAuthenticationLoginBanner and PostAuthenticationLoginBanner to 4096 characters ### [`v1.28.61`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12861) [Compare Source](https://github.com/boto/boto3/compare/1.28.60...1.28.61) \======= - api-change:`omics`: \[`botocore`] Add Etag Support for Omics Storage in ListReadSets and GetReadSetMetadata API - api-change:`rds`: \[`botocore`] Updates Amazon RDS documentation for corrections and minor improvements. - api-change:`route53`: \[`botocore`] Add hostedzonetype filter to ListHostedZones API. - api-change:`securityhub`: \[`botocore`] Added new resource detail objects to ASFF, including resources for AwsEventsEventbus, AwsEventsEndpoint, AwsDmsEndpoint, AwsDmsReplicationTask, AwsDmsReplicationInstance, AwsRoute53HostedZone, and AwsMskCluster - api-change:`storagegateway`: \[`botocore`] Add SoftwareVersion to response of DescribeGatewayInformation. - api-change:`workspaces`: \[`botocore`] This release introduces Manage applications. This feature allows users to manage their WorkSpaces applications by associating or disassociating their WorkSpaces with applications. The DescribeWorkspaces API will now additionally return OperatingSystemName in its responses. ### [`v1.28.60`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12860) [Compare Source](https://github.com/boto/boto3/compare/1.28.59...1.28.60) \======= - api-change:`appconfig`: \[`botocore`] AWS AppConfig introduces KMS customer-managed key (CMK) encryption support for data saved to AppConfig's hosted configuration store. - api-change:`datazone`: \[`botocore`] Initial release of Amazon DataZone - api-change:`mediatailor`: \[`botocore`] Updates DescribeVodSource to include a list of ad break opportunities in the response - api-change:`mgn`: \[`botocore`] This release includes the following new APIs: ListConnectors, CreateConnector, UpdateConnector, DeleteConnector and UpdateSourceServer to support the source action framework feature. - api-change:`sagemaker`: \[`botocore`] Adding support for AdditionalS3DataSource, a data source used for training or inference that is in addition to the input dataset or model data. ### [`v1.28.59`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12859) [Compare Source](https://github.com/boto/boto3/compare/1.28.58...1.28.59) \======= - api-change:`connect`: \[`botocore`] GetMetricDataV2 API: Update to include new metrics CONTACTS_RESOLVED_IN_X , AVG_HOLD_TIME_ALL_CONTACTS , AVG_RESOLUTION_TIME , ABANDONMENT_RATE , AGENT_NON_RESPONSE_WITHOUT_CUSTOMER_ABANDONS with added features: Interval Period, TimeZone, Negate MetricFilters, Extended date time range. - api-change:`location`: \[`botocore`] Amazon Location Service adds support for bounding polygon queries. Additionally, the GeofenceCount field has been added to the DescribeGeofenceCollection API response. - api-change:`mediaconvert`: \[`botocore`] This release adds the ability to replace video frames without modifying the audio essence. - api-change:`oam`: \[`botocore`] This release adds support for sharing AWS::ApplicationInsights::Application resources. - api-change:`sagemaker`: \[`botocore`] This release allows users to run Selective Execution in SageMaker Pipelines without SourcePipelineExecutionArn if selected steps do not have any dependent steps. - api-change:`wellarchitected`: \[`botocore`] AWS Well-Architected now supports Review Templates that allows you to create templates with pre-filled answers for Well-Architected and Custom Lens best practices. ### [`v1.28.58`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12858) [Compare Source](https://github.com/boto/boto3/compare/1.28.57...1.28.58) \======= - api-change:`bedrock-runtime`: \[`botocore`] Add model timeout exception for InvokeModelWithResponseStream API and update validator for invoke model identifier. - api-change:`bedrock`: \[`botocore`] Provisioned throughput feature with Amazon and third-party base models, and update validators for model identifier and taggable resource ARNs. - api-change:`ec2`: \[`botocore`] Introducing Amazon EC2 R7iz instances with 3.9 GHz sustained all-core turbo frequency and deliver up to 20% better performance than previous generation z1d instances. - api-change:`managedblockchain`: \[`botocore`] Remove Rinkeby as option from Ethereum APIs - api-change:`rds`: \[`botocore`] Adds DefaultCertificateForNewLaunches field in the DescribeCertificates API response. - api-change:`sso`: \[`botocore`] Fix FIPS Endpoints in aws-us-gov. - api-change:`sts`: \[`botocore`] STS API updates for assumeRole - api-change:`transfer`: \[`botocore`] Documentation updates for AWS Transfer Family ### [`v1.28.57`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12857) [Compare Source](https://github.com/boto/boto3/compare/1.28.56...1.28.57) \======= - api-change:`bedrock-runtime`: \[`botocore`] Run Inference: Added support to run the inference on models. Includes set of APIs for running inference in streaming and non-streaming mode. - api-change:`bedrock`: \[`botocore`] Model Invocation logging added to enable or disable logs in customer account. Model listing and description support added. Provisioned Throughput feature added. Custom model support added for creating custom models. Also includes list, and delete functions for custom model. - api-change:`budgets`: \[`botocore`] Update DescribeBudgets and DescribeBudgetNotificationsForAccount MaxResults limit to 1000. - api-change:`ec2`: \[`botocore`] Adds support for Customer Managed Key encryption for Amazon Verified Access resources - api-change:`iotfleetwise`: \[`botocore`] AWS IoT FleetWise now supports encryption through a customer managed AWS KMS key. The PutEncryptionConfiguration and GetEncryptionConfiguration APIs were added. - api-change:`sagemaker-featurestore-runtime`: \[`botocore`] Feature Store supports read/write of records with collection type features. - api-change:`sagemaker`: \[`botocore`] Online store feature groups supports Standard and InMemory tier storage types for low latency storage for real-time data retrieval. The InMemory tier supports collection types List, Set, and Vector. - api-change:`wafv2`: \[`botocore`] Correct and improve the documentation for the FieldToMatch option JA3 fingerprint. ### [`v1.28.56`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12856) [Compare Source](https://github.com/boto/boto3/compare/1.28.55...1.28.56) \======= - api-change:`cognito-idp`: \[`botocore`] The UserPoolType Status field is no longer used. - api-change:`firehose`: \[`botocore`] Features : Adding support for new data ingestion source to Kinesis Firehose - AWS Managed Services Kafka. - api-change:`iot`: \[`botocore`] Added support for IoT Rules Engine Kafka Action Headers - api-change:`textract`: \[`botocore`] This release adds new feature - Layout to Analyze Document API which can automatically extract layout elements such as titles, paragraphs, headers, section headers, lists, page numbers, footers, table areas, key-value areas and figure areas and order the elements as a human would read. ### [`v1.28.55`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12855) [Compare Source](https://github.com/boto/boto3/compare/1.28.54...1.28.55) \======= - api-change:`appintegrations`: \[`botocore`] The Amazon AppIntegrations service adds a set of APIs (in preview) to manage third party applications to be used in Amazon Connect agent workspace. - api-change:`apprunner`: \[`botocore`] This release allows an App Runner customer to specify a custom source directory to run the build & start command. This change allows App Runner to support monorepo based repositories - api-change:`codedeploy`: \[`botocore`] CodeDeploy now supports In-place and Blue/Green EC2 deployments with multiple Classic Load Balancers and multiple Target Groups. - api-change:`connect`: \[`botocore`] This release updates a set of Amazon Connect APIs that provides the ability to integrate third party applications in the Amazon Connect agent workspace. - api-change:`dynamodb`: \[`botocore`] Amazon DynamoDB now supports Incremental Export as an enhancement to the existing Export Table - api-change:`ec2`: \[`botocore`] The release includes AWS verified access to support FIPs compliance in North America regions - api-change:`lakeformation`: \[`botocore`] This release adds three new API support "CreateLakeFormationOptIn", "DeleteLakeFormationOptIn" and "ListLakeFormationOptIns", and also updates the corresponding documentation. - api-change:`pinpoint`: \[`botocore`] Update documentation for RemoveAttributes to more accurately reflect its behavior when attributes are deleted. - api-change:`s3`: \[`botocore`] This release adds a new field COMPLETED to the ReplicationStatus Enum. You can now use this field to validate the replication status of S3 objects using the AWS SDK. ### [`v1.28.54`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12854) [Compare Source](https://github.com/boto/boto3/compare/1.28.53...1.28.54) \======= - api-change:`amplifyuibuilder`: \[`botocore`] Support for generating code that is compatible with future versions of amplify project dependencies. - api-change:`chime-sdk-media-pipelines`: \[`botocore`] Adds support for sending WebRTC audio to Amazon Kineses Video Streams. - api-change:`emr-serverless`: \[`botocore`] This release adds support for application-wide default job configurations. - api-change:`finspace-data`: \[`botocore`] Adding sensitive trait to attributes. Change max SessionDuration from 720 to 60. Correct "ApiAccess" attribute to "apiAccess" to maintain consistency between APIs. - api-change:`quicksight`: \[`botocore`] Added ability to tag users upon creation. - api-change:`ssm`: \[`botocore`] This release updates the enum values for ResourceType in SSM DescribeInstanceInformation input and ConnectionStatus in GetConnectionStatus output. - api-change:`wafv2`: \[`botocore`] You can now perform an exact match against the web request's JA3 fingerprint. ### [`v1.28.53`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12853) [Compare Source](https://github.com/boto/boto3/compare/1.28.52...1.28.53) \======= - api-change:`braket`: \[`botocore`] This release adds support to view the device queue depth (the number of queued quantum tasks and hybrid jobs on a device) and queue position for a quantum task and hybrid job. - api-change:`dms`: \[`botocore`] new vendors for DMS CSF: MongoDB, MariaDB, DocumentDb and Redshift - api-change:`ec2`: \[`botocore`] EC2 M2 Pro Mac instances are powered by Apple M2 Pro Mac Mini computers featuring 12 core CPU, 19 core GPU, 32 GiB of memory, and 16 core Apple Neural Engine and uniquely enabled by the AWS Nitro System through high-speed Thunderbolt connections. - api-change:`efs`: \[`botocore`] Update efs client to latest version - api-change:`guardduty`: \[`botocore`] Add `EKS_CLUSTER_NAME` to filter and sort key. - api-change:`mediaconvert`: \[`botocore`] This release supports the creation of of audio-only tracks in CMAF output groups. ### [`v1.28.52`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12852) [Compare Source](https://github.com/boto/boto3/compare/1.28.51...1.28.52) \======= - api-change:`appconfig`: \[`botocore`] Enabling boto3 paginators for list APIs and adding documentation around ServiceQuotaExceededException errors - api-change:`apprunner`: \[`botocore`] This release adds improvements for managing App Runner auto scaling configuration resources. New APIs: UpdateDefaultAutoScalingConfiguration and ListServicesForAutoScalingConfiguration. Updated API: DeleteAutoScalingConfiguration. - api-change:`codeartifact`: \[`botocore`] Add support for the Swift package format. - api-change:`kinesisvideo`: \[`botocore`] Updated DescribeMediaStorageConfiguration, StartEdgeConfigurationUpdate, ImageGenerationConfiguration$SamplingInterval, and UpdateMediaStorageConfiguration to match AWS Docs. - api-change:`logs`: \[`botocore`] Add ClientToken to QueryDefinition CFN Handler in CWL - api-change:`s3`: \[`botocore`] Fix an issue where the SDK can fail to unmarshall response due to NumberFormatException - api-change:`servicediscovery`: \[`botocore`] Adds a new DiscoverInstancesRevision API and also adds InstanceRevision field to the DiscoverInstances API response. - api-change:`sso-oidc`: \[`botocore`] Update FIPS endpoints in aws-us-gov. ### [`v1.28.51`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12851) [Compare Source](https://github.com/boto/boto3/compare/1.28.50...1.28.51) \======= - api-change:`ec2`: \[`botocore`] This release adds support for C7i, and R7a instance types. - api-change:`outposts`: \[`botocore`] This release adds the InstanceFamilies field to the ListAssets response. - api-change:`sagemaker`: \[`botocore`] This release adds support for one-time model monitoring schedules that are executed immediately without delay, explicit data analysis windows for model monitoring schedules and exclude features attributes to remove features from model monitor analysis. ### [`v1.28.50`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12850) [Compare Source](https://github.com/boto/boto3/compare/1.28.49...1.28.50) \======= - api-change:`discovery`: \[`botocore`] Add sensitive protection for customer information - api-change:`macie2`: \[`botocore`] This release changes the default managedDataIdentifierSelector setting for new classification jobs to RECOMMENDED. By default, new classification jobs now use the recommended set of managed data identifiers. - api-change:`workmail`: \[`botocore`] This release includes four new APIs UpdateUser, UpdateGroup, ListGroupsForEntity and DescribeEntity, along with RemoteUsers and some enhancements to existing APIs. ### [`v1.28.49`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12849) [Compare Source](https://github.com/boto/boto3/compare/1.28.48...1.28.49) \======= - api-change:`appstream`: \[`botocore`] This release introduces app block builder, allowing customers to provision a resource to package applications into an app block - api-change:`connect`: \[`botocore`] New rule type (OnMetricDataUpdate) has been added - api-change:`datasync`: \[`botocore`] Documentation-only updates for AWS DataSync. - api-change:`sagemaker`: \[`botocore`] This release introduces Skip Model Validation for Model Packages ### [`v1.28.48`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12848) [Compare Source](https://github.com/boto/boto3/compare/1.28.47...1.28.48) \======= - api-change:`appstream`: \[`botocore`] This release introduces multi-session fleets, allowing customers to provision more than one user session on a single fleet instance. - api-change:`cloudformation`: \[`botocore`] Documentation updates for AWS CloudFormation - api-change:`entityresolution`: \[`botocore`] Changed "ResolutionTechniques" and "MappedInputFields" in workflow and schema mapping operations to be required fields. - api-change:`lookoutequipment`: \[`botocore`] This release adds APIs for the new scheduled retraining feature. ### [`v1.28.47`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12847) [Compare Source](https://github.com/boto/boto3/compare/1.28.46...1.28.47) \======= - api-change:`cloud9`: \[`botocore`] Update to include information on Ubuntu 18 deprecation. - api-change:`drs`: \[`botocore`] Updated existing APIs and added new ones to support using AWS Elastic Disaster Recovery post-launch actions. Added support for new regions. - api-change:`firehose`: \[`botocore`] DocumentIdOptions has been added for the Amazon OpenSearch destination. - api-change:`guardduty`: \[`botocore`] Add `managementType` field to ListCoverage API response. - api-change:`internetmonitor`: \[`botocore`] This release updates the Amazon CloudWatch Internet Monitor API domain name. - api-change:`ivs-realtime`: \[`botocore`] Doc only update that changes description for ParticipantToken. - api-change:`simspaceweaver`: \[`botocore`] Edited the introductory text for the API reference. - api-change:`xray`: \[`botocore`] Add StartTime field in GetTraceSummaries API response for each TraceSummary. ### [`v1.28.46`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12846) [Compare Source](https://github.com/boto/boto3/compare/1.28.45...1.28.46) \======= - api-change:`ec2`: \[`botocore`] This release adds support for restricting public sharing of AMIs through AMI Block Public Access - api-change:`events`: \[`botocore`] Update events client to latest version - api-change:`kendra`: \[`botocore`] Amazon Kendra now supports confidence score buckets for retrieved passage results using the Retrieve API. ### [`v1.28.45`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12845) [Compare Source](https://github.com/boto/boto3/compare/1.28.44...1.28.45) \======= - api-change:`ecr`: \[`botocore`] This release will have ValidationException be thrown from ECR LifecyclePolicy APIs in regions LifecyclePolicy is not supported, this includes existing Amazon Dedicated Cloud (ADC) regions. This release will also change Tag: TagValue and Tag: TagKey to required. - api-change:`medialive`: \[`botocore`] AWS Elemental Link now supports attaching a Link UHD device to a MediaConnect flow. - api-change:`quicksight`: \[`botocore`] This release launches new updates to QuickSight KPI visuals - support for sparklines, new templated layout and new targets for conditional formatting rules. ### [`v1.28.44`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12844) [Compare Source](https://github.com/boto/boto3/compare/1.28.43...1.28.44) \======= - api-change:`fsx`: \[`botocore`] Amazon FSx documentation fixes - api-change:`sagemaker`: \[`botocore`] Autopilot APIs will now support holiday featurization for Timeseries models. The models will now hold holiday metadata and should be able to accommodate holiday effect during inference. - api-change:`sso-admin`: \[`botocore`] Content updates to IAM Identity Center API for China Regions. - api-change:`workspaces`: \[`botocore`] A new field "ErrorDetails" will be added to the output of "DescribeWorkspaceImages" API call. This field provides in-depth details about the error occurred during image import process. These details include the possible causes of the errors and troubleshooting information. ### [`v1.28.43`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12843) [Compare Source](https://github.com/boto/boto3/compare/1.28.42...1.28.43) \======= - api-change:`neptunedata`: \[`botocore`] Minor changes to send unsigned requests to Neptune clusters - api-change:`securityhub`: \[`botocore`] Documentation updates for AWS Security Hub - api-change:`simspaceweaver`: \[`botocore`] BucketName and ObjectKey are now required for the S3Location data type. BucketName is now required for the S3Destination data type. ### [`v1.28.42`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12842) [Compare Source](https://github.com/boto/boto3/compare/1.28.41...1.28.42) \======= - api-change:`appflow`: \[`botocore`] Adding OAuth2.0 support for servicenow connector. - api-change:`ec2`: \[`botocore`] This release adds 'outpost' location type to the DescribeInstanceTypeOfferings API, allowing customers that have been allowlisted for outpost to query their offerings in the API. - api-change:`elbv2`: \[`botocore`] Update elbv2 client to latest version - api-change:`medialive`: \[`botocore`] Adds advanced Output Locking options for Epoch Locking: Custom Epoch and Jam Sync Time - api-change:`wafv2`: \[`botocore`] The targeted protection level of the Bot Control managed rule group now provides optional, machine-learning analysis of traffic statistics to detect some bot-related activity. You can enable or disable the machine learning functionality through the API. ### [`v1.28.41`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12841) [Compare Source](https://github.com/boto/boto3/compare/1.28.40...1.28.41) \======= - api-change:`billingconductor`: \[`botocore`] This release adds support for line item filtering in for the custom line item resource. - api-change:`cloud9`: \[`botocore`] Added support for Ubuntu 22.04 that was not picked up in a previous Trebuchet request. Doc-only update. - api-change:`compute-optimizer`: \[`botocore`] This release adds support to provide recommendations for G4dn and P3 instances that use NVIDIA GPUs. - api-change:`ec2`: \[`botocore`] Introducing Amazon EC2 C7gd, M7gd, and R7gd Instances with up to 3.8 TB of local NVMe-based SSD block-level storage. These instances are powered by AWS Graviton3 processors, delivering up to 25% better performance over Graviton2-based instances. - api-change:`ecs`: \[`botocore`] Documentation only update for Amazon ECS. - api-change:`events`: \[`botocore`] Update events client to latest version - api-change:`rds`: \[`botocore`] Add support for feature integration with AWS Backup. - api-change:`sagemaker`: \[`botocore`] SageMaker Neo now supports data input shape derivation for Pytorch 2.0 and XGBoost compilation job for cloud instance targets. You can skip DataInputConfig field during compilation job creation. You can also access derived information from model in DescribeCompilationJob response. - api-change:`vpc-lattice`: \[`botocore`] This release adds Lambda event structure version config support for LAMBDA target groups. It also adds newline support for auth policies. ### [`v1.28.40`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12840) [Compare Source](https://github.com/boto/boto3/compare/1.28.39...1.28.40) \======= - api-change:`chime-sdk-media-pipelines`: \[`botocore`] This release adds support for the Voice Analytics feature for customer-owned KVS streams as part of the Amazon Chime SDK call analytics. - api-change:`connect`: \[`botocore`] Amazon Connect adds the ability to read, create, update, delete, and list view resources, and adds the ability to read, create, delete, and list view versions. - api-change:`identitystore`: \[`botocore`] New Identity Store content for China Region launch - api-change:`neptunedata`: \[`botocore`] Removed the descriptive text in the introduction. ### [`v1.28.39`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12839) [Compare Source](https://github.com/boto/boto3/compare/1.28.38...1.28.39) \======= - api-change:`chime-sdk-media-pipelines`: \[`botocore`] This release adds support for feature Voice Enhancement for Call Recording as part of Amazon Chime SDK call analytics. - api-change:`cloudhsm`: \[`botocore`] Deprecating CloudHSM Classic API Service. - api-change:`connectcampaigns`: \[`botocore`] Amazon Connect outbound campaigns has launched agentless dialing mode which enables customers to make automated outbound calls without agent engagement. This release updates three of the campaign management API's to support the new agentless dialing mode and the new dialing capacity field. - api-change:`connectparticipant`: \[`botocore`] Amazon Connect Participant Service adds the ability to get a view resource using a view token, which is provided in a participant message, with the release of the DescribeView API. - api-change:`customer-profiles`: \[`botocore`] Adds sensitive trait to various shapes in Customer Profiles API model. - api-change:`ecs`: \[`botocore`] This release adds support for an account-level setting that you can use to configure the number of days for AWS Fargate task retirement. - api-change:`grafana`: \[`botocore`] Marking SAML RoleValues attribute as sensitive and updating VpcConfiguration attributes to match documentation. - api-change:`health`: \[`botocore`] Adds new API DescribeEntityAggregatesForOrganization that retrieves entity aggregates across your organization. Also adds support for resource status filtering in DescribeAffectedEntitiesForOrganization, resource status aggregates in the DescribeEntityAggregates response, and new resource statuses. - api-change:`ivs`: \[`botocore`] Updated "type" description for CreateChannel, UpdateChannel, Channel, and ChannelSummary. - api-change:`kafkaconnect`: \[`botocore`] Minor model changes for Kafka Connect as well as endpoint updates. - api-change:`payment-cryptography-data`: \[`botocore`] Make KeyCheckValue field optional when using asymmetric keys as Key Check Values typically only apply to symmetric keys - api-change:`sagemaker-runtime`: \[`botocore`] Update sagemaker-runtime client to latest version ### [`v1.28.38`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12838) [Compare Source](https://github.com/boto/boto3/compare/1.28.37...1.28.38) \======= - api-change:`appflow`: \[`botocore`] Add SAP source connector parallel and pagination feature - api-change:`apprunner`: \[`botocore`] App Runner adds support for Bitbucket. You can now create App Runner connection that connects to your Bitbucket repositories and deploy App Runner service with the source code stored in a Bitbucket repository. - api-change:`auditmanager`: \[`botocore`] This release marks some assessment metadata as sensitive. We added a sensitive trait to the following attributes: assessmentName, emailAddress, scope, createdBy, lastUpdatedBy, and userName. - api-change:`cleanrooms`: \[`botocore`] This release decouples member abilities in a collaboration. With this change, the member who can run queries no longer needs to be the same as the member who can receive results. - api-change:`datasync`: \[`botocore`] AWS DataSync introduces Task Reports, a new feature that provides detailed reports of data transfer operations for each task execution. - api-change:`neptunedata`: \[`botocore`] Allows customers to execute data plane actions like bulk loading graphs, issuing graph queries using Gremlin and openCypher directly from the SDK. - api-change:`network-firewall`: \[`botocore`] Network Firewall increasing pagination token string length - api-change:`pca-connector-ad`: \[`botocore`] The Connector for AD allows you to use a fully-managed AWS Private CA as a drop-in replacement for your self-managed enterprise CAs without local agents or proxy servers. Enterprises that use AD to manage Windows environments can reduce their private certificate authority (CA) costs and complexity. - api-change:`sagemaker`: \[`botocore`] Amazon SageMaker Canvas adds IdentityProviderOAuthSettings support for CanvasAppSettings ### [`v1.28.37`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12837) [Compare Source](https://github.com/boto/boto3/compare/1.28.36...1.28.37) \======= - api-change:`cognito-idp`: \[`botocore`] Added API example requests and responses for several operations. Fixed the validation regex for user pools Identity Provider name. - api-change:`fsx`: \[`botocore`] Documentation updates for project quotas. - api-change:`omics`: \[`botocore`] Add RetentionMode support for Runs. - api-change:`sesv2`: \[`botocore`] Adds support for the new Export and Message Insights features: create, get, list and cancel export jobs; get message insights. ### [`v1.28.36`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12836) [Compare Source](https://github.com/boto/boto3/compare/1.28.35...1.28.36) \======= - api-change:`backup`: \[`botocore`] Add support for customizing time zone for backup window in backup plan rules. - api-change:`compute-optimizer`: \[`botocore`] This release enables AWS Compute Optimizer to analyze and generate licensing optimization recommendations for sql server running on EC2 instances. - api-change:`organizations`: \[`botocore`] Documentation updates for permissions and links. - api-change:`securitylake`: \[`botocore`] Remove incorrect regex enforcement on pagination tokens. - api-change:`service-quotas`: \[`botocore`] Service Quotas now supports viewing the applied quota value and requesting a quota increase for a specific resource in an AWS account. - api-change:`workspaces-web`: \[`botocore`] WorkSpaces Web now enables Admins to configure which cookies are synchronized from an end-user's local browser to the in-session browser. In conjunction with a browser extension, this feature enables enhanced Single-Sign On capability by reducing the number of times an end-user has to authenticate. ### [`v1.28.35`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12835) [Compare Source](https://github.com/boto/boto3/compare/1.28.34...1.28.35) \======= - api-change:`cloudtrail`: \[`botocore`] Add ThrottlingException with error code 429 to handle CloudTrail Delegated Admin request rate exceeded on organization resources. - api-change:`cloudwatch`: \[`botocore`] Update cloudwatch client to latest version - api-change:`detective`: \[`botocore`] Added protections to interacting with fields containing customer information. ### [`v1.28.34`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12834) [Compare Source](https://github.com/boto/boto3/compare/1.28.33...1.28.34) \======= - api-change:`ec2`: \[`botocore`] Amazon EC2 M7a instances, powered by 4th generation AMD EPYC processors, deliver up to 50% higher performance compared to M6a instances. Amazon EC2 Hpc7a instances, powered by 4th Gen AMD EPYC processors, deliver up to 2.5x better performance compared to Amazon EC2 Hpc6a instances. - api-change:`glue`: \[`botocore`] Added API attributes that help in the monitoring of sessions. - api-change:`mediaconvert`: \[`botocore`] This release includes additional audio channel tags in Quicktime outputs, support for film grain synthesis for AV1 outputs, ability to create audio-only FLAC outputs, and ability to specify Amazon S3 destination storage class. - api-change:`medialive`: \[`botocore`] MediaLive now supports passthrough of KLV data to a HLS output group with a TS container. MediaLive now supports setting an attenuation mode for AC3 audio when the coding mode is 3/2 LFE. MediaLive now supports specifying whether to include filler NAL units in RTMP output group settings. - api-change:`mediatailor`: \[`botocore`] Adds new source location AUTODETECT_SIGV4 access type. - api-change:`quicksight`: \[`botocore`] Excel support in Snapshot Export APIs. Removed Required trait for some insight Computations. Namespace-shared Folders support. Global Filters support. Table pin Column support. - api-change:`rds`: \[`botocore`] This release updates the supported versions for Percona XtraBackup in Aurora MySQL. - api-change:`s3control`: \[`botocore`] Updates to endpoint ruleset tests to address Smithy validation issues and standardize the capitalization of DualStack. - api-change:`verifiedpermissions`: \[`botocore`] Documentation updates for Amazon Verified Permissions. ### [`v1.28.33`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12833) [Compare Source](https://github.com/boto/boto3/compare/1.28.32...1.28.33) \======= - api-change:`apigateway`: \[`botocore`] This release adds RootResourceId to GetRestApi response. - api-change:`ec2`: \[`botocore`] Marking fields as sensitive on BundleTask and GetPasswordData - api-change:`polly`: \[`botocore`] Amazon Polly adds 1 new voice - Zayd (ar-AE) ### [`v1.28.32`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12832) [Compare Source](https://github.com/boto/boto3/compare/1.28.31...1.28.32) \======= - api-change:`ce`: \[`botocore`] This release adds the LastUpdatedDate and LastUsedDate timestamps to help you manage your cost allocation tags. - api-change:`globalaccelerator`: \[`botocore`] Global Accelerator now supports Client Ip Preservation for Network Load Balancer endpoints. - api-change:`rds`: \[`botocore`] Adding parameters to CreateCustomDbEngineVersion reserved for future use. - api-change:`verifiedpermissions`: \[`botocore`] Documentation updates for Amazon Verified Permissions. Increases max results per page for ListPolicyStores, ListPolicies, and ListPolicyTemplates APIs from 20 to 50. ### [`v1.28.31`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12831) [Compare Source](https://github.com/boto/boto3/compare/1.28.30...1.28.31) \======= - api-change:`cloud9`: \[`botocore`] Doc only update to add Ubuntu 22.04 as an Image ID option for Cloud9 - api-change:`ec2`: \[`botocore`] The DeleteKeyPair API has been updated to return the keyPairId when an existing key pair is deleted. - api-change:`finspace`: \[`botocore`] Allow customers to manage outbound traffic from their Kx Environment when attaching a transit gateway by providing network acl entries. Allow the customer to choose how they want to update the databases on a cluster allowing updates to possibly be faster than usual. - api-change:`rds`: \[`botocore`] Adding support for RDS Aurora Global Database Unplanned Failover - api-change:`route53domains`: \[`botocore`] Fixed typos in description fields ### [`v1.28.30`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12830) [Compare Source](https://github.com/boto/boto3/compare/1.28.29...1.28.30) \======= - api-change:`codecommit`: \[`botocore`] Add new ListFileCommitHistory operation to retrieve commits which introduced changes to a specific file. - api-change:`securityhub`: \[`botocore`] Added Inspector Lambda code Vulnerability section to ASFF, including GeneratorDetails, EpssScore, ExploitAvailable, and CodeVulnerabilities. ### [`v1.28.29`](https://github.com/boto/boto3/blob/HEAD/CHANGELOG.rst#12829) [Compare Source](https://github.com/boto/boto3/compare/1.28.28...1.28.29) \======= - api-change:`ec2`: \[`botocore`] Adds support for SubnetConfigurations to allow users to select their own IPv4 and IPv6 addresses for Interface VPC endpoints - api-change:`gamelift`: \[`botocore`] Amazon GameLift updates its instance types support. </details> <details> <summary>python-humanize/humanize (humanize)</summary> ### [`v4.9.0`](https://github.com/python-humanize/humanize/releases/tag/4.9.0) [Compare Source](https://github.com/python-humanize/humanize/compare/4.8.0...4.9.0) #### Added - Add support for Python 3.13 ([#&#8203;156](https://github.com/python-humanize/humanize/issues/156)) [@&#8203;hugovk](https://github.com/hugovk) - Add Norwegian localization ([#&#8203;155](https://github.com/python-humanize/humanize/issues/155)) [@&#8203;fdanielsen](https://github.com/fdanielsen) - Add Hebrew localization ([#&#8203;149](https://github.com/python-humanize/humanize/issues/149)) [@&#8203;clsn](https://github.com/clsn) - Add Klingon translation ([#&#8203;150](https://github.com/python-humanize/humanize/issues/150)) [@&#8203;clsn](https://github.com/clsn) #### Changed - Replace Flake8 with Ruff ([#&#8203;157](https://github.com/python-humanize/humanize/issues/157)) [@&#8203;hugovk](https://github.com/hugovk) #### Fixed - Fix DeprecationWarning: Plural value must be an integer, got float ([#&#8203;147](https://github.com/python-humanize/humanize/issues/147)) [@&#8203;dansarpong](https://github.com/dansarpong) - Remove useless shebangs ([#&#8203;141](https://github.com/python-humanize/humanize/issues/141)) [@&#8203;aueam](https://github.com/aueam) </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Disabled by config. Please merge this manually once you are satisfied. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://github.com/renovatebot/renovate). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNi4zMS4wIiwidXBkYXRlZEluVmVyIjoiMzcuMjY3LjEiLCJ0YXJnZXRCcmFuY2giOiJtYXN0ZXIifQ==-->
renovate added the
renovate
label 2023-08-18 03:04:33 +00:00
renovate force-pushed renovate/all-minor-patch from b596b204b0 to a3b07bbb0f 2023-08-19 03:04:17 +00:00 Compare
renovate changed title from chore(deps): update dependency boto3 to v1.28.29 to chore(deps): update dependency boto3 to v1.28.30 2023-08-19 03:04:26 +00:00
renovate force-pushed renovate/all-minor-patch from a3b07bbb0f to b2bdb7522f 2023-08-22 03:03:42 +00:00 Compare
renovate changed title from chore(deps): update dependency boto3 to v1.28.30 to chore(deps): update dependency boto3 to v1.28.31 2023-08-22 03:03:53 +00:00
renovate force-pushed renovate/all-minor-patch from b2bdb7522f to 991fc62ba1 2023-08-23 03:03:59 +00:00 Compare
renovate changed title from chore(deps): update dependency boto3 to v1.28.31 to chore(deps): update all non-major dependencies 2023-08-23 03:04:08 +00:00
renovate force-pushed renovate/all-minor-patch from 991fc62ba1 to 96e9b2e1c5 2023-08-24 03:04:08 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 96e9b2e1c5 to 069f9f1767 2023-08-25 03:04:02 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 069f9f1767 to aedf331b4f 2023-08-26 03:04:25 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from aedf331b4f to 9d673c076a 2023-08-28 03:04:55 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 9d673c076a to efe37cd868 2023-08-29 03:05:49 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from efe37cd868 to fcd312b5df 2023-08-30 03:04:35 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from fcd312b5df to 6100ad1c14 2023-08-31 03:04:26 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 6100ad1c14 to 2a6c963ce8 2023-09-01 03:04:36 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 2a6c963ce8 to 39f0611ea2 2023-09-02 03:04:53 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 39f0611ea2 to ac6d28ef02 2023-09-06 03:05:12 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ac6d28ef02 to 0e2c83a24f 2023-09-07 03:05:37 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 0e2c83a24f to 6a440e8277 2023-09-08 03:05:29 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 6a440e8277 to 646bf2f888 2023-09-09 03:06:09 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 646bf2f888 to 4ce04c5e7b 2023-09-12 03:05:12 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 4ce04c5e7b to 21e887a35e 2023-09-13 03:06:04 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 21e887a35e to 84a3d922fb 2023-09-14 03:05:16 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 84a3d922fb to 2ea20d2432 2023-09-15 03:06:34 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 2ea20d2432 to 079b53e6c5 2023-09-16 03:06:51 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 079b53e6c5 to e419fa89d8 2023-09-19 11:50:34 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from e419fa89d8 to 8d63176d12 2023-09-20 03:05:15 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 8d63176d12 to 1236441c5e 2023-09-21 03:05:36 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 1236441c5e to 500e4f72c9 2023-09-23 03:05:55 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 500e4f72c9 to 73bd87ade5 2023-09-26 03:05:31 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 73bd87ade5 to e6ca02d33b 2023-09-27 03:07:38 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from e6ca02d33b to 2cdddff188 2023-09-28 03:10:16 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 2cdddff188 to d653106d3e 2023-09-29 03:06:16 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from d653106d3e to ab0fa096e5 2023-10-03 03:06:07 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ab0fa096e5 to fac8e57916 2023-10-04 03:06:07 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from fac8e57916 to d381ddb593 2023-10-05 03:07:33 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from d381ddb593 to ac3e4a7180 2023-10-06 03:06:59 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ac3e4a7180 to 9c6374168a 2023-10-07 03:06:02 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 9c6374168a to ddc3589e19 2023-10-13 03:09:17 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ddc3589e19 to 9566afd86f 2023-10-16 03:07:04 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 9566afd86f to f360f576f6 2023-10-17 03:07:23 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from f360f576f6 to 2c49e2e15f 2023-10-18 03:08:04 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 2c49e2e15f to e46c4709da 2023-10-19 03:08:38 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from e46c4709da to b0d134818e 2023-10-20 03:07:42 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from b0d134818e to 783ef1c8b5 2023-10-21 03:07:49 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 783ef1c8b5 to 3d067c6a96 2023-10-24 03:10:45 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 3d067c6a96 to c54cbf2ec9 2023-10-25 03:09:23 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from c54cbf2ec9 to 1bd339d550 2023-10-26 03:16:46 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 1bd339d550 to b1894f2f48 2023-10-27 03:11:36 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from b1894f2f48 to 3320333a9b 2023-10-28 03:17:18 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 3320333a9b to 9ee6872964 2023-10-31 03:20:58 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 9ee6872964 to 33147a43d8 2023-11-01 03:14:06 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 33147a43d8 to f73d6b0426 2023-11-02 03:13:20 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from f73d6b0426 to 22c490b823 2023-11-03 03:09:21 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 22c490b823 to 0e5a42457d 2023-11-04 03:14:14 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 0e5a42457d to d4ac747ebc 2023-11-07 03:17:29 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from d4ac747ebc to 51d0c3beab 2023-11-08 03:10:23 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 51d0c3beab to 68905aed60 2023-11-09 03:12:26 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 68905aed60 to 8b3563680b 2023-11-10 03:10:23 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 8b3563680b to 5363998f75 2023-11-11 03:15:51 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 5363998f75 to c64e782912 2023-11-14 03:19:40 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from c64e782912 to a749f475ab 2023-11-15 03:19:43 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from a749f475ab to 63dc0f88ad 2023-11-16 03:25:31 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 63dc0f88ad to 359f7ea8f3 2023-11-17 03:23:47 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 359f7ea8f3 to c442f6698c 2023-11-18 03:16:55 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from c442f6698c to 457843f2b2 2023-11-21 03:12:24 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 457843f2b2 to aea320a516 2023-11-22 03:35:43 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from aea320a516 to 69a2b57939 2023-11-23 03:03:38 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 69a2b57939 to e0a938e738 2023-11-28 03:03:54 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from e0a938e738 to ad8d43e242 2023-11-29 03:03:57 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ad8d43e242 to 526263c173 2023-11-30 03:09:43 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 526263c173 to 94abed9af7 2023-12-01 03:07:09 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 94abed9af7 to be501daa57 2023-12-02 03:10:17 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from be501daa57 to b13231ca68 2023-12-05 03:15:07 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from b13231ca68 to d86dc870fc 2023-12-06 03:06:19 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from d86dc870fc to ff56a575ce 2023-12-07 03:08:29 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ff56a575ce to ac67f58faa 2023-12-08 03:06:49 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ac67f58faa to 4b424fdf1d 2023-12-09 03:05:52 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 4b424fdf1d to f6bb276fba 2023-12-12 03:06:54 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from f6bb276fba to f285d5fb91 2023-12-13 03:06:56 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from f285d5fb91 to 1db69ba959 2023-12-14 03:07:07 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 1db69ba959 to 940f3bc2dc 2023-12-15 03:06:41 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 940f3bc2dc to 5b3b43ca24 2023-12-16 03:06:28 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 5b3b43ca24 to 7e7b4ca935 2023-12-19 03:09:09 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 7e7b4ca935 to 7273ac7c5c 2023-12-20 03:07:20 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 7273ac7c5c to bd7ab1e7cc 2023-12-21 03:07:20 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from bd7ab1e7cc to 8fa7c05788 2023-12-22 03:06:45 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 8fa7c05788 to a37fb4397a 2023-12-23 03:07:58 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from a37fb4397a to 8485c5fef4 2023-12-27 03:06:51 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 8485c5fef4 to 984e04efe9 2023-12-28 03:07:19 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 984e04efe9 to b6ce044e70 2023-12-29 03:07:47 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from b6ce044e70 to ca4ef6611d 2023-12-30 03:07:44 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ca4ef6611d to f5e9dca910 2024-01-04 03:08:24 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from f5e9dca910 to 510e7b38af 2024-01-05 03:08:26 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 510e7b38af to 126616df3e 2024-01-06 03:08:39 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 126616df3e to e062a63bf6 2024-01-09 03:09:33 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from e062a63bf6 to 5c3997805c 2024-01-11 03:11:50 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 5c3997805c to 01f9841712 2024-01-12 03:08:17 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 01f9841712 to 2b735fbc56 2024-01-13 03:12:13 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 2b735fbc56 to 07fcea96e5 2024-01-15 03:08:31 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 07fcea96e5 to 85b35ca611 2024-01-17 03:09:14 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 85b35ca611 to 1e154f62be 2024-01-18 03:12:39 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 1e154f62be to e957b96079 2024-01-19 03:13:40 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from e957b96079 to 92fa5b3ae6 2024-01-20 03:10:17 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 92fa5b3ae6 to c29939f65c 2024-01-23 03:10:48 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from c29939f65c to 02adce69f0 2024-01-24 03:11:14 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 02adce69f0 to 09981219c9 2024-01-25 03:09:27 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 09981219c9 to 25928a181d 2024-01-26 03:11:30 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 25928a181d to f2896529d0 2024-01-27 03:11:43 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from f2896529d0 to 7463eee89d 2024-01-28 03:07:49 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 7463eee89d to 4f16ce903b 2024-01-30 03:11:34 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 4f16ce903b to 078510d2be 2024-01-31 03:12:16 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 078510d2be to efda4161ee 2024-02-01 03:11:01 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from efda4161ee to 4bcf8ed4fb 2024-02-02 03:11:33 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 4bcf8ed4fb to 6cd9e58b17 2024-02-03 03:13:00 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 6cd9e58b17 to a9c6f1b765 2024-02-06 03:12:12 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from a9c6f1b765 to 9d5a490f15 2024-02-07 03:15:29 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 9d5a490f15 to 4ff37322f5 2024-02-08 03:17:37 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 4ff37322f5 to 505c6c47c9 2024-02-09 03:09:43 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 505c6c47c9 to 5a447744d4 2024-02-10 03:10:20 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 5a447744d4 to f792f247b5 2024-02-13 03:10:35 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from f792f247b5 to afdf305246 2024-02-14 03:11:56 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from afdf305246 to ef09a2a055 2024-02-15 03:12:12 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ef09a2a055 to 1e0b501941 2024-02-16 03:12:08 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 1e0b501941 to ff6a050d6c 2024-02-17 03:12:17 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ff6a050d6c to 53f165290c 2024-02-20 03:12:46 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 53f165290c to 536e1b0f86 2024-02-21 03:19:37 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 536e1b0f86 to 9e7525df1f 2024-02-22 03:22:34 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 9e7525df1f to 589f5c40e0 2024-02-23 03:20:32 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 589f5c40e0 to c7c37f709e 2024-02-24 03:17:55 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from c7c37f709e to 5652aafd18 2024-02-27 03:18:43 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 5652aafd18 to ff938f0586 2024-02-28 03:21:38 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ff938f0586 to b811cd5fe9 2024-02-29 03:23:26 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from b811cd5fe9 to 7872d44fa0 2024-03-01 03:19:46 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 7872d44fa0 to e8b9533ac6 2024-03-02 03:24:30 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from e8b9533ac6 to 6d6099c6e9 2024-03-04 03:15:30 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 6d6099c6e9 to 0daf8c6302 2024-03-05 03:24:59 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 0daf8c6302 to ce4ccc117d 2024-03-06 03:24:45 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from ce4ccc117d to 17837ce0d2 2024-03-07 03:21:51 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 17837ce0d2 to 339f42d498 2024-03-08 03:21:30 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 339f42d498 to a1ef823137 2024-03-09 03:29:05 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from a1ef823137 to 5eb975399e 2024-03-10 03:15:55 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 5eb975399e to 4a0bd0e99f 2024-03-12 03:52:11 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 4a0bd0e99f to d9fc8264e0 2024-03-13 03:28:59 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from d9fc8264e0 to 791f0e66a0 2024-03-14 03:23:30 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 791f0e66a0 to 24842a9ab1 2024-03-15 03:27:25 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 24842a9ab1 to d911af84ee 2024-03-20 19:59:47 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from d911af84ee to b3485d0d7f 2024-03-22 03:07:48 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from b3485d0d7f to 425d6310c7 2024-03-23 03:08:15 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 425d6310c7 to af07f76e72 2024-03-26 03:06:54 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from af07f76e72 to 4fcea7c781 2024-03-27 03:10:27 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 4fcea7c781 to d0e3e3fcec 2024-03-28 03:07:28 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from d0e3e3fcec to 2dbd6592f0 2024-03-29 03:07:03 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 2dbd6592f0 to 546fd51be1 2024-03-30 03:07:53 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 546fd51be1 to 4b564644f2 2024-03-31 03:07:40 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 4b564644f2 to a3d5ab7e68 2024-04-02 03:07:47 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from a3d5ab7e68 to 761b930f8c 2024-04-03 03:10:53 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from 761b930f8c to a1e166d014 2024-04-04 03:13:59 +00:00 Compare
renovate force-pushed renovate/all-minor-patch from a1e166d014 to 56945759a6 2024-04-05 03:09:18 +00:00 Compare
stefan merged commit d7bf6542ce into master 2024-04-05 13:02:36 +00:00
stefan deleted branch renovate/all-minor-patch 2024-04-05 13:02:37 +00:00
Sign in to join this conversation.
No reviewers
No Label
renovate
No Milestone
No project
No Assignees
1 Participants
Notifications
Due Date
The due date is invalid or out of range. Please use the format 'yyyy-mm-dd'.

No due date set.

Dependencies

No dependencies set.

Reference: ZeroDownTime/sns-alert-hub#18
No description provided.