Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
==0.14.3
->==1.6.0
>=2.2.3, <3
->>=3.1.1, <4
~=1.34.114
->~=1.38.27
~=1.0.0
->~=1.6.0
==2.14.2
->==3.2.0
~=2.14.2
->~=3.2.0
==0.6.6
->==0.6.7
==0.49.1
->==0.51.0
>=2.1.4, <3
->>=3.8.1, <4
~=2.8.5
->~=3.8.1
>=3.6.3, <3.7
->>=3.10.3, <3.11
~=0.59.1
->~=0.61.2
~=5.9.8
->~=7.0.0
>=5.9.5, <6
->>=7, <8
==16.0.0
->==20.0.0
~=1.13.1
->~=1.15.3
3.23.11
->5.22.0
3.0.13
->5.22.0
22.04
->24.04
Release Notes
authlib/authlib (Authlib)
v1.6.0
: Version 1.6.0Compare Source
v1.5.2
: Version 1.5.2Compare Source
Released on Apr 1, 2025
claims_cls
parameter for client's parse_id_token method. #725v1.5.1
: Version 1.5.1Compare Source
Released on Feb 28, 2025
v1.5.0
: Version 1.5.0Compare Source
v1.4.1
: Version 1.4.1Compare Source
v1.4.0
: Version 1.4.0Compare Source
Bugfixes
Breaking changes
v1.3.2
: Version 1.3.2Compare Source
quote
client id and secret.unquote
basic auth header for authorization server.v1.3.1
: Version 1.3.1Compare Source
Prevent
OctKey
to import ssh and PEM strings.v1.3.0
: Version 1.3.0Compare Source
Bug fixes
Breaking changes
v1.2.1
: Version 1.2.1Compare Source
ClientSecretJWT.sign
method, via #552authorize_redirect
for Starlette v0.26.0, via #533has_client_secret
method and documentation, via #513request_invalid
andtoken_revoked
remaining occurencesand documentation. #514
grant_types
andresponse_types
default values, via #509v1.2.0
: Version 1.2.0Compare Source
request.body
toResourceProtector
, #485.flask.g
instead of_app_ctx_stack
, #482.headers
parameter back toClientSecretJWT
, #457.realm
parameter in OAuth 1 clients, #339.default_timeout
for requestsOAuth2Session
andAssertionSession
.jwk.loads
andjwk.dumps
v1.1.0
: Version 1.1.0Compare Source
This release contains breaking changes and security fixes.
claims_options
to Framework OpenID Connect clients, via #446 by @Galaxy102.stream
with context for HTTPX OAuth clients, via #465 by @bjoernmeierBreaking changes:
InvalidGrantError
for invalid code, redirect_uri and no user errors in OAuth 2.0 server.authlib.jose.jwt
would only work with JSON Web Signature algorithms, if you would like to use JWT with JWE algorithms, please pass the algorithms parameter:Security fixes for JOSE module
v1.0.1
: Version 1.0.1Compare Source
authenticate_none
method, via #438.missing_token
for Flask OAuth client, via #448.openid
in any place of the scope, via #449.v1.0.0
: Version 1.0.0Compare Source
We have dropped support for Python 2 in this release. We have removed
built-in SQLAlchemy integration.
OAuth Client Changes:
The whole framework client integrations have been restructured, if you are
using the client properly, e.g.
oauth.register(...)
, it would work asbefore.
OAuth Provider Changes:
In Flask OAuth 2.0 provider, we have removed the deprecated
OAUTH2_JWT_XXX
configuration, instead, developers should define.get_jwt_config
on OpenID extensions and grant types.SQLAlchemy integrations has been removed from Authlib. Developers
should define the database by themselves.
JOSE Changes
JWS
has been renamed toJsonWebSignature
JWE
has been renamed toJsonWebEncryption
JWK
has been renamed toJsonWebKey
JWT
has been renamed toJsonWebToken
The "Key" model has been re-designed, checkout the JSON Web Key for updates.
Added
ES256K
algorithm for JWS and JWT.Breaking Changes: find how to solve the deprecate issues via https://git.io/JkY4f
v0.15.6
Compare Source
v0.15.5
: Version 0.15.5Compare Source
alg
valuev0.15.4
: Version 0.15.4Compare Source
Security fix when JWT claims is None.
For example, JWT payload has
iss=None
:But we need to decode it with claims:
It didn't raise an error before this fix.
v0.15.3
: Version 0.15.3Compare Source
Fixed
.authorize_access_token
for OAuth 1.0 services, via https://github.com/lepture/authlib/issues/308v0.15.2
: Version 0.15.2Compare Source
Fixed httpx authentication bug via #283
v0.15.1
: Version 0.15.1Compare Source
Backward compitable fix for using JWKs in JWT, via #280.
v0.15
: Version 0.15Compare Source
This is the last release before v1.0. In this release, we added more RFCs
implementations and did some refactors for JOSE:
We also fixed bugs for integrations:
Breaking Change:
algorithms
inJsonWebSignature
andJsonWebEncryption
are changed. Usually you don't have to care about it since you won't use it directly.
pallets/flask (Flask)
v3.1.1
Compare Source
Released 2025-05-13
SECRET_KEY_FALLBACKS
. :ghsa:4grg-w6v8-c28g
cli_runner.invoke
. :issue:5645
flask --help
loads the app and plugins first to make sure all commandsare shown. :issue:
5673
AsyncIterable
. This is not accurate for Flask, but makes typing easierfor Quart. :pr:
5659
v3.1.0
Compare Source
Released 2024-11-13
5623
Werkzeug >= 3.1, ItsDangerous >= 2.2, Blinker >= 1.9. :pr:
5624,5633
responses. :pr:
5496
Flask.open_resource
/open_instance_resource
andBlueprint.open_resource
take anencoding
parameter to use whenopening in text mode. It defaults to
utf-8
. :issue:5504
Request.max_content_length
can be customized per-request instead of onlythrough the
MAX_CONTENT_LENGTH
config. AddedMAX_FORM_MEMORY_SIZE
andMAX_FORM_PARTS
config. Added documentationabout resource limits to the security page. :issue:
5625
Partitioned
cookie attribute (CHIPS), with theSESSION_COOKIE_PARTITIONED
config. :issue:5472
-e path
takes precedence over default.env
and.flaskenv
files.load_dotenv
loads default files in addition to a path unlessload_defaults=False
is passed. :issue:5628
SECRET_KEY_FALLBACKS
config, a list of oldsecret keys that can still be used for unsigning. Extensions will need to
add support. :issue:
5621
host_matching=True
orsubdomain_matching=False
interacts with
SERVER_NAME
. SettingSERVER_NAME
no longer restrictsrequests to only that domain. :issue:
5553
Request.trusted_hosts
is checked during routing, and can be set throughthe
TRUSTED_HOSTS
config. :issue:5636
v3.0.3
Compare Source
Released 2024-04-07
hashlib.sha1
may not be available in FIPS builds. Don'taccess it at import time so the developer has time to change the default.
:issue:
5448
cli
attribute in the sansio scaffold, but rather inthe
Flask
concrete class. :pr:5270
v3.0.2
Compare Source
Released 2024-02-03
jinja_loader
property. :issue:5388
--extra-files
and--exclude-patterns
CLI options.:issue:
5391
v3.0.1
Compare Source
Released 2024-01-18
path
argument tosend_file
. :issue:5336
flask run --key
option. :pr:5344
json.loads
object_hook
. This allows other JSON providers that don't implement that.:issue:
5381
5383
v3.0.0
Compare Source
Released 2023-09-30
5223
__version__
attribute. Use feature detection, orimportlib.metadata.version("flask")
, instead. :issue:5230
classes have Sans-IO bases. :pr:
5127
5264
boto/boto3 (boto3)
v1.38.27
Compare Source
=======
emr-serverless
: [botocore
] This release adds the capability for users to specify an optional Execution IAM policy in the StartJobRun action. The resulting permissions assumed by the job run is the intersection of the permissions in the Execution Role and the specified Execution IAM Policy.sagemaker
: [botocore
] Release new parameter CapacityReservationConfig in ProductionVariantv1.38.26
Compare Source
=======
amplify
: [botocore
] Add support for customizable build instance sizes. CreateApp and UpdateApp operations now accept a new JobConfig parameter composed of BuildComputeType.autoscaling
: [botocore
] Add support for "apple" CpuManufacturer in ABISbcm-pricing-calculator
: [botocore
] Add AFTER_DISCOUNTS_AND_COMMITMENTS to Workload Estimate Rate Type. Set ListWorkLoadEstimateUsage maxResults range to minimum of 0 and maximum of 300.cloudtrail
: [botocore
] CloudTrail Feature Release: Support for Enriched Events with Configurable Context for Event Data Storeconnect
: [botocore
] Amazon Connect Service Feature: Email Recipient Limit Increasedataexchange
: [botocore
] This release adds Tag support for Event Action resource, through which customers can create event actions with Tags and retrieve event actions with Tags.datasync
: [botocore
] AgentArns field is made optional for Object Storage and Azure Blob location create requests. Location credentials are now managed via Secrets Manager, and may be encrypted with service managed or customer managed keys. Authentication is now optional for Azure Blob locations.fsx
: [botocore
] FSx API changes to support the public launch of new Intelligent Tiering storage class on Amazon FSx for Lustreivs-realtime
: [botocore
] IVS Real-Time now offers customers the participant replication that allow customers to copy a participant from one stage to another.mwaa
: [botocore
] Amazon MWAA now lets you choose a worker replacement strategy when updating an environment. This release adds two worker replacement strategies: FORCED (default), which stops workers immediately, and GRACEFUL, which allows workers to finish current tasks before shutting down.s3
: [botocore
] Adding checksum support for S3 PutBucketOwnershipControls API.sagemaker
: [botocore
] Add maintenance status field to DescribeMlflowTrackingServer API responsev1.38.25
Compare Source
=======
cost-optimization-hub
: [botocore
] This release allows customers to modify their preferred commitment term and payment options.ec2
: [botocore
] Enable the option to automatically delete underlying Amazon EBS snapshots when deregistering Amazon Machine Images (AMIs)events
: [botocore
] Allow for more than 2 characters for location codes in EventBridge ARNsnetwork-firewall
: [botocore
] You can now use VPC endpoint associations to create multiple firewall endpoints for a single firewall.synthetics
: [botocore
] Add support to change ephemeral storage. Add a new field "TestResult" under CanaryRunStatus.v1.38.24
Compare Source
=======
ce
: [botocore
] This release introduces Cost Comparison feature (GetCostAndUsageComparisons, GetCostComparisonDrivers) allowing you find cost variations across multiple dimensions and identify key drivers of spending changes.deadline
: [botocore
] AWS Deadline Cloud service-managed fleets now support storage profiles. With storage profiles, you can map file paths between a workstation and the worker hosts running the job.ec2
: [botocore
] This release adds three features - option to store AWS Site-to-Site VPN pre-shared keys in AWS Secrets Manager, GetActiveVpnTunnelStatus API to check the in-use VPN algorithms, and SampleType option in GetVpnConnectionDeviceSampleConfiguration API to get recommended sample configs for VPN devices.v1.38.23
Compare Source
=======
ec2
: [botocore
] This release adds support for the C7i-flex, M7i-flex, I7i, I7ie, I8g, P6-b200, Trn2, C8gd, M8gd and R8gd instancessecurity-ir
: [botocore
] Update PrincipalId pattern documentation to reflect what user should receive back from the API callv1.38.22
Compare Source
=======
amp
: [botocore
] Add QueryLoggingConfiguration APIs for Amazon Managed Prometheusauditmanager
: [botocore
] With this release, the AssessmentControl description field has been deprecated, as of May 19, 2025. Additionally, the UpdateAssessment API can now return a ServiceQuotaExceededException when applicable service quotas are exceeded.dsql
: [botocore
] Features: support for customer managed encryption keysglue
: [botocore
] This release supports additional ConversionSpec parameter as part of IntegrationPartition Structure in CreateIntegrationTableProperty API. This parameter is referred to apply appropriate column transformation for columns that are used for timestamp based partitioningv1.38.21
Compare Source
=======
application-autoscaling
: [botocore
] Doc only update that addresses a customer reported issue.bedrock-agent-runtime
: [botocore
] Amazon Bedrock introduces asynchronous flows (in preview), which let you run flows for longer durations and yield control so that your application can perform other tasks and you don't have to actively monitor the flow's progress.cloudwatch
: [botocore
] Adds support for setting up Contributor Insight rules on logs transformed via Logs Transformation feature.ec2
: [botocore
] Release of Dualstack and Ipv6-only EC2 Public DNS hostnamespartnercentral-selling
: [botocore
] Modified validation to allow expectedCustomerSpend array with zero elements in Partner Opportunity operations.v1.38.20
Compare Source
=======
datasync
: [botocore
] Remove Discovery APIs from the DataSync serviceec2
: [botocore
] This release expands the ModifyInstanceMaintenanceOptions API to enable or disable instance migration during customer-initiated reboots for EC2 Scheduled Reboot Events.glue
: [botocore
] Enhanced AWS Glue ListConnectionTypes API Model with additional metadata fields.inspector2
: [botocore
] This release adds GetClustersForImage API and filter updates as part of the mapping of container images to running containers feature.oam
: [botocore
] Add IncludeTags field to GetLink, GetSink and UpdateLink APIprivatenetworks
: [botocore
] The privatenetworks client has been removed following the deprecation of the service.rds
: [botocore
] This release introduces the new DescribeDBMajorEngineVersions API for describing the properties of specific major versions of database engines.v1.38.19
Compare Source
=======
dsql
: [botocore
] CreateMultiRegionCluster and DeleteMultiRegionCluster APIs removedec2
: [botocore
] This release includes new APIs for System Integrity Protection (SIP) configuration and automated root volume ownership delegation for EC2 Mac instances.mediapackagev2
: [botocore
] This release adds support for DVB-DASH, EBU-TT-D subtitle format, and non-compacted manifests for DASH in MediaPackage v2 Origin Endpoints.v1.38.18
Compare Source
=======
bedrock-data-automation
: [botocore
] Add support for VIDEO modality to BlueprintType enum.bedrock-data-automation-runtime
: [botocore
] Add AssetProcessingConfiguration for video segment to InputConfigurationcodepipeline
: [botocore
] CodePipeline now supports new API ListDeployActionExecutionTargets that lists the deployment target details for deploy action executions.ecs
: [botocore
] This is an Amazon ECs documentation only release to support the change of the container exit "reason" field from 255 characters to 1024 characters.emr
: [botocore
] Added APIs for managing Application UIs: Access Persistent (serverless) UIs via CreatePersistentAppUI DescribePersistentAppUI & GetPersistentAppUIPresignedURL, and Cluster-based UIs through GetOnClusterAppUIPresignedURL. Supports Yarn, Spark History, and TEZ interfaces.glue
: [botocore
] Changes include (1) Excel as S3 Source type and XML and Tableau's Hyper as S3 Sink types, (2) targeted number of partitions parameter in S3 sinks and (3) new compression types in CSV/JSON and Parquet S3 sinks.neptune
: [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.service-quotas
: [botocore
] This release introduces CreateSupportCase operation to SDK.v1.38.17
Compare Source
=======
bedrock-agent
: [botocore
] Amazon Bedrock Flows introduces DoWhile loops nodes, parallel node executions, and enhancements to knowledge base nodes.codebuild
: [botocore
] AWS CodeBuild now supports Docker Server capabilitycontroltower
: [botocore
] Updated the descriptions for the AWS Control Tower Baseline APIs to make them more intuitive.dms
: [botocore
] Introduces Data Resync feature to describe-table-statistics and IAM database authentication for MariaDB, MySQL, and PostgreSQL.pcs
: [botocore
] This release adds support for Slurm accounting. For more information, see the Slurm accounting topic in the AWS PCS User Guide. Slurm accounting is supported for Slurm 24.11 and later. This release also adds 24.11 as a valid value for the version parameter of the Scheduler data type.workspaces
: [botocore
] Added the new AlwaysOn running mode for WorkSpaces Pools. Customers can now choose between AlwaysOn (for instant access, with hourly usage billing regardless of connection status), or AutoStop (to optimize cost, with a brief startup delay) for their pools.v1.38.16
Compare Source
=======
cognito-idp
: [botocore
] Add exceptions to WebAuthn operations.firehose
: [botocore
] This release adds catalogARN support for s3 tables multi-catalog catalogARNs.logs
: [botocore
] This release adds a new API "ListLogGroups" and an improvement in API "DescribeLogGroups"mediaconvert
: [botocore
] This update enables cropping for video overlays and adds a new STL to Teletext upconversion toggle to preserve styling.v1.38.15
Compare Source
=======
bedrock
: [botocore
] Enable cross-Region inference for Amazon Bedrock Guardrails by using the crossRegionConfig parameter when calling the CreateGuardrail or UpdateGuardrail operation.bedrock-agent-runtime
: [botocore
] Changes for enhanced metadata in tracecontroltower
: [botocore
] AWS Control Tower now reports the inheritance drift status for EnabledBaselines through the GetEnabledBaseline and ListEnabledBaselines APIs. You can now filter EnabledBaselines by their enablement and drift status using the ListEnabledBaselines API to view accounts and OUs that require attention.dsql
: [botocore
] CreateMultiRegionClusters and DeleteMultiRegionClusters APIs marked as deprecated. Introduced new multi-Region clusters creation experience through multiRegionProperties parameter in CreateCluster API.ecs
: [botocore
] This release extends functionality for Amazon EBS volumes attached to Amazon ECS tasks by adding support for the new EBS volumeInitializationRate parameter in ECS RunTask/StartTask/CreateService/UpdateService APIs.license-manager
: [botocore
] Add Tagging feature to resources in the Managed Entitlements service. License and Grant resources can now be tagged.v1.38.14
Compare Source
=======
deadline
: [botocore
] AWS Deadline Cloud service-managed fleets now support configuration scripts. Configuration scripts make it easy to install additional software, like plugins and packages, onto a worker.ec2
: [botocore
] EC2 - Adding support for AvailabilityZoneIdiam
: [botocore
] Updating the endpoint list for the Identity and access management (IAM) servicemedialive
: [botocore
] Add support to the AV1 rate control modemediatailor
: [botocore
] Documenting that EnabledLoggingStrategies is always present in responses of PlaybackConfiguration read operations.s3control
: [botocore
] Updates to support S3 Express zonal endpoints for directory buckets in AWS CLIsagemaker
: [botocore
] No API changes from previous release. This release migrated the model to Smithy keeping all features unchanged.supplychain
: [botocore
] Launch new AWS Supply Chain public APIs for DataIntegrationEvent, DataIntegrationFlowExecution and DatasetNamespace. Also add more capabilities to existing public APIs to support direct dataset event publish, data deduplication in DataIntegrationFlow, partition specification of custom datasets.v1.38.13
Compare Source
=======
athena
: [botocore
] Minor API documentation updateslogs
: [botocore
] We are pleased to announce limit increases to our grok processor logs transformation feature. Now you can define 20 Grok patterns in their configurations, with an expanded total pattern matching limit of 512 characters.synthetics
: [botocore
] Add support to retry a canary automatically after schedule run failures. Users can enable this feature by configuring the RetryConfig field when calling the CreateCanary or UpdateCanary API. Also includes changes in GetCanary and GetCanaryRuns to support retrieving retry configurations.workspaces
: [botocore
] Remove parameter EnableWorkDocs from WorkSpacesServiceModel due to end of support of Amazon WorkDocs service.v1.38.12
Compare Source
=======
cloudfront
: [botocore
] Doc-only update for CloudFront. These changes include customer-reported issues.codepipeline
: [botocore
] Add support for Secrets Manager and Plaintext environment variable types in Commands actionec2
: [botocore
] Launching the feature to support ENA queues offering flexibility to support multiple queues per Enhanced Network Interface (ENI)glue
: [botocore
] This new release supports customizable RefreshInterval for all Saas ZETL integrations from 15 minutes to 6 days.guardduty
: [botocore
] Updated description of a data structure.sso-admin
: [botocore
] Update PutPermissionBoundaryToPermissionSet API's managedPolicyArn pattern to allow valid ARN only. Update ApplicationName to allow white spaces.v1.38.11
Compare Source
=======
ec2
: [botocore
] This release adds API support for Path Component Exclusion (Filter Out ARN) for Reachability Analyzerimagebuilder
: [botocore
] Updated the CreateImageRecipeRequest ParentImage description to include all valid values as updated with the SSM Parameters project.medialive
: [botocore
] Enables Updating Anywhere Settings on a MediaLive Anywhere Channel.sagemaker
: [botocore
] SageMaker AI Studio users can now migrate to SageMaker Unified Studio, which offers a unified web-based development experience that integrates AWS data, analytics, artificial intelligence (AI), and machine learning (ML) services, as well as additional tools and resourcesynthetics
: [botocore
] Add support to test a canary update by invoking a dry run of a canary. This behavior can be used via the new StartCanaryDryRun API along with new fields in UpdateCanary to apply dry run changes. Also includes changes in GetCanary and GetCanaryRuns to support retrieving dry run configurations.v1.38.10
Compare Source
=======
ec2
: [botocore
] This release adds support for Amazon EBS Provisioned Rate for Volume Initialization, which lets you specify a volume initialization rate to ensure that your EBS volumes are initialized in a predictable amount of time.servicecatalog
: [botocore
] ServiceCatalog's APIs (DeleteServiceAction, DisassociateServiceActionFromProvisioningArtifact, AssociateServiceActionWithProvisioningArtifact) now throw InvalidParametersException when IdempotencyToken is invalid.timestream-query
: [botocore
] Add dualstack endpoints support and correct us-gov-west-1 FIPS endpoint.timestream-write
: [botocore
] Add dualstack endpoints support.v1.38.9
Compare Source
======
datazone
: [botocore
] This release adds a new authorization policy to control the usage of custom AssetType when creating an Asset. Customer can now add new grant(s) of policyType USE_ASSET_TYPE for custom AssetTypes to apply authorization policy to projects members and domain unit owners.devicefarm
: [botocore
] Add an optional parameter to the GetDevicePoolCompatibility API to pass in project information to check device pool compatibility.ec2
: [botocore
] This update introduces API operations to manage and create local gateway VIF and VIF groups. It also includes API operations to describe Outpost LAGs and service link VIFs.ecs
: [botocore
] Add support to roll back an In_Progress ECS Service Deploymentmediaconvert
: [botocore
] This release adds an optional sidecar per-frame video quality metrics report and an ALL_PCM option for audio selectors. It also changes the data type for Probe API response fields related to video and audio bitrate from integer to double.v1.38.8
Compare Source
======
bedrock-data-automation
: [botocore
] Added support for Custom output and blueprints for AUDIO data types.ds
: [botocore
] Doc only update - fixed typos.kinesis
: [botocore
] Marking ResourceARN as required for Amazon Kinesis Data Streams APIs TagResource, UntagResource, and ListTagsForResource.v1.38.7
Compare Source
======
appconfig
: [botocore
] Adding waiter support for deployments and environments; documentation updatesconnect
: [botocore
] This release adds the following fields to DescribeContact: DisconnectReason, AgentInitiatedHoldDuration, AfterContactWorkStartTimestamp, AfterContactWorkEndTimestamp, AfterContactWorkDuration, StateTransitions, Recordings, ContactDetails, ContactEvaluations, Attributessagemaker
: [botocore
] Feature - Adding support for Scheduled and Rolling Update Software in Sagemaker Hyperpod.verifiedpermissions
: [botocore
] Amazon Verified Permissions / Features : Adds support for tagging policy stores.v1.38.6
Compare Source
======
bedrock
: [botocore
] You can now specify a cross region inference profile as a teacher model for the CreateModelCustomizationJob API. Additionally, the GetModelCustomizationJob API has been enhanced to return the sub-task statuses of a customization job within the StatusDetails response field.bedrock-agent
: [botocore
] Features: Add inline code node to prompt flowbedrock-agent-runtime
: [botocore
] Support for Custom Orchestration within InlineAgentscleanrooms
: [botocore
] This release adds support for ProtectedQuery results to be delivered to more than one collaboration member via the new distribute output configuration in StartProtectedQuery.deadline
: [botocore
] Adds support for tag management on workers and tag inheritance from fleets to their associated workers.ec2
: [botocore
] Launch of cost distribution feature for IPAM owners to distribute costs to internal teams.ecr
: [botocore
] Adds dualstack support for Amazon Elastic Container Registry (Amazon ECR).ecr-public
: [botocore
] Adds dualstack support for Amazon Elastic Container Registry Public (Amazon ECR Public).logs
: [botocore
] CloudWatch Logs supports "DELIVERY" log class. This log class is used only for delivering AWS Lambda logs to Amazon S3 or Amazon Data Firehose.mailmanager
: [botocore
] Introducing new RuleSet rule PublishToSns action, which allows customers to publish email notifications to an Amazon SNS topic. New PublishToSns action enables customers to easily integrate their email workflows via Amazon SNS, allowing them to notify other systems about important email events.v1.38.5
Compare Source
======
connectcases
: [botocore
] Introduces CustomEntity as part of the UserUnion data type. This field is used to indicate the entity who is performing the API action.kinesis
: [botocore
] Amazon KDS now supports tagging and attribute-based access control (ABAC) for enhanced fan-out consumers.pinpoint-sms-voice-v2
: [botocore
] AWS End User Messaging has added MONITOR and FILTER functionality to SMS Protect.qbusiness
: [botocore
] Add support for anonymous user access for Q Business applicationssagemaker
: [botocore
] Introduced support for P5en instance types on SageMaker Studio foConfiguration
📅 Schedule: Branch creation - "every weekend" in timezone UTC, Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR was generated by Mend Renovate. View the repository job log.