Skip to content

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 1, 2025

Bumps stringzilla from 3.12.6 to 4.0.15.

Release notes

Sourced from stringzilla's releases.

Release v4.0.15

Release: v4.0.15 [skip ci]

Patch

  • Improve: Faster unaligned loads in fingerprints (30ad812)
  • Fix: Avoid Ice Lake instructions on older CPUs (96ce576)
  • Improve: Faster streaming hashes on x86 (2ce62ba)
  • Docs: Levenshtein wave shape (8e1f70c)

Release v4.0.14

Release: v4.0.14 [skip ci]

Patch

  • Fix: ODR violation for raise in C++ (#238) (6e826d7)

Release v4.0.13

Release: v4.0.13 [skip ci]

Patch

  • Make: Pull CUDA within CIBW_BEFORE_ALL (6316330)

v4.0.12: Zero-Copy for Rust and Python

This release fixes a critical bug where non-owning Strs slices incorrectly copied entire parent data during GPU memory allocation, instead of just the slice portion. The fix ensures proper Apache Arrow-compatible StringTape format handling with correct offset normalization for zero-copy operations. GPU memory management is now significantly more efficient, eliminating unnecessary re-allocations when data already resides in GPU memory through intelligent parent chain traversal.

A new stringzillas.to_device() function enables explicit GPU memory pre-allocation, useful for testing and performance optimization:

import stringzilla as sz
import stringzillas as szs
Create strings and slices
strs = sz.Strs(["hello", "world", "test", "data"])
slice_view = strs[1:3] # Non-owning view of ["world", "test"]
Pre-allocate on GPU (if available)
gpu_strs = szs.to_device(strs)
gpu_slice = szs.to_device(slice_view) # Correctly handles slice offsets

Cross-platform builds are now more stable with fixes for Windows ARM64 cross-compilation, ensuring mutually exclusive architecture flags prevent header conflicts. The CI/CD pipeline correctly generates stringzillas-cuda packages by properly propagating environment variables through cibuildwheel. Enhanced test coverage includes complex Unicode scenarios with RTL text, emoji sequences, and different normalization forms. Documentation has been extended with Rust examples showcasing zero-copy compute_into APIs using StringTape format.

Patch

  • Make: Mutually exclusive platform flags (773d959)
  • Fix: Skip to_device tests w/out GPUs found (d701592)
  • Make: Propagate SZ_TARGET into CIBW env (b222e82)
  • Improve: Avoid realloc for on-GPU views (77e67cf)
  • Docs: Zero-copy Rust compute_into API with StringTape (f4ad81e)
  • Improve: Validate to_device(Strs) for unicode (f3c5357)

... (truncated)

Commits
  • 52bbe03 Release: v4.0.15 [skip ci]
  • 16d00a7 Faster Hashing
  • 30ad812 Improve: Faster unaligned loads in fingerprints
  • 96ce576 Fix: Avoid Ice Lake instructions on older CPUs
  • 2ce62ba Improve: Faster streaming hashes on x86
  • 8e1f70c Docs: Levenshtein wave shape
  • f65090e Release: v4.0.14 [skip ci]
  • 6e826d7 Fix: ODR violation for raise in C++ (#238)
  • 4f70d3b Release: v4.0.13 [skip ci]
  • 6316330 Make: Pull CUDA within CIBW_BEFORE_ALL
  • 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 [stringzilla](https://github.com/ashvardanian/stringzilla) from 3.12.6 to 4.0.15.
- [Release notes](https://github.com/ashvardanian/stringzilla/releases)
- [Commits](ashvardanian/StringZilla@v3.12.6...v4.0.15)

---
updated-dependencies:
- dependency-name: stringzilla
  dependency-version: 4.0.15
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependencies rust Pull requests that update Rust code labels Oct 1, 2025
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 dependencies rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant