Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Bump the rust-production group across 1 directory with 7 updates #207

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Sep 2, 2024

Bumps the rust-production group with 7 updates in the / directory:

Package From To
serde_json 1.0.116 1.0.127
pyo3-log 0.10.0 0.11.0
log 0.4.21 0.4.22
lalrpop-util 0.20.2 0.21.0
ordered-float 3.7.0 4.2.2
uuid 1.8.0 1.10.0
num-rational 0.4.1 0.4.2

Updates serde_json from 1.0.116 to 1.0.127

Release notes

Sourced from serde_json's releases.

1.0.127

1.0.126

  • Improve string parsing on targets that use 32-bit pointers but also have fast 64-bit integer arithmetic, such as aarch64-unknown-linux-gnu_ilp32 and x86_64-unknown-linux-gnux32 (#1182, thanks @​CryZe)

1.0.125

  • Speed up \uXXXX parsing and improve handling of unpaired surrogates when deserializing to bytes (#1172, #1175, thanks @​purplesyringa)

v1.0.124

v1.0.123

v1.0.122

  • Support using json! in no-std crates (#1166)

v1.0.121

v1.0.120

  • Correctly specify required version of indexmap dependency (#1152, thanks @​cforycki)

v1.0.119

v1.0.118

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)
Commits
  • 5ebf65c Release 1.0.127
  • f287a3b Merge pull request 1179 from GREsau/patch-1
  • ec980b0 Release 1.0.126
  • e6282b0 Merge pull request #1184 from serde-rs/fastarithmetic
  • ffc4a43 Improve cfg names for fast arithmetic
  • 4b1048d Merge pull request #1183 from serde-rs/arithmetic
  • f268173 Unify chunk size choice between float and string parsing
  • fec0376 Merge pull request #1182 from CryZe/chunk-64bit
  • 3d837e1 Ensure the SWAR chunks are 64-bit in more cases
  • 11fc61c Add OccupiedEntry::shift_remove() and swap_remove()
  • Additional commits viewable in compare view

Updates pyo3-log from 0.10.0 to 0.11.0

Changelog

Sourced from pyo3-log's changelog.

0.11.0

  • Update to pyo3 0.22.
  • Logger not longer implements Clone
Commits

Updates log from 0.4.21 to 0.4.22

Changelog

Sourced from log's changelog.

[0.4.22] - 2024-06-27

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.21...0.4.22

Commits
  • d5ba2cf Merge pull request #634 from rust-lang/cargo/0.4.22
  • d1a8306 prepare for 0.4.22 release
  • 46894ef Merge pull request #633 from rust-lang/feat/panic-info
  • e0d389c Merge pull request #632 from rust-lang/feat/loosen-atomics
  • c9e5e13 use Location::caller() for file and line info
  • 507b672 loosen orderings for logger initialization
  • c879b01 Merge pull request #628 from Thomasdezeeuw/fix-warnings
  • 405fdb4 Merge pull request #627 from Thomasdezeeuw/check-features
  • 1307ade Remove unneeded import
  • 710560e Don't use --all-features in CI
  • Additional commits viewable in compare view

Updates lalrpop-util from 0.20.2 to 0.21.0

Changelog

Sourced from lalrpop-util's changelog.

0.21.0 (2024-05-30)

Since the last release, a fair number of the commits have been focused on cleaning up and improving LALRPOP's documentation. Shout out to Yudai Takada, George White, and Dinu Blanovschi.

Features

  • LALRPOP now throws an error in more cases where it would previously just write out an error message and exit.
  • lalrpop::process_src is now the recommended function to use in build.rs files. Previously the documentation incorrectly suggested that lalrpop::process_root looked in ./src instead of .

Bugfixes

  • A long-standing bug where LALRPOP would throw a "no entry found for key" exception when trying to handle certain grammars has been resolved.
  • LALRPOP will stop expanding macros infinitely during build time via a new macro_expansion_limit.

Compatibility note

Adding a limit to the number of times that LALRPOP will attempt to expand a macro is technically a breaking change. However, the default limit of 200 should be more than enough for the grammars we are currently aware of (which almost always need a limit of less than 5). This limit is customizable via Configuration::set_macro_expansion_limit.

If you have a grammar that uses a significant amount of macro expansion steps, we would be very interested in a PR that adds it to the test suite.

Commits

Updates ordered-float from 3.7.0 to 4.2.2

Release notes

Sourced from ordered-float's releases.

v4.2.2

What's Changed

New Contributors

Full Changelog: reem/rust-ordered-float@v4.2.1...v4.2.2

v4.2.1

What's Changed

Full Changelog: reem/rust-ordered-float@v4.2.0...v4.2.1

v4.2.0

What's Changed

New Contributors

Full Changelog: reem/rust-ordered-float@v4.1.1...v4.2.0

v4.1.1

What's Changed

New Contributors

Full Changelog: reem/rust-ordered-float@v4.1.0...v4.1.1

v4.1.0

What's Changed

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

v4.0.0

What's Changed

Full Changelog: reem/rust-ordered-float@v3.9.1...v4.0.0

v3.9.2

Full Changelog: reem/rust-ordered-float@v3.9.1...v3.9.2

... (truncated)

Commits

Updates uuid from 1.8.0 to 1.10.0

Release notes

Sourced from uuid's releases.

1.10.0

Deprecations

This release deprecates and renames the following functions:

  • Builder::from_rfc4122_timestamp -> Builder::from_gregorian_timestamp
  • Builder::from_sorted_rfc4122_timestamp -> Builder::from_sorted_gregorian_timestamp
  • Timestamp::from_rfc4122 -> Timestamp::from_gregorian
  • Timestamp::to_rfc4122 -> Timestamp::to_gregorian

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.9.1...1.10.0

1.9.1

What's Changed

Full Changelog: uuid-rs/uuid@1.9.0...1.9.1

1.9.0

Uuid::now_v7() is guaranteed to be monotonic

Before this release, Uuid::now_v7() would only use the millisecond-precision timestamp for ordering. It now also uses a global 42-bit counter that's re-initialized each millisecond so that the following will always pass:

let a = Uuid::now_v7();
let b = Uuid::now_v7();
assert!(a < b);

What's Changed

New Contributors

... (truncated)

Commits
  • 4b4c590 Merge pull request #766 from uuid-rs/cargo/1.10.0
  • 68eff32 Merge pull request #765 from uuid-rs/chore/time-fn-deprecations
  • 3d5384d update docs and deprecation messages for timestamp fns
  • de50f20 renaming rfc4122 functions
  • 4a88417 prepare for 1.10.0 release
  • 66b4fce Merge pull request #764 from Vrajs16/main
  • 8896e26 Use expr instead of ident
  • 09973d6 Added changes
  • 6edf3e8 Use const identifer in uuid macro
  • 36e6f57 Merge pull request #763 from uuid-rs/cargo/1.9.1
  • Additional commits viewable in compare view

Updates num-rational from 0.4.1 to 0.4.2

Changelog

Sourced from num-rational's changelog.

Release 0.4.2 (2024-05-07)

Contributors: @​cuviper, @​Enyium, @​flavioroth, @​waywardmonkeys

Commits

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 <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

Bumps the rust-production group with 7 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [serde_json](https://github.com/serde-rs/json) | `1.0.116` | `1.0.127` |
| [pyo3-log](https://github.com/vorner/pyo3-log) | `0.10.0` | `0.11.0` |
| [log](https://github.com/rust-lang/log) | `0.4.21` | `0.4.22` |
| [lalrpop-util](https://github.com/lalrpop/lalrpop) | `0.20.2` | `0.21.0` |
| [ordered-float](https://github.com/reem/rust-ordered-float) | `3.7.0` | `4.2.2` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.8.0` | `1.10.0` |
| [num-rational](https://github.com/rust-num/num-rational) | `0.4.1` | `0.4.2` |



Updates `serde_json` from 1.0.116 to 1.0.127
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.116...1.0.127)

Updates `pyo3-log` from 0.10.0 to 0.11.0
- [Changelog](https://github.com/vorner/pyo3-log/blob/main/CHANGELOG.md)
- [Commits](https://github.com/vorner/pyo3-log/commits)

Updates `log` from 0.4.21 to 0.4.22
- [Release notes](https://github.com/rust-lang/log/releases)
- [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md)
- [Commits](rust-lang/log@0.4.21...0.4.22)

Updates `lalrpop-util` from 0.20.2 to 0.21.0
- [Changelog](https://github.com/lalrpop/lalrpop/blob/master/RELEASES.md)
- [Commits](lalrpop/lalrpop@0.20.2...0.21.0)

Updates `ordered-float` from 3.7.0 to 4.2.2
- [Release notes](https://github.com/reem/rust-ordered-float/releases)
- [Commits](reem/rust-ordered-float@v3.7.0...v4.2.2)

Updates `uuid` from 1.8.0 to 1.10.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.8.0...1.10.0)

Updates `num-rational` from 0.4.1 to 0.4.2
- [Changelog](https://github.com/rust-num/num-rational/blob/master/RELEASES.md)
- [Commits](rust-num/num-rational@num-rational-0.4.1...num-rational-0.4.2)

---
updated-dependencies:
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-production
- dependency-name: pyo3-log
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-production
- dependency-name: log
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-production
- dependency-name: lalrpop-util
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-production
- dependency-name: ordered-float
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: rust-production
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-production
- dependency-name: num-rational
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-production
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Sep 2, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Sep 9, 2024

Superseded by #208.

@dependabot dependabot bot closed this Sep 9, 2024
@dependabot dependabot bot deleted the dependabot/cargo/rust-production-e09dd32acd branch September 9, 2024 16:11
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 rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants