Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 1, 2025

This PR contains the following updates:

Package Change Age Confidence
code.gitea.io/sdk/gitea v0.21.0 -> v0.22.1 age confidence
github.com/go-git/go-git/v5 v5.14.0 -> v5.16.3 age confidence
github.com/hashicorp/go-retryablehttp v0.7.7 -> v0.7.8 age confidence
github.com/knadh/koanf/parsers/dotenv v1.0.0 -> v1.1.1 age confidence
github.com/knadh/koanf/providers/env v1.0.0 -> v1.1.0 age confidence
github.com/knadh/koanf/providers/file v1.1.2 -> v1.2.0 age confidence
github.com/knadh/koanf/v2 v2.1.2 -> v2.3.0 age confidence
github.com/mholt/archives v0.1.1 -> v0.1.5 age confidence
github.com/muesli/mango-cobra v1.2.0 -> v1.3.0 age confidence
github.com/spf13/cobra v1.9.1 -> v1.10.1 age confidence
github.com/stretchr/testify v1.10.0 -> v1.11.1 age confidence
gitlab.com/gitlab-org/api/client-go v0.127.0 -> v0.157.1 age confidence
golang.org/x/crypto v0.37.0 -> v0.43.0 age confidence

Release Notes

go-git/go-git (github.com/go-git/go-git/v5)

v5.16.3

Compare Source

What's Changed

  • internal: Expand regex to fix build [5.x] by @​baloo in #​1644
  • build: raise timeouts for windows CI tests and disable CIFuzz [5.x] by @​baloo in #​1646
  • plumbing: support commits extra headers, support jujutsu signed commit [5.x] by @​baloo in #​1633

Full Changelog: go-git/go-git@v5.16.2...v5.16.3

v5.16.2

Compare Source

What's Changed

  • utils: fix diff so subpaths work for sparse checkouts, fixes 1455 to releases/v5.x by @​kane8n in #​1567

Full Changelog: go-git/go-git@v5.16.1...v5.16.2

v5.16.1

Compare Source

What's Changed

New Contributors

Full Changelog: go-git/go-git@v5.16.0...v5.16.1

v5.16.0

Compare Source

What's Changed

Full Changelog: go-git/go-git@v5.15.0...v5.16.0

v5.15.0

Compare Source

What's Changed

Full Changelog: go-git/go-git@v5.14.0...v5.15.0

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

v0.7.8

Compare Source

knadh/koanf (github.com/knadh/koanf/parsers/dotenv)

v1.1.1

Compare Source

  • 57e89cf Merge pull request #​94 from knadh/fix-posflag-callbacks
  • d3bad45 Merge pull request #​91 from knadh/bug-report-template
  • b1985ad Merge pull request #​93 from rhnvrm/unit-test-issue-90
  • a72baa3 Merge pull request #​92 from knadh/fix-posflag-callbacks
  • adc0b54 tests: add unit test for #​90
  • 9e87eba Fix unchanged default posflag value merging via incorrect callback.
  • 2f82a14 Merge pull request #​87 from mvrahden/feature/filesystem
  • 6e9c0a7 Add github issue templates
  • 023ecc6 Update README with fs.FS provider
  • f7e28d0 fix call to Close on file descriptor
  • caeef66 Merge pull request #​1 from rhnvrm/feature/filesystem
  • 02f42ea fix: add build constraints to maintain compat
  • 149144c add fs.FS provider
  • 139fe40 Merge pull request #​85 from mvrahden/fix/base_test
  • 7cc3416 move error assertions and make them error-type dependent
  • 0a31536 fix race condition and reduce test time by half
  • af2e3f4 simplify and unify test arrangements
  • aa62c04 update testify to v1.7.0
  • 5234867 Merge pull request #​84 from mr-karan/gh_actions
  • c79fbc5 feat: Replace Travis with GitHub Actions

v1.1.0

Compare Source

  • 036e4bf Merge pull request #​79 from aeneasr/fix-memory-keyparts
  • 6692d05 Merge pull request #​78 from aeneasr/fix-memory-use
  • d174d00 Reduce memory consumption for populateKeyParts
  • 1095e5e Significantly reduce memory use of maps.Flatten
  • 7d983f3 Fix Watch() doc
mholt/archives (github.com/mholt/archives)

v0.1.5

Compare Source

What's Changed

  • go.mod: update some modules and klauspost/compress to 1.18.0 by @​M0Rf30 in #​54
  • Remove unused WriterTo interface constraint from rarReader type by @​dpgarrick in #​56

Full Changelog: mholt/archives@v0.1.4...v0.1.5

v0.1.4

Compare Source

