fix(deps): update all dependencies#664
Merged
Merged
Conversation
Contributor
Author
|
e4b9fea to
9b02362
Compare
0de2829 to
46b7248
Compare
3c024a2 to
f52e714
Compare
893eaa8 to
2c7a2a6
Compare
2c7a2a6 to
f3d737c
Compare
Contributor
Author
Edited/Blocked NotificationRenovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR. You can manually request rebase by checking the rebase/retry box above. |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
v5->v6v5.0.0->v6.0.12.329.0->2.330.0v0.156.0->v0.157.3v0.7.0->v0.8.0v7.1.0->v7.2.0v1.31.20->v1.32.4v1.18.24->v1.19.4v1.261.1->v1.276.0v1.67.4->v1.69.4v1.49.2->v1.53.1v1.89.2->v1.93.1v1.40.2->v1.41.4v0.10.3->v0.11.2v0.4.1->v0.6.1v5.6.2->v5.7.0v2.6.2->v2.7.2442fd00->1a74fe5v1.7.0->v1.8.0v0.7.1->v0.8.0v1.12.0->v1.13.0v1.37.0->v1.39.0v7.10.0->v7.12.0v3.0.1->v3.1.0v3.10.2->v3.11.0v3.10.2->v3.11.0v3.10.2->v3.11.0v3.10.2->v3.11.0v3.10.2->v3.11.0v3.10.2->v3.11.0v3.10.2->v3.11.0v3.10.2->v3.11.0v4.9.0->v4.10.0v4.23.0->v4.24.1v3.208.0->v3.210.0v2.11.0->v2.12.0v0.45.0->v0.46.0a4bb9ff->87e1e73a4bb9ff->87e1e73v0.29.0->v0.31.0v0.47.0->v0.48.0v0.18.0->v0.19.0v0.37.0->v0.39.0v0.38.0->v0.39.0v0.37.0->v0.38.0v0.30.0->v0.32.0v0.31.0->v0.32.0v0.38.0->v0.40.0f26f940->ff82c1bv1.76.0->v1.77.03.205.0->3.210.0v7.10.0->v7.12.0v1.37.0->v1.39.0v3.0.1->v3.1.0v3.10.2->v3.11.07b1828d->75cb847dec374e->d4feb57Warning
Some dependencies could not be looked up. Check the Dependency Dashboard for more information.
Release Notes
actions/checkout (actions/checkout)
v6Compare Source
actions/runner (actions/runner)
v2.330.0Compare 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: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:OSX x64
OSX arm64 (Apple silicon)
Linux x64
Linux arm64
Linux arm
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:
cirruslabs/cirrus-cli (cirruslabs/cirrus-cli)
v0.157.3Compare Source
What's Changed
Full Changelog: cirruslabs/cirrus-cli@v0.157.2...v0.157.3
v0.157.2Compare Source
What's Changed
Full Changelog: cirruslabs/cirrus-cli@v0.157.1...v0.157.2
v0.157.1Compare Source
What's Changed
github.com/cirruslabs/omni-cacheto the latest version by @fkorotkov in #981Full Changelog: cirruslabs/cirrus-cli@v0.157.0...v0.157.1
v0.157.0Compare Source
What's Changed
slogeverywhere by @fkorotkov in #974proxyDownloadFromURLsto useomni-cachefor URL proxying by @fkorotkov in #975Full Changelog: cirruslabs/cirrus-cli@v0.156.0...v0.157.0
GaijinEntertainment/golib (dev.gaijin.team/go/golib)
v0.8.0Compare 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.
Change
logger.New()constructor signature (a818939,dbbf7a2,ef40e6a)Constructor changed from
New(adapter Adapter, maxLevel int)toNew(adapter Adapter, opts ...Option). ThemaxLevelparameter is now passed viaWithLevel(level)option.Rework
logger.Adapterinterface (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
NopAdapterand change nil adapter handling (ac007a8)NopAdapterhas been removed. All loggers with nil adapter are now treated as no-op loggers. No-op loggers can only be created withlogger.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
stacktracepackage API (7d77230,e4d4715)stacktrace.Capture()renamed tostacktrace.CaptureStack().Stacktype 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 levelWithCallerAtLevel(level int)- Enable automatic caller capture at or below specified levelWithCallerMapper(fn)- Custom caller frame mapping withDefaultCallerMapperprovidedWithNameMapper(fn)- Custom logger name field mappingWithNameFormatter(fn)- Custom logger name formatting (hierarchical with:or replacement strategies)WithErrorMapper(fn)- Custom error field mappingWithStackTraceMapper(fn)- Custom stacktrace field mappingNew
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.Frametype (6b86721)Represents a single stack frame containing program counter, file path, line number, and function name. Simplified representation of
runtime.Framethat 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.LogEntriestype is now thread-safe. Newbufferadapter.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, andzapadapter.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
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:
2. Creating no-op loggers:
3. Calling stacktrace functions:
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
Adapterinterface 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, andzapadapterpackages for examples of the new implementation pattern.Contributors
aws/aws-sdk-go-v2 (github.com/aws/aws-sdk-go-v2/config)
v1.32.4General Highlights
Module Highlights
github.com/aws/aws-sdk-go-v2: v1.32.4git.832008.xyz/aws/aws-sdk-go-v2/feature/cloudfront/sign: v1.8.0git.832008.xyz/aws/aws-sdk-go-v2/service/codebuild: v1.48.0git.832008.xyz/aws/aws-sdk-go-v2/service/guardduty: v1.51.0git.832008.xyz/aws/aws-sdk-go-v2/service/lakeformation: v1.38.0git.832008.xyz/aws/aws-sdk-go-v2/service/qapps: v1.4.0git.832008.xyz/aws/aws-sdk-go-v2/service/s3control: v1.50.0git.832008.xyz/aws/aws-sdk-go-v2/service/verifiedpermissions: v1.20.0v1.32.3General Highlights
Module Highlights
github.com/aws/aws-sdk-go-v2/service/accessanalyzer: v1.34.5git.832008.xyz/aws/aws-sdk-go-v2/service/account: v1.21.5git.832008.xyz/aws/aws-sdk-go-v2/service/acm: v1.30.5git.832008.xyz/aws/aws-sdk-go-v2/service/acmpca: v1.37.6git.832008.xyz/aws/aws-sdk-go-v2/service/amp: v1.30.2git.832008.xyz/aws/aws-sdk-go-v2/service/amplify: v1.27.3git.832008.xyz/aws/aws-sdk-go-v2/service/amplifybackend: v1.27.5git.832008.xyz/aws/aws-sdk-go-v2/service/amplifyuibuilder: v1.23.5git.832008.xyz/aws/aws-sdk-go-v2/service/apigateway: v1.27.5git.832008.xyz/aws/aws-sdk-go-v2/service/apigatewaymanagementapi: v1.23.5git.832008.xyz/aws/aws-sdk-go-v2/service/apigatewayv2: v1.24.5git.832008.xyz/aws/aws-sdk-go-v2/service/appconfig: v1.35.3git.832008.xyz/aws/aws-sdk-go-v2/service/appconfigdata: v1.18.5git.832008.xyz/aws/aws-sdk-go-v2/service/appfabric: v1.11.5git.832008.xyz/aws/aws-sdk-go-v2/service/appflow: v1.45.6git.832008.xyz/aws/aws-sdk-go-v2/service/appintegrations: v1.30.5git.832008.xyz/aws/aws-sdk-go-v2/service/applicationautoscaling: v1.33.5git.832008.xyz/aws/aws-sdk-go-v2/service/applicationcostprofiler: v1.21.5git.832008.xyz/aws/aws-sdk-go-v2/service/applicationdiscoveryservice: v1.28.5git.832008.xyz/aws/aws-sdk-go-v2/service/applicationinsights: v1.29.3git.832008.xyz/aws/aws-sdk-go-v2/service/applicationsignals: v1.6.5git.832008.xyz/aws/aws-sdk-go-v2/service/appmesh: v1.29.5git.832008.xyz/aws/aws-sdk-go-v2/service/apprunner: v1.32.5git.832008.xyz/aws/aws-sdk-go-v2/service/appstream: v1.41.5git.832008.xyz/aws/aws-sdk-go-v2/service/appsync: v1.39.2git.832008.xyz/aws/aws-sdk-go-v2/service/apptest: v1.4.5git.832008.xyz/aws/aws-sdk-go-v2/service/arczonalshift: v1.14.5git.832008.xyz/aws/aws-sdk-go-v2/service/artifact: v1.6.5git.832008.xyz/aws/aws-sdk-go-v2/service/athena: v1.48.3git.832008.xyz/aws/aws-sdk-go-v2/service/auditmanager: v1.37.5git.832008.xyz/aws/aws-sdk-go-v2/service/autoscaling: v1.48.0git.832008.xyz/aws/aws-sdk-go-v2/service/autoscalingplans: v1.24.5git.832008.xyz/aws/aws-sdk-go-v2/service/b2bi: v1.0.0-preview.51git.832008.xyz/aws/aws-sdk-go-v2/service/backup: v1.39.6git.832008.xyz/aws/aws-sdk-go-v2/service/backupgateway: v1.20.5git.832008.xyz/aws/aws-sdk-go-v2/service/batch: v1.47.2git.832008.xyz/aws/aws-sdk-go-v2/service/bcmdataexports: v1.7.5git.832008.xyz/aws/aws-sdk-go-v2/service/bedrock: v1.22.2git.832008.xyz/aws/aws-sdk-go-v2/service/bedrockagent: v1.27.0git.832008.xyz/aws/aws-sdk-go-v2/service/bedrockagentruntime: v1.23.3git.832008.xyz/aws/aws-sdk-go-v2/service/bedrockruntime: v1.20.0git.832008.xyz/aws/aws-sdk-go-v2/service/billingconductor: v1.20.5git.832008.xyz/aws/aws-sdk-go-v2/service/braket: v1.31.5git.832008.xyz/aws/aws-sdk-go-v2/service/budgets: v1.28.5git.832008.xyz/aws/aws-sdk-go-v2/service/chatbot: v1.8.5git.832008.xyz/aws/aws-sdk-go-v2/service/chime: v1.34.5git.832008.xyz/aws/aws-sdk-go-v2/service/chimesdkidentity: v1.22.5git.832008.xyz/aws/aws-sdk-go-v2/service/chimesdkmediapipelines: v1.20.5git.832008.xyz/aws/aws-sdk-go-v2/service/chimesdkmeetings: v1.27.5git.832008.xyz/aws/aws-sdk-go-v2/service/chimesdkmessaging: v1.26.5git.832008.xyz/aws/aws-sdk-go-v2/service/chimesdkvoice: v1.19.5git.832008.xyz/aws/aws-sdk-go-v2/service/cleanrooms: v1.20.0git.832008.xyz/aws/aws-sdk-go-v2/service/cleanroomsml: v1.10.0git.832008.xyz/aws/aws-sdk-go-v2/service/cloud9: v1.28.5git.832008.xyz/aws/aws-sdk-go-v2/service/cloudcontrol: v1.22.5git.832008.xyz/aws/aws-sdk-go-v2/service/clouddirectory: v1.24.5git.832008.xyz/aws/aws-sdk-go-v2/service/cloudfrontkeyvaluestore: v1.8.5git.832008.xyz/aws/aws-sdk-go-v2/service/cloudhsm: v1.24.5git.832008.xyz/aws/aws-sdk-go-v2/service/cloudhsmv2: v1.27.6git.832008.xyz/aws/aws-sdk-go-v2/service/cloudsearchdomain: v1.23.5git.832008.xyz/aws/aws-sdk-go-v2/service/cloudtrail: v1.44.5Configuration
📅 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.
This PR was generated by Mend Renovate. View the repository job log.