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 cargo group with 7 updates #2258

Merged
merged 3 commits into from
Mar 11, 2024
Merged

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the cargo group with 7 updates:

Package From To
clap 4.5.1 4.5.2
image 0.24.9 0.25.0
winit 0.29.13 0.29.14
chrono 0.4.34 0.4.35
octocrab 0.34.2 0.35.0
env_logger 0.11.2 0.11.3
reqwest 0.11.24 0.11.25

Updates clap from 4.5.1 to 4.5.2

Release notes

Sourced from clap's releases.

v4.5.2

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning
Changelog

Sourced from clap's changelog.

[4.5.2] - 2024-03-06

Fixes

  • (macros) Silence a warning
Commits
  • f65d421 chore: Release
  • 886b272 docs: Update changelog
  • 3ba4297 Merge pull request #5386 from amaanq/static-var-name
  • 2aea950 fix: Use SCREAMING_SNAKE_CASE for static variable authors
  • 690f555 Merge pull request #5382 from clap-rs/renovate/pre-commit-action-3.x
  • a2aa644 chore(deps): update compatible (dev) (#5381)
  • c233de5 chore(deps): update pre-commit/action action to v3.0.1
  • d0028d7 Merge pull request #5371 from BenWiederhake/dev-fix-link-command-trailing_var...
  • 0076cac fix(builder): Don't doc-link to undocumented item
  • See full diff in compare view

Updates image from 0.24.9 to 0.25.0

Changelog

Sourced from image's changelog.

Version 0.25.0

Breaking changes:

  • Added BufRead + Seek bound on many decoders.
  • Use ExtendedColorType instead of ColorType when encoding.
  • Removed ImageOutputFormat, GenericImageView::bounds, and several other deprecated items.
  • Removed incremental decoding support and changed ImageDecoder so the trait is object safe.
  • Pixel types are now repr(transparent) rather than repr(C).
  • Made color_quant dependency optional.
  • Renamed some feature flags.

Structural changes:

  • Increased MSRV to 1.67.1

Codec changes:

  • Switched to image-webp for WebP encoding.
  • Switched to zune-jpeg for JPEG decoding.
  • Made the HDR decoder produce f32 images.
Commits

Updates winit from 0.29.13 to 0.29.14

Release notes

Sourced from winit's releases.

Winit version 0.29.14

  • On X11/Wayland, fix text and text_with_all_modifiers not being None during compose.
  • On Wayland, don't reapply cursor grab when unchanged.
  • On X11, fix a bug where some mouse events would be unexpectedly filtered out.
Changelog

Sourced from winit's changelog.

0.29.14

  • On X11/Wayland, fix text and text_with_all_modifiers not being None during compose.
  • On Wayland, don't reapply cursor grab when unchanged.
  • On X11, fix a bug where some mouse events would be unexpectedly filtered out.
Commits
  • aaaf089 Winit version 0.29.14
  • ba4660d fix(xkb): text not being None when composing
  • 090800e Bump x11-dl to v2.19.1
  • 70fc8f6 chore(wayland): don't reapply same cursor grab
  • 7601a15 bugfix(x11): fix incorrect delta filtering
  • See full diff 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 octocrab from 0.34.2 to 0.35.0

Release notes

Sourced from octocrab's releases.

v0.35.0

Added

  • add repository list language support (#595)

Other

  • Added test for actions().create_workflow_dispatch() (#603)
  • added "Create a new Git commit object" (#600)
  • Added check-suites endpoints (#596)
  • Adding org secrets tests (#599)

v0.34.3

Other

  • Add delete_ref in RepoHandler (#573)
  • Adding tests to orgs().secrets().create_or_update_secret() (#590)
Changelog

Sourced from octocrab's changelog.

0.35.0 - 2024-03-10

Added

  • add repository list language support (#595)

Other

  • Added test for actions().create_workflow_dispatch() (#603)
  • added "Create a new Git commit object" (#600)
  • Added check-suites endpoints (#596)
  • Adding org secrets tests (#599)

0.34.3 - 2024-03-05

Other

  • Add delete_ref in RepoHandler (#573)
  • Adding tests to orgs().secrets().create_or_update_secret() (#590)
Commits

Updates env_logger from 0.11.2 to 0.11.3

Release notes

Sourced from env_logger's releases.

v0.11.3

[0.11.3] - 2024-03-05

Features

  • Experimental support for key-value logging behind unstable-kv
Changelog

Sourced from env_logger's changelog.

[0.11.3] - 2024-03-05

Features

  • Experimental support for key-value logging behind unstable-kv
Commits
  • 98ce803 chore: Release
  • 7a16130 docs: Update changelog
  • e55af6f Merge pull request #137 from tmccombs/structured
  • f6e2d45 feat(kv): Use now-stable kv feature of log crate
  • 9f4a33a feat(kv): Add styling for key in default format
  • 9d26ad5 feat: Add support for Key-Value data in log records
  • 8962096 Merge pull request #314 from rust-cli/renovate/pre-commit-action-3.x
  • 4127228 chore(deps): update pre-commit/action action to v3.0.1
  • See full diff in compare view

Updates reqwest from 0.11.24 to 0.11.25

Release notes

Sourced from reqwest's releases.

v0.11.25

What's Changed

  • Fix Certificate::from_pem_bundle() parsing.
  • Fix Apple linker errors from detecting system proxies.

New Contributors

Full Changelog: seanmonstar/reqwest@v0.11.24...v0.11.25

Changelog

Sourced from reqwest's changelog.

v0.11.25

  • Fix Certificate::from_pem_bundle() parsing.
  • Fix Apple linker errors from detecting system proxies.
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 requested a review from hannobraun as a code owner March 11, 2024 12:29
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Mar 11, 2024
dependabot bot and others added 3 commits March 11, 2024 14:04
Bumps the cargo group with 7 updates:

| Package | From | To |
| --- | --- | --- |
| [clap](https://github.com/clap-rs/clap) | `4.5.1` | `4.5.2` |
| [image](https://github.com/image-rs/image) | `0.24.9` | `0.25.0` |
| [winit](https://github.com/rust-windowing/winit) | `0.29.13` | `0.29.14` |
| [chrono](https://github.com/chronotope/chrono) | `0.4.34` | `0.4.35` |
| [octocrab](https://github.com/XAMPPRocky/octocrab) | `0.34.2` | `0.35.0` |
| [env_logger](https://github.com/rust-cli/env_logger) | `0.11.2` | `0.11.3` |
| [reqwest](https://github.com/seanmonstar/reqwest) | `0.11.24` | `0.11.25` |


Updates `clap` from 4.5.1 to 4.5.2
- [Release notes](https://github.com/clap-rs/clap/releases)
- [Changelog](https://github.com/clap-rs/clap/blob/master/CHANGELOG.md)
- [Commits](clap-rs/clap@clap_complete-v4.5.1...v4.5.2)

Updates `image` from 0.24.9 to 0.25.0
- [Changelog](https://github.com/image-rs/image/blob/main/CHANGES.md)
- [Commits](image-rs/image@v0.24.9...v0.25.0)

Updates `winit` from 0.29.13 to 0.29.14
- [Release notes](https://github.com/rust-windowing/winit/releases)
- [Changelog](https://github.com/rust-windowing/winit/blob/master/CHANGELOG.md)
- [Commits](rust-windowing/winit@v0.29.13...v0.29.14)

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 `octocrab` from 0.34.2 to 0.35.0
- [Release notes](https://github.com/XAMPPRocky/octocrab/releases)
- [Changelog](https://github.com/XAMPPRocky/octocrab/blob/main/CHANGELOG.md)
- [Commits](XAMPPRocky/octocrab@v0.34.2...v0.35.0)

Updates `env_logger` from 0.11.2 to 0.11.3
- [Release notes](https://github.com/rust-cli/env_logger/releases)
- [Changelog](https://github.com/rust-cli/env_logger/blob/main/CHANGELOG.md)
- [Commits](rust-cli/env_logger@v0.11.2...v0.11.3)

Updates `reqwest` from 0.11.24 to 0.11.25
- [Release notes](https://github.com/seanmonstar/reqwest/releases)
- [Changelog](https://github.com/seanmonstar/reqwest/blob/master/CHANGELOG.md)
- [Commits](seanmonstar/reqwest@v0.11.24...v0.11.25)

---
updated-dependencies:
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: image
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: winit
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: chrono
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: octocrab
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo
- dependency-name: env_logger
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
- dependency-name: reqwest
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo
...

Signed-off-by: dependabot[bot] <support@github.com>
wgpu takes care of this now, as of 0.19.3.
@hannobraun hannobraun force-pushed the dependabot/cargo/cargo-87d0935922 branch from 5d8acc4 to 3986b51 Compare March 11, 2024 13:12
@hannobraun hannobraun enabled auto-merge March 11, 2024 13:12
@hannobraun hannobraun merged commit cf83851 into main Mar 11, 2024
4 checks passed
@hannobraun hannobraun deleted the dependabot/cargo/cargo-87d0935922 branch March 11, 2024 13:17
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