Skip to content

Update UMAP requirement to 0.3.0#80

Open
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/julia/UMAP-0.3.0
Open

Update UMAP requirement to 0.3.0#80
dependabot[bot] wants to merge 1 commit into
masterfrom
dependabot/julia/UMAP-0.3.0

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 15, 2026

Copy link
Copy Markdown
Contributor

Updates the requirements on UMAP to permit the latest version.

Release notes

Sourced from UMAP's releases.

v0.3.0

UMAP v0.3.0

Diff since v0.2.0

Breaking changes

  • Embedding format changed: result.embedding is now a Matrix{T} of shape (n_dims, n_points) instead of Vector{Vector{T}}

    # Old (v0.2)
    result.embedding[i]          # Vector for point i
    New (v0.3)
    result.embedding[:, i]       # Column for point i

  • Graph edge weights are Float32: result.graph now has eltype of Float32

Merged pull requests:

Changelog

Sourced from UMAP's changelog.

v0.3.0

Performance-focused release with Float32 graph internals and Matrix embedding format.

Performance Improvements

  • Uniform embedding initialization: 7-14x faster, 3-10x less memory
  • Embedding optimization: 8-10% faster due to better cache locality
  • Graph construction: 15-28% less memory for simplicial set operations
  • Overall fit/transform: Neutral to 7% faster, 3-20% less memory

Breaking Changes

  • Embedding format changed: result.embedding is now a Matrix{T} of shape (n_dims, n_points) instead of Vector{Vector{T}}

    # Old (v0.2)
    result.embedding[i]          # Vector for point i
    New (v0.3)
    result.embedding[:, i]       # Column for point i

  • Graph edge weights are Float32: result.graph now has eltype of Float32

Bug Fixes

  • Julia 1.10 compatibility restored: the public keyword (Julia 1.11+) caused a ParseError on Julia 1.10, breaking precompilation despite 1.10 being declared compatible. Now uses Compat.@compat public ..., which is a no-op on 1.10. Added Compat (≥ 4.10) dependency.

Internal Changes

  • Dependency updates via Dependabot: replaced the CompatHelper workflow with GitHub-native Dependabot (.github/dependabot.yml), which also keeps GitHub Actions versions current (PSA)
  • SourceViewParams and SourceGlobalParams now use fixed Float32 fields (no longer type-parameterized)
  • MembershipFnParams.a and MembershipFnParams.b are now Float32
  • smooth_knn_dists returns Float32 arrays for ρs and σs
  • SMOOTH_K_TOLERANCE changed to 1.0f-5

v0.2.0 (2025-01-08)

Version 0.2 is a major redesign of UMAP.jl focused on generality, extensibility, and better integration with the Julia ecosystem. This release introduces breaking changes to the API and internal structure.

New Features

  • Multi-view UMAP: Native support for multi-modal data through NamedTuple inputs
    data = (images=X_images, text=X_text)
    result = UMAP.fit(data, ...) # advanced usage API

... (truncated)

Commits
  • 0001763 Update release header for v0.3.0
  • c698131 Merge pull request #70 from dillondaudert/dillondaudert-patch-2
  • b2a1fc7 Bump version from 0.2.0 to 0.3.0
  • 8cc9f1a Merge pull request #67 from dillondaudert/fix_1_10
  • 8a526b8 Update to dependabot
  • 1e8defc Fix julia 1.10 support
  • 468619c Merge pull request #62 from dillondaudert/f32_perf
  • f088051 Update HISTOY
  • 5d6be0a Update docs and docstrings
  • 9a79b6a Opinionated embedding: matrix for _EuclideanManifold; update tests to reflect
  • Additional commits viewable in compare view

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)

Updates the requirements on [UMAP](https://github.com/dillondaudert/UMAP.jl) to permit the latest version.
- [Release notes](https://github.com/dillondaudert/UMAP.jl/releases)
- [Changelog](https://github.com/dillondaudert/UMAP.jl/blob/master/HISTORY.md)
- [Commits](v0.1.0...v0.3.0)

---
updated-dependencies:
- dependency-name: UMAP
  dependency-version: 0.3.0
  dependency-type: direct:production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file julia Pull requests that update julia code labels Jul 15, 2026
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 julia Pull requests that update julia code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants