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 5 updates #260

Merged
merged 1 commit into from
Feb 20, 2025

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Feb 20, 2025

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

Package From To
pyo3 0.22.5 0.22.6
serde_json 1.0.132 1.0.139
log 0.4.22 0.4.25
lalrpop-util 0.22.0 0.22.1
uuid 1.11.0 1.13.2

Updates pyo3 from 0.22.5 to 0.22.6

Release notes

Sourced from pyo3's releases.

PyO3 0.22.6

This release corrects the check for free-threaded Python introduced in PyO3 0.22.2 to prevent users accidentally installing PyO3 packages on Python 3.13t; PyO3 0.22 does not support free-threaded Python. (Stay tuned for the 0.23 release coming very soon!)

Thanks @​minrk for the report and @​davidhewitt for the fix!

Changelog

Sourced from pyo3's changelog.

[0.22.6] - 2024-11-05

Fixed

  • Fix detection of freethreaded Python 3.13t added in PyO3 0.22.2; freethreaded is not yet supported (support coming soon in 0.23). #4684
Commits

Updates serde_json from 1.0.132 to 1.0.139

Release notes

Sourced from serde_json's releases.

v1.0.139

  • Documentation improvements

v1.0.138

  • Documentation improvements

v1.0.137

  • Turn on "float_roundtrip" and "unbounded_depth" features for serde_json in play.rust-lang.org (#1231)

v1.0.136

  • Optimize serde_json::value::Serializer::serialize_map by using Map::with_capacity (#1230, thanks @​goffrie)

v1.0.135

v1.0.134

  • Add RawValue associated constants for literal null, true, false (#1221, thanks @​bheylin)

v1.0.133

  • Implement From<[T; N]> for serde_json::Value (#1215)
Commits
  • 4d4f53c Release 1.0.139
  • 5d6b32f Merge pull request #1242 from dtolnay/writefloat
  • e5bb8bd Document behavior of write_f32/f64 on non-finite floats
  • 7a79781 Merge pull request #1241 from dtolnay/doclink
  • 13591f1 Convert html links to intra-doc links
  • 1d7378e Unset doc-scrape-examples for lib target
  • 1174c5f Resolve unnecessary_semicolon pedantic clippy lint
  • c916099 Release 1.0.138
  • dc29e48 Move BufReader to caller
  • 29122f9 Sort imports from PR 1237
  • Additional commits viewable in compare view

Updates log from 0.4.22 to 0.4.25

Release notes

Sourced from log's releases.

0.4.25

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

0.4.24 (yanked)

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

0.4.23 (yanked)

What's Changed

New Contributors

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

Changelog

Sourced from log's changelog.

[0.4.25] - 2025-01-14

What's Changed

Full Changelog: rust-lang/log@0.4.24...0.4.25

[0.4.24] - 2025-01-11

What's Changed

Full Changelog: rust-lang/log@0.4.23...0.4.24

[0.4.23] - 2025-01-10 (yanked)

What's Changed

New Contributors

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

Commits
  • 22be810 Merge pull request #663 from rust-lang/cargo/0.4.25
  • 0279730 prepare for 0.4.25 release
  • 4099bcb Merge pull request #662 from rust-lang/fix/cargo-features
  • 36e7e3f revert loosening of kv cargo features
  • 2282191 Merge pull request #660 from rust-lang/cargo/0.4.24
  • 2994f0a prepare for 0.4.24 release
  • 5fcb50e Merge pull request #659 from rust-lang/fix/feature-builds
  • 29fe9e6 fix up feature activation
  • b1824f2 use cargo hack in CI to test all feature combinations
  • e6b643d Merge pull request #656 from rust-lang/cargo/0.4.23
  • Additional commits viewable in compare view

Updates lalrpop-util from 0.22.0 to 0.22.1

Changelog

Sourced from lalrpop-util's changelog.

0.22.1 (2025-01-21)

Bugfixes

  • Many documentation updates.
  • Internal cleanups and testsuite enhancements.
  • Isolate a few clippy lint allows more tightly to generated code so that these lints can trigger on action code.
  • Bump some dependency versions

Commits
  • eaecb9a Cleanup README include in include_str (#1033)
  • a4fd1d4 Release 0.22.1 (#1032)
  • 7b8dd86 Correct doc comment in test all (#1025)
  • 7a1f9f6 Update itertools to 0.14 and petgraph to 0.7 (#1023)
  • aa064a1 Merge pull request #1017 from dburgener/msrv-test
  • 4984b42 Also disable cargo update on the feature-powerset test, since that runs
  • 38d337e Don't run cargo update on msrv test
  • 1e72fd6 Be more explicit about LALR deprecation in book (#1009)
  • c0a53b5 Add code coverage write-up to contributing doc (#1010)
  • 2903d0a Add some extra tests for untested areas of the codebase. (#1011)
  • Additional commits viewable in compare view

Updates uuid from 1.11.0 to 1.13.2

Release notes

Sourced from uuid's releases.

v1.13.2

What's Changed

Full Changelog: uuid-rs/uuid@1.13.1...v1.13.2

1.13.1

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.13.0...1.13.1

1.13.0

⚠️ Potential Breakage

This release updates our version of getrandom to 0.3 and rand to 0.9. It is a potentially breaking change for the following users:

no-std users who enable the rng feature

uuid still uses getrandom by default on these platforms. Upgrade your version of getrandom and follow its new docs on configuring a custom backend.

wasm32-unknown-unknown users who enable the rng feature without the js feature

Upgrade your version of getrandom and follow its new docs on configuring a backend.

You'll also need to enable the rng-getrandom or rng-rand feature of uuid to force it to use getrandom as its backend:

[dependencies.uuid]
version = "1.13.0"
- features = ["v4"]
+ features = ["v4", "rng-getrandom"]
[dependencies.getrandom]
version = "0.3"

If you're on wasm32-unknown-unknown and using the js feature of uuid you shouldn't see any breakage. We've kept this behavior by vendoring in getrandom's web-based backend when the js feature is enabled.

What's Changed

... (truncated)

Commits
  • d8871b3 Merge pull request #805 from uuid-rs/cargo/v1.13.2
  • 7044210 prepare for 1.13.2 release
  • 7893ecc Merge pull request #804 from uuid-rs/fix/wasm-no-rng
  • bf28001 update feature docs
  • 920e8b1 add a more descriptive compile error when no rng source is available on wasm
  • 5421417 Merge pull request #799 from uuid-rs/cargo/1.13.1
  • df58674 prepare for 1.13.1 release
  • f175242 Merge pull request #797 from bushrat011899/wasm32_atomics
  • 65c31b3 Include CI Update
  • 17673a1 Fix wasm32 with atomics
  • 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 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 Feb 20, 2025
Copy link

codspeed-hq bot commented Feb 20, 2025

CodSpeed Performance Report

Merging #260 will not alter performance

Comparing dependabot/cargo/rust-production-9cb7377d96 (68e68b5) with main (7eee95b)

Summary

✅ 8 untouched benchmarks

@saulshanabrook
Copy link
Member

@dependabot rebase

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

| Package | From | To |
| --- | --- | --- |
| [pyo3](https://github.com/pyo3/pyo3) | `0.22.5` | `0.22.6` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.132` | `1.0.139` |
| [log](https://github.com/rust-lang/log) | `0.4.22` | `0.4.25` |
| [lalrpop-util](https://github.com/lalrpop/lalrpop) | `0.22.0` | `0.22.1` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.11.0` | `1.13.2` |



Updates `pyo3` from 0.22.5 to 0.22.6
- [Release notes](https://github.com/pyo3/pyo3/releases)
- [Changelog](https://github.com/PyO3/pyo3/blob/v0.22.6/CHANGELOG.md)
- [Commits](PyO3/pyo3@v0.22.5...v0.22.6)

Updates `serde_json` from 1.0.132 to 1.0.139
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@v1.0.132...v1.0.139)

Updates `log` from 0.4.22 to 0.4.25
- [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.22...0.4.25)

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

Updates `uuid` from 1.11.0 to 1.13.2
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.11.0...v1.13.2)

---
updated-dependencies:
- dependency-name: pyo3
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: rust-production
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  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-patch
  dependency-group: rust-production
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: rust-production
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/cargo/rust-production-9cb7377d96 branch from a45c2c0 to 68e68b5 Compare February 20, 2025 17:06
@saulshanabrook saulshanabrook merged commit 05fa4b5 into main Feb 20, 2025
10 checks passed
@saulshanabrook saulshanabrook deleted the dependabot/cargo/rust-production-9cb7377d96 branch February 20, 2025 17: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.

1 participant