Skip to content

Bump io.github.ollama4j:ollama4j from 1.0.100 to 1.1.1#26

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/io.github.ollama4j-ollama4j-1.1.1
Closed

Bump io.github.ollama4j:ollama4j from 1.0.100 to 1.1.1#26
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/gradle/io.github.ollama4j-ollama4j-1.1.1

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Sep 30, 2025

Copy link
Copy Markdown

Bumps io.github.ollama4j:ollama4j from 1.0.100 to 1.1.1.

Release notes

Sourced from io.github.ollama4j:ollama4j's releases.

1.1.1

What's Changed

[!CAUTION] Breaking changes by @​amithkoujalgi in ollama4j/ollama4j#183 and ollama4j/ollama4j#194.

  • Breaking: Replaced instances of OllamaAPI with Ollama

  • Breaking: exception types refactored

    • Methods now throw only OllamaBaseException (removed IOException, InterruptedException, URISyntaxException) for:
      • ping, ps, listModels, getVersion, pullModel(String), getModelDetails, createModel, deleteModel
  • Breaking: removal of methods

    • listModelsFromLibrary()
    • getLibraryModelDetails(LibraryModel libraryModel)
    • findModelTagFromLibrary(String modelName, String tag)
    • pullModel(LibraryModelTag libraryModelTag)
    • createModelWithFilePath(String modelName, String modelFilePath)
    • createModelWithModelFileContents(String modelName, String modelFileContents)
    • generateEmbeddings(String model, String prompt)
    • generateEmbeddings(OllamaEmbeddingsRequestModel modelRequest)
    • embed(String model, List<String> inputs) (replaced by request-model form)
    • Image helpers:
      • generateWithImageFiles(...)
      • generateWithImageURLs(...)
      • generateWithImages(...)
    • Chat overloads and streaming variant:
      • chat(String model, List<OllamaChatMessage> messages)
      • chat(OllamaChatRequest request) (no handler)
      • chatStreaming(OllamaChatRequest request, OllamaTokenHandler tokenHandler)
    • Generation overloads (string- and options-based):
      • generate(String model, String prompt, ...) and the tools variant generateWithTools(...)
  • Breaking: signature and type changes (tools and streaming)

    • Generation consolidated:
      • New: generate(OllamaGenerateRequest request, OllamaGenerateStreamObserver streamObserver) throws OllamaBaseException
      • All prior generate(...) overloads removed
    • Chat consolidated:
      • New: chat(OllamaChatRequest request, OllamaChatTokenHandler tokenHandler) throws OllamaBaseException
      • Replaces earlier chat(...) overloads and token handler type (OllamaTokenHandlerOllamaChatTokenHandler)
    • Tool registry API updated to new types:
      • registerTool(Tools.Tool tool) (was Tools.ToolSpecification)
      • registerTools(List<Tools.Tool> tools) (was List<Tools.ToolSpecification>)
      • registerAnnotatedTools() now throws OllamaBaseException
  • Additions

    • unloadModel(String modelName) throws OllamaBaseException
    • listModels() retained but simplified to only throws OllamaBaseException
    • getVersion() retained but simplified to only throws OllamaBaseException
    • embed(OllamaEmbedRequestModel modelRequest) retained (request-model form emphasized)
  • Behavioral notes (non-signature but impactful)

    • Tool usage is now opt-in via OllamaChatRequest.isUseTools(). Tools are attached only when this flag is set.
    • Internals now record Prometheus metrics; no change to the public API surface.

... (truncated)

Commits
  • 42a0034 Merge pull request #203 from ollama4j/dependabot/npm_and_yarn/docs/docusaurus...
  • d8d660b Bump @​docusaurus/preset-classic from 3.9.0 to 3.9.1 in /docs
  • c5a2d58 Merge pull request #202 from ollama4j/dependabot/npm_and_yarn/docs/docusaurus...
  • cd65626 Bump @​docusaurus/theme-mermaid from 3.9.0 to 3.9.1 in /docs
  • 272c820 Merge pull request #201 from ollama4j/dependabot/maven/org.jacoco-jacoco-mave...
  • 23c7321 Merge pull request #200 from ollama4j/dependabot/maven/org.apache.maven.plugi...
  • e24a38f Merge pull request #199 from ollama4j/dependabot/npm_and_yarn/docs/docusaurus...
  • 5847cfc Merge pull request #198 from ollama4j/dependabot/maven/io.github.git-commit-i...
  • 05d5958 Merge pull request #197 from ollama4j/dependabot/maven/org.mockito-mockito-co...
  • ffa81cb Merge pull request #196 from ollama4j/dependabot/npm_and_yarn/docs/docusaurus...
  • 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 merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @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)

Bumps [io.github.ollama4j:ollama4j](https://github.com/ollama4j/ollama4j) from 1.0.100 to 1.1.1.
- [Release notes](https://github.com/ollama4j/ollama4j/releases)
- [Commits](ollama4j/ollama4j@1.0.100...1.1.1)

---
updated-dependencies:
- dependency-name: io.github.ollama4j:ollama4j
  dependency-version: 1.1.1
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file java Pull requests that update java code labels Sep 30, 2025
@dependabot @github

dependabot Bot commented on behalf of github Oct 20, 2025

Copy link
Copy Markdown
Author

Superseded by #29.

@dependabot dependabot Bot closed this Oct 20, 2025
@dependabot
dependabot Bot deleted the dependabot/gradle/io.github.ollama4j-ollama4j-1.1.1 branch October 20, 2025 21:21
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 java Pull requests that update java code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants