Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Jun 16, 2025

This PR contains the following updates:

Package Change Age Confidence Type Update
@types/aws-lambda (source) 8.10.145 -> 8.10.152 age confidence dependencies patch
@types/node (source) 24.2.1 -> 24.4.0 age confidence devDependencies minor
@types/semver (source) 7.7.0 -> 7.7.1 age confidence dependencies patch
Google.Apis.AndroidPublisher.v3 1.69.0.3805 -> 1.70.0.3899 age confidence nuget minor
Microsoft.Kiota.Bundle (source) 1.19.0 -> 1.19.1 age confidence nuget patch
OpenAI (source) 2.2.0 -> 2.4.0 age confidence nuget minor
OpenAI-DotNet 8.6.4 -> 8.8.1 age confidence nuget minor
aws (source) 5.93.0 -> 5.100.0 age confidence required_provider minor
aws-sdk 2.1691.0 -> 2.1692.0 age confidence dependencies minor
bootstrap (source) 5.3.6 -> 5.3.8 age confidence dependencies patch
concurrently 9.1.2 -> 9.2.1 age confidence devDependencies minor
csharpier 1.0.2 -> 1.1.2 age confidence nuget minor
cypress (source) 14.4.1 -> 14.5.4 age confidence devDependencies minor
hashicorp/terraform 1.9.8 -> 1.13.2 age confidence minor
hashicorp/terraform = 1.9.8 -> 1.13.2 age confidence required_version minor
openai 5.12.2 -> 5.20.2 age confidence dependencies minor
postcss (source) 8.5.4 -> 8.5.6 age confidence devDependencies patch
prettier (source) 3.5.3 -> 3.6.2 age confidence devDependencies minor
sass 1.89.1 -> 1.92.1 age confidence devDependencies minor
ts-loader 9.5.1 -> 9.5.4 age confidence devDependencies patch
typescript (source) 5.6.3 -> 5.9.2 age confidence devDependencies minor
webpack 5.95.0 -> 5.101.3 age confidence devDependencies minor
xunit.runner.visualstudio 3.1.1 -> 3.1.4 age confidence nuget patch
zx (source) 8.8.0 -> 8.8.1 age confidence devDependencies patch

Release Notes

microsoft/kiota-dotnet (Microsoft.Kiota.Bundle)

v1.19.1

Bug Fixes
  • ConfigureAwait(false) deadlock issue in BaseBearerTokenAuthenticationProvider (473b886)
openai/openai-dotnet (OpenAI)

v2.4.0

Compare Source

Features Added
  • OpenAI.Audio:
    • Added the Endpoint property to AudioClient.
  • OpenAI.Batch:
    • Added the Endpoint property to BatchClient.
  • OpenAI.Chat:
    • Added the Endpoint property to ChatClient.
    • Added the ServiceTier property to ChatCompletionOptions, ChatCompletion, and StreamingChatCompletionUpdate to configure the policy that the server will use to process the request in terms of pricing, performance, etc.
    • Added an explicit conversion operator to ChatCompletion and ChatCompletionDeletionResult to convert from ClientResult.
  • OpenAI.Containers:
    • Added the Endpoint property to ContainerClient.
    • Added convenience counterparts to the protocol methods of ContainerClient that use the strongly-typed model classes.
    • Added automatic pagination support to the following methods of ContainerClient:
      • GetContainers and GetContainersAsync
      • GetContainerFiles and GetContainerFilesAsync
    • Added an explicit conversion operator to ContainerResource, ContainerFileResource, DeleteContainerResponse, and DeleteContainerFileResponse to convert from ClientResult.
  • OpenAI.Embeddings:
    • Added the Endpoint property to EmbeddingsClient.
    • Added an explicit conversion operator to OpenAIEmbeddingCollection to convert from ClientResult.
  • OpenAI.Evals:
    • Added the Endpoint property to EvaluationClient.
  • OpenAI.Files:
    • Added the Endpoint property to OpenAIFileClient.
    • Added an explicit conversion operator to OpenAIFile, OpenAIFileCollection, and FileDeletionResult to convert from ClientResult.
  • OpenAI.FineTuning:
    • Added the Endpoint property to FineTuningClient.
  • OpenAI.Graders:
    • Added the Endpoint property to GraderClient.
    • Added an explicit conversion operator to RunGraderResponse and ValidateGraderResponse to convert from ClientResult.
  • OpenAI.Images:
    • Added the Endpoint property to ImageClient.
    • Added an explicit conversion operator to GeneratedImageCollection to convert from ClientResult.
    • Added the Background property to ImageEditOptions to set transparency for the background of the generated image(s).
    • Added the Quality property to ImageEditOptions to set the quality of the generated image(s).
  • OpenAI.Images:
    • Added the Endpoint property to ImageClient.
    • Added an explicit conversion operator to GeneratedImageCollection to convert from ClientResult.
    • Added the Background property to ImageEditOptions to set transparency for the background of the generated image(s).
    • Added the Quality property to ImageEditOptions to set the quality of the generated image(s).
  • OpenAI.Models:
    • Added the Endpoint property to OpenAIModelClient.
    • Added an explicit conversion operator to OpenAIModel, OpenAIModelCollection, and ModelDeletionResult to convert from ClientResult.
  • OpenAI.Moderations:
    • Added the Endpoint property to ModerationClient.
    • Added an explicit conversion operator to ModerationResultCollection to convert from ClientResult.
  • OpenAI.Realtime:
    • Added a constructor that can take a string API key to RealtimeClient.
    • Added constructors that can take a custom AuthenticationPolicy to RealtimeClient.
    • Added the Endpoint property to RealtimeClient.
    • Replaced the RequestOptions parameter of the following methods of RealtimeClient for a new RealtimeSessionOptions parameter and a CancellationToken parameter:
      • StartConversationSession and StartConversationSessionAsync
      • StartTranscriptionSession and StartTranscriptionSessionAsync
      • StartSession and StartSessionAsync
  • OpenAI.Responses:
    • Added the Endpoint property to OpenAIResponseClient.
    • Added an explicit conversion operator to OpenAIResponse to convert from ClientResult.
    • Added new classes derived from ResponseTool to facilitate certain scenarios:
      • FunctionTool
      • FileSearchTool
      • WebSearchTool
      • ComputerTool
    • Added initial support for integrating with remote MCP servers via the Responses API in streaming and non-streaming scenarios.
      • Users can add the new McpTool to the Tools property of their ResponseCreationOptions and configure it.
        • Use the AllowedTools property to limit which of the server tools can be called by the model.
        • Use the ToolCallApprovalPolicy property to specify which tools require an explicit approval before being called by the model.
      • Support for selecting the McpTool via the ToolChoice property is coming soon.
      • Support for configuring the McpTool with an access token that can be used to authenticate with the remote MCP server is coming soon.
      • Support for connectors is coming soon.
    • Added new classes derived from ResponseMessageAnnotation to facilitate certain scenarios:
      • FileCitationMessageAnnotation
      • FilePathMessageAnnotation
      • UriCitationMessageAnnotation
    • Added the ServiceTier property to ResponseCreationOptions, OpenAIResponse, and StreamingChatCompletionUpdate to configure the policy that the server will use to process the request in terms of pricing, performance, etc.
  • OpenAI.VectorStores:
    • Added the Endpoint property to OpenAIResponseClient.
    • Added an explicit conversion operator to VectorStore, VectorStoreFile, VectorStoreFileBatch, VectorStoreDeletionResult, and FileFromStoreRemovalResult to convert from ClientResult.
Bug Fixed
  • OpenAI.Realtime:
    • Fixed an issue with the classes derived from ResponseItem (such as ReasoningResponseItem) missing some constructors or property setters, which made it difficult to use them as inputs.
    • Fixed an issue with the HTTP pipeline of the RealtimeClient that was preventing the following methods from working correctly:
      • CreateEphemeralToken and CreateEphemeralTokenAsync
      • CreateEphemeralTranscriptionToken and CreateEphemeralTranscriptionTokenAsync
Breaking Changes in Preview APIs
  • OpenAI.Chat:
    • Changed the type of the options parameter of the GetChatCompletionMessages method of the ChatClient from ChatCompletionCollectionOptions to ChatCompletionMessageCollectionOptions.
  • OpenAI.Realtime:
    • Replaced the RequestOptions parameter for a new RealtimeSessionOptions parameter and a CancellationToken parameter.
  • OpenAI.Responses:
    • Renamed the Background property to BackgroundModeEnabled for clarity.
    • Renamed the ComputerOutput class to ComputerCallOutput.
    • Changed the type of the Delta property of StreamingResponseFunctionCallArgumentsDeltaUpdate from string to BinaryData.
    • Changed the type of the Arguments property of StreamingResponseFunctionCallArgumentsDoneUpdate from string to BinaryData and renamed it to FunctionArguments.
    • Renamed the WebSearchContextSize class to WebSearchToolContextSize.
    • Renamed the WebSearchUserLocation class to WebSearchToolLocation.
    • Refactored the factory methods of ResponseItem.
    • Refactored the factory methods of ResponseTool.
    • Removed the properties of ResponseMessageAnnotation except for the Kind property and moved them to the new derived types.
  • OpenAI.VectorStores:
    • Removed the OperationResult pattern along with the CreateVectorStoreOperation AddFileToVectorStoreOperation, and CreateBatchFileJobOperation classes.
    • Renamed the VectorStoreBatchFileJob class to VectorStoreFileBatch
    • Renamed the VectorStoreFileAssociation class to VectorStoreFile
    • Renamed the VectorStoreFileAssociationError class to VectorStoreFileError
    • Renamed the VectorStoreFileAssociationStatus class to VectorStoreFileStatus
    • Renamed the VectorStoreFileAssociationErrorCode class to VectorStoreFileErrorCode
    • Renamed the VectorStoreFileAssociationCollectionOptions class to VectorStoreFileCollectionOptions
    • Renamed the VectorStoreFileAssociationCollectionOrder class to VectorStoreFileCollectionOrder
    • Renamed the CancelBatchFileJob and CancelBatchFileJobAsync methods of VectorStoreClient to CancelVectorStoreFileBatch and CancelVectorStoreFileBatchAsync
    • Renamed the CreateBatchFileJob and CreateBatchFileJobAsync methods of VectorStoreClient to AddFileBatchToVectorStore and AddFileBatchToVectorStoreAsync
    • Renamed the GetBatchFileJob and GetBatchFileJobAsync methods of VectorStoreClient to GetVectorStoreFileBatch and GetVectorStoreFileBatchAsync
    • Renamed the GetFileAssociation and GetFileAssociationAsync methods of VectorStoreClient to GetVectorStoreFile and GetVectorStoreFileAsync
    • Renamed the GetFileAssociations and GetFileAssociationsAsync methods of VectorStoreClient to GetVectorStoreFiles and GetVectorStoreFilesAsync
    • Renamed the GetFileAssociationsInBatch and GetFileAssociationsInBatchAsync methods of VectorStoreClient to GetVectorStoreFilesInBatch and GetVectorStoreFilesInBatchAsync
    • Renamed the RemoveFileFromStore and RemoveFileFromStoreAsync methods of VectorStoreClient to RemoveFileFromVectorStore and RemoveFileFromVectorStoreAsync
Other Changes
  • Updated the System.ClientModel dependency to version 1.6.1.

v2.3.0

Compare Source

Features Added
  • OpenAI.Audio:
    • Added the Model property to AudioClient.
    • Added constructors that can take a custom AuthenticationPolicy to AudioClient.
  • OpenAI.Batch:
    • Added new methods to BatchClient:
      • GetBatch and GetBatchAsync
    • Added constructors that can take a custom AuthenticationPolicy to BatchClient.
  • OpenAI.Chat:
    • Added new methods to ChatClient:
      • UpdateChatCompletion and UpdateChatCompletionAsync
      • GetChatCompletions and GetChatCompletionsAsync
      • GetChatCompletionMessages and GetChatCompletionMessagesAsync
    • Added the Model property to ChatClient.
    • Added constructors that can take a custom AuthenticationPolicy to ChatClient.
  • OpenAI.Containers:
    • Introduced the new ContainersClient to support the Containers API with protocol methods for the following operations:
      • CreateContainer and CreateContainerAsync
      • GetContainers and GetContainersAsync
      • GetContainer and GetContainerAsync
      • DeleteContainer and DeleteContainerAsync
      • CreateContainerFile and CreateContainerFileAsync
      • GetContainerFiles and GetContainerFilesAsync
      • GetContainerFile and GetContainerFileAsync
      • GetContainerFileContent and GetContainerFileContentAsync
      • DeleteContainerFile and DeleteContainerFileAsync
  • OpenAI.Embeddings:
    • Added the Model property to EmbeddingClient.
    • Added constructors that can take a custom AuthenticationPolicy to EmbeddingClient.
  • OpenAI.Evals:
    • Added constructors that can take a custom AuthenticationPolicy to EvaluationClient.
  • OpenAI.Files:
    • Added constructors that can take a custom AuthenticationPolicy to OpenAIFileClient.
  • OpenAI.FineTuning:
    • Added constructors that can take a custom AuthenticationPolicy to FineTuningClient.
  • OpenAI.Graders:
    • Introduced the new GraderClient to support the Graders API with protocol methods for the following operations:
      • RunGrader and RunGraderAsync
      • ValidateGrader and ValidateGraderAsync
  • OpenAI.Images:
    • Added the Model property to ImageClient.
    • Added constructors that can take a custom AuthenticationPolicy to ImageClient.
  • OpenAI.Models:
    • Added constructors that can take a custom AuthenticationPolicy to OpenAIModelClient.
  • OpenAI.Moderations:
    • Added the Model property to ModerationClient.
    • Added constructors that can take a custom AuthenticationPolicy to ModerationClient.
  • OpenAI.Realtime:
    • Enabled support for semantic voice activity detection (VAD) via the new CreateSemanticVoiceActivityTurnDetectionOptions method of TurnDetectionOptions.
  • OpenAI.Responses:
    • Added a model factory.
    • Added constructors that can take a custom AuthenticationPolicy to OpenAIResponseClient.
  • OpenAI.VectorStores:
    • Added constructors that can take a custom AuthenticationPolicy to VectorStoreClient.
Bug Fixed
  • OpenAI.Assistants:
    • Fixed an issue causing the ImageDetail property of MessageContent to not be serialized correctly.
  • OpenAI.Audio:
    • Added a check to all overloads of TranscribeAudioStreaming and TranscribeAudioStreamingAsync in the AudioClient to prevent using the whisper-1 model, which does not support streaming and simply ignores the stream parameter.
  • OpenAI.Realtime:
    • Improved the disposal logic in AsyncWebsocketMessageResultEnumerator to prevent multiple disposals.
  • OpenAI.Responses:
    • Fixed an issue in code generation that caused the StreamingResponseTextAnnotationAddedUpdate class to not be generated correctly as part of the set of possible handles when streaming.
    • Fixed an issue in code generation that caused the Status property of ReasoningResponseItem and the ReasoningStatus enum to not be generated correctly and lead to incorrect behavior.
Other Changes
  • The OpenAI NuGet package now contains signed binaries.
  • Updated the System.ClientModel dependency to version 1.5.1, which contains a fix for a concurrency bug which could cause some applications running on the legacy .NET Framework to experience an infinite loop while deserializing service responses.
  • Removed the explicit net6.0 target framework, as this version reached end-of-life in November 2024 and is no longer maintained nor supported by Microsoft. This does not prevent using the OpenAI library on .NET 6, as the runtime will fallback to the netstandard2.0 target.
RageAgainstThePixel/OpenAI-DotNet (OpenAI-DotNet)

v8.8.1: OpenAI-DotNet 8.8.1

What's Changed

Full Changelog: RageAgainstThePixel/OpenAI-DotNet@v8.8.0...v8.8.1

v8.8.0: OpenAI-DotNet 8.8.0

What's Changed

  • OpenAI-DotNet 8.8.0 by @​StephenHodgson in #​472
    • Improved RealtimeSession websocket support for proxies
      • Proxy no longer handles the websocket connection directly, but instead initiates the connection to the OpenAI api directly using the ephemeral api key
  • OpenAI-DotNet-Proxy 8.8.0 by @​StephenHodgson in #​472
    • Removed Websocket handling from the proxy

Full Changelog: RageAgainstThePixel/OpenAI-DotNet@v8.7.4...v8.8.0

v8.7.4: OpenAI-DotNet 8.7.4

What's Changed

  • OpenAI-DotNet 8.7.4 by @​StephenHodgson in #​470
    • Updated proxy support for the OpenAI-DotNet-Proxy package
    • Renamed OpenAIAuthentication.LoadFromEnv -> OpenAIAuthentication.LoadFromEnvironment
  • OpenAI-DotNet-Proxy 8.7.4 by @​StephenHodgson in #​470
    • Updated proxy support for the OpenAI-DotNet package
    • Ensure we're returning the full response message body and content length to the clients

Full Changelog: RageAgainstThePixel/OpenAI-DotNet@v8.7.3...v8.7.4