This release contains an important bug fix if you walk (fs.WalkDir()) archives multiple times using archives.ArchiveFS; it would omit directory trees with implicit structure (i.e. if the archive doesn't have an explicit entry for each directory in the tree) after the first walk, on subsequent walks.

Upgraded dependencies, and improved brotli stream matching. Thanks to those who contributed!

What's Changed

New Contributors

Full Changelog: mholt/archives@v0.1.3...v0.1.4

v0.1.3

Compare Source

What's Changed

New Contributors

Full Changelog: mholt/archives@v0.1.2...v0.1.3

v0.1.2

Compare Source

What's Changed

New Contributors

Full Changelog: mholt/archives@v0.1.1...v0.1.2

muesli/mango-cobra (github.com/muesli/mango-cobra)

v1.3.0

Compare Source

What's Changed

New Contributors

Full Changelog: muesli/mango-cobra@v1.2.0...v1.3.0

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

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

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

gitlab-org/api/client-go (gitlab.com/gitlab-org/api/client-go)

v0.157.1

Compare Source

0.157.1
🐛 Bug Fixes
🔄 Other Changes
  • chore: Update review instructions for mentioning GitLab (!2552) by Zubeen
  • Implement do function to reduce boilerplate (!2550) by Timo Furrer
  • refactor(test): migrate to testify assertions 4 (!2548) by Zubeen
  • refactor(test): migrate to testify assertions 2 (!2546) by Zubeen
  • refactor(test): migrate to testify assertions (!2545) by Zubeen
  • refactor(test): migrate to testify assertions 5 (!2549) by Zubeen
  • test: add unit tests for cluster agents and deployments (!2499) by Zubeen
  • refactor(test): migrate to testify assertions 3 (!2547) by Zubeen
  • Fix: Helper Functions for Code Refactoring (!2544) by Yashesvinee V
  • test: adds UT for formatPackageURL (!2527) by Zubeen
  • test: adds UT for getEpicLinks (!2526) by Zubeen
  • test: add test for ApproveOrRejectProjectDeployment (!2498) by Zubeen
  • test: adds UTs for packages (!2529) by Zubeen
0.157.1 (2025-10-28)
Bug Fixes
  • no-release: Helper Functions for Code Refactoring (6feffea)
  • protected_packages: fix invalid types (c09943b)

v0.157.0

Compare Source

0.157.0

🚀 Features
🔄 Other Changes

0.157.0 (2025-10-13)

v0.156.0

Compare Source

0.156.0

🚀 Features

0.156.0 (2025-10-10)

Features
  • api: add support for test report summary api (8a0c6dd)

v0.155.0

Compare Source

0.155.0

🚀 Features
🔄 Other Changes

0.155.0 (2025-10-09)

Features
  • client_options: Added unit tests (c148031)
  • group_relations_export: Added Group Relations API integration (956e039)

v0.154.0

Compare Source

0.154.0

🚀 Features

0.154.0 (2025-10-08)

Features
  • protected_packages: Add api integration (2de15c7)

v0.153.0

Compare Source

0.153.0

🚀 Features
🔄 Other Changes

0.153.0 (2025-10-08)

Features
  • project_Statistics: Added api integration (75b5a03)

v0.152.0

Compare Source

0.152.0

🚀 Features
  • feat(api): add api support for listing users who starred a project (!2486) by ajey muthiah
🔄 Other Changes

0.152.0 (2025-10-06)

Features
  • api: add api support for listing users who starred a project (0cdb4ce)
  • model_registry_api: Added api integration (065dd63)
  • no-release: Add AGENTS.md file (b9febab)

v0.151.0

Compare Source

0.151.0

🚀 Features
🔄 Other Changes
  • docs(no-release): Make it easier to find the docs on issues (!2497) by Heidi Berry

0.151.0 (2025-10-04)

Features
  • api: add api support for delete enterprise user (36ca8ab)

v0.150.0

Compare Source

0.150.0

🚀 Features
🔄 Other Changes
  • chore(deps): update module buf.build/gen/go/bufbuild/protovalidate/protocolbuffers/go to v1.36.10-20250912141014-52f32327d4b0.1 (!2495) by GitLab Dependency Bot
  • chore(deps): update module github.com/danieljoos/wincred to v1.2.3 (!2494) by GitLab Dependency Bot

0.150.0 (2025-10-03)

Features
  • add Project Aliases API support (4ece88e)

v0.149.0

Compare Source

0.149.0

🚀 Features
🔄 Other Changes

0.149.0 (2025-10-02)

Features
  • no-release: Add dependency scanning (8b0ee10)

v0.148.1

Compare Source

Features
  • no-release: Add dependency scanning (8b0ee10)

0.148.1 (2025-09-26)

Bug Fixes
  • label unmarshaling for BasicMergeRequest list operations (e80c453)

v0.148.0

Compare Source

Features
  • no-release: Add dependency scanning (8b0ee10)

0.148.1 (2025-09-26)

Bug Fixes
  • label unmarshaling for BasicMergeRequest list operations (e80c453)

v0.147.1

Compare Source

Features
  • ResourceGroup: add newest_ready_first to resource group process_mode (fc8f743)

0.147.1 (2025-09-22)

Bug Fixes
  • client: use default retry policy from retryablehttp (2a72511)

v0.147.0

Compare Source

Features
  • ResourceGroup: add newest_ready_first to resource group process_mode (fc8f743)

0.147.1 (2025-09-22)

Bug Fixes
  • client: use default retry policy from retryablehttp (2a72511)

v0.146.0

Compare Source

0.146.0 (2025-09-18)

Features

v0.145.0

Compare Source

0.145.0 (2025-09-15)

Features
  • Add missing created_by field to ProjectMembers and GroupMembers (5348e01)

v0.144.1

Compare Source

Features
  • Add missing created_by field to ProjectMembers and GroupMembers (5348e01)

0.144.1 (2025-09-13)

v0.144.0

Compare Source

Features
  • Add missing created_by field to ProjectMembers and GroupMembers (5348e01)

0.144.1 (2025-09-13)

v0.143.3

Compare Source

Features
  • client: add http.RoundTripper Middleware

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.

@renovate renovate bot requested a review from janderssonse as a code owner February 1, 2025 02:56
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 4 times, most recently from 5916b31 to 174010e Compare February 5, 2025 02:10
@renovate renovate bot changed the title fix(deps): update module gitlab.com/gitlab-org/api/client-go to v0.121.0 fix(deps): update module gitlab.com/gitlab-org/api/client-go to v0.122.0 Feb 5, 2025
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch from 174010e to 20a405b Compare February 8, 2025 23:58
@renovate renovate bot changed the title fix(deps): update module gitlab.com/gitlab-org/api/client-go to v0.122.0 fix(deps): update go dependencies minor and patch updates Feb 8, 2025
@renovate renovate bot changed the title fix(deps): update go dependencies minor and patch updates fix(deps): update module golang.org/x/crypto to v0.33.0 Feb 9, 2025
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch from 20a405b to eb82cbd Compare February 9, 2025 00:05
@renovate renovate bot changed the title fix(deps): update module golang.org/x/crypto to v0.33.0 fix(deps): update module golang.org/x/crypto to v0.33.0 - autoclosed Feb 9, 2025
@renovate renovate bot closed this Feb 9, 2025
@renovate renovate bot deleted the renovate/go-dependencies-minor-and-patch-updates branch February 9, 2025 15:26
@renovate renovate bot changed the title fix(deps): update module golang.org/x/crypto to v0.33.0 - autoclosed fix(deps): update module golang.org/x/crypto to v0.33.0 Feb 13, 2025
@renovate renovate bot reopened this Feb 13, 2025
@renovate renovate bot changed the title fix(deps): update module golang.org/x/crypto to v0.33.0 fix(deps): update module github.com/google/go-github/v69 to v69.1.0 Feb 13, 2025
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 2 times, most recently from eb82cbd to a8b2025 Compare February 13, 2025 22:39
@renovate renovate bot changed the title fix(deps): update module github.com/google/go-github/v69 to v69.1.0 fix(deps): update go dependencies minor and patch updates Feb 14, 2025
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 4 times, most recently from 667475f to 049373f Compare February 17, 2025 15:24
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 3 times, most recently from 8e3415e to 4cedcad Compare February 27, 2025 15:41
@renovate
Copy link
Contributor Author

renovate bot commented Feb 27, 2025

ℹ 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):

  • 16 additional dependencies were updated

Details:

Package Change
github.com/42wim/httpsig v1.2.2 -> v1.2.3
github.com/STARRY-S/zip v0.2.2 -> v0.2.3
github.com/minio/minlz v1.0.0 -> v1.0.1
github.com/sorairolake/lzip-go v0.3.7 -> v0.3.8
github.com/andybalholm/brotli v1.1.1 -> v1.2.0
github.com/bodgit/sevenzip v1.6.0 -> v1.6.1
github.com/cloudflare/circl v1.6.0 -> v1.6.1
github.com/go-viper/mapstructure/v2 v2.2.1 -> v2.4.0
github.com/nwaples/rardecode/v2 v2.1.1 -> v2.2.0
github.com/spf13/pflag v1.0.6 -> v1.0.9
github.com/ulikunitz/xz v0.5.12 -> v0.5.15
golang.org/x/net v0.39.0 -> v0.45.0
golang.org/x/oauth2 v0.29.0 -> v0.30.0
golang.org/x/sys v0.32.0 -> v0.37.0
golang.org/x/text v0.24.0 -> v0.30.0
golang.org/x/time v0.11.0 -> v0.12.0

@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch from 4cedcad to b5b2bce Compare March 1, 2025 01:58
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 6 times, most recently from 18c070c to 2e469a6 Compare September 15, 2025 09:06
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 6 times, most recently from 900602b to 2182639 Compare September 22, 2025 18:02
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 4 times, most recently from 3c6c6cc to f394b65 Compare September 26, 2025 17:25
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 8 times, most recently from 05a9695 to a45a391 Compare October 10, 2025 02:12
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 2 times, most recently from abe42eb to 407b857 Compare October 13, 2025 18:42
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch 2 times, most recently from 8f12a00 to e151154 Compare October 28, 2025 15:57
Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
@renovate renovate bot force-pushed the renovate/go-dependencies-minor-and-patch-updates branch from e151154 to 0846696 Compare October 30, 2025 03:14
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