Skip to content

chore(deps): bump github.com/ollama/ollama from 0.1.46 to 0.20.3 in /docs/multiple-tests/pattern-vulnerability-critical/src/golang#285

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/docs/multiple-tests/pattern-vulnerability-critical/src/golang/github.com/ollama/ollama-0.20.3
Open

chore(deps): bump github.com/ollama/ollama from 0.1.46 to 0.20.3 in /docs/multiple-tests/pattern-vulnerability-critical/src/golang#285
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/go_modules/docs/multiple-tests/pattern-vulnerability-critical/src/golang/github.com/ollama/ollama-0.20.3

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

@dependabot dependabot Bot commented on behalf of github May 8, 2026

Bumps github.com/ollama/ollama from 0.1.46 to 0.20.3.

Release notes

Sourced from github.com/ollama/ollama's releases.

v0.20.3

What's Changed

  • Gemma 4 Tool Calling improvements
  • Added latest models to Ollama App
  • OpenClaw fixes for launching TUI

Full Changelog: ollama/ollama@v0.20.2...v0.20.3

v0.20.2

What's Changed

Full Changelog: ollama/ollama@v0.20.1...v0.20.2

v0.20.1

What's Changed

Full Changelog: ollama/ollama@v0.20.0...v0.20.1

v0.20.0

Gemma 4

Effective 2B (E2B)

ollama run gemma4:e2b

Effective 4B (E4B)

ollama run gemma4:e4b

26B (Mixture of Experts model with 4B active parameters)

ollama run gemma4:26b

31B (Dense)

</tr></table> 

... (truncated)

Commits
  • 8c8f8f3 model/parsers: add gemma4 tool call repair (#15374)
  • 82f0139 launch/openclaw: patch approvedScopes baseline for TUI pairing (#15375)
  • 26a58b2 app: update featured models (#15373)
  • 34a790a model/parsers: suppress extra gemma4 closing tool tags (#15370)
  • 4589fa2 app: default app home view to new chat instead of launch (#15312)
  • 4bc2728 Revert "enable flash attention for gemma4 (#15296)" (#15311)
  • 49d5fd5 model/parsers: rework gemma4 tool call handling (#15306)
  • 3cd2b03 ggml: fix ROCm build for cublasGemmBatchedEx reserve wrapper
  • c8e0878 enable flash attention for gemma4 (#15296)
  • bb0c58e ggml: skip cublasGemmBatchedEx during graph reservation
  • Additional commits viewable in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)
    You can disable automated security fix PRs for this repo from the Security Alerts page.

Bumps [github.com/ollama/ollama](https://github.com/ollama/ollama) from 0.1.46 to 0.20.3.
- [Release notes](https://github.com/ollama/ollama/releases)
- [Commits](ollama/ollama@v0.1.46...v0.20.3)

---
updated-dependencies:
- dependency-name: github.com/ollama/ollama
  dependency-version: 0.20.3
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 8, 2026
@dependabot dependabot Bot requested a review from a team as a code owner May 8, 2026 17:33
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file go Pull requests that update Go code labels May 8, 2026
@codacybeta codacybeta enabled auto-merge (squash) May 8, 2026 17:33
@codacy-production
Copy link
Copy Markdown

Up to standards ✅

🟢 Issues 0 issues

Results:
0 new issues

View in Codacy

AI Reviewer: first review requested successfully. AI can make mistakes. Always validate suggestions.

Run reviewer

TIP This summary will be updated as you push new changes.

Copy link
Copy Markdown

@codacy-production codacy-production Bot left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR is currently blocked due to a critical implementation error that contradicts the PR title. While the intent is to bump github.com/ollama/ollama to v0.20.3, the actual changes remove the entire require block from the go.mod file. This will cause compilation failures as the module no longer declares its dependencies. Additionally, the dependency golang.org/x/net was removed without justification. These issues must be resolved before the PR can be considered for merging.

About this PR

  • The implementation contradicts the PR title: all dependencies, including github.com/ollama/ollama and golang.org/x/net, were removed entirely rather than being updated. This results in a go.mod file with no requirements, which is a major logic error for a dependency update PR.

Test suggestions

  • Verify github.com/ollama/ollama dependency is correctly defined as v0.20.3 in go.mod
  • Verify project dependencies are resolved and buildable with Go 1.24.1
Prompt proposal for missing tests
Consider implementing these tests if applicable:
1. Verify github.com/ollama/ollama dependency is correctly defined as v0.20.3 in go.mod
2. Verify project dependencies are resolved and buildable with Go 1.24.1

TIP Improve review quality by adding custom instructions
TIP How was this review? Give us feedback


require golang.org/x/net v0.16.0 // Critical
require github.com/ollama/ollama v0.1.46 // High
go 1.24.1
Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

🔴 HIGH RISK

The requirement for github.com/ollama/ollama was removed instead of being updated to v0.20.3 as specified in the PR title. This effectively breaks the dependency management for this module and will cause build failures. Try running the following prompt in your coding agent:

Restore the 'require' block in docs/multiple-tests/pattern-vulnerability-critical/src/golang/go.mod and update 'github.com/ollama/ollama' to version 0.20.3.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file go Pull requests that update Go code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant