Skip to content

chore(deps): update all non-major dependencies#39

Open
tagoro9-renovatebot[bot] wants to merge 1 commit intomainfrom
c/renovate_all-minor-patch
Open

chore(deps): update all non-major dependencies#39
tagoro9-renovatebot[bot] wants to merge 1 commit intomainfrom
c/renovate_all-minor-patch

Conversation

@tagoro9-renovatebot
Copy link
Copy Markdown
Contributor

@tagoro9-renovatebot tagoro9-renovatebot Bot commented Mar 30, 2026

This PR contains the following updates:

Package Update Change
ast-grep minor 0.41.1 -> 0.42.1
atuin minor 18.13.6 -> 18.15.2
bun patch 1.3.11 -> 1.3.13
chezmoi minor 2.69.4 -> 2.70.1
codex minor 0.118.0 -> 0.125.0
delta patch 0.19.1 -> 0.19.2
doppler minor 3.75.3 -> 3.76.0
fzf minor 0.70.0 -> 0.72.0
gh minor 2.88.1 -> 2.91.0
go patch 1.26.1 -> 1.26.2
golangci-lint patch 2.11.3 -> 2.11.4
goreleaser minor 2.14.3 -> 2.15.4
htop minor 3.4.1 -> 3.5.0
kubectl patch 1.35.3 -> 1.35.4
kubectx minor 0.9.5 -> 0.11.0
kubernetes-helm minor 3.19.1 -> 3.20.2
lazygit minor 0.60.0 -> 0.61.1
mise minor 2026.3.3 -> 2026.4.20
open-turo/renovate-config minor v1.17.1 -> v1.18.0
opencode minor 1.4.6 -> 1.14.30
python patch 3.14.2 -> 3.14.4
shfmt patch 3.13.0 -> 3.13.1
starship minor 1.24.2 -> 1.25.0
terraform minor 1.14.8 -> 1.15.2
terraform-docs minor 0.21.0 -> 0.22.0
terraform-ls patch 0.38.5 -> 0.38.6
tfswitch minor 1.15.0 -> 1.17.0
uv minor 0.10.12 -> 0.11.8
zellij patch 0.44.0 -> 0.44.1

Important

Release Notes retrieval for this PR were skipped because no github.com credentials were available.
If you are self-hosted, please see this instruction.


Release Notes

atuinsh/atuin (atuin)

v18.15.2

Bug Fixes
  • Tab doesn't insert suggested command (#​3420)
oven-sh/bun (bun)

v1.3.13: Bun v1.3.13

Compare Source

To install Bun v1.3.13

curl -fsSL https://bun.sh/install | bash

# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.3.13:

bun upgrade
Read Bun v1.3.13's release notes on Bun's blog
Thanks to 8 contributors!

v1.3.12: Bun v1.3.12

Compare Source

To install Bun v1.3.12

curl -fsSL https://bun.sh/install | bash

# or you can use npm
# npm install -g bun

Windows:

powershell -c "irm bun.sh/install.ps1|iex"

To upgrade to Bun v1.3.12:

bun upgrade
Read Bun v1.3.12's release notes on Bun's blog
Thanks to 8 contributors!
dandavison/delta (delta)

v0.19.2

Compare Source

This is a patch release providing rebuilt binaries compatible with Debian 12 (the 0.19.0 and 0.19.1 .deb packages required glibc 2.39, which is only available in Debian 13).

What's Changed

junegunn/fzf (fzf)

v0.72.0

Release highlights: https://junegunn.github.io/fzf/releases/0.72.0/

  • --header-border, --header-lines-border, and --footer-border now accept a new inline style that embeds the section inside the list frame, separated from the list content by a horizontal line. When the list border has side segments, the separator joins them as T-junctions.
    • Requires a --list-border shape that has both top and bottom segments (rounded, sharp, bold, double, block, thinblock, or horizontal); falls back to line otherwise. horizontal has no side borders, so the separator is drawn without T-junction endpoints.
    • Sections stack. Example combining all three:
      ps -ef | fzf --reverse --style full \
          --header 'Select a process' --header-lines 1 \
          --bind 'load:transform-footer:echo $FZF_TOTAL_COUNT processes' \
          --header-border dashed --header-first \
          --header-lines-border inline --footer-border inline
    • --header-label and --footer-label render on their respective separator row.
    • The separator inherits --color list-border when the section's own border color is not explicitly set.
    • inline takes precedence over --header-first: the inline section stays inside the list frame. --header-border=inline requires --header-lines-border to be inline or unset.
  • New dashed border style with dashed edges ( / ) and rounded corners.
    • --border=dashed, --list-border=dashed, etc.
    • Works with inline sections (T-junctions render correctly).
  • [vim] Move and resize popup window when detecting VimResized event (#​4778) (@​Vulcalien)
  • Bug fixes
    • Fixed gutter display in --style=minimal
    • Fixed arrow keys / Home / End without modifiers being ignored under the kitty keyboard protocol (#​4776) (@​TymekDev)
    • bash: Persist history deletion when histappend is on (#​4764)

v0.71.0

Release highlights: https://junegunn.github.io/fzf/releases/0.71.0/

  • Added --popup as a new name for --tmux with Zellij support
    • --popup starts fzf in a tmux popup or a Zellij floating pane
    • --tmux is now an alias for --popup
    • Requires tmux 3.3+ or Zellij 0.44+
  • Cross-reload item identity with --id-nth
    • Added --id-nth=NTH to define item identity fields for cross-reload operations
    • When a reload is triggered with tracking enabled, fzf searches for the tracked item by its identity fields in the new list.
      • --track --id-nth .. tracks by the entire line
      • --track --id-nth 1 tracks by the first field
      • --track without --id-nth retains the existing index-based tracking behavior
      • The UI is temporarily blocked (prompt dimmed, input disabled) until the item is found or loading completes.
        • Press Escape or Ctrl-C to cancel the blocked state without quitting
        • Info line shows +T* / +t* while searching
    • With --multi, selected items are preserved across reload-sync by matching their identity fields
  • Performance improvements
    • The search performance now scales linearly with the number of CPU cores, as we dropped static partitioning to allow better load balancing across threads.
      === query: 'linux' ===
        [all]   baseline:    21.95ms  current:    17.47ms  (1.26x)  matches: 179966 (12.79%)
        [1T]    baseline:   179.63ms  current:   180.53ms  (1.00x)  matches: 179966 (12.79%)
        [2T]    baseline:    97.38ms  current:    90.05ms  (1.08x)  matches: 179966 (12.79%)
        [4T]    baseline:    53.83ms  current:    44.77ms  (1.20x)  matches: 179966 (12.79%)
        [8T]    baseline:    41.66ms  current:    22.58ms  (1.84x)  matches: 179966 (12.79%)
      
    • Improved the cache structure, reducing memory footprint per entry by 86x.
      • With the reduced per-entry cost, the cache now has broader coverage.
  • Shell integration improvements
  • GET / HTTP endpoint now includes positions field in each match entry, providing the indices of matched characters for external highlighting (#​4726)
  • Allow adaptive height with negative value (--height=~-HEIGHT) (#​4682)
  • Bug fixes
    • --walker=follow no longer follows symlinks whose target is an ancestor of the walker root, avoiding severe resource exhaustion when a symlink points outside the tree (e.g. Wine's z:/) (#​4710)
    • Fixed AWK tokenizer not treating a new line character as whitespace
    • Fixed --{accept,with}-nth removing trailing whitespaces with a non-default --delimiter
    • Fixed OSC8 hyperlinks being mangled when the URL contains unicode characters (#​4707)
    • Fixed --with-shell not handling quoted arguments correctly (#​4709)
    • Fixed child processes not being terminated on Windows (#​4723) (@​pjeby)
    • Fixed preview scrollbar not rendered after toggle-preview
    • Fixed preview follow/scroll with long wrapped lines
    • Fixed tab width when --frozen-left is used
    • Fixed preview mouse events being processed when no preview window exists
    • zsh: Fixed history widget when sh_glob option is on (#​4714) (@​EvanHahn)
golang/go (go)

v1.26.2

Compare Source

ahmetb/kubectx (kubectx)

v0.11.0

Changelog

v0.10.2

Changelog

  • 2cb7500 Support interactive fzf selection for kubectx -s with no arguments
  • e4727d3 Fix relative path resolution in exec credential plugins (#​490)
  • eb621b4 Support multiple kubeconfig files (KUBECONFIG=file1:file2:file3) (#​489)
helm/helm (kubernetes-helm)

v3.20.2: Helm v3.20.2

v3.20.2

Helm v3.20.2 is a security patch release. Users are encouraged to upgrade for the best experience.

The community keeps growing, and we'd love to see you there!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Security fixes

  • GHSA-hr2v-4r36-88hr Helm Chart extraction output directory collapse via Chart.yaml name dot-segment

Installation and Upgrading

Download Helm v3.20.2. The common platform binaries are here:

The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with bash.

What's Next

  • 4.1.5 and 3.20.3 are the next patch (bug fix) releases and will be on April 8, 2026
  • 4.2.0 and 3.21.0 are the next minor (feature) releases and will be on May 13, 2026

Changelog

  • fix: Chart dot-name path bug 8fb76d6 (George Jenkins)
  • fix: pin codeql-action/upload-sarif to commit SHA in scorecards workflow 3a8927e (Terry Howe)

v3.20.1: Helm v3.20.1

Helm v3.20.1 is a patch release. Users are encouraged to upgrade for the best experience.

The community keeps growing, and we'd love to see you there!

  • Join the discussion in Kubernetes Slack:
    • for questions and just to hang out
    • for discussing PRs, code, and bugs
  • Hang out at the Public Developer Call: Thursday, 9:30 Pacific via Zoom
  • Test, debug, and contribute charts: ArtifactHub/packages

Notable Changes

  • Backport of #​31644: Fixed a bug where user-provided nil value was not preserved when chart has an empty map or no default for a key
  • Backport of #​31601: Fixed a bug where OCI references with tag+digest failed with "invalid byte" error

Installation and Upgrading

Download Helm v3.20.1. The common platform binaries are here:

This release was signed with 208D D36E D5BB 3745 A167 43A4 C7C6 FBB5 B91C 1155 and can be found at @​scottrigby keybase account. Please use the attached signatures for verifying this release using gpg.

The Quickstart Guide will get you going from there. For upgrade instructions or detailed installation notes, check the install guide. You can also use a script to install on any system with bash.

What's Next

  • 4.2.0 and 3.21.0 are the next minor releases and will be on May 13, 2026
  • 4.1.4 and 3.20.2 are the next patch releases and will be on April 8, 2026

Changelog

  • chore(deps): bump the k8s-io group with 7 updates a2369ca (dependabot[bot])
  • add image index test 90e1056 (Pedro Tôrres)
  • fix pulling charts from OCI indices 911f2e9 (Pedro Tôrres)
  • Remove refactorring changes from coalesce_test.go 76dad33 (Evans Mungai)
  • Fix import 45c12f7 (Evans Mungai)
  • Update pkg/chart/common/util/coalesce_test.go 26c6f19 (Evans Mungai)
  • Fix lint warning 09f5129 (Evans Mungai)
  • Preserve nil values in chart already 417deb2 (Evans Mungai)
  • fix(values): preserve nil values when chart default is empty map 5417bfa (Evans Mungai)
jesseduffield/lazygit (lazygit)

v0.61.1

This release has just a few fixes for the recently added GitHub pull requests feature.

What's Changed

Enhancements 🔥
Fixes 🔧
Maintenance ⚙️

New Contributors

Full Changelog: jesseduffield/lazygit@v0.61.0...v0.61.1

v0.61.0

The big one in this release is support for GitHub pull requests. They are shown as little GitHub icons next to each branch that has one, and you can open a PR in the browser by pressing shift-G. To enable this, all you need to do is install the gh tool if you haven't already, and log in using gh auth login.

What's Changed

Features ✨
Enhancements 🔥
Fixes 🔧
Maintenance ⚙️
Docs 📖
I18n 🌎
Performance Improvements 📊

New Contributors

Full Changelog: jesseduffield/lazygit@v0.60.0...v0.61.0

open-turo/renovate-config (open-turo/renovate-config)

v1.18.0

Compare Source

Features
  • add custom managers for node-version and npm in action YAML files (f7d0f29)
anomalyco/opencode (opencode)

v1.14.30

Core

  • Fixed missing sessions in Desktop caused by path mismatches, including recovery for existing stored data.
  • Fixed Azure Responses defaults to avoid reasoning item ordering errors.
  • Improved DeepSeek compatibility with providers that vary model naming.
  • Added Mistral Medium 3.5 with reasoning support. (@​rubdos)
  • Made instruction precedence more predictable by applying global instructions before project and skill instructions.
  • Reconnected editor context when switching to a session in another directory.
  • Fixed forked sessions so compacted history stays intact. (@​spark4862)
  • Reduced memory growth in long-running bash tool usage.
  • Sessions now filter to the current path by default, with a setting to show the whole project.
  • Kept GitHub Copilot model variants in sync with the latest API capabilities.
  • Fixed Zed selections with UTF-8 text so editor context uses the right ranges.

TUI

  • Added a quick toggle for paste summaries.
  • Invalid custom themes no longer crash the TUI on startup.

Thank you to 3 community contributors:

v1.14.25

Core

  • Fixed permission config preserving rule order and exposes full IntelliSense for tool permission keys
  • LSP permission prompts now include request details like the operation, file, and cursor position
  • Shell commands keep the correct working directory after login shell startup files run
  • Added Roslyn LSP support for Razor, .cshtml, and C# script files
  • GPT-5.5 with OpenAI OAuth now uses the correct context limits to avoid compaction issues

Thank you to 2 community contributors:

v1.14.20

Core

  • Fixed a system theme regression in the TUI.
  • Added GET /config to the experimental HTTP API.
  • Fixed local dynamic imports on Windows when running under Node, improving plugin and tool loading.

TUI

  • Fixed permission replies using remote workspaces so they are sent to the correct workspace.

Desktop

  • Stopped prompt controls from replaying their fade-in animation on every render.
  • Added a setting to hide the session progress bar while the agent is working.
  • Fixed the Select Server dialog layout so the server list and actions size correctly. (@​OpeOginni)
  • Fixed synced project updates so desktop project state changes apply reliably.
  • Fixed sidebar project avatars to fall back to icon.url when no override is set. (@​ysm-dev)

SDK

  • Fixed the WorkspaceAdaptor.create type to include the env parameter. (@​jamesmurdza)

Thank you to 4 community contributors:

python/cpython (python)

v3.14.4

Compare Source

v3.14.3

Compare Source

mvdan/sh (shfmt)

v3.13.1

  • cmd/shfmt
    • Add support for [[zsh]] in EditorConfig files
    • Detect the shell variant from filenames like .zshrc and .bash_profile
    • Fix --apply-ignore when used with explicit args - #​1310
  • syntax
    • Revert an accidental change to how array subscripts are formatted - #​1314
    • Never join ;; with the previous line when formatting - #​1289
    • Fix a bug where $1[foo] was parsed as a subscript in Zsh - #​1288
    • Correctly parse $! in double quotes in Zsh - #​1298
    • Allow indexing into special parameters in Zsh - #​1299
    • Allow parameter expansions with empty names in Zsh - #​1280
  • interp
    • Test against Bash 5.3 and fix three new discrepancies
    • Fix a few bugs related to nameref variables
    • Avoid panics when user input encounters unimplemented features
hashicorp/terraform (terraform)

v1.15.2

Compare Source

1.15.2 (May 6, 2026)

ENHANCEMENTS:

  • stacks: add ouput values to plan component instance change description (#​38360)

BUG FIXES:

  • Avoid printing warnings from 'terraform output -json' (#​38530)

v1.15.1

Compare Source

1.15.1 (May 1, 2026)

BUG FIXES:

  • Fixed crash when configuration has an invalid action_trigger nested block in data or ephemeral lifecycle blocks (#​38402)

  • validate: Removed validation of attributes inside backend blocks due to incompatibility with workflows using the -backend-config flag. (#​38466)

  • Fix non-const variable checks on init (#​38470)

  • Avoid warnings in 'terraform output -raw' (#​38487)

  • Ignore undeclared variable values from the cloud backend (#​38490)

  • Fix panic for types modules with no expanded instances (#​38491)

  • Fixed "unknown provider function" errors occurring during init (#​38472)

  • init: Fixed a bug that impacted use of provider pre-releases during init (#​38496)

v1.15.0

Compare Source

1.15.0 (April 29, 2026)

NEW FEATURES:

  • We now produce builds for Windows ARM64 (#​32719)

  • You can set a deprecated attribute on variable and output blocks to indicate that they are deprecated. This will produce warnings when passing in a value for a deprecated variable or when referencing a deprecated output. (#​38001)

  • backend/s3: Support authentication via aws login (#​37976)

  • validate: The validate command now checks the backend block. This ensures the backend type exists, that all required attributes are present, and that the backend's own validation logic passes. (#​38021)

  • convert function, which allows for precise inline type conversions (#​38160)

  • Terraform now supports variables and locals in module source and version attributes (#​38217)

ENHANCEMENTS:

  • config: output blocks now can have an explicit type constraints (#​36411)

  • ssh-based provisioner (file + remote-exec): Re-enable support for PowerShell (#​37794)

  • terraform init log timestamps include millisecond precision (#​37818)

  • init: skip dependencies declared in development override. This allows you to use terraform init with developer overrides and install dependencies that are not declared in the override file. (#​37884)

  • Terraform Test: Allow functions within mock blocks (#​34672)

  • improve detection of deprecated resource attributes / blocks (#​38077)

  • Deprecation messages providers set on resources / blocks / attributes are now part of the deprecation warning (#​38135)

  • Include which attribute paths are marked as sensitive in list_start JSON logs (#​38197)

  • Add input variable validation for Stacks (#​38240)

  • When comparing a container value to null, only top level marks are now considered for the result. (#​38270)

  • As part of supporting variables in module sources, most commands now accept variable values (#​38276)

BUG FIXES:

  • testing: File-level error diagnostics are now included in JUnit XML skipped test elements, ensuring CI/CD pipelines can detect validation failures (#​37801)

  • A refresh-only plan could result in a non-zero exit code with no changes (#​37406)

  • cli: Fixed crash in terraform show -json when plan contains ephemeral resources with preconditions or postconditions (#​37834)

  • cli: Fixed terraform init -json to properly format all backend configuration messages as JSON instead of plain text (#​37911)

  • state show: The state show command will now explicitly fail and return code 1 when it fails to render the named resources state (#​37933)

  • apply: Terraform will raise an explicit error if a plan file intended for one workspace is applied against another workspace (#​37954)

  • lifecycle: replace_triggered_by now reports an error when given an invalid attribute reference that does not exist in the target resource (#​36740)

  • backend: Fix nil pointer dereference crash during terraform init when the destination backend returns an error (#​38027)

  • stacks: send progress events if the plan fails for better UI integration (#​38039)

  • stacks: component instances should report no-op plan/apply. This solves a UI inconsistency with convergence destroy plans (#​38049)

  • backend/http: Return conflicting lock info from HTTP backend instead of the lock that failed to be taken (#​38144)

  • states: fixed a bug that caused Terraform to be unable to identify when two states had different output values. This may have caused issues in specific circumstances like backend migrations. (#​38181)

  • cloud: terraform cloud and registry discovery network requests are now more resilient, making temporary network or service related errors less common (#​38064)

  • Enable formatting of .tfquery.hcl files by terraform fmt (#​38398)

  • Fix validate not returning JSON for some early diagnostics (#​38400)

  • Fix Terraform Stacks plugin installation error (#​38406)

NOTES:

  • command/init: Provider installation was refactored to enable future enhancements in the area. This results in different order of operations during init and 2 new log messages replacing one (initializing_provider_plugin_message). The change should not have any end-user impact aside from the init command output. (#​38227)

UPGRADE NOTES:

  • backend/s3: The AWS_USE_FIPS_ENDPOINT and AWS_USE_DUALSTACK_ENDPOINT environment variables now only respect true or false values, aligning with the AWS SDK for Go. This replaces the previous behavior which treated any non-empty value as true. (#​37601)

Previous Releases

For information on prior major and minor releases, refer to their changelogs:

v1.14.9

Compare Source

1.14.9 (April 20, 2026)

BUG FIXES:

  • Fix Terraform Stacks plugin installation error (#​38406)
terraform-docs/terraform-docs (terraform-docs)

v0.22.0

Notable Updates

Changelog

Dependency updates
  • d9bfd39 chore(deps): bump library/alpine from 3.22.2 to 3.23.0
  • ad868f2 chore(deps): bump library/alpine from 3.23.0 to 3.23.2
  • 796a38d chore(deps): bump library/alpine in /scripts/release
  • 15a95e6 chore(deps): bump library/alpine in /scripts/release
  • ee533f9 chore(deps): bump library/golang from 1.24.2-alpine to 1.25.3-alpine
  • dd2fe9d chore(deps): update Go and dependencies to latest versions
Chores
  • 5862a8c Add a new option for Markdown output
  • 86dea43 Add testing for the new atx-closed option
  • 46fa48e Fix Zsh Completion Typo
  • 795da6b Release version v0.22.0
  • 85266c7 Support closed ATX headers in Markdown document output
  • b402f3e Support closed ATX headers in Markdown table output
  • b93a0ec Update the documentation
  • da4b8dc Update the documentation
  • 0069445 Use spaces consistently for Markdown table formatting
  • 8c50ce3 Use spaces in Markdown table delimiter rows for testing
  • 9aed0a5 [DOCS] Fix pre-commit command to enable hooks
  • 67e416b chore: fix tests

Docker images

  • docker pull quay.io/terraform-docs/terraform-docs:latest
  • docker pull quay.io/terraform-docs/terraform-docs:0.22.0

Contributors

Very special thanks to the contributors.

hashicorp/terraform-ls (terraform-ls)

v0.38.6

ENHANCEMENTS:

  • Bumped terraform-schema to incorporate the latest provider definitions. ([#​210

Configuration

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

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

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 has been generated by Renovate Bot.

@tagoro9-renovatebot
Copy link
Copy Markdown
Contributor Author

tagoro9-renovatebot Bot commented Mar 30, 2026

⚠️ 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: config/private_dot_local/share/devbox/global/default/devbox.lock
Command failed: devbox update ast-grep --no-install
Info: Resolved ast-grep@0.42.1 to ast-grep@0.42.1 github:NixOS/nixpkgs/01fbdeef22b76df85ea168fbfe1bfd9e63681b30#ast-grep
Info: Running "nix flake update"
Error: nix: command error: nix --extra-experimental-features ca-derivations --option experimental-features 'nix-command flakes fetch-closure' path-info 'github:NixOS/nixpkgs/dd613136ee91f67e5dba3f3f41ac99ae89c5406b#chatgpt' --json --impure: Package ‘chatgpt-1.2025.063’ in /tmp/containerbase/cache/nix/store/44xidzfr1zax4lkqzcqcv51lsk9y19km-source/pkgs/by-name/ch/chatgpt/package.nix:39 is not available on the requested hostPlatform:: exit code 1

Error: There was an internal error. Run with DEVBOX_DEBUG=1 for a detailed error message, and consider reporting it at https://github.com/jetify-com/devbox/issues

@github-actions
Copy link
Copy Markdown

Release notes preview

No new release will be created.

If you are expecting a release, you will need to either fix a bug or add a feature.
Chores, CI, docs, refactoring, style and other changes will not trigger a release.

@tagoro9-renovatebot tagoro9-renovatebot Bot force-pushed the c/renovate_all-minor-patch branch 5 times, most recently from ef402fb to d3a317d Compare April 6, 2026 00:08
@tagoro9-renovatebot tagoro9-renovatebot Bot force-pushed the c/renovate_all-minor-patch branch 6 times, most recently from 91efd11 to ad6d9aa Compare April 12, 2026 00:09
@tagoro9-renovatebot tagoro9-renovatebot Bot force-pushed the c/renovate_all-minor-patch branch 4 times, most recently from 7330124 to 0cb50e0 Compare April 21, 2026 00:13
@tagoro9-renovatebot tagoro9-renovatebot Bot force-pushed the c/renovate_all-minor-patch branch 2 times, most recently from f498121 to 0e91e32 Compare April 25, 2026 00:12
@tagoro9-renovatebot tagoro9-renovatebot Bot force-pushed the c/renovate_all-minor-patch branch 4 times, most recently from 8a01502 to 824d775 Compare May 3, 2026 00:15
@tagoro9-renovatebot tagoro9-renovatebot Bot force-pushed the c/renovate_all-minor-patch branch from 824d775 to 1698581 Compare May 7, 2026 00:16
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants