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 crates-io group with 8 updates #1866

Merged
merged 1 commit into from
Nov 26, 2023

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Nov 26, 2023

Bumps the crates-io group with 8 updates:

Package From To
cargo-config2 0.1.15 0.1.16
serde 1.0.192 1.0.193
fs-err 2.10.0 2.11.0
itertools 0.11.0 0.12.0
configparser 3.0.2 3.0.3
ureq 2.8.0 2.9.1
rustls 0.21.8 0.21.9
url 2.4.1 2.5.0

Updates cargo-config2 from 0.1.15 to 0.1.16

Release notes

Sourced from cargo-config2's releases.

0.1.16

Changelog

Sourced from cargo-config2's changelog.

[0.1.16] - 2023-11-17

Commits

Updates serde from 1.0.192 to 1.0.193

Release notes

Sourced from serde's releases.

v1.0.193

Commits
  • 44613c7 Release 1.0.193
  • c706281 Merge pull request #2655 from dtolnay/rangestartend
  • 65d75b8 Add RangeFrom and RangeTo tests
  • 332b0cb Merge pull request #2654 from dtolnay/rangestartend
  • 8c4af41 Fix more RangeFrom / RangeEnd mixups
  • 24a78f0 Merge pull request #2653 from emilbonnek/fix/range-to-from-de-mixup
  • c91c334 Fix Range{From,To} deserialize mixup
  • 2083f43 Update ui test suite to nightly-2023-11-19
  • See full diff in compare view

Updates fs-err from 2.10.0 to 2.11.0

Changelog

Sourced from fs-err's changelog.

2.11.0

  • Added the first line of the standard library documentation to each function's rustdocs, to make them more useful in IDEs (#50)
  • Fixed the wrapper for tokio::fs::symlink_dir() on Windows being incorrectly named symlink. The old function is now deprecated and will be removed in the next breaking release.
