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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Oct 17, 2024

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

Package From To
serde_json 1.0.116 1.0.128
pyo3-log 0.10.0 0.11.0
log 0.4.21 0.4.22
lalrpop-util 0.20.2 0.22.0
ordered-float 3.7.0 4.4.0
uuid 1.8.0 1.11.0
num-rational 0.4.1 0.4.2

Updates serde_json from 1.0.116 to 1.0.128

Release notes

Sourced from serde_json's releases.

1.0.128

  • Support serializing maps containing 128-bit integer keys to serde_json::Value (#1188, thanks @​Mrreadiness)

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
  • d96b1d9 Release 1.0.128
  • 599228d Merge pull request #1188 from Mrreadiness/feat/add-hashmap-key-128-serializer
  • 5416cee feat: add support for 128 bit HashMap key serialization
  • 27a4ca9 Upload CI Cargo.lock for reproducing failures
  • 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
  • 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

Release notes

Sourced from log's releases.

0.4.22

What's Changed

New Contributors

Full Changelog: rust-lang/log@0.4.21...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.22.0

Changelog

Sourced from lalrpop-util's changelog.

0.22.0 (2024-09-26)

Breaking changes

  • The lexer feature no longer implies the std feature. Now lexer is usable in no_std environments. In no_std, ParseError only implements the Error trait in rust 1.81 or later (since core::error was stablized in 1.81).

Features

  • Overhaul cfg attributes. You can now include or omit grammar rules and alternatives based on cargo features with not(), any() and all() support

Bugfixes

  • Improvements to error message reporting to improve clarity and suppress extra noise
  • lalrpop_mod!() now handles imports correctly
  • Reenable some warnings on user code for custom lexers

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
  • 49b3c2c Release version 0.22.0 (#953)
  • bb98e93 When encountering naive errors on reduce/reduce conflicts, drop all but (#938)
  • 1b3587d Cfg attibutes on Alternatives (#959)
  • 55d1c3b Add a new error message for ambiguous reductions to the same nonterminal (#927)
  • 2fb8a29 Lock rustversion (#964)
  • d6229c8 Update to ascii-canvas 4.0 and term 1.0 (#963)
  • fb9a945 Support Error with std feature disabled (#957)
  • 2cd9a59 Turn a few warnings back on when we match token values (#961)
  • 0c41809 Kind of unify version.sh regex search (#958)
  • 2498289 Mention the clog-cli prereq in the CONTRIBUTING release process (#954)
  • Additional commits viewable in compare view

Updates ordered-float from 3.7.0 to 4.4.0

Release notes

Sourced from ordered-float's releases.

v4.4.0

What's Changed

Full Changelog: reem/rust-ordered-float@v4.3.0...v4.4.0

v4.3.0

What's Changed

New Contributors

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

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

... (truncated)

Commits
  • 324b3e1 Version 4.4.0
  • dc0269e Merge pull request #161 from tisonkun/derive-visitor
  • 0e7da65 feat: integrate with derive-visitor
  • 6c47902 Merge pull request #160 from kpreid/ci
  • 88275c3 Merge pull request #159 from kpreid/eq
  • d614112 CI: update actions/checkout, remove actions-rs/*
  • 85a4b9d Document signed zero hazards.
  • e2c7a82 Merge pull request #158 from kpreid/transparent
  • 7abdbc9 Add impl bytemuck::TransparentWrapper for OrderedFloat.
  • 4b07101 Document that NotNan is repr(transparent).
  • Additional commits viewable in compare view

Updates uuid from 1.8.0 to 1.11.0

Release notes

Sourced from uuid's releases.

1.11.0

What's Changed

New Contributors

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

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

... (truncated)

Commits
  • 4473398 Merge pull request #772 from uuid-rs/cargo/1.11.0
  • 59fbb1e prepare for 1.11.0 release
  • d9b34e7 Merge pull request #771 from yotamofek/zerocopy_0.8
  • 14b2420 Upgrade zerocopy to 0.8
  • 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
  • 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

@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 17, 2024
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.128` |
| [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.22.0` |
| [ordered-float](https://github.com/reem/rust-ordered-float) | `3.7.0` | `4.4.0` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.8.0` | `1.11.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.128
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.116...1.0.128)

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.22.0
- [Changelog](https://github.com/lalrpop/lalrpop/blob/master/RELEASES.md)
- [Commits](lalrpop/lalrpop@0.20.2...0.22.0)

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

Updates `uuid` from 1.8.0 to 1.11.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.8.0...1.11.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] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-production-06f65d023f branch from 7002dbf to c75a0a9 Compare October 17, 2024 17:42
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 21, 2024

Superseded by #217.

@dependabot dependabot bot closed this Oct 21, 2024
@dependabot dependabot bot deleted the dependabot/cargo/rust-production-06f65d023f branch October 21, 2024 16:24
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