heroku / buildpacks-php

Heroku's Cloud Native Buildpack for PHP applications.
BSD 3-Clause "New" or "Revised" License
7 stars 2 forks source link

Bump the rust-dependencies group across 1 directory with 10 updates #106

Closed dependabot[bot] closed 1 month ago

dependabot[bot] commented 2 months ago

Bumps the rust-dependencies group with 10 updates in the / directory:

Package From To
chrono 0.4.34 0.4.38
flate2 1.0.28 1.0.30
indoc 2.0.4 2.0.5
regex 1.10.3 1.10.4
serde 1.0.197 1.0.201
serde_json 1.0.114 1.0.117
ureq 2.9.6 2.9.7
figment 0.10.14 0.10.18
monostate 0.1.11 0.1.13
serde_with 3.6.1 3.8.1

Updates chrono from 0.4.34 to 0.4.38

Release notes

Sourced from chrono's releases.

v0.4.38

This release bring a ca. 20% improvement to the performance of the formatting code, and a convenient days_since method for the Weekday type.

Chrono 0.4.38 also removes the long deprecated rustc-serialize feature. Support for rustc-serialize will be soft-destabilized in the next Rust edition. Removing the feature will not break existing users of the feature; Cargo will just not update dependents that rely on it to newer versions of chrono.

In chrono 0.4.36 we made an accidental breaking change by switching to derive(Copy) for DateTime instead of a manual implementation. It is reverted in this release.

Removals

Additions

Fixes

  • Return error when rounding with a zero duration (#1474, thanks @​Dav1dde)
  • Manually implement Copy for DateTime if offset is Copy (#1573)

Internal

  • Inline test_encodable_json and test_decodable_json functions (#1550)
  • CI: Reduce combinations in cargo hack check (#1553)
  • Refactor formatting code (#1335)
  • Optimize number formatting (#1558)
  • Only package files needed for building and testing (#1554)

Thanks to all contributors on behalf of the chrono team, @​djc and @​pitdicker!

v0.4.37

Version 0.4.36 introduced an unexpected breaking change and was yanked. In it LocalResult was renamed to MappedLocalTime to avoid the impression that it is a Result type were some of the results are errors. For backwards compatibility a type alias with the old name was added.

As it turns out there is one case where a type alias behaves differently from the regular enum: you can't import enum variants from a type alias with use chrono::LocalResult::*. With 0.4.37 we make the new name MappedLocalTime the alias, but keep using it in function signatures and the documentation as much as possible.

See also the release notes of chrono 0.4.36 from yesterday for the yanked release.

v0.4.36

This release un-deprecates the methods on TimeDelta that were deprecated with the 0.4.35 release because of the churn they are causing for the ecosystem.

New is the DateTime::with_time() method. As an example of when it is useful:

use chrono::{Local, NaiveTime};
// Today at 12:00:00
let today_noon = Local::now().with_time(NaiveTime::from_hms_opt(12, 0, 0).unwrap());

Additions

  • Add DateTime::with_time() (#1510)

Deprecations

  • Revert TimeDelta deprecations (#1543)
  • Deprecate TimeStamp::timestamp_subsec_nanos, which was missed in the 0.4.35 release (#1486)

... (truncated)

Commits
  • 352a352 Prepare 0.4.38
  • 46d44d6 Manually implement Copy for DateTime if offset is Copy
  • 760eb66 Update windows-bindgen requirement from 0.55 to 0.56
  • 391187f Return error when rounding with zero duration
  • ffc75e5 Add TimeDelta::checked_mul and TimeDelta::checked_div
  • f8cecbe Make Weekday::num_days_from public, rename to days_since.
  • 0cfc405 Optimize number formatting
  • 74ba83b Take pad by value
  • 78e79db Match on tuples in format_fixed
  • f3d76c7 Match on tuples in format_numeric
  • Additional commits viewable in compare view


Updates flate2 from 1.0.28 to 1.0.30

Release notes

Sourced from flate2's releases.

1.0.29 - with new zlib-rs feature (~zlib-ng in Rust)

With the new zlib-rs feature, a new backend is enabled that brings in a SIMD-accelerated Rust implementation.

What's Changed

New Contributors

Full Changelog: https://github.com/rust-lang/flate2-rs/compare/1.0.28...1.0.29

Commits
  • d3bea90 Merge pull request #405 from Byron/fix-CI
  • 5048843 Merge pull request #407 from striezel-stash/actions-checkout-v4
  • 42c86ce Merge pull request #406 from striezel-stash/fix-some-typos
  • f7b99e9 Update actions/checkout in GitHub Actions workflows to v4
  • 563f1c4 Fix typos
  • 1126a4a prepare bugfix release to make docs work again
  • bc1b3e9 CI verifies that docs can be built (#404)
  • 5ce4154 fix CI by assuring builds work with --all-features enabled (#404)
  • 9a25bc0 Merge pull request #403 from folkertdev/bump-version-zlib-rs
  • e9c87c0 zlib-rs support version bump
  • Additional commits viewable in compare view


Updates indoc from 2.0.4 to 2.0.5

Release notes

Sourced from indoc's releases.

2.0.5

Commits
  • 4bfa29f Release 2.0.5
  • 8d38299 Merge pull request #62 from ilyagr/docstring
  • 735ddcc Update docstring for indoc!
  • 60b5fa2 Remove 'remember to update' reminder from Cargo.toml
  • 15abc17 Test docs.rs documentation build in CI
  • See full diff in compare view


Updates regex from 1.10.3 to 1.10.4

Commits
  • aa2d8bd 1.10.4
  • 088d7f3 api: add Cow guarantee to replace API
  • a5ae351 regex-automata-0.4.6
  • 9cf4a42 automata: fix bug where reverse NFA lacked an unanchored prefix
  • 10fe722 style: clean up some recent lint violations
  • d7f9347 regex-automata-0.4.5
  • 07ef7f1 automata: make additional prefileter metadata public
  • See full diff in compare view


Updates serde from 1.0.197 to 1.0.201

Release notes

Sourced from serde's releases.

v1.0.201

  • Resolve unexpected_cfgs warning (#2737)

v1.0.200

  • Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks @​jamessan)

v1.0.199

  • Fix ambiguous associated item when forward_to_deserialize_any! is used on an enum with Error variant (#2732, thanks @​aatifsyed)

v1.0.198

Commits
  • b4f1bc1 Release 1.0.201
  • 029ab46 Merge pull request #2737 from dtolnay/checkcfg
  • 220ca0c Resolve unexpected_cfgs warning
  • 20306f4 Fix cfg on test_systemtime_overflow
  • cc865ac Release 1.0.200
  • 2d973c1 Merge pull request #2733 from jamessan/nan-decimal
  • 6ca499b Only format Unexpected::Float with decimal point if it is finite
  • 1477028 Release 1.0.199
  • 789740b Merge pull request #2732 from aatifsyed/master
  • 8fe7539 fix: ambiguous associated type in forward_to_deserialize_any!
  • Additional commits viewable in compare view


Updates serde_json from 1.0.114 to 1.0.117

Release notes

Sourced from serde_json's releases.

v1.0.117

  • Resolve unexpected_cfgs warning (#1130)

v1.0.116

v1.0.115

  • Documentation improvements
Commits
  • 0ae247c Release 1.0.117
  • 4517c7a PartialEq is not implemented between Value and 128-bit ints
  • fdf99c7 Combine number PartialEq tests
  • b4fc245 Merge pull request #1130 from serde-rs/checkcfg
  • 98f1a24 Resolve unexpected_cfgs warning
  • a3f62bb Release 1.0.116
  • 12c8ee0 Hide "non-exhaustive patterns" errors when crate fails to compile
  • 051ce97 Merge pull request 1124 from mleonhard/master
  • 25dc750 Replace features_check mod with a call to std::compile_error!. Fixes htt...
  • 2e15e3d Revert "Temporarily disable miri on doctests"
  • Additional commits viewable in compare view


Updates ureq from 2.9.6 to 2.9.7

Changelog

Sourced from ureq's changelog.

2.9.7

  • Update deps (base64 0.22, rustls to 0.22.4 (#747, #748)
  • Parse URL after middleware to enable changing it (#745)
  • Tidy up code and fix compilatio (#742, 743)
Commits


Updates figment from 0.10.14 to 0.10.18

Commits
  • 4bb7876 New version: 0.10.18.
  • 2c83ffa Add lossy extraction.
  • d2a31e8 New version: 0.10.17.
  • 94d09e1 Use consistent path/key wording. Fix error paths.
  • 060742b New version: 0.10.16.
  • 6370f6b Export 'Error::chain()'. Impl 'Error: From<&str>'.
  • 6253b25 New version: 0.10.15.
  • 0ae4eaa Move jail utils to 'jail' module.
  • 3a063a2 Add 'Jail::create_binary()' method.
  • 70a105f Document and test 'Data::file_exact()'.
  • Additional commits viewable in compare view


Updates monostate from 0.1.11 to 0.1.13

Release notes

Sourced from monostate's releases.

0.1.13

  • Resolve unexpected_cfgs warning (#8)

0.1.12

No release notes provided.

Commits
  • 0f5cdcb Release 0.1.13
  • 429e835 Merge pull request #8 from dtolnay/checkcfg
  • 3ce918b Resolve unexpected_cfgs warning
  • 7d82dc9 Release 0.1.12
  • 58b4704 Ignore uninlined_format_args pedantic clippy lint
  • 7b829d0 Raise required compiler to rust 1.60
  • 4098a7b Require a version of syn and proc-macro2 that has C-string support
  • 4024b93 Mark C-string literals as unsupported
  • 694d9df Fix typo in readme and crate-level documentation
  • 3a076aa Revert "Temporarily disable miri on doctests"
  • Additional commits viewable in compare view


Updates serde_with from 3.6.1 to 3.8.1

Release notes

Sourced from serde_with's releases.

serde_with v3.8.1

Fixed

  • Do not emit schemars(deserialize_with = "...") annotations, as schemars does not support them (#735) Thanks to @​sivizius for reporting the issue.

serde_with v3.8.0

Added

Changed

  • Bump base64 dependency to v0.22 (#724)
  • Update dev dependencies

Fixed

  • serde_conv regressed and triggered clippy::ptr_arg and add test to prevent future problems. (#731)

serde_with v3.7.0

Added

Fixed

  • Detect conflicting schema_with attributes on fields with schemars annotations by @​swlynch99 (#715) This extends the existing avoidance mechanism to a new variant fixing #712.
Commits
  • 29ea916 Bump version to v3.8.1 (#737)
  • 13e48a9 Bump version to v3.8.1
  • 8869b20 Do not emit schemars(deserialize_with = "...") (#736)
  • eb77c40 Do not emit schemars(deserialize_with = "...")
  • 7e66d6b Bump version to v3.8.0 (#734)
  • 4a4fcb3 Bump version to v3.8.0
  • 167e865 Implement (De)Serialization for Pinned Smart Pointers (#733)
  • 04de4ce Add SerializeAs support for Pin<&'a T> and Pin<&'a mut T>
  • 9c2dac7 Implement (De)Serialization for Pinned Smart Pointers
  • 9989d8e Add test that serde_conv will not trigger clippy::ptr_arg (#731)
  • 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 ignore conditions` will show all of the ignore conditions of the specified dependency - `@dependabot ignore 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 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 ` 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 ` will remove all of the ignore conditions of the specified dependency - `@dependabot unignore ` will remove the ignore condition of the specified dependency and ignore conditions
dependabot[bot] commented 1 month ago

Superseded by #108.