Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 17, 2025

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/runner minor 2.329.0 -> 2.330.0 age confidence
github.com/Azure/azure-sdk-for-go/sdk/resourcemanager/compute/armcompute/v7 require minor v7.1.0 -> v7.2.0 age confidence
github.com/aws/aws-sdk-go-v2 require minor v1.39.6 -> v1.40.0 age confidence
github.com/aws/aws-sdk-go-v2/config require minor v1.31.20 -> v1.32.0 age confidence
github.com/aws/aws-sdk-go-v2/credentials indirect minor v1.18.24 -> v1.19.0 age confidence
github.com/aws/aws-sdk-go-v2/service/ec2 require minor v1.261.1 -> v1.272.1 age confidence
github.com/aws/aws-sdk-go-v2/service/ecs require minor v1.67.4 -> v1.68.1 age confidence
github.com/aws/aws-sdk-go-v2/service/iam require minor v1.49.2 -> v1.52.1 age confidence
github.com/aws/aws-sdk-go-v2/service/s3 require minor v1.89.2 -> v1.91.1 age confidence
github.com/aws/aws-sdk-go-v2/service/sts require minor v1.40.2 -> v1.41.1 age confidence
github.com/charmbracelet/x/ansi indirect minor v0.10.3 -> v0.11.1 age confidence
github.com/clipperhouse/displaywidth indirect minor v0.4.1 -> v0.6.0 age confidence
github.com/golangci/golines indirect digest 442fd00 -> e4d93aa age confidence
github.com/mgechev/revive indirect minor v1.12.0 -> v1.13.0 age confidence
github.com/pulumi/pulumi-aws-native/sdk require minor v1.37.0 -> v1.38.0 age confidence
github.com/pulumi/pulumi-aws/sdk/v7 require minor v7.10.0 -> v7.11.1 age confidence
github.com/pulumi/pulumi-awsx/sdk/v3 require minor v3.0.1 -> v3.1.0 age confidence
github.com/pulumi/pulumi-docker/sdk/v4 indirect minor v4.9.0 -> v4.10.0 age confidence
github.com/pulumi/pulumi-kubernetes/sdk/v4 require minor v4.23.0 -> v4.24.0 age confidence
golang.org/x/crypto indirect minor v0.43.0 -> v0.45.0 age confidence
golang.org/x/exp require digest a4bb9ff -> e25ba8c age confidence
golang.org/x/exp/typeparams indirect digest a4bb9ff -> e25ba8c age confidence
golang.org/x/mod indirect minor v0.29.0 -> v0.30.0 age confidence
golang.org/x/net indirect minor v0.46.0 -> v0.47.0 age confidence
golang.org/x/sync indirect minor v0.17.0 -> v0.18.0 age confidence
golang.org/x/sys indirect minor v0.37.0 -> v0.38.0 age confidence
golang.org/x/term indirect minor v0.36.0 -> v0.37.0 age confidence
golang.org/x/text indirect minor v0.30.0 -> v0.31.0 age confidence
golang.org/x/tools indirect minor v0.38.0 -> v0.39.0 age confidence
google.golang.org/genproto/googleapis/rpc indirect digest f26f940 -> 95abcf5 age confidence
google.golang.org/grpc indirect minor v1.76.0 -> v1.77.0 age confidence
pulumi/pulumi minor 3.205.0 -> 3.207.0 age confidence
pulumi/pulumi-aws minor v7.10.0 -> v7.11.1 age confidence
pulumi/pulumi-aws-native minor v1.37.0 -> v1.38.0 age confidence
pulumi/pulumi-awsx minor v3.0.1 -> v3.1.0 age confidence
registry.access.redhat.com/ubi9/go-toolset stage digest 7b1828d -> 6234f57
registry.access.redhat.com/ubi9/ubi final digest dec374e -> dcd8128

Warning

Some dependencies could not be looked up. Check the Dependency Dashboard for more information.


Release Notes

actions/runner (actions/runner)

v2.330.0

Compare Source

What's Changed
New Contributors

Full Changelog: actions/runner@v2.329.0...v2.330.0

Note: Actions Runner follows a progressive release policy, so the latest release might not be available to your enterprise, organization, or repository yet.
To confirm which version of the Actions Runner you should expect, please view the download instructions for your enterprise, organization, or repository.
See https://docs.github.com/en/enterprise-cloud@latest/actions/hosting-your-own-runners/adding-self-hosted-runners

Windows x64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-win-x64-2.330.0.zip -OutFile actions-runner-win-x64-2.330.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-x64-2.330.0.zip", "$PWD")
Windows arm64

We recommend configuring the runner in a root folder of the Windows drive (e.g. "C:\actions-runner"). This will help avoid issues related to service identity folder permissions and long file path restrictions on Windows.

The following snipped needs to be run on powershell:

# Create a folder under the drive root
mkdir \actions-runner ; cd \actions-runner

# Download the latest runner package
Invoke-WebRequest -Uri https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-win-arm64-2.330.0.zip -OutFile actions-runner-win-arm64-2.330.0.zip

# Extract the installer
Add-Type -AssemblyName System.IO.Compression.FileSystem ;
[System.IO.Compression.ZipFile]::ExtractToDirectory("$PWD\actions-runner-win-arm64-2.330.0.zip", "$PWD")
OSX x64
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-osx-x64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-x64-2.330.0.tar.gz
OSX arm64 (Apple silicon)
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-osx-arm64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-osx-arm64-2.330.0.tar.gz
Linux x64
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-linux-x64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-x64-2.330.0.tar.gz
Linux arm64
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-linux-arm64-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm64-2.330.0.tar.gz
Linux arm
# Create a folder
mkdir actions-runner && cd actions-runner

# Download the latest runner package
curl -O -L https://github.com/actions/runner/releases/download/v2.330.0/actions-runner-linux-arm-2.330.0.tar.gz

# Extract the installer
tar xzf ./actions-runner-linux-arm-2.330.0.tar.gz
Using your self hosted runner

For additional details about configuring, running, or shutting down the runner please check out our product docs.

SHA-256 Checksums

The SHA-256 checksums for the packages included in this build are shown below:

  • actions-runner-win-x64-2.330.0.zip a7469e7f2949657327fdd75688fd8858e1352202847d024d68b93de033990779
  • actions-runner-win-arm64-2.330.0.zip d6b713c83263e2498931488079a3a20770d4a205a47fac51da86026e45754596
  • actions-runner-osx-x64-2.330.0.tar.gz 40a32b7b87e25b76b595e201e0af376fcb1c3b7838fe21452909756090473ea9
  • actions-runner-osx-arm64-2.330.0.tar.gz e7515e45f6de15e37e6f1667bb2f962fb535a86689af1f9b219860300d06de1b
  • actions-runner-linux-x64-2.330.0.tar.gz af5c33fa94f3cc33b8e97937939136a6b04197e6dadfcfb3b6e33ae1bf41e79a
  • actions-runner-linux-arm64-2.330.0.tar.gz 9cb43527912086c7c8fb4119cb06409fcbcbd6f93a2d8507f30b07c495620f5c
  • actions-runner-linux-arm-2.330.0.tar.gz 2bb261a52054e08cbfe899a47e7a8ce97267eb73bc30282cc718d2620b320f6a
aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2)

v1.40.0

Compare Source

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/acmpca: v1.40.0
    • Feature: Private Certificate Authority service now supports P521 and RSA3072 key algorithms.
  • github.com/aws/aws-sdk-go-v2/service/amplify: v1.31.0
    • Feature: Introduced support for Skew Protection. Added enableSkewProtection field to createBranch and updateBranch API.
  • github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs: v1.47.0
    • Feature: Updated CreateLogAnomalyDetector to accept only kms key arn
  • github.com/aws/aws-sdk-go-v2/service/codebuild: v1.56.0
    • Feature: AWS CodeBuild now supports webhook filtering by organization name
  • github.com/aws/aws-sdk-go-v2/service/datazone: v1.27.0
    • Feature: This release adds support to update projects and environments
  • github.com/aws/aws-sdk-go-v2/service/dynamodb: v1.42.0
    • Feature: Generate account endpoints for DynamoDB requests using ARN-sourced account ID when available
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.210.0
    • Feature: This release changes the CreateLaunchTemplate, CreateLaunchTemplateVersion, ModifyLaunchTemplate CLI and SDKs such that if you do not specify a client token, a randomly generated token is used for the request to ensure idempotency.
  • github.com/aws/aws-sdk-go-v2/service/ivsrealtime: v1.24.0
    • Feature: IVS Real-Time now offers customers the ability to adjust the participant & composition recording segment duration
  • github.com/aws/aws-sdk-go-v2/service/mediapackagev2: v1.22.0
    • Feature: This release adds the ResetChannelState and ResetOriginEndpointState operation to reset MediaPackage V2 channel and origin endpoint. This release also adds a new field, UrlEncodeChildManifest, for HLS/LL-HLS to allow URL-encoding child manifest query string based on the requirements of AWS SigV4.
  • github.com/aws/aws-sdk-go-v2/service/s3control: v1.55.0
    • Feature: Updating GetDataAccess response for S3 Access Grants to include the matched Grantee for the requested prefix
