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 #517

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 17, 2024

This PR contains the following updates:

Package Type Update Change Age Adoption Passing Confidence
actions/checkout action minor v4.1.7 -> v4.2.1 age adoption passing confidence
cloud.google.com/go/pubsub require minor v1.41.0 -> v1.45.0 age adoption passing confidence
docker.io/alpine final patch 3.20.2 -> 3.20.3 age adoption passing confidence
docker.io/golang stage patch 1.23.0-alpine -> 1.23.2-alpine age adoption passing confidence
docker.io/golang final patch 1.23.0-alpine -> 1.23.2-alpine age adoption passing confidence
docker.io/python final minor 3.12.5-alpine -> 3.13.0-alpine age adoption passing confidence
docker.io/ruby final patch 3.3.4-alpine -> 3.3.5-alpine age adoption passing confidence
docker/setup-buildx-action action minor v3.6.1 -> v3.7.1 age adoption passing confidence
github.com/Masterminds/semver/v3 require minor v3.2.1 -> v3.3.0 age adoption passing confidence
github.com/Masterminds/sprig/v3 require minor v3.2.3 -> v3.3.0 age adoption passing confidence
github.com/golangci/golangci-lint minor v1.60.1 -> v1.61.0 age adoption passing confidence
github.com/mattermost/mattermost/server/public require patch v0.1.6 -> v0.1.7 age adoption passing confidence
github.com/prometheus/client_golang require patch v1.20.0 -> v1.20.5 age adoption passing confidence
github.com/rs/xid require minor v1.5.0 -> v1.6.0 age adoption passing confidence
github.com/slack-go/slack require minor v0.14.0 -> v0.15.0 age adoption passing confidence
github/codeql-action action patch v3.26.2 -> v3.26.13 age adoption passing confidence
google.golang.org/api require minor v0.192.0 -> v0.201.0 age adoption passing confidence
target/flottbot minor 0.13.1 -> 0.14.0 age adoption passing confidence

Release Notes

actions/checkout (actions/checkout)

v4.2.1

Compare Source

v4.2.0

Compare Source

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

v3.7.1

Compare Source

Full Changelog: docker/setup-buildx-action@v3.7.0...v3.7.1

v3.7.0

Compare Source

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

Masterminds/semver (github.com/Masterminds/semver/v3)

v3.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: Masterminds/semver@v3.2.1...v3.3.0

Masterminds/sprig (github.com/Masterminds/sprig/v3)

v3.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: Masterminds/sprig@v3.2.3...v3.3.0

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

v1.61.0

Compare Source

  1. Enhancements
    • Add junit-xml-extended format
    • Exclude Swagger Codegen files by default
  2. Updated linters
    • dupword: from 0.0.14 to 0.1.1
    • fatcontext: from 0.4.0 to 0.5.2
    • gci: from 0.13.4 to 0.13.5 (new option no-lex-order)
    • go-ruleguard: from 0.4.2 to 0fe6f58 (fix panic with custom linters)
    • godot: from 1.4.16 to 1.4.17
    • gomodguard: from 1.3.3 to 1.3.5
    • gosec: disable temporarily G407
    • gosec: from ab3f6c1 to 2.21.2 (partially fix G115)
    • intrange: from 0.1.2 to 0.2.0
    • nolintlint: remove the empty line in the directive replacement
  3. Misc.
    • Improve runtime version parsing
  4. Documentation
    • Add additional info about typecheck

v1.60.3

Compare Source

v1.60.2

Compare Source

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

v1.20.5: / 2024-10-15

Compare Source

We decided to revert the testutil change that made our util functions less error-prone, but created a lot of work for our downstream users. Apologies for the pain! This revert should not cause any major breaking change, even if you already did the work--unless you depend on the exact error message.

Going forward, we plan to reinforce our release testing strategy [1],[2] and deliver an enhanced testutil package/module with more flexible and safer APIs.

Thanks to @​dashpole @​dgrisonnet @​kakkoyun @​ArthurSens @​vesari @​logicalhan @​krajorama @​bwplotka who helped in this patch release! 🤗

Changelog

[BUGFIX] testutil: Reverted #​1424; functions using compareMetricFamilies are (again) only failing if filtered metricNames are in the expected input. #​1645

v1.20.4

Compare Source

  • [BUGFIX] histograms: Fix a possible data race when appending exemplars vs metrics gather. #​1623

v1.20.3

Compare Source

  • [BUGFIX] histograms: Fix possible data race when appending exemplars. #​1608

v1.20.2

Compare Source

  • [BUGFIX] promhttp: Unset Content-Encoding header when data is uncompressed. #​1596

v1.20.1

Compare Source

  • [BUGFIX] process-collector: Fixed unregistered descriptor error when using process collector with PedanticRegistry on Linux machines. #​1587
rs/xid (github.com/rs/xid)

v1.6.0

Compare Source

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

v0.15.0

Compare Source

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

What's Changed

v0.15.0 is now available. It does contain minor breaking changes to two Block Kit elements along with a lot of new functionality.

Breaking Changes

Block Kit - Rich Text Section Date Element

If you are using the RichTextSectionDateElement block kit element, there is a new field Format which is now required. It previously did not exist, but was marked as required in the Block Kit Documentation. Similarly, the function NewRichTextSectionDateElement function signature has been updated to require the new parameter. While this may not have previously worked, the non-backwards compatible signature change prompts it to be identified as breaking change.

Block Kit - Rich Text input Block Element

If you are using the RichTextInputBlockElement block kit element, the InitialValue field type has been changed from string to *RichTextBlock to provide a more strongly typed experience. If you were previously passing a pre-formatted JSON object you will need to update your input to use the RichTextBlock struct instead.

Enhancements
Bug Fixes
Chores

New Contributors

Full Changelog: slack-go/slack@v0.14.0...v0.15.0

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

v3.26.13

Compare Source

v3.26.12

Compare Source

v3.26.11

Compare Source

v3.26.10

Compare Source

v3.26.9

Compare Source

v3.26.8

Compare Source

v3.26.7

Compare Source

v3.26.6

Compare Source

v3.26.5

Compare Source

v3.26.4

Compare Source

v3.26.3

Compare Source

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

v0.201.0

Compare Source

Features

v0.200.0

Compare Source

Features

v0.199.0

Compare Source

Features

v0.198.0

Compare Source

Features

v0.197.0

Compare Source

Features
Bug Fixes
  • transport: Set UniverseDomain in http.NewClient for new auth (#​2773) (140d0a5)

v0.196.0

Compare Source

Features

v0.195.0

Compare Source

Features

v0.194.0

Compare Source

Features
Bug Fixes

v0.193.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 is behind base branch, 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 Aug 17, 2024

Pull Request Test Coverage Report for Build 11451414191

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 10426782526: 0.0%
Covered Lines: 0
Relevant Lines: 0

💛 - Coveralls

@renovate renovate bot changed the title chore(deps): update target/flottbot docker tag to v0.14.0 chore(deps): update non-major deps Aug 19, 2024
@renovate renovate bot force-pushed the renovate/non-major-deps branch 2 times, most recently from a6af936 to a7a1002 Compare August 20, 2024 01:01
@renovate renovate bot changed the title chore(deps): update non-major deps fix(deps): update non-major deps Aug 20, 2024
Copy link
Contributor Author

renovate bot commented Aug 20, 2024

ℹ Artifact update notice

File name: go.mod

In order to perform the update(s) described in the table above, Renovate ran the go get command, which resulted in the following additional change(s):

  • 27 additional dependencies were updated

Details:

Package Change
cloud.google.com/go v0.115.0 -> v0.116.0
cloud.google.com/go/auth v0.8.1 -> v0.9.8
cloud.google.com/go/auth/oauth2adapt v0.2.3 -> v0.2.4
cloud.google.com/go/compute/metadata v0.5.0 -> v0.5.2
cloud.google.com/go/iam v1.1.12 -> v1.2.1
github.com/googleapis/enterprise-certificate-proxy v0.3.2 -> v0.3.4
github.com/huandu/xstrings v1.3.3 -> v1.5.0
github.com/mitchellh/copystructure v1.0.0 -> v1.2.0
github.com/mitchellh/reflectwalk v1.0.0 -> v1.0.2
github.com/shopspring/decimal v1.2.0 -> v1.4.0
github.com/spf13/cast v1.6.0 -> v1.7.0
go.opentelemetry.io/contrib/instrumentation/google.golang.org/grpc/otelgrpc v0.49.0 -> v0.54.0
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 -> v0.54.0
go.opentelemetry.io/otel v1.24.0 -> v1.29.0
go.opentelemetry.io/otel/metric v1.24.0 -> v1.29.0
go.opentelemetry.io/otel/trace v1.24.0 -> v1.29.0
golang.org/x/crypto v0.25.0 -> v0.28.0
golang.org/x/net v0.27.0 -> v0.30.0
golang.org/x/oauth2 v0.22.0 -> v0.23.0
golang.org/x/sys v0.22.0 -> v0.26.0
golang.org/x/text v0.16.0 -> v0.19.0
golang.org/x/time v0.6.0 -> v0.7.0
google.golang.org/genproto v0.0.0-20240730163845-b1a4ccb954bf -> v0.0.0-20241007155032-5fefd90f89a9
google.golang.org/genproto/googleapis/api v0.0.0-20240725223205-93522f1f2a9f -> v0.0.0-20240930140551-af27646dc61f
google.golang.org/genproto/googleapis/rpc v0.0.0-20240730163845-b1a4ccb954bf -> v0.0.0-20241007155032-5fefd90f89a9
google.golang.org/grpc v1.65.0 -> v1.67.1
google.golang.org/protobuf v1.34.2 -> v1.35.1

@renovate renovate bot force-pushed the renovate/non-major-deps branch 7 times, most recently from cfa7ea3 to dae3594 Compare August 24, 2024 16:15
@renovate renovate bot force-pushed the renovate/non-major-deps branch 5 times, most recently from 5868a82 to 6bc2482 Compare September 3, 2024 21:28
@renovate renovate bot force-pushed the renovate/non-major-deps branch 7 times, most recently from 40bd4d8 to 5096b55 Compare September 6, 2024 02:09
@renovate renovate bot force-pushed the renovate/non-major-deps branch 5 times, most recently from ea45e5a to 90d2e5c Compare September 19, 2024 17:14
@renovate renovate bot force-pushed the renovate/non-major-deps branch 4 times, most recently from 2be7d26 to 1c5fe1e Compare September 25, 2024 19:44
@renovate renovate bot changed the title fix(deps): update non-major deps chore(deps): update non-major deps Sep 25, 2024
@renovate renovate bot force-pushed the renovate/non-major-deps branch 5 times, most recently from 507f7be to 013f09f Compare October 2, 2024 10:02
@renovate renovate bot force-pushed the renovate/non-major-deps branch 8 times, most recently from 0fabf33 to b164a6f Compare October 10, 2024 01:16
@renovate renovate bot force-pushed the renovate/non-major-deps branch 5 times, most recently from ffd0247 to 2816cae Compare October 19, 2024 10:51
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.

1 participant