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 dev-dependencies group with 5 updates #113

Closed
wants to merge 4 commits into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 1, 2024

Updates the requirements on http, http-body, hyper, image and sdl2 to permit the latest version.
Updates http to 0.2.12

Release notes

Sourced from http's releases.

v0.2.12

What's Changed

  • Add methods to allow trying to allocate in the HeaderMap, returning an error if oversize instead of panicking.
  • Fix HeaderName::from_lowercase that could allow NUL bytes in some cases.
Changelog

Sourced from http's changelog.

0.2.12 (March 4, 2024)

  • Add methods to allow trying to allocate in the HeaderMap, returning an error if oversize instead of panicking.
  • Fix HeaderName::from_lowercase that could allow NUL bytes in some cases.

0.2.11 (November 13, 2023)

  • Fix MIRI error in header::Iter.

0.2.10 (November 10, 2023)

  • Fix parsing of Authority to handle square brackets in incorrect order.
  • Fix HeaderMap::with_capacity() to handle arithmetic overflow.

0.2.9 (February 17, 2023)

  • Add HeaderName constants for cache-status and cdn-cache-control.
  • Implement Hash for PathAndQuery.
  • Re-export HeaderName at crate root.

0.2.8 (June 6, 2022)

  • Fix internal usage of uninitialized memory to use MaybeUninit inside HeaderName.

0.2.7 (April 28, 2022)

  • MSRV bumped to 1.49.
  • Add extend() method to Extensions.
  • Add From<Authority> and From<PathAndQuery> impls for Uri.
  • Make HeaderName::from_static a const fn.

0.2.6 (December 30, 2021)

  • Upgrade internal itoa dependency to 1.0.

0.2.5 (September 21, 2021)

  • Add is_empty() and len() methods to Extensions.
  • Add version_ref() method to request::Builder.
  • Implement TryFrom<Vec<u8>> and TryFrom<String> for Authority, Uri, PathAndQuery, and HeaderName.
  • Make HeaderValue::from_static a const fn.

