Skip to content

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Aug 23, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence Type Update
cloud.google.com/go/longrunning v0.6.0 -> v0.6.7 age adoption passing confidence require patch
github.com/bazelbuild/remote-apis 0d21f29 -> 824e1ba age adoption passing confidence require digest
github.com/beevik/etree v1.4.1 -> v1.6.0 age adoption passing confidence require minor
github.com/bitrise-io/go-steputils/v2 v2.0.0-alpha.38 -> v2.0.0-alpha.40 age adoption passing confidence require patch
github.com/bitrise-io/go-utils v1.0.13 -> v1.0.15 age adoption passing confidence require patch
github.com/hashicorp/go-retryablehttp v0.7.7 -> v0.7.8 age adoption passing confidence require patch
github.com/pkg/xattr v0.4.10 -> v0.4.12 age adoption passing confidence require patch
github.com/shirou/gopsutil/v4 v4.25.7 -> v4.25.9 age adoption passing confidence require patch
github.com/spf13/cobra v1.8.1 -> v1.10.1 age adoption passing confidence require minor
github.com/spf13/pflag v1.0.5 -> v1.0.10 age adoption passing confidence require patch
github.com/stretchr/testify v1.10.0 -> v1.11.1 age adoption passing confidence require minor
google.golang.org/genproto/googleapis/api fc7c04a -> 49b9836 age adoption passing confidence require digest
google.golang.org/genproto/googleapis/bytestream fc7c04a -> 49b9836 age adoption passing confidence require digest
google.golang.org/genproto/googleapis/rpc fc7c04a -> 49b9836 age adoption passing confidence require digest
google.golang.org/grpc v1.65.0 -> v1.76.0 age adoption passing confidence require minor
google.golang.org/protobuf v1.34.2 -> v1.36.10 age adoption passing confidence require minor

Warning

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


Release Notes

beevik/etree (github.com/beevik/etree)

v1.6.0

Compare Source

Changes

  • Added new iterator versions of existing functions that return slices of Element pointers: ChildElementsSeq, SelectElementsSeq, FindElementsSeq, and FindElementsPathSeq.
  • Improved performance of functions that return a single element.
  • Because of its use of iterators, this package now requires go 1.23 or later.

v1.5.1

Compare Source

Fixes

  • Fixed a bug in InsertChildAt.

v1.5.0

Compare Source

Changes

  • Added Element function CreateChild, which calls a continuation function
    after creating and adding a child element.

Fixes

  • Removed a potential conflict between two ReadSettings values. When
    AttrSingleQuote is true, CanonicalAttrVal is forced to be false.
bitrise-io/go-steputils (github.com/bitrise-io/go-steputils/v2)

v2.0.0-alpha.40

Compare Source

v2.0.0-alpha.39

Compare Source

bitrise-io/go-utils (github.com/bitrise-io/go-utils)

v1.0.15

Compare Source

v1.0.14

Compare Source

hashicorp/go-retryablehttp (github.com/hashicorp/go-retryablehttp)

v0.7.8

Compare Source

pkg/xattr (github.com/pkg/xattr)

v0.4.12

Compare Source

What's Changed

Full Changelog: pkg/xattr@v0.4.11...v0.4.12

v0.4.11

Compare Source

What's Changed

Full Changelog: pkg/xattr@v0.4.10...v0.4.11

shirou/gopsutil (github.com/shirou/gopsutil/v4)

v4.25.9

Compare Source

What's Changed

cpu
disk
process
Other Changes

New Contributors

Full Changelog: shirou/gopsutil@v4.25.8...v4.25.9

v4.25.8

Compare Source

Important Change

Starting from this release, VirtualMemoryStat.Used on Linux is now calculated based on MemAvailable in meminfo. This may cause a difference of approximately 6–10% compared to the previous calculation.

To address this, we have introduced an opt-out mechanism. You can disable the new calculation by setting the context key WillBeDeletedOptOutMemAvailableCalc to true. Please note that this option is undocumented and will be removed in six months (Feb. 2026).

For more details, see #​1873 and #​1882.

What's Changed

cpu
disk
mem
process
Other Changes

New Contributors

Full Changelog: shirou/gopsutil@v4.25.7...v4.25.8

spf13/cobra (github.com/spf13/cobra)

v1.10.1

Compare Source

🐛 Fix

v1.0.9 of pflags brought back ParseErrorsWhitelist and marked it as deprecated

Full Changelog: spf13/cobra@v1.10.0...v1.10.1

v1.10.0

Compare Source

What's Changed

🚨 Attention!

This version of pflag carried a breaking change: it renamed ParseErrorsWhitelist to ParseErrorsAllowlist which can break builds if both pflag and cobra are dependencies in your project.

  • If you use both pflag and cobra, upgrade pflagto 1.0.8 andcobrato1.10.0`
  • or use the newer, fixed version of pflag v1.0.9 which keeps the deprecated ParseErrorsWhitelist

More details can be found here: #​2303 (comment)

✨ Features
🐛 Fix
🪠 Testing
📝 Docs

New Contributors

Full Changelog: spf13/cobra@v1.9.1...v1.9.2

v1.9.1

Compare Source

🐛 Fixes

Full Changelog: spf13/cobra@v1.9.0...v1.9.1

v1.9.0

Compare Source

✨ Features

🐛 Fixes

🤖 Completions

🧪 Testing

✍🏼 Documentation

🔧 Dependency upgrades


Thank you to all of our amazing contributors and all the great work that's been going into the completions feature!!

👋🏼 New Contributors

Full Changelog: spf13/cobra@v1.8.1...v1.9.0

spf13/pflag (github.com/spf13/pflag)

v1.0.10

Compare Source

What's Changed

  • fix deprecation comment for (FlagSet.)ParseErrorsWhitelist by @​thaJeztah in #​447
  • remove uses of errors.Is, which requires go1.13, move go1.16/go1.21 tests to separate file by @​thaJeztah in #​448

New Contributors

Full Changelog: spf13/pflag@v1.0.9...v1.0.10

v1.0.9

Compare Source

What's Changed

Full Changelog: spf13/pflag@v1.0.8...v1.0.9

v1.0.8

Compare Source

⚠️ Breaking Change

This version, while only a patch bump, includes a (very minor) breaking change: the flag.ParseErrorsWhitelist struct and corresponding FlagSet.parseErrorsWhitelist field have been renamed to ParseErrorsAllowlist.

This should result in compilation errors in any code that uses these fields, which can be fixed by adjusting the names at call sites. There is no change in semantics or behavior of the struct or field referred to by these names. If your code compiles without errors after bumping to/past v1.0.8, you are not affected by this change.

The breaking change was reverted in v1.0.9, by means of re-introducing the old names with deprecation warnings. The plan is still to remove them in a future release, so if your code does depend on the old names, please change them to use the new names at your earliest convenience.

What's Changed

New Contributors

Full Changelog: spf13/pflag@v1.0.7...v1.0.8

v1.0.7

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/pflag@v1.0.6...v1.0.7

v1.0.6

Compare Source

What's Changed

New Contributors

Full Changelog: spf13/pflag@v1.0.5...v1.0.6

stretchr/testify (github.com/stretchr/testify)

v1.11.1

Compare Source

This release fixes #​1785 introduced in v1.11.0 where expected argument values implementing the stringer interface (String() string) with a method which mutates their value, when passed to mock.Mock.On (m.On("Method", <expected>).Return()) or actual argument values passed to mock.Mock.Called may no longer match one another where they previously did match. The behaviour prior to v1.11.0 where the stringer is always called is restored. Future testify releases may not call the stringer method at all in this case.

What's Changed

Full Changelog: stretchr/testify@v1.11.0...v1.11.1

v1.11.0

Compare Source

What's Changed

Functional Changes

v1.11.0 Includes a number of performance improvements.

Fixes
Documentation, Build & CI

New Contributors


Configuration

📅 Schedule: Branch creation - "on Monday at 04:00" (UTC), Automerge - "at 10am on Monday except on 25th of December in 2023 and 1st of January 2024 and 1st of April 2024 and 20th of May 2024 and 19th of August 2024" (UTC).

🚦 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 renovate bot force-pushed the renovate/go-modules branch from ecd336c to 9e81aec Compare August 26, 2024 21:20
@renovate renovate bot changed the title chore(deps): update go modules to 4ba0660 chore(deps): update go modules to f6391c0 Aug 26, 2024
@renovate renovate bot changed the title chore(deps): update go modules to f6391c0 chore(deps): update go modules to 7e3bb23 Aug 27, 2024
@renovate renovate bot force-pushed the renovate/go-modules branch from 9e81aec to b7893f2 Compare August 27, 2024 16:21
@renovate renovate bot changed the title chore(deps): update go modules to 7e3bb23 chore(deps): update go modules Aug 28, 2024
@renovate renovate bot force-pushed the renovate/go-modules branch 3 times, most recently from 35b2be7 to 75c5447 Compare September 3, 2024 16:11
@renovate renovate bot force-pushed the renovate/go-modules branch 6 times, most recently from 8f9a45f to 4675ad1 Compare September 16, 2024 19:55
@renovate renovate bot force-pushed the renovate/go-modules branch 2 times, most recently from 3d0f2ca to ec13e79 Compare September 20, 2024 07:41
@renovate renovate bot force-pushed the renovate/go-modules branch 4 times, most recently from dfb82d7 to 7350b79 Compare October 1, 2024 10:53
@renovate renovate bot force-pushed the renovate/go-modules branch 3 times, most recently from 4c84fa1 to bceec2c Compare October 7, 2024 18:36
@renovate renovate bot force-pushed the renovate/go-modules branch 2 times, most recently from a2f5704 to ccac8c3 Compare October 21, 2024 22:48
@renovate renovate bot force-pushed the renovate/go-modules branch from ccac8c3 to 28aa2b2 Compare October 24, 2024 00:16
Copy link
Contributor Author

renovate bot commented Oct 24, 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):

  • 5 additional dependencies were updated

Details:

Package Change
github.com/bmatcuk/doublestar/v4 v4.2.0 -> v4.6.1
github.com/spf13/pflag v1.0.5 -> v1.0.6
golang.org/x/net v0.38.0 -> v0.41.0
golang.org/x/sys v0.31.0 -> v0.33.0
golang.org/x/text v0.23.0 -> v0.26.0

@renovate renovate bot force-pushed the renovate/go-modules branch 3 times, most recently from 62c9770 to 671bbac Compare August 26, 2025 18:50
Copy link
Contributor Author

renovate bot commented Aug 26, 2025

⚠️ Artifact update problem

Renovate failed to update an artifact 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 google.golang.org/genproto/googleapis/[email protected] requires go >= 1.24.0; switching to go1.24.8
go: downloading go1.24.8 (linux/amd64)
go: download go1.24.8: golang.org/[email protected]: verifying module: checksum database disabled by GOSUMDB=off

@renovate renovate bot force-pushed the renovate/go-modules branch 4 times, most recently from 94998de to ebedb46 Compare September 2, 2025 14:12
@renovate renovate bot force-pushed the renovate/go-modules branch 5 times, most recently from a929d7e to 8cda84e Compare September 10, 2025 10:59
zsolt-marta-bitrise pushed a commit that referenced this pull request Sep 12, 2025
test: ACI-4051 add test / refactor activate xcode
@renovate renovate bot force-pushed the renovate/go-modules branch 2 times, most recently from 6684c99 to 1f26ff2 Compare September 15, 2025 12:38
@renovate renovate bot force-pushed the renovate/go-modules branch 6 times, most recently from ac63267 to 0840ed3 Compare September 27, 2025 10:14
@renovate renovate bot force-pushed the renovate/go-modules branch 6 times, most recently from 70604a1 to a5e9927 Compare October 6, 2025 23:10
@renovate renovate bot force-pushed the renovate/go-modules branch from a5e9927 to 7676426 Compare October 8, 2025 05:50
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