Commits
  • ba98887 chore: Release fs-err version 2.11.0
  • 1747eca Update changelog
  • ef91521 Merge pull request #50 from hniksic/main
  • 5c0922b Preserve (and deprecate) the old name fs_err::tokio::symlink() on Windows for...
  • f4965bd Fix name of tokio::symlink_dir()
  • b81b8d4 Add the initial paragraph of the original rustdoc to each wrapped function (#45)
  • See full diff in compare view

Updates itertools from 0.11.0 to 0.12.0

Changelog

Sourced from itertools's changelog.

0.12.0

Breaking

  • Made take_while_inclusive consume iterator by value (#709)
  • Added Clone bound to Unique (#777)

Added

  • Added Itertools::try_len (#723)
  • Added free function sort_unstable (#796)
  • Added GroupMap::fold_with (#778, #785)
  • Added PeekNth::{peek_mut, peek_nth_mut} (#716)
  • Added PeekNth::{next_if, next_if_eq} (#734)
  • Added conversion into (Option<A>,Option<B>) to EitherOrBoth (#713)
  • Added conversion from Either<A, B> to EitherOrBoth<A, B> (#715)
  • Implemented ExactSizeIterator for Tuples (#761)
  • Implemented ExactSizeIterator for (Circular)TupleWindows (#752)
  • Made EitherOrBoth<T> a shorthand for EitherOrBoth<T, T> (#719)

Changed

  • Added missing #[must_use] annotations on iterator adaptors (#794)
  • Made Combinations lazy (#795)
  • Made Intersperse(With) lazy (#797)
  • Made Permutations lazy (#793)
  • Made Product lazy (#800)
  • Made TupleWindows lazy (#602)
  • Specialized Combinations::{count, size_hint} (#729)
  • Specialized CombinationsWithReplacement::{count, size_hint} (#737)
  • Specialized Powerset::fold (#765)
  • Specialized Powerset::count (#735)
  • Specialized TupleCombinations::{count, size_hint} (#763)
  • Specialized TupleCombinations::fold (#775)
  • Specialized WhileSome::fold (#780)
  • Specialized WithPosition::fold (#772)
  • Specialized ZipLongest::fold (#774)
  • Changed {min, max}_set* operations require alloc feature, instead of std (#760)
  • Improved documentation of tree_fold1 (#787)
  • Improved documentation of permutations (#724)
  • Fixed typo in documentation of multiunzip (#770)

Notable Internal Changes

  • Improved specialization tests (#799, #786, #782)
  • Simplified implementation of Permutations (#739, #748, #790)
  • Combined Merge/MergeBy/MergeJoinBy implementations (#736)
  • Simplified Permutations::size_hint (#739)
  • Fix wrapping arithmetic in benchmarks (#770)
  • Enforced rustfmt in CI (#751)
  • Disallowed compile warnings in CI (#720)
  • Used cargo hack to check MSRV (#754)
Commits
  • 98ecabb chore: Release itertools version 0.12.0
  • 22fc427 prepare v0.12.0 release
  • 6d29178 Document the field a_cur of Product
  • bf2b012 Better Product::size_hint
  • 8d07f6b Make Product lazy
  • d7e6bab Document the field peek of IntersperseWith
  • 9b01a11 Make IntersperseWith lazy
  • 4f22173 Refactor IntersperseWith::next
  • b76172b chore: adjust docs to reflect discussion in the PR
  • 955927f chore: fixup docs of tree_fold1
  • Additional commits viewable in compare view

Updates configparser from 3.0.2 to 3.0.3

Release notes

Sourced from configparser's releases.

v3.0.3

What's Changed

New Contributors

Full Changelog: QEDK/configparser-rs@v3.0.1...v3.0.3

Commits

Updates ureq from 2.8.0 to 2.9.1

Changelog

Sourced from ureq's changelog.

2.9.1

Fixed

  • Unbreak feature http-interop. This feature is version locked to http crate 0.2
  • New feature http-crate. This feature is for http crate 1.0
  • New feature proxy-from-env to detect proxy settings for global Agent (ureq::get).

2.9.0

Fixed

  • Broken rustls dep (introduced new function in patch version) (#677)
  • Doc and test fixes (#670, #673, #674)

Added

  • Upgraded http dep to 1.0
  • http_interop to not require utf-8 headers (#672)
  • http_interop implement conversion for http::request::Parts (#669)
Commits
  • 9092222 2.9.1
  • 7369043 Rename feature http -> http-crate
  • 87108e0 Support both http 0.2 and 1.0
  • 89a69a5 docs: update doc comment on try_proxy_from_env method to reflect the `proxy...
  • 395218d feat: add a feature flag "proxy-from-env" to control whether or not to detect...
  • 260213b 2.9.0
  • c83ba95 Update changelog
  • 07b8925 Simpler version expression for rustls dep
  • c1bc86a http 1.0
  • 916ffbf Fix missing add_trust_anchors method due to lax rustls versioning
  • Additional commits viewable in compare view

Updates rustls from 0.21.8 to 0.21.9

Release notes

Sourced from rustls's releases.

0.21.9

  • Fixes using the (non-default) read_buf feature with Rust nightly newer than nightly-2023-11-01 by opting in to the core_io_borrowed_buf feature and updated BorrowedBuf, BorrowedCursor types.

What's Changed

Full Changelog: rustls/rustls@v/0.21.8...v/0.21.9

Commits
  • bbd9abc Cargo: v0.21.8 -> v0.21.9
  • 5edc126 Use BorrowedCursor & BorrowedBuf from core::io
  • 7abd73f Opt in to feature(core_io_borrowed_buf)
  • See full diff in compare view

Updates url from 2.4.1 to 2.5.0

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 crates-io group with 8 updates:

| Package | From | To |
| --- | --- | --- |
| [cargo-config2](https://github.com/taiki-e/cargo-config2) | `0.1.15` | `0.1.16` |
| [serde](https://github.com/serde-rs/serde) | `1.0.192` | `1.0.193` |
| [fs-err](https://github.com/andrewhickman/fs-err) | `2.10.0` | `2.11.0` |
| [itertools](https://github.com/rust-itertools/itertools) | `0.11.0` | `0.12.0` |
| [configparser](https://github.com/QEDK/configparser-rs) | `3.0.2` | `3.0.3` |
| [ureq](https://github.com/algesten/ureq) | `2.8.0` | `2.9.1` |
| [rustls](https://github.com/rustls/rustls) | `0.21.8` | `0.21.9` |
| [url](https://github.com/servo/rust-url) | `2.4.1` | `2.5.0` |


Updates `cargo-config2` from 0.1.15 to 0.1.16
- [Release notes](https://github.com/taiki-e/cargo-config2/releases)
- [Changelog](https://github.com/taiki-e/cargo-config2/blob/main/CHANGELOG.md)
- [Commits](taiki-e/cargo-config2@v0.1.15...v0.1.16)

Updates `serde` from 1.0.192 to 1.0.193
- [Release notes](https://github.com/serde-rs/serde/releases)
- [Commits](serde-rs/serde@v1.0.192...v1.0.193)

Updates `fs-err` from 2.10.0 to 2.11.0
- [Changelog](https://github.com/andrewhickman/fs-err/blob/main/CHANGELOG.md)
- [Commits](andrewhickman/fs-err@2.10.0...2.11.0)

Updates `itertools` from 0.11.0 to 0.12.0
- [Changelog](https://github.com/rust-itertools/itertools/blob/master/CHANGELOG.md)
- [Commits](rust-itertools/itertools@v0.11.0...v0.12.0)

Updates `configparser` from 3.0.2 to 3.0.3
- [Release notes](https://github.com/QEDK/configparser-rs/releases)
- [Changelog](https://github.com/QEDK/configparser-rs/blob/master/CHANGELOG.md)
- [Commits](https://github.com/QEDK/configparser-rs/commits/v3.0.3)

Updates `ureq` from 2.8.0 to 2.9.1
- [Changelog](https://github.com/algesten/ureq/blob/main/CHANGELOG.md)
- [Commits](algesten/ureq@2.8.0...2.9.1)

Updates `rustls` from 0.21.8 to 0.21.9
- [Release notes](https://github.com/rustls/rustls/releases)
- [Commits](rustls/rustls@v/0.21.8...v/0.21.9)

Updates `url` from 2.4.1 to 2.5.0
- [Release notes](https://github.com/servo/rust-url/releases)
- [Commits](servo/rust-url@v2.4.1...v2.5.0)

---
updated-dependencies:
- dependency-name: cargo-config2
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: serde
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: fs-err
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: itertools
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: configparser
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: ureq
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
- dependency-name: rustls
  dependency-type: direct:production
  update-type: version-update:semver-patch
  dependency-group: crates-io
- dependency-name: url
  dependency-type: direct:production
  update-type: version-update:semver-minor
  dependency-group: crates-io
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot added dependencies Something related to dependencies rust Pull requests that update Rust code labels Nov 26, 2023
Copy link

netlify bot commented Nov 26, 2023

Deploy Preview for maturin-guide ready!

Name Link
🔨 Latest commit b0ecb55
🔍 Latest deploy log https://app.netlify.com/sites/maturin-guide/deploys/6562f9e6f239510008574375
😎 Deploy Preview https://deploy-preview-1866--maturin-guide.netlify.app
📱 Preview on mobile
Toggle QR Code...

QR Code

Use your smartphone camera to open QR code link.

To edit notification comments on pull requests, go to your Netlify site configuration.

@messense messense merged commit 174a0eb into main Nov 26, 2023
25 of 28 checks passed
@messense messense deleted the dependabot/cargo/crates-io-5c744e5174 branch November 26, 2023 08:03
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Something related to dependencies rust Pull requests that update Rust code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant