Skip to content

build(deps): Update DFMethods requirement to 0.3.2 in /docs - #19

Closed
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/docs/DFMethods-0.3.2
Closed

build(deps): Update DFMethods requirement to 0.3.2 in /docs#19
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/julia/docs/DFMethods-0.3.2

Conversation

@dependabot

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

Copy link
Copy Markdown

Updates the requirements on DFMethods to permit the latest version.

Release notes

Sourced from DFMethods's releases.

v0.3.2

DFMethods v0.3.2

Diff since v0.3.1

Merged pull requests:

  • Release v0.3.2: algorithm-verification fixes (#15) (@​mmogib)
Changelog

Sourced from DFMethods's changelog.

[0.3.2] — 2026-05-25

Added

  • SpectralThreeTerm: two new keyword arguments alpha_min and alpha_max (defaults 1e-10 and 1e30) that clamp the spectral coefficient ϑ_k^I to the interval [alpha_min, alpha_max]. The clamp underwrites the strict-descent property F(w_k)' d_k ≤ -\alpha_{\min} \|F(w_k)\|^2 and the trust-region bound \|d_k\| ≤ (α_{\max} + 2/\bar α_1)\,\|F(w_k)\|. In the degenerate case y_{k-1} = 0 (which forced ϑ_k^I = 0 previously, giving zero descent), ϑ_k^I now falls back to alpha_min.
  • SolodovSvaiterProjection: new keyword argument γ::Float64 = 1.0 (relaxation factor; must lie in (0, 2)). The projection target becomes w − γ·λ_k·F(z_k), and the Dykstra tolerance scales to ε_k = (ζ²/2) γ² λ_k² ‖F(z_k)‖² so Dykstra stops at a constant fractional accuracy of the projection step across all γ values. γ = 1 preserves the prior release behavior byte-for-byte. For X = RealSpace the halfspace projection cancels γ ≤ 1; the relaxation has effect for γ > 1 and for non-trivial constraint sets.

Changed

  • SpectralThreeTerm.direction!: the assembled spectral coefficient is now clamp(s'y / y'y, alpha_min, alpha_max) rather than the unconstrained s'y / y'y. Default knobs are wide enough ([1e-10, 1e30]) that any well-behaved trajectory produces a bit-identical direction to the prior release; only the degenerate fallback (y_{k-1} = 0) changes output, replacing the previous zero-descent failure with a strict-descent step.
  • SolodovSvaiterProjection is now Base.@kwdef'd with a single γ::Float64 = 1.0 field. The zero-argument SolodovSvaiterProjection() constructor continues to work and constructs the default rule.

[0.3.1] — 2026-05-24

Documentation enhancement release. Adds a new Tutorial page to the manual (between Quickstart and Algorithm in the nav) demonstrating the end-to-end solver workflow with emphasis on the callback architecture (observer callbacks, stopping criteria as callbacks, writing a custom callback from scratch). No source-code changes; no API additions or removals; 242/242 tests pass unchanged.

Added

  • docs/src/tutorial.md — hands-on walkthrough (live-evaluated via Documenter @example blocks):
    • § 1 Setup — minimum-viable solve(NonlinearProblem(F, x0), DFProjection())
    • § 2 Choosing components — overrides for linesearch, inertial, etc.

... (truncated)

Commits
  • 7de1e8e Merge pull request #15 from mmogib/feature-dev
  • 99c6eaf Release v0.3.2
  • 647260d Algorithm: SpectralThreeTerm clamp, SolodovSvaiterProjection γ, docs polish
  • c2cf75a Docs: bump README BibTeX + CITATION.cff version to v0.3.1
  • b315281 Merge pull request #14 from mmogib/v0.3.1-dev
  • fb15d52 Release v0.3.1: docs-only tutorial enhancement
  • 67df38a docs: add tutorial.md — hands-on walkthrough with callbacks
  • 094c18c Docs: Zenodo DOI badge + citation for v0.3.0
  • 60ceb18 Merge pull request #10 from mmogib/v0.3.0-dev
  • eb7cb4f Release v0.3.0: element-type genericity + first Zenodo DOI
  • 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 [DFMethods](https://github.com/mmogib/DFMethods.jl) to permit the latest version.
- [Release notes](https://github.com/mmogib/DFMethods.jl/releases)
- [Changelog](https://github.com/mmogib/DFMethods.jl/blob/main/CHANGELOG.md)
- [Commits](v0.1.0...v0.3.2)

---
updated-dependencies:
- dependency-name: DFMethods
  dependency-version: 0.3.2
  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 May 30, 2026
@mmogib

mmogib commented Jun 9, 2026

Copy link
Copy Markdown
Owner

Closing in favor of CompatHelper (see #22) — Dependabot's julia ecosystem is being removed. docs/Project.toml carries no [compat] bounds, so the docs build always resolves current compatible versions; no pin needed.

@mmogib mmogib closed this Jun 9, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jun 9, 2026

Copy link
Copy Markdown
Author

OK, I won't notify you again about this release, but will get in touch when a new version is available. If you'd rather skip all updates until the next major or minor version, let me know by commenting @dependabot ignore this major version or @dependabot ignore this minor version. You can also ignore all major, minor, or patch releases for a dependency by adding an ignore condition with the desired update_types to your config file.

If you change your mind, just re-open this PR and I'll resolve any conflicts on it.

@mmogib
mmogib deleted the dependabot/julia/docs/DFMethods-0.3.2 branch June 9, 2026 02:05
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