Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Nov 17, 2025

Note: This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Type Update Change Age Confidence
actions/checkout action major v5 -> v6 age confidence
actions/checkout action major v5.0.0 -> v6.0.1 age confidence
actions/runner minor 2.329.0 -> 2.330.0 age confidence
cirruslabs/cirrus-cli minor v0.156.0 -> v0.157.0 age confidence
dev.gaijin.team/go/golib indirect minor v0.7.0 -> v0.8.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/config require minor v1.31.20 -> v1.32.3 age confidence
github.com/aws/aws-sdk-go-v2/credentials indirect minor v1.18.24 -> v1.19.3 age confidence
github.com/aws/aws-sdk-go-v2/service/ec2 require minor v1.261.1 -> v1.275.1 age confidence
github.com/aws/aws-sdk-go-v2/service/ecs require minor v1.67.4 -> v1.69.2 age confidence
github.com/aws/aws-sdk-go-v2/service/iam require minor v1.49.2 -> v1.52.3 age confidence
github.com/aws/aws-sdk-go-v2/service/s3 require minor v1.89.2 -> v1.93.0 age confidence
github.com/aws/aws-sdk-go-v2/service/sts require minor v1.40.2 -> v1.41.3 age confidence
github.com/aws/smithy-go indirect minor v1.23.2 -> v1.24.0 age confidence
github.com/charmbracelet/x/ansi indirect minor v0.10.3 -> v0.11.2 age confidence
github.com/clipperhouse/displaywidth indirect minor v0.4.1 -> v0.6.1 age confidence
github.com/golangci/golangci-lint/v2 require minor v2.6.2 -> v2.7.0 age confidence
github.com/golangci/golines (changelog) indirect digest 442fd00 -> 1a74fe5 age confidence
github.com/hashicorp/go-version indirect minor v1.7.0 -> v1.8.0 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.12.0 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.1 age confidence
github.com/pulumi/pulumi/sdk/v3 require minor v3.208.0 -> v3.210.0 age confidence
github.com/tomarrell/wrapcheck/v2 indirect minor v2.11.0 -> v2.12.0 age confidence
golang.org/x/exp require digest a4bb9ff -> 87e1e73 age confidence
golang.org/x/exp/typeparams indirect digest a4bb9ff -> 87e1e73 age confidence
golang.org/x/mod indirect minor v0.29.0 -> v0.30.0 age confidence
golang.org/x/sys indirect minor v0.37.0 -> v0.38.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 (changelog) indirect digest f26f940 -> ff82c1b age confidence
google.golang.org/grpc indirect minor v1.76.0 -> v1.77.0 age confidence
pulumi/pulumi minor 3.205.0 -> 3.210.0 age confidence
pulumi/pulumi-aws minor v7.10.0 -> v7.12.0 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 -> 2e8adc5
registry.access.redhat.com/ubi9/ubi final digest dec374e -> 7daaafc

Warning

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


Release Notes

actions/checkout (actions/checkout)

v6

Compare Source

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
cirruslabs/cirrus-cli (cirruslabs/cirrus-cli)

v0.157.0

Compare Source

What's Changed

Full Changelog: cirruslabs/cirrus-cli@v0.156.0...v0.157.0

GaijinEntertainment/golib (dev.gaijin.team/go/golib)

v0.8.0

Compare Source

Major release with breaking changes to logger and stacktrace packages. Please review the Breaking Changes section carefully before upgrading.

This release focuses on improving the logger and stacktrace packages with better caller capture, thread safety, and a simplified adapter interface.


⚠️ Breaking Changes
  • Change logger.New() constructor signature (a818939, dbbf7a2, ef40e6a)
    Constructor changed from New(adapter Adapter, maxLevel int) to New(adapter Adapter, opts ...Option). The maxLevel parameter is now passed via WithLevel(level) option.

  • Rework logger.Adapter interface (3e99e98)
    The Adapter interface has been simplified. Logger name and stacktrace functionality is now handled by the logger itself, with these values passed as fields.

  • Remove NopAdapter and change nil adapter handling (ac007a8)
    NopAdapter has been removed. All loggers with nil adapter are now treated as no-op loggers. No-op loggers can only be created with logger.NewNop(). logger.New() now panics if it receives a nil adapter.

  • Change logger name and error passthrough mechanism (dbbf7a2)
    Logger name and error are now passed to adapters as fields rather than handled in a special way.

  • Rework stacktrace package API (7d77230, e4d4715)
    stacktrace.Capture() renamed to stacktrace.CaptureStack(). Stack type is now read-only; modification methods have been removed.


Added
  • New logger configuration options (a818939, dbbf7a2, ef40e6a)
    Added multiple new options for configuring logger behavior:

    • WithLevel(level int) - Set maximum log level
    • WithCallerAtLevel(level int) - Enable automatic caller capture at or below specified level
    • WithCallerMapper(fn) - Custom caller frame mapping with DefaultCallerMapper provided
    • WithNameMapper(fn) - Custom logger name field mapping
    • WithNameFormatter(fn) - Custom logger name formatting (hierarchical with : or replacement strategies)
    • WithErrorMapper(fn) - Custom error field mapping
    • WithStackTraceMapper(fn) - Custom stacktrace field mapping
  • New stacktrace.CaptureCaller() function (e4d4715)
    Captures a single stack frame with specified skip. More performant for cases when only the caller's frame is required.

  • New stacktrace.Frame type (6b86721)
    Represents a single stack frame containing program counter, file path, line number, and function name. Simplified representation of runtime.Frame that is safe to store and use after stack trace capture.

  • Logger comparison method (ef40e6a)
    New logger.IsEqual() method for comparing if two loggers are functionally the same.

  • Thread-safe buffer adapter improvements (bb3745f)
    bufferadapter.LogEntries type is now thread-safe. New bufferadapter.NewWithBuffer() method allows usage of pre-existing buffer.

  • Stacktrace capture support (dbbf7a2)
    Full stacktrace capture functionality integrated into logger package.


Changed
  • Finalize logger documentation (dbbf7a2)
    Comprehensive documentation added to the logger package.

  • Improve adapter documentation (3e99e98)
    Added detailed package documentation for logrusadapter, slogadapter, and zapadapter.

  • Simplify bufferadapter.New() (bb3745f)
    Now creates and returns both adapter and buffer together for convenience.

  • Upgrade golangci-lint configuration (17f1b9c)
    Updated linter config to support golangci-lint v2.6 and fixed all lint issues.


Fixed
  • Fix logger name carrying with multiple children (ef40e6a)
    Previously, when multiple child loggers changed names, it would result in multiple fields with the same name. The new approach allows for logger name rewrites and custom logger name generation strategies.

Upgrade Guide

For Logger Users:

1. Updating logger.New() calls:

// Before (v0.7.0)
logger := logger.New(adapter, logger.LevelDebug)

// After (v0.8.0)
logger := logger.New(adapter, logger.WithLevel(logger.LevelDebug))

// Or use default level (LevelInfo) with no options
logger := logger.New(adapter)

2. Creating no-op loggers:

// Before
logger := logger.New(logger.NopAdapter{}, someLevel)

// After
logger := logger.NewNop()

3. Calling stacktrace functions:

// Before
stack := stacktrace.Capture(skip)

// After
stack := stacktrace.CaptureStack(skip)

// Or for single frame:
frame := stacktrace.CaptureCaller(skip)

4. Modifying Stack instances:

Remove any code that modifies Stack - it's now read-only. Capture the stack with the correct skip value instead.

For Adapter Implementers:

The Adapter interface has been simplified. Logger name and stacktrace functionality is now handled by the logger itself, with these values passed as fields.

Review the updated documentation in logrusadapter, slogadapter, and zapadapter packages for examples of the new implementation pattern.


Contributors

aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2/config)

v1.32.3

General Highlights

  • Dependency Update: Updated to the latest SDK module versions

Module Highlights

  • github.com/aws/aws-sdk-go-v2/service/accessanalyzer: v1.34.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/account: v1.21.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/acm: v1.30.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/acmpca: v1.37.6
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/amp: v1.30.2
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/amplify: v1.27.3
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/amplifybackend: v1.27.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/amplifyuibuilder: v1.23.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/apigateway: v1.27.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/apigatewaymanagementapi: v1.23.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/apigatewayv2: v1.24.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/appconfig: v1.35.3
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/appconfigdata: v1.18.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/appfabric: v1.11.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/appflow: v1.45.6
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/appintegrations: v1.30.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/applicationautoscaling: v1.33.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/applicationcostprofiler: v1.21.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/applicationdiscoveryservice: v1.28.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/applicationinsights: v1.29.3
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/applicationsignals: v1.6.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/appmesh: v1.29.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/apprunner: v1.32.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/appstream: v1.41.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/appsync: v1.39.2
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/apptest: v1.4.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/arczonalshift: v1.14.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/artifact: v1.6.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/athena: v1.48.3
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/auditmanager: v1.37.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/autoscaling: v1.48.0
    • Feature: Auto Scaling groups now support the ability to strictly balance instances across Availability Zones by configuring the AvailabilityZoneDistribution parameter. If balanced-only is configured for a group, launches will always be attempted in the under scaled Availability Zone even if it is unhealthy.
  • github.com/aws/aws-sdk-go-v2/service/autoscalingplans: v1.24.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/b2bi: v1.0.0-preview.51
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/backup: v1.39.6
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/backupgateway: v1.20.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/batch: v1.47.2
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/bcmdataexports: v1.7.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/bedrock: v1.22.2
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/bedrockagent: v1.27.0
    • Feature: Add prompt support for chat template configuration and agent generative AI resource. Add support for configuring an optional guardrail in Prompt and Knowledge Base nodes in Prompt Flows. Add API to validate flow definition
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/bedrockagentruntime: v1.23.3
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/bedrockruntime: v1.20.0
    • Feature: Add Prompt management support to Bedrock runtime APIs: Converse, ConverseStream, InvokeModel, InvokeModelWithStreamingResponse
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/billingconductor: v1.20.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/braket: v1.31.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/budgets: v1.28.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/chatbot: v1.8.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/chime: v1.34.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/chimesdkidentity: v1.22.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/chimesdkmediapipelines: v1.20.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/chimesdkmeetings: v1.27.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/chimesdkmessaging: v1.26.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/chimesdkvoice: v1.19.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cleanrooms: v1.20.0
    • Feature: This release introduces support for Custom Models in AWS Clean Rooms ML.
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cleanroomsml: v1.10.0
    • Feature: This release introduces support for Custom Models in AWS Clean Rooms ML.
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloud9: v1.28.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloudcontrol: v1.22.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/clouddirectory: v1.24.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloudfrontkeyvaluestore: v1.8.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloudhsm: v1.24.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloudhsmv2: v1.27.6
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloudsearchdomain: v1.23.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloudtrail: v1.44.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloudtraildata: v1.11.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloudwatchevents: v1.27.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs: v1.43.2
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codeartifact: v1.33.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codebuild: v1.48.1
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codecatalyst: v1.17.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codecommit: v1.27.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codeconnections: v1.5.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codedeploy: v1.29.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codeguruprofiler: v1.24.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codegurureviewer: v1.29.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codegurusecurity: v1.12.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codepipeline: v1.36.3
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codestarconnections: v1.29.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/codestarnotifications: v1.26.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cognitoidentity: v1.27.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider: v1.46.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/cognitosync: v1.23.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/comprehend: v1.35.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/comprehendmedical: v1.26.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/computeoptimizer: v1.39.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/configservice: v1.50.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/connect: v1.115.2
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/connectcampaigns: v1.15.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/connectcases: v1.21.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/connectcontactlens: v1.26.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/connectparticipant: v1.27.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/controlcatalog: v1.5.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/controltower: v1.18.6
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/costandusagereportservice: v1.28.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/costexplorer: v1.43.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/costoptimizationhub: v1.10.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/customerprofiles: v1.42.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/databasemigrationservice: v1.44.3
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/databrew: v1.33.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/dataexchange: v1.33.3
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/datapipeline: v1.25.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/datasync: v1.43.2
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/datazone: v1.23.3
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/dax: v1.23.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/deadline: v1.6.4
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/detective: v1.31.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/devicefarm: v1.28.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/devopsguru: v1.34.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/directconnect: v1.29.5
    • Bug Fix: Adds case-insensitive handling of error message fields in service responses
  • github.com/aws/aws-sdk-go-v2/service/directoryservice: v1.30.5
    • **Bug F

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 artifacts 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.11
go: downloading go1.24.11 (linux/amd64)
go: download go1.24.11: golang.org/[email protected]: verifying module: checksum database disabled by GOSUMDB=off

File name: tools/go.sum
Command failed: mod upgrade --mod-name=github.com/golangci/golangci-lint/v2 -t=2
could not load package: err: exit status 1: stderr: go: inconsistent vendoring in /tmp/renovate/repos/github/redhat-developer/mapt/tools:
	github.com/golangci/golangci-lint/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/clipperhouse/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	dev.gaijin.team/go/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/alecthomas/kingpin/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/alecthomas/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/godoc-lint/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/golangci/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/ldez/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/xhit/go-str2duration/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/charmbracelet/x/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/hashicorp/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/mgechev/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	github.com/tomarrell/wrapcheck/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/exp/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	golang.org/x/[email protected]: is explicitly required in go.mod, but not marked as explicit in vendor/modules.txt
	dev.gaijin.team/go/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/charmbracelet/x/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/clipperhouse/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/godoc-lint/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/golangci/golangci-lint/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/golangci/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/hashicorp/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/mgechev/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	github.com/tomarrell/wrapcheck/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/exp/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod
	golang.org/x/[email protected]: is marked as explicit in vendor/modules.txt, but not explicitly required in go.mod

	To ignore the vendor directory, use -mod=readonly or -mod=mod.
	To sync the vendor directory, run:
		go mod vendor


@renovate renovate bot force-pushed the renovate/all branch 13 times, most recently from e4b9fea to 9b02362 Compare November 20, 2025 07:44
@adrianriobo adrianriobo force-pushed the renovate/all branch 3 times, most recently from 0de2829 to 46b7248 Compare November 20, 2025 08:55
@renovate renovate bot force-pushed the renovate/all branch 7 times, most recently from fea8f80 to 9b1c6c4 Compare December 3, 2025 03:32
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