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 across 1 directory with 8 updates #134

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Jul 15, 2024

Updates the requirements on http, http-body, hyper, prost, prost-types, sdl2, tonic and tonic-build 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.30

Release notes

Sourced from hyper's releases.

v0.14.30

Bug Fixes

  • http1: reject final chunked if missing 0 (4a51b2af)
Changelog

Sourced from hyper's changelog.

v0.14.30 (2024-07-09)

Bug Fixes

  • http1: reject final chunked if missing 0 (4a51b2af)

v0.14.29 (2024-06-03)

Bug Fixes

  • http1: start header read timeout immediately (#3305) (b5c2592f)

Features

  • http2: add config for max_local_error_reset_streams in server (#3528) (dedcb674)

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:

... (truncated)

Commits

Updates prost to 0.12.6

Commits

Updates prost-types to 0.12.6

Commits

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

Updates tonic to 0.11.0

Changelog

Sourced from tonic's changelog.

0.11.0 (2024-02-08)

BREAKING CHANGES:

  • Removed NamedService from the transport module, please import it via tonic::server::NamedService.
  • MSRV bumped to 1.70.

Features

  • Added zstd compression support.
  • Added connection timeout for connecto_with_connector_lazy.
  • Upgrade rustls to v0.22
  • Feature gate server implementation for tonic-reflection.

0.10.2 (2023-09-28)

Bug Fixes

  • web: Client decoding incomplete buffer bug (#1540) (83e363a)

0.10.1 (2023-09-21)

Bug Fixes

0.10.0 (2023-09-08)

Bug Fixes

Features

  • build: Add optional default unimplemented stubs (#1344) (aff1daf)
  • core: amortize many ready messages into fewer, larger buffers (#1423) (76eedc1)
  • tonic-types: add ability to extract rich error details from google.rpc.Status (#1430) (5fd635a)
  • transport: Add Router::into_router (#1442) (ea06a1b)
  • transport: Expose TcpConnectInfo fields (#1449) (74b079c)
  • web: Add GrpcWebClientService (#1472) (dc29c17)

... (truncated)

Commits

Updates tonic-build to 0.11.0

Changelog

Sourced from tonic-build's changelog.

0.11.0 (2024-02-08)

BREAKING CHANGES:

  • Removed NamedService from the transport module, please import it via tonic::server::NamedService.
  • MSRV bumped to 1.70.

Features

  • Added zstd compression support.
  • Added connection timeout for connecto_with_connector_lazy.
  • Upgrade rustls to v0.22
  • Feature gate server implementation for tonic-reflection.

0.10.2 (2023-09-28)

Bug Fixes

  • web: Client decoding incomplete buffer bug (#1540) (83e363a)

0.10.1 (2023-09-21)

Bug Fixes

0.10.0 (2023-09-08)

Bug Fixes

Features

  • build: Add optional default unimplemented stubs (#1344) (aff1daf)
  • core: amortize many ready messages into fewer, larger buffers (#1423) (76eedc1)
  • tonic-types: add ability to extract rich error details from google.rpc.Status (#1430) (5fd635a)
  • transport: Add Router::into_router (#1442) (ea06a1b)
  • transport: Expose TcpConnectInfo fields (#1449) (74b079c)
  • web: Add GrpcWebClientService (#1472) (dc29c17)

... (truncated)

Commits

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
hyper [< 1, > 0.14.27]

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

Updates the requirements on [http](https://github.com/hyperium/http), [http-body](https://github.com/hyperium/http-body), [hyper](https://github.com/hyperium/hyper), [prost](https://github.com/tokio-rs/prost), [prost-types](https://github.com/tokio-rs/prost), [sdl2](https://github.com/Rust-SDL2/rust-sdl2), [tonic](https://github.com/hyperium/tonic) and [tonic-build](https://github.com/hyperium/tonic) 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
- [Release notes](https://github.com/hyperium/http-body/releases)
- [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.30
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/v0.14.30/CHANGELOG.md)
- [Commits](hyperium/hyper@v0.14.27...v0.14.30)

Updates `prost` to 0.12.6
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.12.0...v0.12.6)

Updates `prost-types` to 0.12.6
- [Release notes](https://github.com/tokio-rs/prost/releases)
- [Changelog](https://github.com/tokio-rs/prost/blob/master/CHANGELOG.md)
- [Commits](tokio-rs/prost@v0.12.0...v0.12.6)

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)

Updates `tonic` to 0.11.0
- [Release notes](https://github.com/hyperium/tonic/releases)
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.11.0...v0.11.0)

Updates `tonic-build` to 0.11.0
- [Release notes](https://github.com/hyperium/tonic/releases)
- [Changelog](https://github.com/hyperium/tonic/blob/master/CHANGELOG.md)
- [Commits](hyperium/tonic@v0.11.0...v0.11.0)

---
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: prost
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: prost-types
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: sdl2
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: tonic
  dependency-type: direct:production
  dependency-group: dev-dependencies
- dependency-name: tonic-build
  dependency-type: direct:production
  dependency-group: dev-dependencies
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added the dependencies Pull requests that update a dependency file label Jul 15, 2024
@fprezado fprezado self-assigned this Oct 7, 2024
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