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 all group in /local-registry with 8 updates #120

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Mar 18, 2024

Bumps the all group in /local-registry with 8 updates:

Package From To
anyhow 1.0.80 1.0.81
bigdecimal 0.4.2 0.4.3
chrono 0.4.34 0.4.35
fixedbitset 0.5.0 0.5.1
int-enum 1.0.1 1.1.1
strum 0.26.1 0.26.2
strum_macros 0.26.1 0.26.2
thiserror 1.0.57 1.0.58

Updates anyhow from 1.0.80 to 1.0.81

Release notes

Sourced from anyhow's releases.

1.0.81

  • Make backtrace support available when using -Dwarnings (#354)
Commits

Updates bigdecimal from 0.4.2 to 0.4.3

Release notes

Sourced from bigdecimal's releases.

v0.4.3

  • Use exponential formatting (scientific-notation) if number of leading zeros is greater than 5
    • so 1234e-304 is formatted as 1.234e-301 rather than 0.00.....{300-zeros)....00123
    • Fixes "out of memory errors" when massive amounts of zeros would have been printed
  • Add methods for printing using scientific-notation & engineering-notation
  • Add derived Clone trait to ParseBigDecimalError
  • Preserve scale when adding zero
    • Mimics Python's Decimal behavior:
      >>> Decimal("1.2") + Decimal("0.00000")
      Decimal('1.20000')
  • Minor optimizations removing unnecessary clones in addition and multiplication
Commits
  • f84ba98 v0.4.3
  • ea6eb2f Version 0.4.3
  • bfb249c Merge move-addition-impl into trunk
  • 03105f3 Preserve scale when adding zero and add minor optimize add_bigdecimals
  • 83f537d Reimplement take_and_scale with diff and ten_to_the_u64
  • a0c7df4 Add ten_to_the_u64
  • 0619954 Move addition implementations to arithmetic module
  • 2c66e36 Add diff & diff_usize functions to arithmetic module
  • 33f44aa Fix markdown table and further improve README.md
  • f104e98 Add Clone to ParseBigDecimalError
  • Additional commits viewable in compare view

Updates chrono from 0.4.34 to 0.4.35

Release notes

Sourced from chrono's releases.

v0.4.35

Most of our efforts have shifted to improving the API for a 0.5 release, for which cleanups and refactorings are landing on the 0.4.x branch.

The most significant changes in this release are two sets of deprecations.

  • We deprecated all timestamp-related methods on NaiveDateTime. The reason is that a timestamp is defined to be in UTC. The NaiveDateTime type doesn't know the offset from UTC, so it was technically wrong to have these methods. The alternative is to use the similar methods on the DateTime<Utc> type, or from the TimeZone trait.

    Converting from NaiveDateTime to DateTime<Utc> is simple with .and_utc(), and in the other direction with .naive_utc().

  • The panicking constructors of TimeDelta (the new name of the Duration type) are deprecated. This was the last part of chrono that defaulted to panicking on error, dating from before rust 1.0.

  • A nice change is that NaiveDate now includes a niche. So now Option<NaiveDate>, Option<NaiveDateTime> and Option<DateTime<Tz>> are the same size as their base types.

  • format::Numeric and format::Fixed are marked as non_exhaustive. This will allow us to improve our formatting and parsing support, and we have reason to believe this breaking change will have little to no impact on users.

Additions

  • Add DateTime::{from_timestamp_micros, from_timestamp_nanos} (#1234)
  • Add getters to Parsed (#1465)

Deprecations

  • Deprecate timestamp methods on NaiveDateTime (#1473)
  • Deprecate panicking constructors of TimeDelta (#1450)

Changes/fixes

  • Use NonZeroI32 inside NaiveDate (#1207)
  • Mark format::Numeric and format::Fixed as non_exhaustive (#1430)
  • Parsed fixes to error values (#1439)
  • Use overflowing_naive_local in DateTime::checked_add* (#1333)
  • Do complete range checks in Parsed::set_* (#1465)

Documentation

  • Rustfmt doctests (#1452)
  • Improve docs for crate features (#1455, thanks @​edmorley)
  • Add more documentation and examples to Parsed (#1439)

Internal

  • Refactor internals module (#1428, #1429, #1431, #1432, #1433, #1438)
  • CI: test cross-compiling to x86_64-unknown-illumos instead of Solaris (#1437)
  • CI: lint Windows target, fix clippy warning (#1441)
  • CI: only run cargo hack check on Linux (#1442)
  • Update windows-bindgen to 0.54 (#1462, #1483)
  • Simplify error value of parse_internal (#1459)
  • Simplify SerdeError (#1458)
  • Simplify NaiveDate::from_isoywd a bit (#1464)

... (truncated)

Commits
  • 9fdb596 Prepare 0.4.35
  • 9e667b6 Deprecate panicking TimeDelta constructors
  • 2c1b0be Tests: replace TimeDelta::milliseconds with try_milliseconds
  • 2bf3302 Tests: replace TimeDelta::seconds with try_seconds
  • f93508f Tests: replace TimeDelta::minutes with try_minutes
  • 9fc931a Tests: replace TimeDelta::hours with try_hours
  • 9f23c08 Tests: replace TimeDelta::days with try_days
  • e8f9b5e Tests: replace TimeDelta::weeks with try_weeks
  • 51a1aa2 Tests: use Days type when it is more appropriate than TimeDelta
  • 4251bd1 Replace TimeDelta::seconds with try_seconds
  • Additional commits viewable in compare view

Updates fixedbitset from 0.5.0 to 0.5.1

Release notes

Sourced from fixedbitset's releases.

v0.5.1

  • #102: Added contains_unchecked, insert_unchecked, put_unchecked, set_unchecked, toggle_unchecked, removed_unchecked, copy_bit_unchecked unsafe variants of the safe functions, by @​james7132
  • #103: Added into_ones which returns a owned iterator over the one values from a bitset, by @​james7132.
  • #104: Implemented DoubleEndedIterator for Union, Intersection, Difference, and SymmetricDifference , by @​james7132.
Commits
  • eb70fdf v0.5.1 (#105)
  • 1be930c Implement DoubleEndedIterator for Union, Intersection, Difference, and Symmet...
  • ddf0dd8 Add an owned iterator: IntoOnes (#103)
  • c6f976a Unsafe *_unchecked variants for various point functions (#102)
  • See full diff in compare view

Updates int-enum from 1.0.1 to 1.1.1

Release notes

Sourced from int-enum's releases.

1.1.1

What's Changed

Full Changelog: Juici/int-enum-rs@1.0.1...1.1.1

Commits

Updates strum from 0.26.1 to 0.26.2

Release notes

Sourced from strum's releases.

v0.26.2

What's Changed

New Contributors

Full Changelog: Peternator7/strum@v0.26.1...v0.26.2

Changelog

Sourced from strum's changelog.

0.26.2

  • #337: Fix missing generic impls for EnumTryAs
  • #334: Support prefix in AsRefStr. Technically a breaking change, but prefix was just added in 0.26.0 so it's a newer feature and it makes the feature more consisent in general.
Commits
  • 8b781ba Update changelog and versions.
  • 8daf564 Hide EnumTable because I think it should be deprecated in the next release (#...
  • 1abb289 Fix docs that say array instead of slice (#343)
  • 07ba252 Add dependabot (#333)
  • 63ee822 feat(as_ref_str): enable prefix attribute for AsRefStr derive (#334)
  • 9b18468 Fix missing generics on impl for EnumTryAs (#337)
  • 2056939 Fix AsRefStr docs to specify lifetime constraints (#330)
  • See full diff in compare view

Updates strum_macros from 0.26.1 to 0.26.2

Release notes

Sourced from strum_macros's releases.

v0.26.2

What's Changed

New Contributors

Full Changelog: Peternator7/strum@v0.26.1...v0.26.2

Changelog

Sourced from strum_macros's changelog.

0.26.2

  • #337: Fix missing generic impls for EnumTryAs
  • #334: Support prefix in AsRefStr. Technically a breaking change, but prefix was just added in 0.26.0 so it's a newer feature and it makes the feature more consisent in general.
Commits
  • 8b781ba Update changelog and versions.
  • 8daf564 Hide EnumTable because I think it should be deprecated in the next release (#...
  • 1abb289 Fix docs that say array instead of slice (#343)
  • 07ba252 Add dependabot (#333)
  • 63ee822 feat(as_ref_str): enable prefix attribute for AsRefStr derive (#334)
  • 9b18468 Fix missing generics on impl for EnumTryAs (#337)
  • 2056939 Fix AsRefStr docs to specify lifetime constraints (#330)
  • See full diff in compare view

Updates thiserror from 1.0.57 to 1.0.58

Release notes

Sourced from thiserror's releases.

1.0.58

  • Make backtrace support available when using -Dwarnings (#292)
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 all group in /local-registry with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [anyhow](https://github.com/dtolnay/anyhow) | `1.0.80` | `1.0.81` |
| [bigdecimal](https://github.com/akubera/bigdecimal-rs) | `0.4.2` | `0.4.3` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.34` | `0.4.35` |
| [fixedbitset](https://github.com/petgraph/fixedbitset) | `0.5.0` | `0.5.1` |
| [int-enum](https://github.com/Juici/int-enum-rs) | `1.0.1` | `1.1.1` |
| [strum](https://github.com/Peternator7/strum) | `0.26.1` | `0.26.2` |
| [strum_macros](https://github.com/Peternator7/strum) | `0.26.1` | `0.26.2` |
| [thiserror](https://github.com/dtolnay/thiserror) | `1.0.57` | `1.0.58` |


Updates `anyhow` from 1.0.80 to 1.0.81
- [Release notes](https://github.com/dtolnay/anyhow/releases)
- [Commits](dtolnay/anyhow@1.0.80...1.0.81)

Updates `bigdecimal` from 0.4.2 to 0.4.3
- [Release notes](https://github.com/akubera/bigdecimal-rs/releases)
- [Commits](akubera/bigdecimal-rs@v0.4.2...v0.4.3)

Updates `chrono` from 0.4.34 to 0.4.35
- [Release notes](https://github.com/chronotope/chrono/releases)
- [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md)
- [Commits](chronotope/chrono@v0.4.34...v0.4.35)

Updates `fixedbitset` from 0.5.0 to 0.5.1
- [Release notes](https://github.com/petgraph/fixedbitset/releases)
- [Commits](petgraph/fixedbitset@0.5.0...0.5.1)

Updates `int-enum` from 1.0.1 to 1.1.1
- [Release notes](https://github.com/Juici/int-enum-rs/releases)
- [Commits](Juici/int-enum-rs@1.0.1...1.1.1)

Updates `strum` from 0.26.1 to 0.26.2
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.26.1...v0.26.2)

Updates `strum_macros` from 0.26.1 to 0.26.2
- [Release notes](https://github.com/Peternator7/strum/releases)
- [Changelog](https://github.com/Peternator7/strum/blob/master/CHANGELOG.md)
- [Commits](Peternator7/strum@v0.26.1...v0.26.2)

Updates `thiserror` from 1.0.57 to 1.0.58
- [Release notes](https://github.com/dtolnay/thiserror/releases)
- [Commits](dtolnay/thiserror@1.0.57...1.0.58)

---
updated-dependencies:
- dependency-name: anyhow
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: bigdecimal
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: fixedbitset
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: int-enum
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: all
- dependency-name: strum
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: strum_macros
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
- dependency-name: thiserror
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: all
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot requested a review from a team as a code owner March 18, 2024 19:10
@dependabot dependabot bot added the x:rep/tiny Tiny amount of reputation label Mar 18, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Mar 25, 2024

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

@dependabot dependabot bot closed this Mar 25, 2024
@dependabot dependabot bot deleted the dependabot/cargo/local-registry/all-9e9e5fa444 branch March 25, 2024 19:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
x:rep/tiny Tiny amount of reputation
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants