Skip to content
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

chore(deps): update non-major deps #507

Merged
merged 3 commits into from
Aug 9, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Apr 23, 2024

Mend Renovate

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action patch v4.1.3 -> v4.1.7 age adoption passing confidence
actions/setup-go action patch v5.0.0 -> v5.0.2 age adoption passing confidence
cloud.google.com/go/pubsub require minor v1.37.0 -> v1.41.0 age adoption passing confidence
docker.io/alpine final minor 3.19.1 -> 3.20.2 age adoption passing confidence
docker.io/golang stage patch 1.22.2-alpine -> 1.22.6-alpine age adoption passing confidence
docker.io/golang final patch 1.22.2-alpine -> 1.22.6-alpine age adoption passing confidence
docker.io/python final patch 3.12.3-alpine -> 3.12.5-alpine age adoption passing confidence
docker.io/ruby final patch 3.3.1-alpine -> 3.3.4-alpine age adoption passing confidence
docker/setup-buildx-action action minor v3.3.0 -> v3.6.1 age adoption passing confidence
docker/setup-qemu-action action minor v3.0.0 -> v3.2.0 age adoption passing confidence
github.com/golangci/golangci-lint minor v1.57.2 -> v1.59.1 age adoption passing confidence
github.com/prometheus/client_golang require patch v1.19.0 -> v1.19.1 age adoption passing confidence
github.com/rs/zerolog require minor v1.32.0 -> v1.33.0 age adoption passing confidence
github.com/slack-go/slack require minor v0.12.5 -> v0.13.1 age adoption passing confidence
github.com/spf13/viper require minor v1.18.2 -> v1.19.0 age adoption passing confidence
github/codeql-action action minor v3.25.2 -> v3.26.0 age adoption passing confidence
google.golang.org/api require minor v0.176.1 -> v0.191.0 age adoption passing confidence
goreleaser/goreleaser-action action minor v5.0.0 -> v5.1.0 age adoption passing confidence

Release Notes

actions/checkout (actions/checkout)

v4.1.7

Compare Source

v4.1.6

Compare Source

v4.1.5

Compare Source

What's Changed

Full Changelog: actions/checkout@v4.1.4...v4.1.5

v4.1.4

Compare Source

actions/setup-go (actions/setup-go)

v5.0.2

Compare Source

v5.0.1

Compare Source

What's Changed

New Contributors

Full Changelog: actions/setup-go@v5.0.0...v5.0.1

docker/setup-buildx-action (docker/setup-buildx-action)

v3.6.1

Compare Source

Full Changelog: docker/setup-buildx-action@v3.6.0...v3.6.1

v3.6.0

Compare Source

Full Changelog: docker/setup-buildx-action@v3.5.0...v3.6.0

v3.5.0

Compare Source

v3.4.0

Compare Source

Full Changelog: docker/setup-buildx-action@v3.3.0...v3.4.0

docker/setup-qemu-action (docker/setup-qemu-action)

v3.2.0

Compare Source

Full Changelog: docker/setup-qemu-action@v3.1.0...v3.2.0

v3.1.0

Compare Source

Full Changelog: docker/setup-qemu-action@v3.0.0...v3.1.0

golangci/golangci-lint (github.com/golangci/golangci-lint)

v1.59.1

Compare Source

  1. Updated linters
    • go-errorlint: from 1.5.1 to 1.5.2
    • gomnd: deprecated configuration compatibility
    • intrange: add style preset
    • misspell: from 0.5.1 to 0.6.0
    • sloglint: from 0.7.0 to 0.7.1
    • testifylint: from 1.3.0 to 1.3.1
    • unparam: bump to HEAD
    • usestdlibvars: from 1.25.0 to 1.26.0
  2. Fixes
    • SARIF: init empty result slice
    • SARIF: issue column >= 1
  3. Documentation
    • update revive configuration

v1.59.0

Compare Source

v1.58.2

Compare Source

  1. Updated linters
    • canonicalheader: from 1.0.6 to 1.1.1
    • gosec: from 2.19.0 to 2.20.0
    • musttag: from 0.12.1 to 0.12.2
    • nilnil: from 0.1.8 to 0.1.9
  2. Documentation
    • Improve integrations and install pages

v1.58.1

Compare Source

v1.58.0

Compare Source

prometheus/client_golang (github.com/prometheus/client_golang)

v1.19.1

Compare Source

What's Changed

  • Security patches for golang.org/x/sys and google.golang.org/protobuf

New Contributors

Full Changelog: prometheus/client_golang@v1.19.0...v1.19.1

rs/zerolog (github.com/rs/zerolog)

v1.33.0

Compare Source

slack-go/slack (github.com/slack-go/slack)

v0.13.1

Compare Source

What's Changed

v0.13.1 is now available. It contains no breaking changes but does expose some new fields previously unavailable.

Enhancements
Bug Fixes
Chores / Code Cleanup
Documentation Updates

New Contributors

Full Changelog: slack-go/slack@v0.13.0...v0.13.1

v0.13.0

Compare Source

[!WARNING]
This release includes a breaking change since the last release

What's Changed