clipperhouse/displaywidth (github.com/clipperhouse/displaywidth)

v0.6.0

Compare Source

v0.5.0

Compare Source

This release adopts Unicode 16 and emoji presentation standards per Unicode TR51. Internal updates simplify the properties and trie lookups.

What's Changed

  • Emoji presentation and Unicode 16: #​7
  • Fewer properties, better performance: #​8
  • Improve VS15 handling: #​9

Full Changelog: clipperhouse/displaywidth@v0.4.1...v0.5.0

mgechev/revive (github.com/mgechev/revive)

v1.13.0

Compare Source

What's Changed

Features
Bug fixes
Updates
Docs

New Contributors

Full Changelog: mgechev/revive@v1.12.0...v1.13.0

pulumi/pulumi-aws-native (github.com/pulumi/pulumi-aws-native/sdk)

v1.38.0

Compare Source

Changelog

pulumi/pulumi-aws (github.com/pulumi/pulumi-aws/sdk/v7)

v7.11.1

Compare Source

Does the PR have any schema changes?

Looking good! No breaking changes found.
No new resources/functions.

What's Changed

Full Changelog: pulumi/pulumi-aws@v7.11.0...v7.11.1

v7.11.0

Compare Source

Does the PR have any schema changes?

Found 9 breaking changes:

Types
  • 🟢 "aws:alb/ListenerRuleConditionHostHeader:ListenerRuleConditionHostHeader": required: "values" property is no longer Required
  • 🟢 "aws:alb/ListenerRuleConditionHttpHeader:ListenerRuleConditionHttpHeader": required: "values" property is no longer Required
  • 🟢 "aws:alb/ListenerRuleConditionPathPattern:ListenerRuleConditionPathPattern": required: "values" property is no longer Required
  • 🟢 "aws:lb/ListenerRuleConditionHostHeader:ListenerRuleConditionHostHeader": required: "values" property is no longer Required
  • 🟢 "aws:lb/ListenerRuleConditionHttpHeader:ListenerRuleConditionHttpHeader": required: "values" property is no longer Required
  • 🟢 "aws:lb/ListenerRuleConditionPathPattern:ListenerRuleConditionPathPattern": required: "values" property is no longer Required
  • 🟢 "aws:lb/getListenerRuleConditionHostHeader:getListenerRuleConditionHostHeader": required: "regexValues" property has changed to Required
  • 🟢 "aws:lb/getListenerRuleConditionHttpHeader:getListenerRuleConditionHttpHeader": required: "regexValues" property has changed to Required
  • 🟢 "aws:lb/getListenerRuleConditionPathPattern:getListenerRuleConditionPathPattern": required: "regexValues" property has changed to Required
New resources:
  • lakeformation/identityCenterConfiguration.IdentityCenterConfiguration
New functions:
  • ecrpublic/getImages.getImages
What's Changed

Full Changelog: pulumi/pulumi-aws@v7.10.0...v7.11.0

pulumi/pulumi-awsx (github.com/pulumi/pulumi-awsx/sdk/v3)

v3.1.0

Compare Source

Does the PR have any schema changes?

Found 124 breaking changes:

Resources
  • "awsx:cloudtrail:Trail":
    • inputs:
      • 🟡 "advancedEventSelectors": items type changed from "/aws/v7.7.0/schema.json#/types/aws:cloudtrail/TrailAdvancedEventSelector:TrailAdvancedEventSelector" to "/aws/v7.11.0/schema.json#/types/aws:cloudtrail/TrailAdvancedEventSelector:TrailAdvancedEventSelector"
      • 🟡 "eventSelectors": items type changed from "/aws/v7.7.0/schema.json#/types/aws:cloudtrail/TrailEventSelector:TrailEventSelector" to "/aws/v7.11.0/schema.json#/types/aws:cloudtrail/TrailEventSelector:TrailEventSelector"
      • 🟡 "insightSelectors": items type changed from "/aws/v7.7.0/schema.json#/types/aws:cloudtrail/TrailInsightSelector:TrailInsightSelector" to "/aws/v7.11.0/schema.json#/types/aws:cloudtrail/TrailInsightSelector:TrailInsightSelector"
    • properties:
      • 🟡 "bucket" type changed from "/aws/v7.7.0/schema.json#/resources/aws:s3%2Fbucket:Bucket" to "/aws/v7.11.0/schema.json#/resources/aws:s3%2Fbucket:Bucket"
      • 🟡 "logGroup" type changed from "/aws/v7.7.0/schema.json#/resources/aws:cloudwatch%2FlogGroup:LogGroup" to "/aws/v7.11.0/schema.json#/resources/aws:cloudwatch%2FlogGroup:LogGroup"
      • 🟡 "trail" type changed from "/aws/v7.7.0/schema.json#/resources/aws:cloudtrail%2Ftrail:Trail" to "/aws/v7.11.0/schema.json#/resources/aws:cloudtrail%2Ftrail:Trail"
  • "awsx:ec2:Vpc": properties:
    • 🟡 "eips": items type changed from "/aws/v7.7.0/schema.json#/resources/aws:ec2%2feip:Eip" to "/aws/v7.11.0/schema.json#/resources/aws:ec2%2feip:Eip"
    • 🟡 "internetGateway" type changed from "/aws/v7.7.0/schema.json#/resources/aws:ec2%2finternetGateway:InternetGateway" to "/aws/v7.11.0/schema.json#/resources/aws:ec2%2finternetGateway:InternetGateway"
    • 🟡 "natGateways": items type changed from "/aws/v7.7.0/schema.json#/resources/aws:ec2%2fnatGateway:NatGateway" to "/aws/v7.11.0/schema.json#/resources/aws:ec2%2fnatGateway:NatGateway"
    • 🟡 "routeTableAssociations": items type changed from "/aws/v7.7.0/schema.json#/resources/aws:ec2%2frouteTableAssociation:RouteTableAssociation" to "/aws/v7.11.0/schema.json#/resources/aws:ec2%2frouteTableAssociation:RouteTableAssociation"
    • 🟡 "routeTables": items type changed from "/aws/v7.7.0/schema.json#/resources/aws:ec2%2frouteTable:RouteTable" to "/aws/v7.11.0/schema.json#/resources/aws:ec2%2frouteTable:RouteTable"
    • 🟡 "routes": items type changed from "/aws/v7.7.0/schema.json#/resources/aws:ec2%2froute:Route" to "/aws/v7.11.0/schema.json#/resources/aws:ec2%2froute:Route"
    • 🟡 "subnets": items type changed from "/aws/v7.7.0/schema.json#/resources/aws:ec2%2fsubnet:Subnet" to "/aws/v7.11.0/schema.json#/resources/aws:ec2%2fsubnet:Subnet"
    • 🟡 "vpc" type changed from "/aws/v7.7.0/schema.json#/resources/aws:ec2%2fvpc:Vpc" to "/aws/v7.11.0/schema.json#/resources/aws:ec2%2fvpc:Vpc"
    • 🟡 "vpcEndpoints": items type changed from "/aws/v7.7.0/schema.json#/resources/aws:ec2%2fvpcEndpoint:VpcEndpoint" to "/aws/v7.11.0/schema.json#/resources/aws:ec2%2fvpcEndpoint:VpcEndpoint"
  • "awsx:ecr:Repository":
    • inputs:
      • 🟡 "encryptionConfigurations": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecr/RepositoryEncryptionConfiguration:RepositoryEncryptionConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecr/RepositoryEncryptionConfiguration:RepositoryEncryptionConfiguration"
      • 🟡 "imageScanningConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecr/RepositoryImageScanningConfiguration:RepositoryImageScanningConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecr/RepositoryImageScanningConfiguration:RepositoryImageScanningConfiguration"
      • 🟡 "imageTagMutabilityExclusionFilters": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecr/RepositoryImageTagMutabilityExclusionFilter:RepositoryImageTagMutabilityExclusionFilter" to "/aws/v7.11.0/schema.json#/types/aws:ecr/RepositoryImageTagMutabilityExclusionFilter:RepositoryImageTagMutabilityExclusionFilter"
    • properties:
      • 🟡 "lifecyclePolicy" type changed from "/aws/v7.7.0/schema.json#/resources/aws:ecr%2flifecyclePolicy:LifecyclePolicy" to "/aws/v7.11.0/schema.json#/resources/aws:ecr%2flifecyclePolicy:LifecyclePolicy"
      • 🟡 "repository" type changed from "/aws/v7.7.0/schema.json#/resources/aws:ecr%2frepository:Repository" to "/aws/v7.11.0/schema.json#/resources/aws:ecr%2frepository:Repository"
  • "awsx:ecs:EC2Service":
    • inputs:
      • 🟡 "alarms" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceAlarms:ServiceAlarms" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceAlarms:ServiceAlarms"
      • 🟡 "capacityProviderStrategies": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceCapacityProviderStrategy:ServiceCapacityProviderStrategy" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceCapacityProviderStrategy:ServiceCapacityProviderStrategy"
      • 🟡 "deploymentCircuitBreaker" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceDeploymentCircuitBreaker:ServiceDeploymentCircuitBreaker" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceDeploymentCircuitBreaker:ServiceDeploymentCircuitBreaker"
      • 🟡 "deploymentConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceDeploymentConfiguration:ServiceDeploymentConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceDeploymentConfiguration:ServiceDeploymentConfiguration"
      • 🟡 "deploymentController" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceDeploymentController:ServiceDeploymentController" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceDeploymentController:ServiceDeploymentController"
      • 🟡 "loadBalancers": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceLoadBalancer:ServiceLoadBalancer" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceLoadBalancer:ServiceLoadBalancer"
      • 🟡 "networkConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceNetworkConfiguration:ServiceNetworkConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceNetworkConfiguration:ServiceNetworkConfiguration"
      • 🟡 "orderedPlacementStrategies": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceOrderedPlacementStrategy:ServiceOrderedPlacementStrategy" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceOrderedPlacementStrategy:ServiceOrderedPlacementStrategy"
      • 🟡 "placementConstraints": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServicePlacementConstraint:ServicePlacementConstraint" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServicePlacementConstraint:ServicePlacementConstraint"
      • 🟡 "serviceConnectConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceServiceConnectConfiguration:ServiceServiceConnectConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceServiceConnectConfiguration:ServiceServiceConnectConfiguration"
      • 🟡 "serviceRegistries" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceServiceRegistries:ServiceServiceRegistries" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceServiceRegistries:ServiceServiceRegistries"
      • 🟡 "volumeConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceVolumeConfiguration:ServiceVolumeConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceVolumeConfiguration:ServiceVolumeConfiguration"
      • 🟡 "vpcLatticeConfigurations": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceVpcLatticeConfiguration:ServiceVpcLatticeConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceVpcLatticeConfiguration:ServiceVpcLatticeConfiguration"
    • properties:
      • 🟡 "service" type changed from "/aws/v7.7.0/schema.json#/resources/aws:ecs%2fservice:Service" to "/aws/v7.11.0/schema.json#/resources/aws:ecs%2fservice:Service"
      • 🟡 "taskDefinition" type changed from "/aws/v7.7.0/schema.json#/resources/aws:ecs%2FtaskDefinition:TaskDefinition" to "/aws/v7.11.0/schema.json#/resources/aws:ecs%2FtaskDefinition:TaskDefinition"
  • "awsx:ecs:EC2TaskDefinition":
    • inputs:
      • 🟡 "ephemeralStorage" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/TaskDefinitionEphemeralStorage:TaskDefinitionEphemeralStorage" to "/aws/v7.11.0/schema.json#/types/aws:ecs/TaskDefinitionEphemeralStorage:TaskDefinitionEphemeralStorage"
      • 🟡 "placementConstraints": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/TaskDefinitionPlacementConstraint:TaskDefinitionPlacementConstraint" to "/aws/v7.11.0/schema.json#/types/aws:ecs/TaskDefinitionPlacementConstraint:TaskDefinitionPlacementConstraint"
      • 🟡 "proxyConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/TaskDefinitionProxyConfiguration:TaskDefinitionProxyConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/TaskDefinitionProxyConfiguration:TaskDefinitionProxyConfiguration"
      • 🟡 "runtimePlatform" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/TaskDefinitionRuntimePlatform:TaskDefinitionRuntimePlatform" to "/aws/v7.11.0/schema.json#/types/aws:ecs/TaskDefinitionRuntimePlatform:TaskDefinitionRuntimePlatform"
      • 🟡 "volumes": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/TaskDefinitionVolume:TaskDefinitionVolume" to "/aws/v7.11.0/schema.json#/types/aws:ecs/TaskDefinitionVolume:TaskDefinitionVolume"
    • properties:
      • 🟡 "executionRole" type changed from "/aws/v7.7.0/schema.json#/resources/aws:iam%2Frole:Role" to "/aws/v7.11.0/schema.json#/resources/aws:iam%2Frole:Role"
      • 🟡 "loadBalancers": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs%2FServiceLoadBalancer:ServiceLoadBalancer" to "/aws/v7.11.0/schema.json#/types/aws:ecs%2FServiceLoadBalancer:ServiceLoadBalancer"
      • 🟡 "logGroup" type changed from "/aws/v7.7.0/schema.json#/resources/aws:cloudwatch%2FlogGroup:LogGroup" to "/aws/v7.11.0/schema.json#/resources/aws:cloudwatch%2FlogGroup:LogGroup"
      • 🟡 "taskDefinition" type changed from "/aws/v7.7.0/schema.json#/resources/aws:ecs%2FtaskDefinition:TaskDefinition" to "/aws/v7.11.0/schema.json#/resources/aws:ecs%2FtaskDefinition:TaskDefinition"
      • 🟡 "taskRole" type changed from "/aws/v7.7.0/schema.json#/resources/aws:iam%2Frole:Role" to "/aws/v7.11.0/schema.json#/resources/aws:iam%2Frole:Role"
  • "awsx:ecs:FargateService":
    • inputs:
      • 🟡 "alarms" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceAlarms:ServiceAlarms" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceAlarms:ServiceAlarms"
      • 🟡 "deploymentCircuitBreaker" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceDeploymentCircuitBreaker:ServiceDeploymentCircuitBreaker" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceDeploymentCircuitBreaker:ServiceDeploymentCircuitBreaker"
      • 🟡 "deploymentConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceDeploymentConfiguration:ServiceDeploymentConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceDeploymentConfiguration:ServiceDeploymentConfiguration"
      • 🟡 "deploymentController" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceDeploymentController:ServiceDeploymentController" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceDeploymentController:ServiceDeploymentController"
      • 🟡 "loadBalancers": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceLoadBalancer:ServiceLoadBalancer" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceLoadBalancer:ServiceLoadBalancer"
      • 🟡 "networkConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceNetworkConfiguration:ServiceNetworkConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceNetworkConfiguration:ServiceNetworkConfiguration"
      • 🟡 "placementConstraints": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServicePlacementConstraint:ServicePlacementConstraint" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServicePlacementConstraint:ServicePlacementConstraint"
      • 🟡 "serviceConnectConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceServiceConnectConfiguration:ServiceServiceConnectConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceServiceConnectConfiguration:ServiceServiceConnectConfiguration"
      • 🟡 "serviceRegistries" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceServiceRegistries:ServiceServiceRegistries" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceServiceRegistries:ServiceServiceRegistries"
      • 🟡 "volumeConfiguration" type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceVolumeConfiguration:ServiceVolumeConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceVolumeConfiguration:ServiceVolumeConfiguration"
      • 🟡 "vpcLatticeConfigurations": items type changed from "/aws/v7.7.0/schema.json#/types/aws:ecs/ServiceVpcLatticeConfiguration:ServiceVpcLatticeConfiguration" to "/aws/v7.11.0/schema.json#/types/aws:ecs/ServiceVpcLatticeConfiguration:ServiceVpcLatticeConfiguration"
    • properties:
      • 🟡 "service" type changed from "/aws/v7.7.0/schema.json#/resources/aws:ecs%2fservice:Service" to "/aws/v7.11.0/schema.json#/res

Configuration

📅 Schedule: Branch creation - Between 12:00 AM and 03:59 AM, only on Monday ( * 0-3 * * 1 ) (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
Copy link
Contributor Author

renovate bot commented Nov 17, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact related to this branch. You probably do not want to merge this PR as-is.

♻ Renovate will retry this branch, including artifacts, only when one of the following happens:

  • any of the package files in this branch needs updating, or
  • the branch becomes conflicted, or
  • you click the rebase/retry checkbox if found above, or
  • you rename this PR's title to start with "rebase!" to trigger it manually

The artifact failure details are included below:

File name: go.sum
Command failed: go get -t ./...
go: module github.com/pulumi/pulumi-aws-native/[email protected] requires go >= 1.24.7; switching to go1.24.10
go: downloading go1.24.10 (linux/amd64)
go: download go1.24.10: golang.org/[email protected]: verifying module: checksum database disabled by GOSUMDB=off

@renovate renovate bot force-pushed the renovate/all branch 9 times, most recently from 4be160f to a213b27 Compare November 19, 2025 21:23
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.

0 participants