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/service/ec2 require minor v1.261.1 -> v1.271.0 age confidence
github.com/aws/aws-sdk-go-v2/service/iam require minor v1.49.2 -> v1.51.0 age confidence
github.com/aws/aws-sdk-go-v2/service/s3 require minor v1.89.2 -> v1.90.2 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.44.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/service/ec2)

v1.271.0

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/autoscaling: v1.61.0
    • Feature: This release adds the new LaunchInstances API, which can launch instances synchronously in an AutoScaling group. The API also returns instances info and launch error back immediately.
  • github.com/aws/aws-sdk-go-v2/service/backup: v1.53.0
    • Feature: AWS Backup now supports a low-cost warm storage tier for Amazon S3 backup data.
  • github.com/aws/aws-sdk-go-v2/service/bedrockruntime: v1.43.0
    • Feature: Amazon Bedrock Runtime Service Tier Support Launch
  • github.com/aws/aws-sdk-go-v2/service/cloudformation: v1.70.0
    • Feature: New CloudFormation DescribeEvents API with operation ID tracking and failure filtering capabilities to quickly identify root causes of deployment failures. Also, a DeploymentMode parameter for the CreateChangeSet API that enables creation of drift-aware change sets for safe drift management.
  • github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs: v1.59.0
    • Feature: CloudWatch Logs updates: Added capability to setup a recurring schedule for log insights queries. Logs introduced Scheduled Queries (managed through Create/Update/Get/Delete/List/History Scheduled Query APIs). For more information, see CloudWatch Logs API documentation.
  • github.com/aws/aws-sdk-go-v2/service/connect: v1.146.0
    • Feature: This release added support for ring timer configuration for campaign calls.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.271.0
    • Feature: AWS Site-to-Site VPN now supports VPN Concentrator, a new feature that enables customers to connect multiple low-bandwidth sites connections through a single attachment, simplifying multi-site connectivity for distributed enterprises.
  • github.com/aws/aws-sdk-go-v2/service/iam: v1.51.0
    • Feature: Added the AssociateDelegationRequest, GetDelegationRequest, AcceptDelegationRequest, RejectDelegatonRequest, ListDelegationRequests, UpdateDelegationRequest, SendDelegationToken and GetHumanReadableSummary APIs for the IAM temporary delegation feature.
  • github.com/aws/aws-sdk-go-v2/service/kafka: v1.46.0
    • Feature: Amazon MSK adds three new APIs, ListTopics, DescribeTopic, and DescribeTopicPartitions for viewing Kafka topics in your MSK clusters.
  • github.com/aws/aws-sdk-go-v2/service/resourcegroupstaggingapi: v1.31.0
    • Feature: Add support for new ListRequiredTags API used to retrieve the required tags specified in a customer's effective tag policy.
  • github.com/aws/aws-sdk-go-v2/service/wafv2: v1.70.0
    • Feature: AssociateWebACL, UpdateWebACL and PutLoggingConfiguration will now throw WAFFeatureNotIncludedInPricingPlanException when the request contains a feature that is not included in the CloudFront pricing plan of the WebACL.

v1.270.0

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/appstream: v1.52.0
    • Feature: Adding support for additional instances and extended storage
  • github.com/aws/aws-sdk-go-v2/service/backup: v1.52.0
    • Feature: AWS Backup now supports specifying a logically air-gapped backup vault as a primary backup target in backup plans and on-demand backup jobs.
  • github.com/aws/aws-sdk-go-v2/service/bedrock: v1.49.0
    • Feature: Automated Reasoning checks in Amazon Bedrock Guardrails now automatically generate Q&A tests for new Automated Reasoning policies. The GetAutomatedReasoningPolicyBuildWorkflowResultAssets API adds GENERATED_TEST_CASES asset type, allowing customers to retrieve tests generated by the build workflow.
  • github.com/aws/aws-sdk-go-v2/service/databasemigrationservice: v1.60.0
    • Feature: This release introduces the SAP ASE(Sybase) Data Provider for AWS Data Migration Service (DMS). In addition, DMS Schema Conversion now supports this provider, enabling customers to migrate SAP ASE(Sybase) databases to Amazon RDS for PostgreSQL or Aurora PostgreSQL seamlessly.
  • github.com/aws/aws-sdk-go-v2/service/devicefarm: v1.37.0
    • Feature: This release adds support for interacting with devices during a remote access session using the remoteDriverEndpoint interface
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.270.0
    • Feature: This release introduces new APIs: DescribeInstanceSqlHaStates, DescribeInstanceSqlHaHistoryStates, EnableInstanceSqlHaStandbyDetections and DisableInstanceSqlHaStandbyDetections on Amazon EC2, allowing customers to enroll and monitor SQL Server licensing fee savings for their SQL HA EC2 instances.
  • github.com/aws/aws-sdk-go-v2/service/glue: v1.133.0
    • Feature: Amazon Glue Releasing 2 the new API ListIntegrationResourceProperties and DeleteIntegrationResourceProperty along with minor improvement on existing API(s).
  • github.com/aws/aws-sdk-go-v2/service/guardduty: v1.67.0
    • Feature: Add S3 On-Demand Object Scanning
  • github.com/aws/aws-sdk-go-v2/service/lexmodelsv2: v1.57.0
    • Feature: Adds support for LLM as Primary, allowing usage of LLMs as the default NLU system.
  • github.com/aws/aws-sdk-go-v2/service/medialive: v1.86.0
    • Feature: Adds configurations for spatial/temporal adaptive quantization in AV1 codec, and conversion to HLG output color space in H265 codec.
  • github.com/aws/aws-sdk-go-v2/service/mediapackagev2: v1.33.0
    • Feature: Add support for SCTE messages in Segment file output
  • github.com/aws/aws-sdk-go-v2/service/mwaaserverless: v1.0.0
    • Release: New AWS service client module
    • Feature: Amazon MWAA now offers serverless deployment, eliminating operational overhead while optimizing costs. The service supports YAML and Python-based workflows, with 80+ AWS Operators. It provides isolated execution, IAM permissions, and automatic scaling with pay-per-use pricing.
  • github.com/aws/aws-sdk-go-v2/service/opensearch: v1.54.0
    • Feature: This release adds index operation APIs to support Automatic Semantic Enrichment feature
  • github.com/aws/aws-sdk-go-v2/service/pcs: v1.15.0
    • Feature: Added support for the managed Slurm REST API endpoint
  • github.com/aws/aws-sdk-go-v2/service/route53resolver: v1.41.0
    • Feature: Adding DICTIONARY_DGA to dns-threat-protection as a new enum type. Customers can now set rules for dictionary dga protection

v1.269.0

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/datazone: v1.47.0
    • Feature: Adds support for granting read and write access to Amazon S3 general purpose buckets using CreateSubscriptionRequest and AcceptSubscriptionRequest APIs. Also adds search filters for SSOUser and SSOGroup to ListSubscriptions APIs and deprecates "sortBy" parameter for ListSubscriptions APIs.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.269.0
    • Feature: This release adds AvailabilityZoneId support for CreateInstanceConnectEndpoint, DescribeInstanceConnectEndpoints, and DeleteInstanceConnectEndpoint APIs.
  • github.com/aws/aws-sdk-go-v2/service/imagebuilder: v1.49.0
    • Feature: EC2 Image Builder now supports invoking Lambda functions and executing Step Functions state machine through image workflows.

v1.268.0

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/cloudformation: v1.69.0
    • Feature: CloudFormation now supports GetHookResult API with annotations to retrieve structured compliance check results and remediation guidance for each evaluated resource, replacing the previous single-message limitation with detailed validation outcomes.
  • github.com/aws/aws-sdk-go-v2/service/controlcatalog: v1.14.0
    • Feature: Added support for related control mappings with new RELATED_CONTROL mapping type in ListControlMappings API.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.268.0
    • Feature: Added support for new accelerator types ("media") and accelerator names ("L4", "L40s", "GAUDI_HL_205", "INFERENTIA2", "TRAINIUM", "TRAINIUM2", "U30") in Attributes Based Instance Type Selection for launched instance types.
  • github.com/aws/aws-sdk-go-v2/service/ecr: v1.52.0
    • Feature: Add Amazon ECR FIPS PrivateLink endpoint support
  • github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2: v1.53.0
    • Feature: QUIC and TCP_QUIC protocol support for Network Load Balancer (NLB). This capability enables customers to forward QUIC traffic to their targets with ultra-low latency while maintaining session stickiness using QUIC Connection IDs.
  • github.com/aws/aws-sdk-go-v2/service/iotwireless: v1.54.0
    • Feature: Integration of Device Location with Amazon Sidewalk network for Amazon Sidewalk enabled devices
  • github.com/aws/aws-sdk-go-v2/service/mediaconvert: v1.85.0
    • Feature: Lowers minimum duration for black video generator. Adds support for embedding and signing C2PA content credentials in DASH and CMAF HLS outputs.
  • github.com/aws/aws-sdk-go-v2/service/rds: v1.109.0
    • Feature: Updated endpoint and service metadata
  • github.com/aws/aws-sdk-go-v2/service/sagemaker: v1.223.0
    • Feature: Added support for minor version upgrades and AWS Identity Center integration for SageMaker Hadron Partner Apps, enabling automated version management and IdC group-based access control.
  • github.com/aws/aws-sdk-go-v2/service/workspacesweb: v1.34.0
    • Feature: Support for managing web content filtering for defining, tracking and regulating type of content accessed with WorkSpaces Secure Browser as part of browser settings.

v1.267.0

General Highlights

  • Bug Fix: Further reduce allocation overhead when the metrics system isn't in-use.
  • Bug Fix: Reduce allocation overhead when the client doesn't have any HTTP interceptors configured.
  • Bug Fix: Remove blank trace spans towards the beginning of the request that added no additional information. This conveys a slight reduction in overall allocations.
  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/amp: v1.42.0
    • Feature: Add VPC source configuration support enabling Amazon Managed Service for Prometheus Collector to collect metrics from MSK clusters.
  • github.com/aws/aws-sdk-go-v2/service/connect: v1.145.0
    • Feature: Updated Authentication Profile APIs to add support for automatic logout on user inactivity
  • github.com/aws/aws-sdk-go-v2/service/databasemigrationservice: v1.59.0
    • Feature: Added support of SQL statements creation, metadata model discovery and selection rules transformation.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.267.0
    • Feature: Adds complete AMI ancestry tracing from immediate parent through each preceding generation back to the root AMI
  • github.com/aws/aws-sdk-go-v2/service/elasticloadbalancingv2: v1.52.0
    • Feature: This release expands ALB Authentication to support JWT verification and adds support for a new JWT validation action in listener rule.
  • github.com/aws/aws-sdk-go-v2/service/redshift: v1.60.0
    • Feature: Added GetIdentityCenterAuthToken API to retrieve encrypted authentication tokens for Identity Center integrated applications. This API enables programmatic access to secure Identity Center tokens with proper error handling and parameter validation across supported SDK languages.
  • github.com/aws/aws-sdk-go-v2/service/s3tables: v1.12.0
    • Feature: Adds support for request metrics metrics APIs for S3 Tables
  • github.com/aws/aws-sdk-go-v2/service/sagemaker: v1.222.0
    • Feature: Add support for trn2.3xlarge instance type for SageMaker Hyperpod

v1.266.0

General Highlights

  • Bug Fix: Return validation error if input region is not a valid host label.
  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/batch: v1.58.5
    • Documentation: Documentation-only update: update API and doc descriptions per EKS ImageType default value switch from AL2 to AL2023.
  • github.com/aws/aws-sdk-go-v2/service/bedrockdataautomation: v1.11.0
    • Feature: Added support for Language Expansion feature for BDA Audio modality.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.266.0
    • Feature: AWS Site-to-Site VPN now supports VPN connections with up to 5 Gbps bandwidth per tunnel, a 4x improvement from existing limit of 1.25 Gbps.
  • github.com/aws/aws-sdk-go-v2/service/medicalimaging: v1.23.0
    • Feature: Added new fields in existing APIs.
  • github.com/aws/aws-sdk-go-v2/service/rtbfabric: v1.2.0
    • Feature: Added LogSettings and LinkAttribute fields to external links
  • github.com/aws/aws-sdk-go-v2/service/securityir: v1.9.0
    • Feature: Added support for configuring communication preferences as well as clearly displaying case comment author identities.

v1.265.0

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/acmpca: v1.46.0
    • Feature: Private Certificate Authority service now supports ML-DSA key algorithms.
  • github.com/aws/aws-sdk-go-v2/service/appstream: v1.51.0
    • Feature: AWS Appstream support for IPv6
  • github.com/aws/aws-sdk-go-v2/service/backup: v1.51.0
    • Feature: AWS Backup supports backups of Amazon EKS clusters, including Kubernetes cluster state and persistent storage attached to the EKS cluster via a persistent volume claim (EBS volumes, EFS file systems, and S3 buckets).
  • github.com/aws/aws-sdk-go-v2/service/braket: v1.38.0
    • Feature: Adds ExperimentalCapabilities field to CreateQuantumTask request and GetQuantumTask response objects. Enables use of experimental software capabilities when creating quantum tasks.
  • github.com/aws/aws-sdk-go-v2/service/datazone: v1.46.0
    • Feature: Remove trackingServerName from DataZone Connection MLflowProperties
  • github.com/aws/aws-sdk-go-v2/service/dsql: v1.11.0
    • Feature: Cluster endpoint added to CreateCluster and GetCluster API responses
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.265.0
    • Feature: Amazon EC2 Fleet customers can now filter instance types based on encryption-in-transit support using Attribute-Based Instance Type Selection (ABIS), eliminating the manual effort of identifying and selecting compatible instance types for security-sensitive workloads.
  • github.com/aws/aws-sdk-go-v2/service/guardduty: v1.66.0
    • Feature: Include tags filed in CreatePublishingDestinationRequest and DescribePublishingDestinationResponse.
  • github.com/aws/aws-sdk-go-v2/service/iam: v1.50.0
    • Feature: Added CreateDelegationRequest API, which is not available for general use at this time.
  • github.com/aws/aws-sdk-go-v2/service/invoicing: v1.7.0
    • Feature: Added new invoicing get-invoice-pdf API Operation
  • github.com/aws/aws-sdk-go-v2/service/kafka: v1.45.0
    • Feature: Amazon MSK now supports intelligent rebalancing for MSK Express brokers.
  • github.com/aws/aws-sdk-go-v2/service/sts: v1.40.0
    • Feature: Added GetDelegatedAccessToken API, which is not available for general use at this time.
  • github.com/aws/aws-sdk-go-v2/service/verifiedpermissions: v1.30.0
    • Feature: Amazon Verified Permissions / Features : Adds support for entity Cedar tags.
  • github.com/aws/aws-sdk-go-v2/service/wafv2: v1.69.0
    • Feature: AWS WAF now supports CLOUDWATCH_TELEMETRY_RULE_MANAGED as a LogScope option, enabling automated logging configuration through Amazon CloudWatch Logs for telemetry data collection and analysis.

v1.264.0

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/controltower: v1.27.0
    • Feature: Added Parent Identifier support to ListEnabledControls and GetEnabledControl API. Implemented RemediationType support for Landing Zone operations: CreateLandingZone, UpdateLandingZone and GetLandingZone APIs
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.264.0
    • Feature: Adds PrivateDnsPreference and PrivateDnsSpecifiedDomains to control private DNS resolution for resource and service network VPC endpoints and IpamScopeExternalAuthorityConfiguration to integrate Amazon VPC IPAM with a third-party IPAM service
  • github.com/aws/aws-sdk-go-v2/service/kms: v1.48.0
    • Feature: Added support for new ECC_NIST_EDWARDS25519 AWS KMS key spec
  • github.com/aws/aws-sdk-go-v2/service/opensearch: v1.53.0
    • Feature: This release introduces the Default Application feature, allowing users to set, change, or unset a preferred OpenSearch UI application on a per-region basis for a streamlined and consistent user experience.
  • github.com/aws/aws-sdk-go-v2/service/vpclattice: v1.20.0
    • Feature: Amazon VPC Lattice now supports custom domain name for resource configurations

v1.263.0

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/accessanalyzer: v1.45.0
    • Feature: New field totalActiveErrors added to getFindingsStatistics response.
  • github.com/aws/aws-sdk-go-v2/service/backup: v1.50.0
    • Feature: AWS Backup now supports customer-managed keys (CMK) for logically air-gapped vaults, enabling customers to maintain full control over their encryption key lifecycle. This feature helps organizations meet specific internal governance requirements or external regulatory compliance standards.
  • github.com/aws/aws-sdk-go-v2/service/connect: v1.144.0
    • Feature: Added support for Conditional Questions in Evaluation Forms. Introduced Auto Evaluation capability for Evaluation Forms and Contact Evaluations. Added new API operations: SearchEvaluationForms and SearchContactEvaluations.
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.263.0
    • Feature: Add Amazon EC2 R8a instance types
  • github.com/aws/aws-sdk-go-v2/service/gamelift: v1.48.0
    • Feature: Amazon GameLift Servers now supports game builds that use the Windows 2022 operating system.
  • github.com/aws/aws-sdk-go-v2/service/identitystore: v1.34.0
    • Feature: IdentityStore API: added new KMSExceptionReason fields to the Exception object; added multiple new fields to the User APIs - UserStatus, Birthdate, Website and Photos; added multiple new metadata fields for User, Groups and Membership APIs - CreatedAt, CreatedBy, UpdatedAt and UpdatedBy.
  • github.com/aws/aws-sdk-go-v2/service/quicksight: v1.96.0
    • Feature: Support for New Data Prep Experience
  • github.com/aws/aws-sdk-go-v2/service/s3tables: v1.11.0
    • Feature: Adds support for tagging APIs for S3 Tables
  • github.com/aws/aws-sdk-go-v2/service/s3vectors: v1.5.0
    • Feature: Amazon S3 Vectors provides cost-effective, elastic, and durable vector storage for queries based on semantic meaning and similarity.
  • github.com/aws/aws-sdk-go-v2/service/sagemaker: v1.221.0
    • Feature: Added NodeProvisioningMode parameter to UpdateCluster API to determine how instance provisioning is handled during cluster operations; in Continuous mode. Added VpcId field in UpdateDomain request for SageMaker Unified Studio domains with no VPC to add a customer VPC.
  • github.com/aws/aws-sdk-go-v2/service/ssm: v1.67.0
    • Feature: Provides NoLongerSupportedException error message

v1.262.0

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/cloudfront: v1.56.0
    • Feature: This release adds new and updated API operations. You can now use the IpAddressType field to specify either ipv4 or dualstack for your Anycast static IP list. You can also enable cross-account resource sharing to share your VPC origins with other AWS accounts
  • github.com/aws/aws-sdk-go-v2/service/datazone: v1.45.0
    • Feature: Added support for Project Resource Tags
  • github.com/aws/aws-sdk-go-v2/service/ec2: v1.262.0
    • Feature: This release adds AvailabilityZoneId support for DescribeFastSnapshotRestores, DisableFastSnapshotRestores, and EnableFastSnapshotRestores APIs.
  • github.com/aws/aws-sdk-go-v2/service/fsx: v1.63.0
    • Feature: Amazon FSx now enables secure management of Active Directory credentials through AWS Secrets Manager integration. Customers can use Secret ARNs instead of direct credentials when joining resources to Active Directory domains.
  • github.com/aws/aws-sdk-go-v2/service/groundstation: v1.39.0
    • Feature: Introduce CreateDataflowEndpointGroupV2 action
  • github.com/aws/aws-sdk-go-v2/service/s3: v1.90.0
    • Feature: Launch IPv6 dual-stack support for S3 Express
  • github.com/aws/aws-sdk-go-v2/service/sagemaker: v1.220.0
    • Feature: Add new fields in SageMaker Hyperpod DescribeCluster API response: TargetStateCount, SoftwareUpdateStatus and ActiveSoftwareDeploymentConfig to provide AMI update progress visibility .
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

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 7 times, most recently from 16ad3da to de88796 Compare November 19, 2025 09:58
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