0.2.4 (April 4, 2021)

  • Fix Uri parsing to allow {, ", and } in paths.

0.2.3 (January 7, 2021)

  • Upgrade internal (private) bytes dependency to 1.0.

... (truncated)

Commits

Updates http-body to 0.4.6

Changelog

Sourced from http-body's changelog.

0.4.6 (December 8, 2023)

  • Add Collect combinator (backported from http-body-util).

0.4.5 (May 20, 2022)

  • Add String impl for Body.
  • Add Limited body implementation.

0.4.4 (October 22, 2021)

  • Add UnsyncBoxBody and Body::boxed_unsync.

0.4.3 (August 8, 2021)

  • Implement Default for BoxBody.

0.4.2 (May 8, 2021)

  • Correctly override Body::size_hint and Body::is_end_stream for Empty.
  • Add Full which is a body that consists of a single chunk.

0.4.1 (March 18, 2021)

  • Add combinators to Body:
    • map_data: Change the Data chunks produced by the body.
    • map_err: Change the Errors produced by the body.
    • boxed: Convert the Body into a boxed trait object.
  • Add Empty.

0.4.0 (December 23, 2020)

  • Update bytes to v1.0.

0.3.1 (December 13, 2019)

  • Implement Body for http::Request<impl Body> and http::Response<impl Body>.

0.3.0 (December 4, 2019)

  • Rename next combinator to data.

0.2.0 (December 3, 2019)

  • Update http to v0.2.
  • Update bytes to v0.5.

0.2.0-alpha.3 (October 1, 2019)

  • Fix Body to be object-safe.

... (truncated)

Commits

Updates hyper to 0.14.28

Release notes

Sourced from hyper's releases.

v0.14.28

Features

  • body: deprecate to_bytes() and aggregate() (#3466) (7f382ad6)
  • client: add conn::http1::Connection::without_shutdown() method (#3431) (ad504977)
  • server: add Builder::local_addr() (#3278) (d342c2c7)

Bug Fixes

  • client:
    • panic when pool idle timeout set to zero (#3365) (34d38008)
    • divide by zero error when DNS returns no addrs (#3355) (41eaf204)
    • Do not strip path and scheme components from URIs for HTTP/2 Extended CONNEC (45aa6249)
    • early respond from server shouldn't propagate reset error (#3274) (aac6760e, closes #2872)
  • http1:

New Contributors

Changelog

Sourced from hyper's changelog.

v0.14.28 (2023-12-18)

Bug Fixes

  • client:
    • panic when pool idle timeout set to zero (#3365) (34d38008)
    • divide by zero error when DNS returns no addrs (#3355) (41eaf204)
    • Do not strip path and scheme components from URIs for HTTP/2 Extended CONNEC (45aa6249)
    • early respond from server shouldn't propagate reset error (#3274) (aac6760e, closes #2872)
  • http1:

Features

  • body: deprecate to_bytes() and aggregate() (#3466) (7f382ad6)
  • client: add conn::http1::Connection::without_shutdown() method (#3431) (ad504977)
  • server: add Builder::local_addr() (#3278) (d342c2c7)

v0.14.27 (2023-06-26)

Bug Fixes

  • http1:

Features

  • client: include connection info in Client::send_request errors (#2749)

v0.14.26 (2023-04-13)

Features

  • http2: add max_pending_accept_reset_streams configuration option (#3201) (a6f7571a)

v0.14.25 (2023-03-10)

Features

... (truncated)

Commits
  • 98a7ab0 v0.14.28
  • 344a878 fix(http1): add internal limit for chunked extensions (#3495)
  • 5eca028 fix(http1): reject chunked headers missing a digit (#3494)
  • 7f382ad feat(body): deprecate to_bytes() and aggregate() (#3466)
  • ad50497 feat(client): add conn::http1::Connection::without_shutdown() method (#3431)
  • 4899703 chore(ci): cache rust dependency
  • e2c223a chore(ffi): revamp gen_header using cargo-expand
  • 45fef3b chore(ci): check C header file with stable rust
  • 5bddd5e chore(ci): use stable rust for building C API
  • 440f23a chore(ci): replace actions-rs with run and use taiki-e/install-action or taik...
  • Additional commits viewable in compare view

Updates image to 0.24.9

Changelog

Sourced from image's changelog.

Version 0.24.9

Structural changes:

  • Relicense to MIT OR Apache-2.0
  • Increase MSRV 1.63.0

New features:

  • Support limits in PNG animation decoding.
  • Added offsets to SubImage to compensate for the now-deprecated bounds call from GenericImageView.

Bug fixes:

  • Correct limit tests for TIFF.
  • Avoid overflow in gif::Decoder::buffer_size.
  • Return error instead of using asssertion for Avif decoder unsupported or invalid bit depth.

Version 0.24.8

New features:

  • Added pure-Rust lossless WebP encoding.
  • Added DynamicImage::new method.
  • Added PngDecoder::gamma_value method.
  • Added ImageFormat::{reading_enabled, writing_enabled, all}.
  • TGA encoder now supports RLE encoding.
  • Add rayon parallel iterators behind an optional rayon feature.
  • Support CMYK TIFF images.
  • Implement From<DynamicImage> for all image types.

Bug fixes:

  • Fix decoding pngs with invalid text chunks.
  • Handle non-fatal error dav1d::Error::Again.
  • Do not round floats in interpolate.
  • PNM decoder now scales samples according to specified maximum.
  • Fix wrong implementation of unsharpen filter.
  • Fix GifDecoder::with_limits to raise an error when limits are exceeded.

Version 0.24.7

New features:

  • Added {ImageBuffer, DynamicImage}::write_with_encoder to simplify writing images with custom settings.
  • Expose ICC profiles stored in tiff and webp files.
  • Added option to set the background color of animated webp images.
  • New methods for sampling and interpolation of GenericImageViews

Bug fixes:

  • Fix panic on empty dxt.
  • Fix several panics in webp decoder.
  • Allow unknown chunks at the end of webp files.

... (truncated)

Commits
  • 2b513ae Release 0.24.9 (#2152)
  • 0fbf449 Added offsets to SubImage to compensate for the now-deprecated bounds call fr...
  • 495fc75 Fix new compiler warnings (#2151)
  • 00563e0 Return error instead of using asssertion for Avif decoder unsupported or inva...
  • 5d73d50 Update MSRV and fix clippy issues (#2133)
  • d828548 Improve panic messages when providing invalid buffer sizes to ImageEncoders...
  • 445970c Perform MSRV check via -Zminimal-versions (#2121)
  • e2c835f chore: Bump baptiste0928/cargo-install GitHub Action from v1 to v2
  • 887aa43 chore: Bump actions/checkout from v2 to v4
  • 25489be Merge pull request #2117 from torokati44/gif-0.13
  • Additional commits viewable in compare view

Updates sdl2 to 0.35.2

Changelog

Sourced from sdl2's changelog.

v0.35.2

[PR #1173](Rust-SDL2/rust-sdl2#1173) Fix segfault when using timer callbacks

[PR #1183](Rust-SDL2/rust-sdl2#1183) WinRT support for raw-window-handle

[PR #1182](Rust-SDL2/rust-sdl2#1182) Updated raw-window-handle to 0.4

[PR #1189](Rust-SDL2/rust-sdl2#1189) Added AudioQueue::queue_audio and deprecated AudioQueue::queue

[PR #1164](Rust-SDL2/rust-sdl2#1164) Added raw-window-handle support for Android

[PR #1165](Rust-SDL2/rust-sdl2#1165) Added binding for SDL_GetDisplayOrientation and SDL_DISPLAYEVENT

v0.35.0

  • BREAKING CHANGE Update sdl2-sys/sdl_bindings.rs to use enums instead of consts. If you were using sdl2-sys's enum variants directly in your project, you may be affected. If you only used sdl2 calls, there should not be any problems.

  • BREAKING CHANGE SDL 2.0.14 or higher is now recommended due to the new binding being added for SDL_OpenURL. If you get linking errors, upgrade your SDL2 libraries, or swap to using the bundled feature.

[PR #1138](Rust-SDL2/rust-sdl2#1138) Added binding for SDL_OpenURL

[PR #1150](Rust-SDL2/rust-sdl2#1150) Do not download SDL2 sources when using bundled feature

[PR #1112](Rust-SDL2/rust-sdl2#1112) Add wrapper functions for SDL_RenderSetIntegerScale and SDL_RenderGetIntegerScale

[PR #1156](Rust-SDL2/rust-sdl2#1156) Maybe breaking change: new variants to enum GameController, and prevent panic with unrecognized buttons.

[PR #1153](Rust-SDL2/rust-sdl2#1153) SDL_GL_GetCurrentContext and SDL_RenderFlush added.

[PR #1131](Rust-SDL2/rust-sdl2#1131) Added Sensor API.

v0.34.5

[PR #1100](Rust-SDL2/rust-sdl2#1100) Added binding for SDL_GetDisplayUsableBounds

[PR #1102](Rust-SDL2/rust-sdl2#1102) Correctly se linux and macSO built libraries when using bundled without static-link.

[PR #1098](Rust-SDL2/rust-sdl2#1098) Fix potential heap corruption when using AudioCVT::convert

[PR #1088](Rust-SDL2/rust-sdl2#1088) Rollback of PR #1081: Broke dynamic linking on Windows

Various fixes to CI.

v0.34.4

[PR #1086](Rust-SDL2/rust-sdl2#1086) Update bundled to use SDL2 2.0.14

[PR #1033](Rust-SDL2/rust-sdl2#1033) Changed signature of TimerSubsystem::ticks to accept &self.

... (truncated)

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 added the dependencies Pull requests that update a dependency file label Apr 1, 2024
@ladatz
Copy link
Contributor

ladatz commented Apr 12, 2024

@dependabot ignore hyper major version

Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 12, 2024

OK, I won't notify you about version 0.x.x of hyper again, unless you unignore it.

Updates the requirements on [http](https://github.com/hyperium/http), [http-body](https://github.com/hyperium/http-body), [hyper](https://github.com/hyperium/hyper), [image](https://github.com/image-rs/image) and [sdl2](https://github.com/Rust-SDL2/rust-sdl2) to permit the latest version.

Updates `http` to 0.2.12
- [Release notes](https://github.com/hyperium/http/releases)
- [Changelog](https://github.com/hyperium/http/blob/v0.2.12/CHANGELOG.md)
- [Commits](hyperium/http@v0.2.9...v0.2.12)

Updates `http-body` to 0.4.6
- [Changelog](https://github.com/hyperium/http-body/blob/v0.4.6/CHANGELOG.md)
- [Commits](hyperium/http-body@v0.4.5...v0.4.6)

Updates `hyper` to 0.14.28
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/v0.14.28/CHANGELOG.md)
- [Commits](hyperium/hyper@v0.14.27...v0.14.28)

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

Updates `sdl2` to 0.35.2
- [Changelog](https://github.com/Rust-SDL2/rust-sdl2/blob/master/changelog.md)
- [Commits](Rust-SDL2/rust-sdl2@0.35.2...0.35.2)

---
updated-dependencies:
- dependency-name: http
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: http-body
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: hyper
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: image
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: sdl2
  dependency-type: direct:production
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/cargo/dev-dependencies-d58e2606f0 branch from 7c199fe to acae986 Compare April 12, 2024 19:31
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 22, 2024

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

@dependabot dependabot bot closed this Apr 22, 2024
@dependabot dependabot bot deleted the dependabot/cargo/dev-dependencies-d58e2606f0 branch April 22, 2024 04:59
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
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant