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-deps group across 1 directory with 14 updates #3751

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

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

Bumps the cargo-deps group with 14 updates in the / directory:

Package From To
wasm-bindgen 0.2.93 0.2.95
futures 0.3.30 0.3.31
rustversion 1.0.17 1.0.18
web-sys 0.3.70 0.3.72
wasm-bindgen-futures 0.4.43 0.4.45
wasm-bindgen-test 0.3.43 0.3.45
trybuild 1.0.99 1.0.100
proc-macro2 1.0.86 1.0.88
once_cell 1.20.1 1.20.2
serde_json 1.0.128 1.0.129
clap 4.5.19 4.5.20
pulldown-cmark 0.12.1 0.12.2
uuid 1.10.0 1.11.0
hyper 1.4.1 1.5.0

Updates wasm-bindgen from 0.2.93 to 0.2.95

Changelog

Sourced from wasm-bindgen's changelog.

0.2.95

Released 2024-10-10

Added

  • Added support for implicit discriminants in enums. #4152

  • Added support for Self in complex type expressions in methods. #4155

Changed

  • String enums are no longer generate TypeScript types. #4174

Fixed

  • Fixed generated setters from WebIDL interface attributes binding to wrong JS method names. #4170

  • Fix string enums showing up in JS documentation and TypeScript bindings without corresponding types. #4175


0.2.94 (YANKED)

Released 2024-10-09

Added

  • Added support for the WebAssembly Tail Call proposal. #4111

  • Add bindings for RTCPeerConnection.setConfiguration(RTCConfiguration) method. #4105

  • Add bindings to RTCRtpTransceiverDirection.stopped. #4102

  • Added experimental support for Symbol.dispose via WASM_BINDGEN_EXPERIMENTAL_SYMBOL_DISPOSE. #4118

  • Added bindings for the draft WebRTC Encoded Transform spec. #4125

  • Added Debug implementation to JsError. #4136

... (truncated)

Commits

Updates futures from 0.3.30 to 0.3.31

Release notes

Sourced from futures's releases.

0.3.31

  • Fix use after free of task in FuturesUnordered when dropped future panics (#2886)
  • Fix soundness bug in task::waker_ref (#2830) This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • Fix parsing issue in select!/select_biased! (#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#2875)
  • Add future::AlwaysReady (#2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#2848)
Changelog

Sourced from futures's changelog.

0.3.31 - 2024-10-05

  • Fix use after free of task in FuturesUnordered when dropped future panics (#2886)
  • Fix soundness bug in task::waker_ref (#2830) This is a breaking change but allowed because it is soundness bug fix.
  • Fix bugs in AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • Fix parsing issue in select!/select_biased! (#2832) This is technically a breaking change as it will now reject a very odd undocumented syntax that was previously accidentally accepted.
  • Work around issue due to upstream Waker::will_wake change (#2865)
  • Add stream::Iter::{get_ref,get_mut,into_inner} (#2875)
  • Add future::AlwaysReady (#2825)
  • Relax trait bound on non-constructor methods of io::{BufReader,BufWriter} (#2848)
Commits
  • 1e05281 Release 0.3.31
  • 8a8b085 Fix clippy::uninit_vec warning
  • f3fb74d Document how BoxFutures / BoxStreams are often made (#2887)
  • f00e7af Fix use after free of task in FuturesUnordered when dropped future panics (#2...
  • 33c46b3 ci: Work around sanitizer issue on latest Linux kernel
  • 7bf5a72 Fix issues with AsyncBufRead::read_line and AsyncBufReadExt::lines (#2884)
  • 87afaf3 Use #[inline(always)] on clone_arc_raw (#2865)
  • 549b90b Add accessors for the inner of stream::Iter (#2875)
  • 07b004a Add missing symbols (#2883)
  • 86dc069 Various fixes too make the CI green (#2885)
  • Additional commits viewable in compare view

Updates rustversion from 1.0.17 to 1.0.18

Release notes

Sourced from rustversion's releases.

1.0.18

Commits
  • 04f1846 Release 1.0.18
  • 837b529 Merge pull request #54 from dtolnay/mirai
  • 79670bd Disregard MIRAI's rustc wrapper
  • 6346c4e Ignore used_underscore_items pedantic clippy lint in test
  • 9a3d23f Upload CI Cargo.lock for reproducing failures
  • c1314d0 Fill in ignore reasons in all #[ignore] attributes
  • 4d4666a Add a CI job on Windows
  • See full diff in compare view

Updates web-sys from 0.3.70 to 0.3.72

Commits

Updates wasm-bindgen-futures from 0.4.43 to 0.4.45

Commits

Updates wasm-bindgen-test from 0.3.43 to 0.3.45

Commits

Updates trybuild from 1.0.99 to 1.0.100

Release notes

Sourced from trybuild's releases.

1.0.100

  • Documentation improvements (#288, #289)
Commits
  • 909f751 Release 1.0.100
  • c4501dc Merge pull request #289 from dtolnay/rust-src
  • 539172f Recommend rust-toolchain.toml file
  • 3622a83 Merge pull request #288 from Veetaha/feat/add-rust-src-caveat-warning
  • 412e9b6 Warn about the rust-src component footgun
  • 2860c0f Ignore needless_lifetimes clippy lint
  • beb0c13 Upload CI Cargo.lock for reproducing failures
  • See full diff in compare view

Updates proc-macro2 from 1.0.86 to 1.0.88

Release notes

Sourced from proc-macro2's releases.

1.0.88

  • Return accurate line and column from Span::start and Span::end inside proc macros on nightly (#472)

1.0.87

  • Check valid punctuation character in Punct::new (#470)
Commits
  • 6b3395a Release 1.0.88
  • faee27e Merge pull request #472 from dtolnay/startend
  • 44f8ff2 Restore nightly behavior of Span::start and Span::end
  • 50b477d Release 1.0.87
  • f0b6802 Merge pull request #471 from dtolnay/punctnew
  • 98ea261 Check valid punctuation character in Punct::new
  • d60aaad Ignore missing_panics_doc pedantic clippy lint
  • 27061af Ignore needless_lifetimes clippy lint
  • 9c1d3eb Upload CI Cargo.lock for reproducing failures
  • See full diff in compare view

Updates once_cell from 1.20.1 to 1.20.2

Changelog

Sourced from once_cell's changelog.

1.20.2

  • Remove portable_atomic from Cargo.lock if it is not, in fact, used: #267 This is a work-around for this cargo bug: rust-lang/cargo#10801.
Commits

Updates serde_json from 1.0.128 to 1.0.129

Release notes

Sourced from serde_json's releases.

1.0.129

Commits
  • fe499e8 Release 1.0.129
  • 2679e30 Merge pull request #1199 from dtolnay/sort
  • c1a06c1 Add methods on Map and Value to destroy preserved ordering
  • faab2e8 Ignore needless_lifetimes clippy lint
  • ef9ca27 Resolve some needless_lifetimes clippy lints
  • 309cfc9 Resolve empty_line_after_doc_comments clippy lint in lexical
  • 1faf3a1 Replace bool::to_string with if
  • d254281 Replace str::to_string with to_owned
  • 3f4e30a Replace char::to_string with encode_utf8
  • 4921906 Replace integer to_string with itoa
  • Additional commits viewable in compare view

Updates clap from 4.5.19 to 4.5.20

Changelog

Sourced from clap's changelog.

[4.5.20] - 2024-10-08

Features

  • (unstable) Add CommandExt
Commits
  • 5034cab chore: Release
  • b5b690c docs: Update changelog
  • abba196 Merge pull request #5688 from epage/rename
  • 6ddd5d4 fix(complete)!: Rename ArgValueCompleter to ArgValueCandidates
  • 71c5e27 fix(complete)!: Rename CustomCompleter to ValueCandidates
  • See full diff in compare view

Updates pulldown-cmark from 0.12.1 to 0.12.2

Release notes

Sourced from pulldown-cmark's releases.

0.12.2

What's Changed

New Contributors

Full Changelog: pulldown-cmark/pulldown-cmark@v0.12.1...v0.12.2

Commits
  • c118e30 chore: bump version to 0.12.2 and update Cargo.lock
  • 808f5cd Merge pull request #969 from notriddle/notriddle/line-start-settext-trim
  • 74a4176 Avoid slow path when attrs are turned off
  • 9a0706a Merge pull request #971 from ollpu/enforce-fmt
  • e6e9d88 Don't format generated test files
  • b1509b7 Run cargo fmt
  • c35ab3c Enforce cargo fmt in CI
  • 8bca85e Merge pull request #967 from Atreyagaurav/master
  • aaeb25a Respect line starts when trimming header endings
  • 2cd94e6 Only change the Borrowed Variant on CowStr::to_static()
  • Additional commits viewable in compare view

Updates uuid from 1.10.0 to 1.11.0

Release notes

Sourced from uuid's releases.

1.11.0

What's Changed

New Contributors

Full Changelog: uuid-rs/uuid@1.10.0...1.11.0

Commits

Updates hyper from 1.4.1 to 1.5.0

Release notes

Sourced from hyper's releases.

v1.5.0

Features

  • client: Add HTTP/2 builder options header_table_size() and max_concurrent_streams() (4c84e8c1)
  • rt: add ReadBufCursor methods remaining() and put_slice() (#3700) (5a13041e)

Bug Fixes

  • http1:
  • http2: strip content-length header in response to CONNECT requests (#3748) (67a4a498)

New Contributors

Thanks!

Full Changelog: hyperium/hyper@v1.4.1...v1.5.0

Changelog

Sourced from hyper's changelog.

v1.5.0 (2024-10-15)

Bug Fixes

  • http1:
  • http2: strip content-length header in response to CONNECT requests (#3748) (67a4a498)

Features

  • client: Add HTTP/2 builder options header_table_size() and max_concurrent_streams() (4c84e8c1)
  • rt: add ReadBufCursor methods remaining() and put_slice() (#3700) (5a13041e)
Commits
  • c68d424 v1.5.0
  • 3900a23 perf(http1): improve parsing of sequentially partial messages
  • c86a6bc fix(http1): send 'connection: close' when connection is ending (#3725)
  • 4c4de90 docs(rt): Link to Read and Write traits from Upgraded doc comment (#3761)
  • bb51c81 docs(examples): add HTTP/2 server example (#3702)
  • e3e707e chore(typo): fix typo (#3713)
  • 945c142 chore(rt): delete the unnessary symbol in the comments (#3753)
  • e844616 chore(ci): use tokio-util 0.7.11 in msrv job (#3754)
  • 67a4a49 fix(http2): strip content-length header in response to CONNECT requests (#3748)
  • b990031 docs(changelog): typo Must not => Must now (#3745)
  • Additional commits viewable in compare view

Most Recent Ignore Conditions Applied to This Pull Request
Dependency Name Ignore Conditions
pulldown-cmark [>= 0.11.a, < 0.12]
pulldown-cmark [>= 0.10.a, < 0.11]

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 cargo-deps group with 14 updates in the / directory:

| Package | From | To |
| --- | --- | --- |
| [wasm-bindgen](https://github.com/rustwasm/wasm-bindgen) | `0.2.93` | `0.2.95` |
| [futures](https://github.com/rust-lang/futures-rs) | `0.3.30` | `0.3.31` |
| [rustversion](https://github.com/dtolnay/rustversion) | `1.0.17` | `1.0.18` |
| [web-sys](https://github.com/rustwasm/wasm-bindgen) | `0.3.70` | `0.3.72` |
| [wasm-bindgen-futures](https://github.com/rustwasm/wasm-bindgen) | `0.4.43` | `0.4.45` |
| [wasm-bindgen-test](https://github.com/rustwasm/wasm-bindgen) | `0.3.43` | `0.3.45` |
| [trybuild](https://github.com/dtolnay/trybuild) | `1.0.99` | `1.0.100` |
| [proc-macro2](https://github.com/dtolnay/proc-macro2) | `1.0.86` | `1.0.88` |
| [once_cell](https://github.com/matklad/once_cell) | `1.20.1` | `1.20.2` |
| [serde_json](https://github.com/serde-rs/json) | `1.0.128` | `1.0.129` |
| [clap](https://github.com/clap-rs/clap) | `4.5.19` | `4.5.20` |
| [pulldown-cmark](https://github.com/raphlinus/pulldown-cmark) | `0.12.1` | `0.12.2` |
| [uuid](https://github.com/uuid-rs/uuid) | `1.10.0` | `1.11.0` |
| [hyper](https://github.com/hyperium/hyper) | `1.4.1` | `1.5.0` |



Updates `wasm-bindgen` from 0.2.93 to 0.2.95
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](rustwasm/wasm-bindgen@0.2.93...0.2.95)

Updates `futures` from 0.3.30 to 0.3.31
- [Release notes](https://github.com/rust-lang/futures-rs/releases)
- [Changelog](https://github.com/rust-lang/futures-rs/blob/master/CHANGELOG.md)
- [Commits](rust-lang/futures-rs@0.3.30...0.3.31)

Updates `rustversion` from 1.0.17 to 1.0.18
- [Release notes](https://github.com/dtolnay/rustversion/releases)
- [Commits](dtolnay/rustversion@1.0.17...1.0.18)

Updates `web-sys` from 0.3.70 to 0.3.72
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

Updates `wasm-bindgen-futures` from 0.4.43 to 0.4.45
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

Updates `wasm-bindgen-test` from 0.3.43 to 0.3.45
- [Release notes](https://github.com/rustwasm/wasm-bindgen/releases)
- [Changelog](https://github.com/rustwasm/wasm-bindgen/blob/main/CHANGELOG.md)
- [Commits](https://github.com/rustwasm/wasm-bindgen/commits)

Updates `trybuild` from 1.0.99 to 1.0.100
- [Release notes](https://github.com/dtolnay/trybuild/releases)
- [Commits](dtolnay/trybuild@1.0.99...1.0.100)

Updates `proc-macro2` from 1.0.86 to 1.0.88
- [Release notes](https://github.com/dtolnay/proc-macro2/releases)
- [Commits](dtolnay/proc-macro2@1.0.86...1.0.88)

Updates `once_cell` from 1.20.1 to 1.20.2
- [Changelog](https://github.com/matklad/once_cell/blob/master/CHANGELOG.md)
- [Commits](matklad/once_cell@v1.20.1...v1.20.2)

Updates `serde_json` from 1.0.128 to 1.0.129
- [Release notes](https://github.com/serde-rs/json/releases)
- [Commits](serde-rs/json@1.0.128...1.0.129)

Updates `clap` from 4.5.19 to 4.5.20
- [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.19...clap_complete-v4.5.20)

Updates `pulldown-cmark` from 0.12.1 to 0.12.2
- [Release notes](https://github.com/raphlinus/pulldown-cmark/releases)
- [Commits](pulldown-cmark/pulldown-cmark@v0.12.1...v0.12.2)

Updates `uuid` from 1.10.0 to 1.11.0
- [Release notes](https://github.com/uuid-rs/uuid/releases)
- [Commits](uuid-rs/uuid@1.10.0...1.11.0)

Updates `hyper` from 1.4.1 to 1.5.0
- [Release notes](https://github.com/hyperium/hyper/releases)
- [Changelog](https://github.com/hyperium/hyper/blob/master/CHANGELOG.md)
- [Commits](hyperium/hyper@v1.4.1...v1.5.0)

---
updated-dependencies:
- dependency-name: wasm-bindgen
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: rustversion
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: web-sys
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: wasm-bindgen-futures
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: wasm-bindgen-test
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: trybuild
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: proc-macro2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: once_cell
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: serde_json
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: clap
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: pulldown-cmark
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: cargo-deps
- dependency-name: uuid
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
- dependency-name: hyper
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: cargo-deps
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file rust Pull requests that update Rust code labels Oct 18, 2024
Copy link
Contributor Author

dependabot bot commented on behalf of github Oct 21, 2024

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

@dependabot dependabot bot closed this Oct 21, 2024
@dependabot dependabot bot deleted the dependabot/cargo/cargo-deps-910edcf0cf branch October 21, 2024 15:27
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.

0 participants