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.4.0
>=2.2.3, <3
->>=3.1, <4
~=1.34.114
->~=1.35.96
~=1.0.0
->~=1.3.1
==2.14.2
->==3.2.0
~=2.14.2
->~=3.2.0
==0.6.6
->==0.6.7
==0.49.1
->==0.50.2
~=2.8.5
->~=2.18.1
==22.0.0
->==23.0.0
~=22.0.0
->~=23.0.0
>=3.6.3, <3.7
->>=3.10, <3.11
~=0.59.1
->~=0.60.0
~=5.9.8
->~=6.1.1
>=5.9.5, <6
->>=6.1.1, <7
==16.0.0
->==18.1.0
~=1.10.7
->~=2.10.5
>=1.10.7, <2
->>=2.10.5, <3
~=1.13.1
->~=1.15.0
3.23.11
->5.18.2
3.0.13
->5.18.2
22.04
->24.04
Release Notes
lepture/authlib (Authlib)
v1.4.0
Compare Source
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.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:5230
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.35.96
Compare Source
=======
codebuild
: [botocore
] AWS CodeBuild Now Supports BuildBatch in Reserved Capacity and Lambdacompute-optimizer
: [botocore
] This release expands AWS Compute Optimizer rightsizing recommendation support for Amazon EC2 Auto Scaling groups to include those with scaling policies and multiple instance types.fms
: [botocore
] AWS Firewall Manager now lets you combine multiple resource tags using the logical AND operator or the logical OR operator.v1.35.95
Compare Source
=======
rds
: [botocore
] Updates Amazon RDS documentation to clarify the RestoreDBClusterToPointInTime description.route53
: [botocore
] Amazon Route 53 now supports the Asia Pacific (Thailand) Region (ap-southeast-7) for latency records, geoproximity records, and private DNS for Amazon VPCs in that regionsagemaker
: [botocore
] Adds support for IPv6 for SageMaker HyperPod cluster nodes.v1.35.94
Compare Source
=======
cloudhsmv2
: [botocore
] Adds support to ModifyCluster for modifying a Cluster's Hsm Type.dynamodb
: [botocore
] This release makes Amazon DynamoDB point-in-time-recovery (PITR) to be configurable. You can set PITR recovery period for each table individually to between 1 and 35 days.imagebuilder
: [botocore
] This release adds support for importing images from ISO disk files. Added new ImportDiskImage API operation.v1.35.93
Compare Source
=======
iotsecuretunneling
: [botocore
] Adds dualstack endpoint support for IoT Secure Tunnelingsupplychain
: [botocore
] Allow vanity DNS domain when creating a new ASC instancev1.35.92
Compare Source
=======
ecs
: [botocore
] Adding SDK reference examples for Amazon ECS operations.route53domains
: [botocore
] Doc only update for Route 53 Domains that fixes several customer-reported issuess3
: [botocore
] This change is only for updating the model regexp of CopySource which is not for validation but only for documentation and user guide change.v1.35.91
Compare Source
=======
appsync
: [botocore
] Modify UpdateGraphQLAPI operation and flag authenticationType as required.gamelift
: [botocore
] Amazon GameLift releases a new game session shutdown feature. Use the Amazon GameLift console or AWS CLI to terminate an in-progress game session that's entered a bad state or is no longer needed.mediaconnect
: [botocore
] AWS Elemental MediaConnect now supports Content Quality Analysis for enhanced source stream monitoring. This enables you to track specific audio and video metrics in transport stream source flows, ensuring your content meets quality standards.mediaconvert
: [botocore
] This release adds support for the AVC3 codec and fixes an alignment issue with Japanese vertical captions.organizations
: [botocore
] Added ALL_FEATURES_MIGRATION_ORGANIZATION_SIZE_LIMIT_EXCEEDED to ConstraintViolationException for the EnableAllFeatures operation.sagemaker
: [botocore
] Adding ETag information with Model Artifacts for Model Registrysqs
: [botocore
] In-flight message typo fix from 20k to 120k.v1.35.90
Compare Source
=======
ecr
: [botocore
] Restoring custom endpoint functionality for ECRecr-public
: [botocore
] Restoring custom endpoint functionality for ECR Publicv1.35.89
Compare Source
=======
rds
: [botocore
] Updates Amazon RDS documentation to correct various descriptions.v1.35.88
Compare Source
=======
bcm-pricing-calculator
: [botocore
] Added ConflictException to DeleteBillEstimate.ecr
: [botocore
] Add support for Dualstack Endpointsnetwork-firewall
: [botocore
] Dual-stack endpoints are now supported.securityhub
: [botocore
] Documentation updates for AWS Security Hubv1.35.87
Compare Source
=======
ecr
: [botocore
] Documentation update for ECR GetAccountSetting and PutAccountSetting APIs.ecr-public
: [botocore
] Add support for Dualstack endpointseks
: [botocore
] This release adds support for DescribeClusterVersions API that provides important information about Kubernetes versions along with end of support datesglue
: [botocore
] Add IncludeRoot parameters to GetCatalogs API to return root catalog.v1.35.86
Compare Source
=======
bedrock-agent
: [botocore
] Support for custom user agent and max web pages crawled for web connector. Support app only credentials for SharePoint connector. Increase agents memory duration limit to 365 days. Support to specify max number of session summaries to include in agent invocation context.bedrock-agent-runtime
: [botocore
] bedrock agents now supports long term memory and performance configs. Invokeflow supports performance configs. RetrieveAndGenerate performance configsbedrock-data-automation
: [botocore
] Documentation update for Amazon Bedrock Data Automationbedrock-data-automation-runtime
: [botocore
] Documentation update for Amazon Bedrock Data Automation Runtimebilling
: [botocore
] Added new API's for defining and fetching Billing Views.ce
: [botocore
] Support for retrieving cost, usage, and forecast for billing view.connect
: [botocore
] This release supports adding NotAttributeCondition and Range to the RoutingCriteria object.docdb
: [botocore
] Support AWS Secret Manager managed password for AWS DocumentDB instance-based cluster.eks
: [botocore
] This release expands the catalog of upgrade insight checksmacie2
: [botocore
] This release adds support for identifying S3 general purpose buckets that exceed the Amazon Macie quota for preventative control monitoring.outposts
: [botocore
] Add CS8365C as a supported power connector for Outpost sites.sagemaker
: [botocore
] This release adds support for c6i, m6i and r6i instance on SageMaker Hyperpod and trn1 instances in batchv1.35.85
Compare Source
=======
appstream
: [botocore
] Added support for Rocky Linux 8 on Amazon AppStream 2.0mediaconvert
: [botocore
] This release adds support for inserting timecode tracks into MP4 container outputs.medialive
: [botocore
] MediaLive is releasing ListVersions apiqconnect
: [botocore
] Amazon Q in Connect enables agents to ask Q for assistance in multiple languages and Q will provide answers and recommended step-by-step guides in those languages. Qs default language is English (United States) and you can switch this by setting the locale configuration on the AI Agent.ssm-sap
: [botocore
] AWS Systems Manager for SAP added support for registration and discovery of distributed ABAP applicationsworkspaces
: [botocore
] Added AWS Global Accelerator (AGA) support for WorkSpaces Personal.v1.35.84
Compare Source
=======
amplify
: [botocore
] Added WAF Configuration to Amplify Appsbudgets
: [botocore
] Releasing minor partition endpoint updatesconnect
: [botocore
] This release adds support for the UpdateParticipantAuthentication API used for customer authentication within Amazon Connect chats.connectparticipant
: [botocore
] This release adds support for the GetAuthenticationUrl and CancelParticipantAuthentication APIs used for customer authentication within Amazon Connect chats. There are also minor updates to the GetAttachment API.datasync
: [botocore
] AWS DataSync introduces the ability to update attributes for in-cloud locations.iot
: [botocore
] Release connectivity status query API which is a dedicated high throughput(TPS) API to query a specific device's most recent connectivity state and metadata.mwaa
: [botocore
] Added support for Apache Airflow version 2.10.3 to MWAA.quicksight
: [botocore
] Add support for PerformanceConfiguration attribute to Dataset entity. Allow PerformanceConfiguration specification in CreateDataset and UpdateDataset APIs.resiliencehub
: [botocore
] AWS Resilience Hub now automatically detects already configured CloudWatch alarms and FIS experiments as part of the assessment process and returns the discovered resources in the corresponding list API responses. It also allows you to include or exclude test recommendations for an AppComponent.transfer
: [botocore
] Added AS2 agreement configurations to control filename preservation and message signing enforcement. Added AS2 connector configuration to preserve content type from S3 objects.v1.35.83
Compare Source
=======
account
: [botocore
] Update endpoint configuration.backup
: [botocore
] Add Support for Backup Indexingbackupsearch
: [botocore
] Add support for searching backupsbatch
: [botocore
] This feature allows AWS Batch on Amazon EKS to support configuration of Pod Annotations, overriding Namespace on which the Batch job's Pod runs on, and allows Subpath and Persistent Volume claim to be set for AWS Batch on Amazon EKS jobs.cleanroomsml
: [botocore
] Add support for SQL compute configuration for StartAudienceGenerationJob API.cloudfront
: [botocore
] Adds support for OriginReadTimeout and OriginKeepaliveTimeout to create CloudFront Distributions with VPC Origins.codepipeline
: [botocore
] AWS CodePipeline V2 type pipelines now support Managed Compute Rule.ecs
: [botocore
] Added support for enableFaultInjection task definition parameter which can be used to enable Fault Injection feature on ECS tasks.m2
: [botocore
] This release adds support for AWS Mainframe Modernization(M2) Service to allow specifying network type(ipv4, dual) for the environment instances. For dual network type, m2 environment applications will serve both IPv4 and IPv6 requests, whereas for ipv4 it will serve only IPv4 requests.synthetics
: [botocore
] Add support to toggle outbound IPv6 traffic on canaries connected to dualstack subnets. This behavior can be controlled via the new Ipv6AllowedForDualStack parameter of the VpcConfig input object in CreateCanary and UpdateCanary APIs.v1.35.82
Compare Source
=======
cloud9
: [botocore
] Added information about Ubuntu 18.04 will be removed from the available imageIds for Cloud9 because Ubuntu 18.04 has ended standard support on May 31, 2023.dlm
: [botocore
] This release adds support for Local Zones in Amazon Data Lifecycle Manager EBS snapshot lifecycle policies.ec2
: [botocore
] This release adds support for EBS local snapshots in AWS Dedicated Local Zones, which allows you to store snapshots of EBS volumes locally in Dedicated Local Zones.greengrassv2
: [botocore
] Add support for runtime in GetCoreDevice and ListCoreDevices APIs.medialive
: [botocore
] AWS Elemental MediaLive adds three new features: MediaPackage v2 endpoint support for live stream delivery, KLV metadata passthrough in CMAF Ingest output groups, and Metadata Name Modifier in CMAF Ingest output groups for customizing metadata track names in output streams.rds
: [botocore
] This release adds support for the "MYSQL_CACHING_SHA2_PASSWORD" enum value for RDS Proxy ClientPasswordAuthType.v1.35.81
Compare Source
=======
cloudhsmv2
: [botocore
] Add support for Dual-Stack hsm2m.medium clusters. The customers will now be able to create hsm2m.medium clusters having both IPv4 and IPv6 connection capabilities by specifying a new param called NetworkType=DUALSTACK during cluster creation.ec2
: [botocore
] This release adds GroupId to the response for DeleteSecurityGroup.eks
: [botocore
] Add NodeRepairConfig in CreateNodegroupRequest and UpdateNodegroupConfigRequestlogs
: [botocore
] Limit PutIntegration IntegrationName and ListIntegrations IntegrationNamePrefix parameters to 50 charactersmediaconnect
: [botocore
] AWS Elemental MediaConnect Gateway now supports Source Specific Multicast (SSM) for ingress bridges. This enables you to specify a source IP address in addition to a multicast IP when creating or updating an ingress bridge source.networkmanager
: [botocore
] There was a sentence fragment in UpdateDirectConnectGatewayAttachment that was causing customer confusion as to whether it's an incomplete sentence or if it was a typo. Removed the fragment.servicediscovery
: [botocore
] AWS Cloud Map now supports service-level attributes, allowing you to associate custom metadata directly with services. These attributes can be retrieved, updated, and deleted using the new GetServiceAttributes, UpdateServiceAttributes, and DeleteServiceAttributes API calls.v1.35.80
Compare Source
=======
connect
: [botocore
] Configure holidays and other overrides to hours of operation in advance. During contact handling, Amazon Connect automatically checks for overrides and provides customers with an appropriate flow path. After an override period passes call center automatically reverts to standard hours of operation.dms
: [botocore
] Add parameters to support for kerberos authentication. Add parameter for disabling the Unicode source filter with PostgreSQL settings. Add parameter to use large integer value with Kinesis/Kafka settings.glue
: [botocore
] To support customer-managed encryption in Data Quality to allow customers encrypt data with their own KMS key, we will add a DataQualityEncryption field to the SecurityConfiguration API where customers can provide their KMS keys.guardduty
: [botocore
] Improved descriptions for certain APIs.route53domains
: [botocore
] This release includes the following API updates: added the enumeration type RESTORE_DOMAIN to the OperationType; constrained the Price attribute to non-negative values; updated the LangCode to allow 2 or 3 alphabetical characters.v1.35.79
Compare Source
=======
artifact
: [botocore
] Add support for listing active customer agreements for the calling AWS Account.cloudtrail
: [botocore
] Doc-only updates for CloudTrail.cognito-idp
: [botocore
] Updated descriptions for some API operations and parameters, corrected some errors in Cognito user poolscontrolcatalog
: [botocore
] Minor documentation updates to the content of ImplementationDetails object part of the Control Catalog GetControl APIemr-serverless
: [botocore
] This release adds support for accessing system profile logs in Lake Formation-enabled jobs.mgh
: [botocore
] API and documentation updates for AWS MigrationHub related to adding support for listing migration task updates and associating, disassociating and listing source resourcessesv2
: [botocore
] Introduces support for multi-region endpoint.timestream-influxdb
: [botocore
] Adds networkType parameter to CreateDbInstance API which allows IPv6 support to the InfluxDB endpointv1.35.78
Compare Source
=======
application-autoscaling
: [botocore
] Doc only update for AAS Predictive Scaling policy configuration API.bcm-pricing-calculator
: [botocore
] Updated condition key inference from Workload Estimate, Bill Scenario, and Bill Estimate resources. Updated documentation links.connect
: [botocore
] Add support for Push Notifications for Amazon Connect chat. With Push Notifications enabled an alert could be sent to customers about new messages even when they aren't actively using the mobile application.finspace
: [botocore
] Update KxCommandLineArgument value parameter regex to allow for spaces and semicolonsivs-realtime
: [botocore
] IVS Real-Time now offers customers the ability to customize thumbnails recording mode and interval for both Individual Participant Recording (IPR) and Server-Side Compositions (SSC).sesv2
: [botocore
] Introduces support for creating DEED (Deterministic Easy-DKIM) identities.v1.35.77
Compare Source
=======
appsync
: [botocore
] Provides description of new Amazon Bedrock runtime datasource.cognito-idp
: [botocore
] ChangeCustomDomainConfig
from a required to an optional parameter for theUpdateUserPoolDomain
operation.ec2
: [botocore
] This release includes a new API for modifying instance network-performance-options after launch.ecs
: [botocore
] This is a documentation only update to address various tickets for Amazon ECS.keyspaces
: [botocore
] Amazon Keyspaces: adding the list of IAM actions required by the UpdateKeyspace API.medialive
: [botocore
] H265 outputs now support disabling the deblocking filter.workspaces
: [botocore
] Added text to clarify case-sensitivityv1.35.76
Compare Source
=======
partnercentral-selling
: [botocore
] Introducing the preview of new partner central selling APIs designed to transform how AWS partners collaborate and co-sell with multiple partners. This enables multiple partners to seamlessly engage and jointly pursue customer opportunities, fostering a new era of collaborative selling.qbusiness
: [botocore
] This release removes the deprecated UserId and UserGroups fields from SearchRelevantContent api's request parameters.v1.35.75
Compare Source
=======
bedrock
: [botocore
] Introduced two APIs ListPromptRouters and GetPromptRouter for Intelligent Prompt Router feature. Add support for Bedrock Guardrails image content filter. New Bedrock Marketplace feature enabling a wider range of bedrock compatible models with self-hosted capability.bedrock-agent
: [botocore
] This release introduces the ability to generate SQL using natural language, through a new GenerateQuery API (with native integration into Knowledge Bases); ability to ingest and retrieve images through Bedrock Data Automation; and ability to create a Knowledge Base backed by Kendra GenAI Index.bedrock-agent-runtime
: [botocore
] This release introduces the ability to generate SQL using natural language, through a new GenerateQuery API (with native integration into Knowledge Bases); ability to ingest and retrieve images through Bedrock Data Automation; and ability to create a Knowledge Base backed by Kendra GenAI Index.bedrock-data-automation
: [botocore
] Release Bedrock Data Automation SDKbedrock-data-automation-runtime
: [botocore
] Release Bedrock Data Automation Runtime SDKbedrock-runtime
: [botocore
] Added support for Intelligent Prompt Router in Invoke, InvokeStream, Converse and ConverseStream. Add support for Bedrock Guardrails image content filter. New Bedrock Marketplace feature enabling a wider range of bedrock compatible models with self-hosted capability.kendra
: [botocore
] This release adds GenAI Index in Amazon Kendra for Retrieval Augmented Generation (RAG) and intelligent search. With the Kendra GenAI Index, customers get high retrieval accuracy powered by the latest information retrieval technologies and semantic models.sagemaker
: [botocore
] Amazon SageMaker HyperPod launched task governance to help customers maximize accelerator utilization for model development and flexible training plans to meet training timelines and budget while reducing weeks of training time. AI apps from AWS partner is now available in SageMaker.v1.35.74
Compare Source
=======
athena
: [botocore
] Add FEDERATED type to CreateDataCatalog. This creates Athena Data Catalog, AWS Lambda connector, and AWS Glue connection. Create/DeleteDataCatalog returns DataCatalog. Add Status, ConnectionType, and Error to DataCatalog and DataCatalogSummary. Add DeleteCatalogOnly to delete Athena Catalog only.bedrock
: [botocore
] Tagging support for Async Invoke resources. Added support for Distillation in CreateModelCustomizationJob API. Support for videoDataDeliveryEnabled flag in invocation logging.bedrock-agent
: [botocore
] Releasing SDK for Multi-Agent Collaboration.bedrock-agent-runtime
: [botocore
] Releasing SDK for multi agent collaborationbedrock-runtime
: [botocore
] Added support for Async Invoke Operations Start, List and Get. Support for invocation logs withrequestMetadata
field in Converse, ConverseStream, Invoke and InvokeStream. Video content blocks in Converse/ConverseStream accept raw bytes or S3 URI.cloudwatch
: [botocore
] Support for configuring AiOps investigation as alarm actiondatazone
: [botocore
] Adds support for Connections, ProjectProfiles, and JobRuns APIs. Supports the new Lineage feature at GA. Adjusts optionality of a parameter for DataSource and SubscriptionTarget APIs which may adjust types in some clients.dsql
: [botocore
] Add new API operations for Amazon Aurora DSQL. Amazon Aurora DSQL is a serverless, distributed SQL database with virtually unlimited scale, highest availability, and zero infrastructure management.dynamodb
: [botocore
] This change adds support for global tables with multi-Region strong consistency (in preview). The UpdateTable API now supports a new attribute MultiRegionConsistency to set consistency when creating global tables. The DescribeTable output now optionally includes the MultiRegionConsistency attribute.glue
: [botocore
] This release includes(1)Zero-ETL integration to ingest data from 3P SaaS and DynamoDB to Redshift/Redlake (2)new properties on Connections to enable reuse; new connection APIs for retrieve/preview metadata (3)support of CRUD operations for Multi-catalog (4)support of automatic statistics collectionslakeformation
: [botocore
] This release added two new LakeFormation Permissions (CREATE_CATALOG, SUPER_USER) and added Id field for CatalogResource. It also added new conditon and expression field.qapps
: [botocore
] Add support for 11 new plugins as action cards to help automate repetitive tasks and improve productivity.qbusiness
: [botocore
] Amazon Q Business now supports customization options for your web experience, 11 new Plugins, and QuickSight support. Amazon Q index allows software providers to enrich their native generative AI experiences with their customer's enterprise knowledge and user context spanning multiple applications.quicksight
: [botocore
] This release includes API needed to support for Unstructured Data in Q in QuickSight Q&A (IDC).redshift
: [botocore
] Adds support for Amazon Redshift RegisterNamespace and DeregisterNamespace APIs to share data to AWS Glue Data Catalog.redshift-serverless
: [botocore
] Adds support for the ListManagedWorkgroups API to get an overview of existing managed workgroups.s3
: [botocore
] Amazon S3 Metadata stores object metadata in read-only, fully managed Apache Iceberg metadata tables that you can query. You can create metadata table configurations for S3 general purpose buckets.s3tables
: [botocore
] Amazon S3 Tables deliver the first cloud object store with built-in open table format support, and the easiest way to store tabular data at scale.v1.35.73
Compare Source
=======
Configuration
📅 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.