Skip to content

chore(deps): bump ordered-float from 4.6.0 to 5.3.0#1842

Open
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/ordered-float-5.3.0
Open

chore(deps): bump ordered-float from 4.6.0 to 5.3.0#1842
dependabot[bot] wants to merge 1 commit into
mainfrom
dependabot/cargo/ordered-float-5.3.0

Conversation

@dependabot

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

Copy link
Copy Markdown
Contributor

Bumps ordered-float from 4.6.0 to 5.3.0.

Release notes

Sourced from ordered-float's releases.

v5.3.0

What's Changed

New Contributors

Full Changelog: reem/rust-ordered-float@v5.2.0...v5.3.0

v5.2.0

What's Changed

New Contributors

Full Changelog: reem/rust-ordered-float@v5.1.0...v5.2.0

v5.1.0

What's Changed

New Contributors

Full Changelog: reem/rust-ordered-float@v5.0.0...v5.1.0

v5.0.0

What's Changed

Full Changelog: reem/rust-ordered-float@v4.6.0...v5.0.0

Commits

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 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 [ordered-float](https://github.com/reem/rust-ordered-float) from 4.6.0 to 5.3.0.
- [Release notes](https://github.com/reem/rust-ordered-float/releases)
- [Commits](reem/rust-ordered-float@v4.6.0...v5.3.0)

---
updated-dependencies:
- dependency-name: ordered-float
  dependency-version: 5.3.0
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot Bot added domain: deps Anything related to dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog labels Jul 1, 2026
@dependabot dependabot Bot requested a review from a team as a code owner July 1, 2026 14:32
@dependabot dependabot Bot added domain: deps Anything related to dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog labels Jul 1, 2026

@chatgpt-codex-connector chatgpt-codex-connector Bot left a comment

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

💡 Codex Review

Here are some automated review suggestions for this pull request.

Reviewed commit: 6a6c96c096

ℹ️ About Codex in GitHub

Codex has been enabled to automatically review pull requests in this repo. Reviews are triggered when you

  • Open a pull request for review
  • Mark a draft as ready
  • Comment "@codex review".

If Codex has suggestions, it will comment; otherwise it will react with 👍.

When you sign up for Codex through ChatGPT, Codex can also answer questions or update the PR, like "@codex address that feedback".

Comment thread Cargo.lock
[[package]]
name = "ordered-float"
version = "4.6.0"
version = "5.3.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Update Cargo.toml before locking ordered-float 5.x

Cargo.toml still constrains ordered-float to version = "4", which excludes this newly locked 5.3.0 release, so the lockfile is no longer in sync with the manifest. I checked .github/workflows/test.yml, and the check-lockfile job runs cargo update --workspace --locked; cargo update --help describes --locked as asserting that Cargo.lock remains unchanged, so this dependency resolution would need to rewrite the lockfile and block that CI job until the manifest range is bumped to allow 5.x or the lock entry is kept on 4.x.

Useful? React with 👍 / 👎.

Comment thread Cargo.lock
[[package]]
name = "ordered-float"
version = "4.6.0"
version = "5.3.0"

Copy link
Copy Markdown

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

P1 Badge Fix NotNan arithmetic before taking ordered-float 5.x

After the manifest is widened enough for this lockfile to resolve, non-test builds that include the arithmetic code still won't compile: ordered-float 5 changes NotNan<T> op T results to raw floats, but src/compiler/value/arithmetic.rs still calls .into() on results such as lhv.mul(rhs) and left.rem(right), while Value only implements From<f64> under #[cfg(any(test, feature = "test"))] in src/value/value/convert.rs:339. In default/production builds those paths therefore have no From<f64> for Value; convert the raw result explicitly or keep the 4.x API.

Useful? React with 👍 / 👎.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

domain: deps Anything related to dependencies no-changelog Changes in this PR do not need user-facing explanations in the release changelog

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants