Skip to content

Update FindFirstFunctions requirement from 1.4.2 to 1.4.2, 2.0 in /docs in the all-julia-packages group across 1 directory#71

Merged
ChrisRackauckas merged 1 commit into
mainfrom
dependabot/julia/docs/all-julia-packages-9d3cd786b7
May 21, 2026
Merged

Update FindFirstFunctions requirement from 1.4.2 to 1.4.2, 2.0 in /docs in the all-julia-packages group across 1 directory#71
ChrisRackauckas merged 1 commit into
mainfrom
dependabot/julia/docs/all-julia-packages-9d3cd786b7

Conversation

@dependabot
Copy link
Copy Markdown
Contributor

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

Updates the requirements on FindFirstFunctions to permit the latest version.
Updates FindFirstFunctions to 2.0.0

Release notes

Sourced from FindFirstFunctions's releases.

v2.0.0

FindFirstFunctions v2.0.0

Diff since v1.8.0

Breaking changes

See NEWS.md for the full set of breaking changes to the new API.

Merged pull requests:

Changelog

Sourced from FindFirstFunctions's changelog.

2.0.0

This is a major rewrite of the sorted-search API. The 1.x surface — a collection of single-purpose, hint-flavoured function names — has been replaced by a single strategy-dispatched API where the algorithm is chosen at the call site (or by Auto) rather than baked into the function name.

Breaking changes — removed names

The following 1.x functions are gone in 2.0. Each one has a single canonical 2.x replacement:

1.x 2.x
searchsortedfirstcorrelated(v, x, guess::Integer) searchsortedfirst(BracketGallop(), v, x, guess)
searchsortedlastcorrelated(v, x, guess::Integer) searchsortedlast(BracketGallop(), v, x, guess)
searchsortedfirstcorrelated(v, x, g::Guesser) searchsortedfirst(GuesserHint(g), v, x)
searchsortedlastcorrelated(v, x, g::Guesser) searchsortedlast(GuesserHint(g), v, x)
searchsortedfirstvec(v, qs) searchsortedfirst!(buf, v, qs) (caller-owned buf)
searchsortedlastvec(v, qs) searchsortedlast!(buf, v, qs) (caller-owned buf)

The *vec migration shifts buffer ownership to the caller. The in-place form lets callers reuse buffers across calls, which the allocating form couldn't. For one-shot use the caller-side allocation is a single Vector{Int}(undef, length(qs)) per call site.

Breaking changes — made internal

These helpers backed 1.x public names. In 2.0 they remain in the module as implementation details of the strategy dispatch, but are no longer documented or part of the public API:

  • searchsortedfirstexp — now backs the ExpFromLeft strategy. Use searchsortedfirst(ExpFromLeft(), v, x, lo) instead.
  • bracketstrictlymontonic — now backs the BracketGallop strategy. Callers wanting a bracket-then-binary-search should use searchsortedlast(BracketGallop(), v, x, hint) / searchsortedfirst(BracketGallop(), v, x, hint).

New: strategy-dispatched search API

A single pair of generic functions covers every sorted-search algorithm in the package:

searchsortedfirst(strategy, v, x[, hint]; order = Base.Order.Forward)
searchsortedlast(strategy, v, x[, hint]; order = Base.Order.Forward)

strategy is a concrete subtype of SearchStrategy. The shipped

... (truncated)

Commits
  • 8f78df2 Merge pull request #65 from ChrisRackauckas-Claude/sorted-search-strategies
  • d5b976e Split src/FindFirstFunctions.jl into a 10-file hierarchy
  • 8776771 Merge pull request #60 from SciML/dependabot/github_actions/julia-actions/cac...
  • aaaf5a5 Add queries_sorted kwarg, searchsortedrange, is_log_linear, AirspeedVelocity CI
  • 23fa058 Restore BitInterpolationSearch as opt-in strategy
  • 9be8387 Document BitInterpolationSearch exploration as negative result
  • 9c067bd Retune Auto with SIMDLinearScan integration; 1080-cell bench sweep
  • c1c7520 Cleanup: typo, FFE_IR unification, docstring refresh, exports, equality page
  • 9db2fe6 Add findequal + BisectThenSIMD; fix duplicates bug in 4 search paths
  • ed39347 Add NEWS.md documenting the 2.0 release
  • 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 <dependency name> major version will close this group update PR and stop Dependabot creating any more for the specific dependency's major version (unless you unignore this specific dependency's major version or upgrade to it yourself)
  • @dependabot ignore <dependency name> minor version will close this group update PR and stop Dependabot creating any more for the specific dependency's minor version (unless you unignore this specific dependency's minor version or upgrade to it yourself)
  • @dependabot ignore <dependency name> will close this group update PR and stop Dependabot creating any more for the specific dependency (unless you unignore this specific dependency or upgrade to it yourself)
  • @dependabot unignore <dependency name> will remove all of the ignore conditions of the specified dependency
  • @dependabot unignore <dependency name> <ignore condition> will remove the ignore condition of the specified dependency and ignore conditions

Updates the requirements on [FindFirstFunctions](https://github.com/SciML/FindFirstFunctions.jl) to permit the latest version.

Updates `FindFirstFunctions` to 2.0.0
- [Release notes](https://github.com/SciML/FindFirstFunctions.jl/releases)
- [Changelog](https://github.com/SciML/FindFirstFunctions.jl/blob/main/NEWS.md)
- [Commits](v1.4.2...v2.0.0)

---
updated-dependencies:
- dependency-name: FindFirstFunctions
  dependency-version: 2.0.0
  dependency-type: direct:production
  dependency-group: all-julia-packages
...

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 May 20, 2026
@ChrisRackauckas ChrisRackauckas merged commit 0311647 into main May 21, 2026
1 of 3 checks passed
@dependabot dependabot Bot deleted the dependabot/julia/docs/all-julia-packages-9d3cd786b7 branch May 21, 2026 08:32
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.

1 participant