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 with 8 updates #98

Closed dependabot[bot] closed 2 months ago

dependabot[bot] commented 2 months ago

Bumps the rust-dependencies group with 8 updates:

Package From To
chrono 0.4.34 0.4.38
indoc 2.0.4 2.0.5
regex 1.10.3 1.10.4
serde 1.0.197 1.0.198
serde_json 1.0.114 1.0.116
figment 0.10.14 0.10.18
monostate 0.1.11 0.1.12
serde_with 3.6.1 3.7.0

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

Release notes

Sourced from serde's releases.

v1.0.198

Commits
  • c4fb923 Release 1.0.198
  • 65b7eea Merge pull request #2729 from dtolnay/saturating
  • 01cd696 Integrate Saturating<T> deserialization into impl_deserialize_num macro
  • c13b3f7 Format PR 2709
  • a6571ee Merge pull request #2709 from jbethune/master
  • 6e38aff Revert "Temporarily disable miri on doctests"
  • 3d1b19e Implement Ser+De for Saturating\<T>
  • 5b24f88 Resolve legacy_numeric_constants clippy lints
  • 74d0670 Explicitly install a Rust toolchain for cargo-outdated job
  • 3bfab6e Temporarily disable miri on doctests
  • Additional commits viewable in compare view


Updates serde_json from 1.0.114 to 1.0.116

Release notes

Sourced from serde_json's releases.

v1.0.116

v1.0.115

  • Documentation improvements
Commits
  • 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"
  • 0baba28 Resolve legacy_numeric_constants clippy lints
  • b1ebf38 Release 1.0.115
  • c3dc153 Merge pull request #1119 from titaniumtraveler/pr
  • 218770b Explicitly install a Rust toolchain for cargo-outdated job
  • 840da8e Fix missing backticks in doc comments
  • Additional commits viewable in compare view


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

Commits
  • 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"
  • c85d13c Explicitly install a Rust toolchain for cargo-outdated job
  • 5adf731 Temporarily disable miri on doctests
  • ee9c56f Merge pull request #7 from dtolnay/exhaustive
  • Additional commits viewable in compare view


Updates serde_with from 3.6.1 to 3.7.0

Release notes

Sourced from serde_with's releases.

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
  • bcda3fa Bump version to 3.7.0 (#720)
  • a446da1 Bump version to 3.7.0
  • 7e9772f Implement JsonSchemaAs for OneOrMany (#719)
  • 5e36083 Add impls and tests for OneOrMany
  • c5c35db Implement JsonSchemaAs for KeyValueMap (#713)
  • 046f820 Bump the github-actions group with 1 update (#718)
  • 7e87fe5 Bump the github-actions group with 1 update
  • ffade77 Add JsonSchemaAs impl for IfIsHumanReadable (#717)
  • bb2ab60 Add JsonSchemaAs impl for IfIsHumanReadable
  • a804257 Implement JsonSchemaAs for KeyValueMap
  • 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 2 months ago

Looks like these dependencies are updatable in another way, so this is no longer needed.