Breaking changes
  • Expose team_id parameter for use with org-wide app by @​candiduslynx in https://github.com/slack-go/slack/pull/1283:
    Changed interface:
    Old New
    Client.GetBotInfo(bot string) (*Bot, error) Client.GetBotInfo(parameters GetBotInfoParameters) (*Bot, error)
    Client.GetBotInfoContext(ctx context.Context, bot string) Client.GetBotInfoContext(ctx context.Context, parameters GetBotInfoParameters)
    Client.GetTeamProfile() (*TeamProfile, error) GetTeamProfile(teamID ...string) (*TeamProfile, error)
    GetTeamProfileContext(ctx context.Context) (*TeamProfile, error) GetTeamProfileContext(ctx context.Context, teamID ...string) (*TeamProfile, error)
    Client.GetBillableInfo(user string) (map[string]BillingActive, error) Client.GetBillableInfo(params GetBillableInfoParams) (map[string]BillingActive, error)
    Client.GetBillableInfoContext(ctx context.Context, user string) (map[string]BillingActive, error) Client.GetBillableInfoContext(ctx context.Context, params GetBillableInfoParams) (map[string]BillingActive, error)
    Client.GetBillableInfoForTeam() (map[string]BillingActive, error) dropped, use Client.GetBillableInfo with empty params
    Client.GetBillableInfoForTeamContext(ctx context.Context) (map[string]BillingActive, error) dropped, use Client.GetBillableInfoContext with empty params
Bug fixes
Enhancements

New Contributors

Full Changelog: slack-go/slack@v0.12.5...v0.13.0

spf13/viper (github.com/spf13/viper)

v1.19.0

Compare Source

What's Changed

Bug Fixes 🐛
Dependency Updates ⬆️
Other Changes

New Contributors

Full Changelog: spf13/viper@v1.18.1...v1.19.0

github/codeql-action (github/codeql-action)

v3.26.0

Compare Source

v3.25.15

Compare Source

v3.25.14

Compare Source

v3.25.13

Compare Source

v3.25.12

Compare Source

v3.25.11

Compare Source

v3.25.10

Compare Source

v3.25.9

Compare Source

v3.25.8

Compare Source

v3.25.7

Compare Source

v3.25.6

Compare Source

v3.25.5

Compare Source

v3.25.4

Compare Source

v3.25.3

Compare Source

googleapis/google-api-go-client (google.golang.org/api)

v0.191.0

Compare Source

Features
Bug Fixes

v0.190.0

Compare Source

Features
Reverts

v0.189.0

Compare Source

Features
Bug Fixes
  • cba: Update newAuth path to use nil oauth2 client (#​2684) (d925dcb)
  • transport/grpc: Retain UserAgent option with new auth stack (#​2690) (aa4662f)

v0.188.0

Compare Source

Features
Bug Fixes

v0.187.0

Compare Source

Features

Configuration

📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

@coveralls
Copy link

coveralls commented Apr 23, 2024

Pull Request Test Coverage Report for Build 10313360224

Details

  • 0 of 0 changed or added relevant lines in 0 files are covered.
  • No unchanged relevant lines lost coverage.
  • Overall coverage remained the same at 0.0%

Totals Coverage Status
Change from base Build 10305746855: 0.0%
Covered Lines: 0
Relevant Lines: 0

💛 - Coveralls

@renovate renovate bot force-pushed the renovate/non-major-deps branch from 1bc2a65 to 9e73f44 Compare April 25, 2024 13:06
@renovate renovate bot changed the title chore(deps): update docker.io/ruby:3.3.1-alpine docker digest to 92047b8 chore(deps): update non-major deps Apr 25, 2024
@renovate renovate bot force-pushed the renovate/non-major-deps branch 3 times, most recently from d761527 to 45df12b Compare May 2, 2024 15:59
@renovate renovate bot force-pushed the renovate/non-major-deps branch 9 times, most recently from 1ff48e7 to d936003 Compare May 10, 2024 19:18
@renovate renovate bot force-pushed the renovate/non-major-deps branch 6 times, most recently from 80e78ef to 2a439dc Compare May 19, 2024 21:42
@renovate renovate bot force-pushed the renovate/non-major-deps branch 4 times, most recently from 9ece762 to 716e525 Compare May 23, 2024 03:04
@renovate renovate bot force-pushed the renovate/non-major-deps branch 10 times, most recently from b6b1382 to 8efd0e9 Compare July 29, 2024 16:54
@renovate renovate bot force-pushed the renovate/non-major-deps branch 12 times, most recently from 71b630d to f7bb4d9 Compare August 8, 2024 01:36
@renovate renovate bot force-pushed the renovate/non-major-deps branch from f7bb4d9 to d2f82f0 Compare August 8, 2024 16:20
Copy link
Contributor Author

renovate bot commented Aug 9, 2024

Edited/Blocked Notification

Renovate 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.

⚠️ Warning: custom changes will be lost.

@wass3rw3rk wass3rw3rk merged commit 727bac4 into main Aug 9, 2024
10 checks passed
@wass3rw3rk wass3rw3rk deleted the renovate/non-major-deps branch August 9, 2024 18:42
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

3 participants