v8.7.3: OpenAI-DotNet 8.7.3

What's Changed

  • OpenAI-DotNet 8.7.3 by @​StephenHodgson in #​468
    • Fixed Response.Instructions deserialization when using CreateResponseRequest.Prompt

Full Changelog: RageAgainstThePixel/OpenAI-DotNet@v8.7.2...v8.7.3

v8.7.2: OpenAI-DotNet 8.7.2

What's Changed

  • OpenAI-DotNet 8.7.2 by @​StephenHodgson in #​465
    • Add support for predefined prompts in Responses endpoint
    • Fixed WebSearchToolPreview streaming annotation deserialization
      • Added IAnnotation
      • Added UrlCitation
      • Added ContainerFileCitation
    • Responses.TextContent.Annotations array type changed from Annotation to IAnnotation
      • Added Responses.TextContent.LogProbs
    • Fixed Responses Tool serialization

Full Changelog: RageAgainstThePixel/OpenAI-DotNet@v8.7.1...v8.7.2

v8.7.1: OpenAI-DotNet 8.7.1

What's Changed

  • OpenAI-DotNet 8.7.1 by @​StephenHodgson in #​460
    • Fix Azure OpenAI endpoints that don't contain the deployment-id
    • Add JsonSchema support to Responses

Full Changelog: RageAgainstThePixel/OpenAI-DotNet@v8.7.0...v8.7.1

v8.7.0: OpenAI-DotNet 8.7.0

What's Changed

  • OpenAI-DotNet 8.7.0 by @​StephenHodgson in #​447

    • Added support for Responses API
    • Added support for gpt-image-1
    • Updated all static model definitions
    • Updated speech requests with instructions input
    • Updated audio transcription requests with ChunkingStrategy and includes
    • Updated default Azure OpenAI API Version to GA 2024-10-21
    • Renamed ChatResponseFormat -> TextResponseFormat
    • Renamed ResponseFormatObject -> TextResponseFormatConfiguration
    • Renamed Realtime.Usage -> OpenAI.TokenUsage
    • Moved Realtime.TokenDetails -> OpenAI.TokenDetails
    • Removed ImageSize enum
    • Renamed OpenAIClientSettings -> OpenAISettings to match with unity package
  • OpenAI-DotNet-Proxy 8.7.0

    • Fix Azure OpenAI api-version query parameter not being forwarded correctly
First time Contributor

Full Changelog: RageAgainstThePixel/OpenAI-DotNet@v8.6.4...v8.7.0

hashicorp/terraform-provider-aws (aws)

v5.100.0

Compare Source

