-
Notifications
You must be signed in to change notification settings - Fork 24
fix(deps): update all dependencies #664
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open
renovate
wants to merge
1
commit into
main
Choose a base branch
from
renovate/all
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
+48
−48
Conversation
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
Contributor
Author
|
e4b9fea to
9b02362
Compare
0de2829 to
46b7248
Compare
fea8f80 to
9b1c6c4
Compare
9b1c6c4 to
7c45e1b
Compare
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Labels
None yet
0 participants
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.0v0.7.0->v0.8.0v7.1.0->v7.2.0v1.31.20->v1.32.3v1.18.24->v1.19.3v1.261.1->v1.275.1v1.67.4->v1.69.2v1.49.2->v1.52.3v1.89.2->v1.93.0v1.40.2->v1.41.3v1.23.2->v1.24.0v0.10.3->v0.11.2v0.4.1->v0.6.1v2.6.2->v2.7.0442fd00->1a74fe5v1.7.0->v1.8.0v1.12.0->v1.13.0v1.37.0->v1.38.0v7.10.0->v7.12.0v3.0.1->v3.1.0v4.9.0->v4.10.0v4.23.0->v4.24.1v3.208.0->v3.210.0v2.11.0->v2.12.0a4bb9ff->87e1e73a4bb9ff->87e1e73v0.29.0->v0.30.0v0.37.0->v0.38.0v0.30.0->v0.31.0v0.38.0->v0.39.0f26f940->ff82c1bv1.76.0->v1.77.03.205.0->3.210.0v7.10.0->v7.12.0v1.37.0->v1.38.0v3.0.1->v3.1.07b1828d->2e8adc5dec374e->7daaafcWarning
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.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.3General Highlights
Module Highlights
github.com/aws/aws-sdk-go-v2/service/accessanalyzer: v1.34.5github.com/aws/aws-sdk-go-v2/service/account: v1.21.5github.com/aws/aws-sdk-go-v2/service/acm: v1.30.5github.com/aws/aws-sdk-go-v2/service/acmpca: v1.37.6github.com/aws/aws-sdk-go-v2/service/amp: v1.30.2github.com/aws/aws-sdk-go-v2/service/amplify: v1.27.3github.com/aws/aws-sdk-go-v2/service/amplifybackend: v1.27.5github.com/aws/aws-sdk-go-v2/service/amplifyuibuilder: v1.23.5github.com/aws/aws-sdk-go-v2/service/apigateway: v1.27.5github.com/aws/aws-sdk-go-v2/service/apigatewaymanagementapi: v1.23.5github.com/aws/aws-sdk-go-v2/service/apigatewayv2: v1.24.5github.com/aws/aws-sdk-go-v2/service/appconfig: v1.35.3github.com/aws/aws-sdk-go-v2/service/appconfigdata: v1.18.5github.com/aws/aws-sdk-go-v2/service/appfabric: v1.11.5github.com/aws/aws-sdk-go-v2/service/appflow: v1.45.6github.com/aws/aws-sdk-go-v2/service/appintegrations: v1.30.5github.com/aws/aws-sdk-go-v2/service/applicationautoscaling: v1.33.5github.com/aws/aws-sdk-go-v2/service/applicationcostprofiler: v1.21.5github.com/aws/aws-sdk-go-v2/service/applicationdiscoveryservice: v1.28.5github.com/aws/aws-sdk-go-v2/service/applicationinsights: v1.29.3github.com/aws/aws-sdk-go-v2/service/applicationsignals: v1.6.5github.com/aws/aws-sdk-go-v2/service/appmesh: v1.29.5github.com/aws/aws-sdk-go-v2/service/apprunner: v1.32.5github.com/aws/aws-sdk-go-v2/service/appstream: v1.41.5github.com/aws/aws-sdk-go-v2/service/appsync: v1.39.2github.com/aws/aws-sdk-go-v2/service/apptest: v1.4.5github.com/aws/aws-sdk-go-v2/service/arczonalshift: v1.14.5github.com/aws/aws-sdk-go-v2/service/artifact: v1.6.5github.com/aws/aws-sdk-go-v2/service/athena: v1.48.3github.com/aws/aws-sdk-go-v2/service/auditmanager: v1.37.5github.com/aws/aws-sdk-go-v2/service/autoscaling: v1.48.0github.com/aws/aws-sdk-go-v2/service/autoscalingplans: v1.24.5github.com/aws/aws-sdk-go-v2/service/b2bi: v1.0.0-preview.51github.com/aws/aws-sdk-go-v2/service/backup: v1.39.6github.com/aws/aws-sdk-go-v2/service/backupgateway: v1.20.5github.com/aws/aws-sdk-go-v2/service/batch: v1.47.2github.com/aws/aws-sdk-go-v2/service/bcmdataexports: v1.7.5github.com/aws/aws-sdk-go-v2/service/bedrock: v1.22.2github.com/aws/aws-sdk-go-v2/service/bedrockagent: v1.27.0github.com/aws/aws-sdk-go-v2/service/bedrockagentruntime: v1.23.3github.com/aws/aws-sdk-go-v2/service/bedrockruntime: v1.20.0github.com/aws/aws-sdk-go-v2/service/billingconductor: v1.20.5github.com/aws/aws-sdk-go-v2/service/braket: v1.31.5github.com/aws/aws-sdk-go-v2/service/budgets: v1.28.5github.com/aws/aws-sdk-go-v2/service/chatbot: v1.8.5github.com/aws/aws-sdk-go-v2/service/chime: v1.34.5github.com/aws/aws-sdk-go-v2/service/chimesdkidentity: v1.22.5github.com/aws/aws-sdk-go-v2/service/chimesdkmediapipelines: v1.20.5github.com/aws/aws-sdk-go-v2/service/chimesdkmeetings: v1.27.5github.com/aws/aws-sdk-go-v2/service/chimesdkmessaging: v1.26.5github.com/aws/aws-sdk-go-v2/service/chimesdkvoice: v1.19.5github.com/aws/aws-sdk-go-v2/service/cleanrooms: v1.20.0github.com/aws/aws-sdk-go-v2/service/cleanroomsml: v1.10.0github.com/aws/aws-sdk-go-v2/service/cloud9: v1.28.5github.com/aws/aws-sdk-go-v2/service/cloudcontrol: v1.22.5github.com/aws/aws-sdk-go-v2/service/clouddirectory: v1.24.5github.com/aws/aws-sdk-go-v2/service/cloudfrontkeyvaluestore: v1.8.5github.com/aws/aws-sdk-go-v2/service/cloudhsm: v1.24.5github.com/aws/aws-sdk-go-v2/service/cloudhsmv2: v1.27.6github.com/aws/aws-sdk-go-v2/service/cloudsearchdomain: v1.23.5github.com/aws/aws-sdk-go-v2/service/cloudtrail: v1.44.5github.com/aws/aws-sdk-go-v2/service/cloudtraildata: v1.11.5github.com/aws/aws-sdk-go-v2/service/cloudwatchevents: v1.27.5github.com/aws/aws-sdk-go-v2/service/cloudwatchlogs: v1.43.2github.com/aws/aws-sdk-go-v2/service/codeartifact: v1.33.5github.com/aws/aws-sdk-go-v2/service/codebuild: v1.48.1github.com/aws/aws-sdk-go-v2/service/codecatalyst: v1.17.5github.com/aws/aws-sdk-go-v2/service/codecommit: v1.27.5github.com/aws/aws-sdk-go-v2/service/codeconnections: v1.5.5github.com/aws/aws-sdk-go-v2/service/codedeploy: v1.29.5github.com/aws/aws-sdk-go-v2/service/codeguruprofiler: v1.24.5github.com/aws/aws-sdk-go-v2/service/codegurureviewer: v1.29.5github.com/aws/aws-sdk-go-v2/service/codegurusecurity: v1.12.5github.com/aws/aws-sdk-go-v2/service/codepipeline: v1.36.3github.com/aws/aws-sdk-go-v2/service/codestarconnections: v1.29.5github.com/aws/aws-sdk-go-v2/service/codestarnotifications: v1.26.5github.com/aws/aws-sdk-go-v2/service/cognitoidentity: v1.27.5github.com/aws/aws-sdk-go-v2/service/cognitoidentityprovider: v1.46.5github.com/aws/aws-sdk-go-v2/service/cognitosync: v1.23.5github.com/aws/aws-sdk-go-v2/service/comprehend: v1.35.5github.com/aws/aws-sdk-go-v2/service/comprehendmedical: v1.26.5github.com/aws/aws-sdk-go-v2/service/computeoptimizer: v1.39.5github.com/aws/aws-sdk-go-v2/service/configservice: v1.50.5github.com/aws/aws-sdk-go-v2/service/connect: v1.115.2github.com/aws/aws-sdk-go-v2/service/connectcampaigns: v1.15.5github.com/aws/aws-sdk-go-v2/service/connectcases: v1.21.5github.com/aws/aws-sdk-go-v2/service/connectcontactlens: v1.26.5github.com/aws/aws-sdk-go-v2/service/connectparticipant: v1.27.5github.com/aws/aws-sdk-go-v2/service/controlcatalog: v1.5.5github.com/aws/aws-sdk-go-v2/service/controltower: v1.18.6github.com/aws/aws-sdk-go-v2/service/costandusagereportservice: v1.28.5github.com/aws/aws-sdk-go-v2/service/costexplorer: v1.43.5github.com/aws/aws-sdk-go-v2/service/costoptimizationhub: v1.10.5github.com/aws/aws-sdk-go-v2/service/customerprofiles: v1.42.5github.com/aws/aws-sdk-go-v2/service/databasemigrationservice: v1.44.3github.com/aws/aws-sdk-go-v2/service/databrew: v1.33.5github.com/aws/aws-sdk-go-v2/service/dataexchange: v1.33.3github.com/aws/aws-sdk-go-v2/service/datapipeline: v1.25.5github.com/aws/aws-sdk-go-v2/service/datasync: v1.43.2github.com/aws/aws-sdk-go-v2/service/datazone: v1.23.3github.com/aws/aws-sdk-go-v2/service/dax: v1.23.5github.com/aws/aws-sdk-go-v2/service/deadline: v1.6.4github.com/aws/aws-sdk-go-v2/service/detective: v1.31.5github.com/aws/aws-sdk-go-v2/service/devicefarm: v1.28.5github.com/aws/aws-sdk-go-v2/service/devopsguru: v1.34.5github.com/aws/aws-sdk-go-v2/service/directconnect: v1.29.5github.com/aws/aws-sdk-go-v2/service/directoryservice: v1.30.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.