NOTES:

  • resource/aws_route53_vpc_association_authorization: Because we cannot easily replicate the highly concurrent environments in which these errors have been observed, this fix is best effort and we ask for community help in verifying the reported issues are resolved by this change (#​42948)

FEATURES:

  • New Resource: aws_dsql_cluster (#​41868)
  • New Resource: aws_dsql_cluster_peering (#​41868)
  • New Resource: aws_prometheus_workspace_configuration (#​42478)
  • New Resource: aws_s3control_directory_bucket_access_point_scope (#​42338)
  • New Resource: aws_vpc_route_server (#​42392)
  • New Resource: aws_vpc_route_server_endpoint (#​42392)
  • New Resource: aws_vpc_route_server_peer (#​42392)
  • New Resource: aws_vpc_route_server_propagation (#​42392)
  • New Resource: aws_vpc_route_server_vpc_association (#​42392)
  • New Resource: aws_workspacesweb_data_protection_settings (#​42852)
  • New Resource: aws_workspacesweb_ip_access_settings (#​42863)
  • New Resource: aws_workspacesweb_user_access_logging_settings (#​42868)

ENHANCEMENTS:

  • data-source/aws_elb_hosted_zone_id: Add hosted zone ID for ap-east-2 AWS Region (#​42915)
  • data-source/aws_lb_hosted_zone_id: Add hosted zone IDs for ap-east-2 AWS Region (#​42915)
  • data-source/aws_neptune_engine_version: Add several arguments and attributes to support dynamic selection of versions including latest, has_major_target, preferred_major_targets, and preferred_upgrade_targets (#​42854)
  • data-source/aws_s3_bucket: Add hosted zone ID for ap-east-2 AWS Region (#​42915)
  • provider: Support ap-east-2 as a valid AWS Region (#​42906)
  • resource/aws_fsx_lustre_file_system: Add data_read_cache_configuration and throughput_capacity arguments in support of the Intelligent-Tiering storage class (#​42839)
  • resource/aws_pinpointsmsvoicev2_phone_number: Add two_way_channel_role argument (#​42950)
  • resource/aws_route53_vpc_association_authorization: Add configurable timeouts for create, read, and delete (#​42948)
  • resource/aws_s3_access_point: Add support for S3 Directory Buckets (#​42338)
  • resource/aws_s3control_access_point_policy: Add support for S3 Directory Buckets (#​42338)
  • resource/aws_vpn_connection: Add preshared_key_storage argument and preshared_key_arn attribute (#​42819)
  • resource/aws_wafv2_rule_group: Add statement.asn_match_statement configuration block (#​42965)
  • resource/aws_wafv2_web_acl: Add statement.asn_match_statement configuration block (#​42965)

BUG FIXES:

  • resource/aws_cloudfrontkeyvaluestore_keys_exclusive: Batch update operations to stay under the Key Value Store Service Quota. The max_batch_size argument can be used to override the default value of 50 items. (#​42795)
  • resource/aws_cloudwatch_log_destination: Fix to return the first matched destination name during the read operation. This fixes a regression introduced in v5.83.0 (#​42896)
  • resource/aws_cloudwatch_log_group: Fix to return the first matched group name during the read operation. This fixes a regression introduced in v5.83.0 (#​42896)
  • resource/aws_cloudwatch_log_metric_filter: Fix to return the first matched filter name during the read operation. This fixes a regression introduced in v5.83.0 (#​42896)
  • resource/aws_cloudwatch_log_query_definition: Fix to return the first matched query definition ID during the read operation. This fixes a regression introduced in v5.83.0 (#​42896)
  • resource/aws_cloudwatch_log_resource_policy: Fix to return the first matched policy name during the read operation. This fixes a regression introduced in v5.83.0 (#​42896)
  • resource/aws_cloudwatch_log_subscription_filter: Fix to return the first matched filter name during the read operation. This fixes a regression introduced in v5.83.0 (#​42896)
  • resource/aws_dynamodb_table: Set new computed value for stream_arn attribute when changing stream_view_type (#​42561)
  • resource/aws_neptune_cluster: Enable minor and major version upgrades by fixing various issues preventing them (#​42854)
  • resource/aws_neptune_global_cluster: Enable minor and major version upgrades by fixing various issues preventing them (#​42854)
  • resource/aws_route53_vpc_association_authorization: Retry InvalidPaginationToken errors on read (#​42948)
  • resource/aws_verifiedaccess_endpoint: Fix InvalidParameterValue: The value of loadBalancerOptions.port you provided is not valid errors when creating TCP load balancer endpoints (#​42736)
  • resource/aws_vpc_endpoint_subnet_association: Fix OperationInProgress: VpcEndpoint modify operation in progress errors when deleting multiple associations in parallel (#​42884)

v5.99.1

Compare Source

BUG FIXES:

  • resource/aws_fms_admin_account: Fix panic: runtime error: invalid memory address or nil pointer dereference (#​42813)
  • resource/aws_lb: Ignore InvalidAction exceptions for DescribeCapacityReservation operations. This fixes a regression introduced in v5.99.0 (#​42812)
  • resource/aws_s3_bucket_lifecycle_configuration: Correctly handles switching child attributes of rule.filter. (#​42655)

v5.99.0

Compare Source

FEATURES:

  • New Resource: aws_notifications_channel_association (#​42575)
  • New Resource: aws_notifications_event_rule (#​42575)
  • New Resource: aws_notifications_notification_configuration (#​42575)
  • New Resource: aws_notifications_notification_hub (#​42544)
  • New Resource: aws_notificationscontacts_email_contact (#​42575)
  • New Resource: aws_quicksight_account_settings (#​42185)
  • New Resource: aws_workspacesweb_browser_settings (#​42681)
  • New Resource: aws_workspacesweb_network_settings (#​42722)
  • New Resource: aws_workspacesweb_user_settings (#​42783)

ENHANCEMENTS:

  • data-source/aws_ami: Add block_device_mappings.ebs["volume_initialization_rate"] attribute (#​42684)
  • data-source/aws_launch_template: Add block_device_mappings.ebs.volume_initialization_rate attribute (#​42684)
  • data-source/aws_verifiedpermissions_policy_store: Add tags attribute. This functionality requires the verifiedpermissions:ListTagsForResource IAM permission (#​42663)
  • resource/aws_ecs_service: Add volume_configuration.managed_ebs_volume.volume_initialization_rate argument (#​42750)
  • resource/aws_launch_template: Add block_device_mappings.ebs.volume_initialization_rate argument (#​42684)
  • resource/aws_lb: Add minimum_load_balancer_capacity configuration block. This functionality requires the elasticloadbalancing:DescribeCapacityReservations and elasticloadbalancing:ModifyCapacityReservation IAM permissions (#​42685)
  • resource/aws_organizations_account: Allow name to be updated in-place. This functionality requires the account:PutAccountName IAM permission (#​42350)
  • resource/aws_securityhub_standards_subscription: Add configurable Create and Delete timeouts (#​42759)
  • resource/aws_verifiedpermissions_policy_store: Add tags argument and tags_all attribute. This functionality requires the verifiedpermissions:ListTagsForResource, verifiedpermissions:TagResource, and verifiedpermissions:UntagResource IAM permissions (#​42663)

BUG FIXES:

  • data-source/aws_ecr_repository_creation_template: prefix can now be up to 256 characters (#​42723)
  • resource/aws_cloudwatch_log_stream: Fix to return the first matched stream name during the read operation. This fixes a regression introduced in v5.83.0 (#​42719)
  • resource/aws_cognitoidp_user_pool: Fix crash when the user_pool_add_ons.advanced_security_additional_flows block is non-empty, but contains only a single nil value. (#​42793)
  • resource/aws_ecr_repository_creation_template: prefix can now be up to 256 characters (#​42723)
  • resource/aws_elasticache_replication_group: Fix crash during read operations where configuration endpoint and node groups are nil and empty, respectively (#​42726)
  • resource/aws_s3_bucket: Ensure that HeadBucket S3 API calls are made using configured credentials. This fixes a regression introduced in v5.98.0 (#​42786)
  • resource/aws_s3_bucket_lifecycle_configuration: No longer returns warning on empty rule.filter. (#​42624)
  • resource/aws_vpc_endpoint: Fix issue where dns_options were not being updated correctly when private_dns_enabled was set to true (#​42746)

v5.98.0

Compare Source

FEATURES:

  • New Data Source: aws_account_primary_contact (#​42526)
  • New Data Source: aws_dynamodb_tables (#​42339)
  • New Resource: aws_bedrockagent_prompt (#​42211)
  • New Resource: aws_cloudfrontkeyvaluestore_keys_exclusive (#​42246)
  • New Resource: aws_dataexchange_revision_assets (#​42272)
  • New Resource: aws_inspector2_filter (#​42374)
  • New Resource: aws_wafv2_api_key (#​42525)

ENHANCEMENTS:

  • data-source/aws_cloudwatch_event_bus: Add dead_letter_config attribute (#​42471)
  • data-source/aws_cloudwatch_event_connection: Add kms_key_identifier attribute (#​42385)
  • data-source/aws_cognito_user_pool_client: Add refresh_token_rotation attribute (#​42430)
  • data-source/aws_cognitoidp_user_pool: Add user_pool_add_ons attribute (#​42470)
  • data-source/aws_dynamodb_table: Add point_in_time_recovery.recovery_period_in_days attribute (#​41484)
  • data-source/aws_ec2_client_vpn_endpoint: Add client_route_enforcement_options attribute (#​42424)
  • data-source/aws_imagebuilder_distribution_configuration: Add distribution.ssm_parameter_configuration attribute (#​42604)
  • data-source/aws_redshiftserverless_workgroup: Add track_name attribute (#​42451)
  • data-source/aws_workspaces_directory: Add active_directory_config, user_identity_type, workspace_directory_description, workspace_directory_name, and workspace_type attributes (#​42330)
  • resource/aws_appflow_flow: Add destination_flow_config.destination_connector_properties.salesforce.data_transfer_api argument (#​42479)
  • resource/aws_autoscaling_group: Add capacity_reservation_specification argument (#​42380)
  • resource/aws_bedrockagent_agent: Add prepared_at attribute. (#​42586)
  • resource/aws_bedrockagent_agent: Increase instruction max length for validation to 20000 (#​42596)
  • resource/aws_cloudwatch_event_bus: Add dead_letter_config argument (#​42471)
  • resource/aws_cloudwatch_event_connection: Add kms_key_identifier argument (#​42385)
  • resource/aws_cognito_managed_user_pool_client: Add refresh_token_rotation argument (#​42430)
  • resource/aws_cognito_user_pool_client: Add refresh_token_rotation argument (#​42430)
  • resource/aws_cognitoidp_user_pool: Add user_pool_add_ons.advanced_security_additional_flows argument (#​42470)
  • resource/aws_docdb_cluster: Add manage_master_user_password argument and master_user_secret attribute (#​42563)
  • resource/aws_dynamodb_table: Add point_in_time_recovery.recovery_period_in_days argument (#​41484)
  • resource/aws_ec2_client_vpn_endpoint: Add client_route_enforcement_options argument (#​42424)
  • resource/aws_ecs_account_setting_default: Add support for defaultLogDriverMode value in Name argument (#​42418)
  • resource/aws_imagebuilder_distribution_configuration: Add distribution.ssm_parameter_configuration argument (#​42604)
  • resource/aws_iot_domain_configuration: Add application_protocol and authentication_type arguments (#​42534)
  • resource/aws_msk_serverless_cluster: Add bootstrap_brokers_sasl_iam attribute. This functionality requires the kafka:GetBootstrapBrokers IAM permission (#​42148)
  • resource/aws_redshiftserverless_workgroup: Add track_name argument (#​42451)
  • resource/aws_rum_app_monitor: Add domain_list argument (#​42456)
  • resource/aws_rum_app_monitor: Mark domain as Optional (#​42456)
  • resource/aws_s3tables_table: Add encryption_configuration argument. This functionality requires the s3tables:GetTableEncryption IAM permission (#​42356)
  • resource/aws_s3tables_table_bucket: Add encryption_configuration argument. This functionality requires the s3tables:GetTableBucketEncryption IAM permission (#​42356)
  • resource/aws_securityhub_finding_aggregator: Support NO_REGIONS as a valid value for linking_mode (#​42574)
  • resource/aws_sns_topic: Add fifo_throughput_scope argument (#​42508)
  • resource/aws_wafv2_rule_group: Add uri_fragment to field_to_match configuration blocks (#​42407)
  • resource/aws_wafv2_web_acl: Add data_protection_config argument (#​42404)
  • resource/aws_wafv2_web_acl: Add uri_fragment to field_to_match configuration blocks (#​42407)
  • resource/aws_workspaces_directory: Add active_directory_config, user_identity_type, workspace_directory_description, workspace_directory_name, and workspace_type arguments in support of WorkSpaces Pools (#​42330)
  • resource/aws_workspaces_directory: Mark directory_id as Optional (#​42330)

BUG FIXES:

  • aws_sagemaker_mlflow_tracking_server: Fix ValidationException: The provided MLflow version is not supported errors (#​42435)
  • data-source/aws_networkfirewall_firewall_policy: Add firewall_policy.policy_variables configuration block (#​42473)
  • resource/aws_bedrockagent_agent_alias: Stop using state for unknown on routing_configuration so we only send it on update when explicility configured. This allows updates to aliases to create new versions. ([#​42603](https://redirect.github.com/hashicorp/terraform

Configuration

📅 Schedule: Branch creation - "before 4am on monday" (UTC), 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate bot force-pushed the renovate/all-minor-patch branch 13 times, most recently from 8ebf612 to d28c872 Compare June 23, 2025 02:30
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 7 times, most recently from 62ac24d to 65ac615 Compare July 1, 2025 22:33
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from 6653adc to 40f573a Compare July 7, 2025 07:11
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 5 times, most recently from e341d3d to db01cde Compare July 15, 2025 04:07
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 15 times, most recently from 3ad8c42 to e81775e Compare September 6, 2025 20:52
@renovate renovate bot force-pushed the renovate/all-minor-patch branch 10 times, most recently from 2560745 to 9f41b2f Compare September 14, 2025 08:36
@renovate renovate bot force-pushed the renovate/all-minor-patch branch from 9f41b2f to 8182b5f Compare September 14, 2025 12:26
@LiamMorrow LiamMorrow merged commit 8f9ee34 into main Sep 14, 2025
7 of 8 checks passed
@renovate renovate bot deleted the renovate/all-minor-patch branch September 14, 2025 22:17
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants