Skip to content

Commit

Permalink
chore(deps): update dependencies (#80)
Browse files Browse the repository at this point in the history
This PR contains the following updates:

| Package | Type | Update | Change |
|---|---|---|---|
| [insta](https://insta.rs/)
([source](https://redirect.github.com/mitsuhiko/insta)) |
workspace.dependencies | minor | `1.41.1` -> `1.42.0` |
| [itertools](https://redirect.github.com/rust-itertools/itertools) |
workspace.dependencies | minor | `0.13.0` -> `0.14.0` |
| [phf](https://redirect.github.com/rust-phf/rust-phf) |
workspace.dependencies | patch | `0.11.2` -> `0.11.3` |
| [prettyplease](https://redirect.github.com/dtolnay/prettyplease) |
workspace.dependencies | patch | `0.2.25` -> `0.2.27` |
| [serde_json](https://redirect.github.com/serde-rs/json) |
workspace.dependencies | patch | `1.0.134` -> `1.0.135` |
| [syn](https://redirect.github.com/dtolnay/syn) |
workspace.dependencies | patch | `2.0.93` -> `2.0.95` |

---

### Release Notes

<details>
<summary>mitsuhiko/insta (insta)</summary>

###
[`v1.42.0`](https://redirect.github.com/mitsuhiko/insta/blob/HEAD/CHANGELOG.md#1420)

[Compare
Source](https://redirect.github.com/mitsuhiko/insta/compare/1.41.1...1.42.0)

- Text snapshots no longer contain `snapshot_type: text` in their
metadata. For
context, we originally added this in the prior release (1.41.0) to
support
binary snapshots, but some folks disliked the diff noise on any snapshot
changes, and the maintainers' weighted votes favored reverting. I
apologize
that this will cause some additional churn for those who used `cargo
insta test --force-update-snapshots` to update their snapshots to the
1.41 format;
running this again with 1.42 will remove those metadata entries. To
confirm:
this doesn't affect whether snapshot tests pass or fail — the worst
impact is
some additional diffs in metadata.
[#&#8203;690](https://redirect.github.com/mitsuhiko/insta/issues/690)
-   Pending snapshots are no longer removed throughout the workspace by
`cargo-insta` before running tests. Instead, running a test will
overwrite or
remove its own pending snapshot. To remove all pending snapshots, use
`cargo
insta reject` or run tests with `--unreferenced=delete`.
[#&#8203;651](https://redirect.github.com/mitsuhiko/insta/issues/651)
-   `insta::internals::SettingsBindDropGuard` (returned from
`Settings::bind_to_scope`) no longer implements `Send`. This was
incorrect and
any tests relying on this behavior where not working properly. Fixes
[#&#8203;694](https://redirect.github.com/mitsuhiko/insta/issues/694) in
[#&#8203;695](https://redirect.github.com/mitsuhiko/insta/issues/695) by
[@&#8203;jalil-salame](https://redirect.github.com/jalil-salame)

</details>

<details>
<summary>rust-itertools/itertools (itertools)</summary>

###
[`v0.14.0`](https://redirect.github.com/rust-itertools/itertools/blob/HEAD/CHANGELOG.md#0140)

[Compare
Source](https://redirect.github.com/rust-itertools/itertools/compare/v0.13.0...v0.14.0)

##### Breaking

- Increased MSRV to 1.63.0
([#&#8203;960](https://redirect.github.com/rust-itertools/itertools/issues/960))
- Removed generic parameter from `cons_tuples`
([#&#8203;988](https://redirect.github.com/rust-itertools/itertools/issues/988))

##### Added

- Added `array_combinations`
([#&#8203;991](https://redirect.github.com/rust-itertools/itertools/issues/991))
- Added `k_smallest_relaxed` and variants
([#&#8203;925](https://redirect.github.com/rust-itertools/itertools/issues/925))
- Added `next_array` and `collect_array`
([#&#8203;560](https://redirect.github.com/rust-itertools/itertools/issues/560))
- Implemented `DoubleEndedIterator` for `FilterOk`
([#&#8203;948](https://redirect.github.com/rust-itertools/itertools/issues/948))
- Implemented `DoubleEndedIterator` for `FilterMapOk`
([#&#8203;950](https://redirect.github.com/rust-itertools/itertools/issues/950))

##### Changed

- Allow `Q: ?Sized` in `Itertools::contains`
([#&#8203;971](https://redirect.github.com/rust-itertools/itertools/issues/971))
- Improved hygiene of `chain!`
([#&#8203;943](https://redirect.github.com/rust-itertools/itertools/issues/943))
- Improved `into_group_map_by` documentation
([#&#8203;1000](https://redirect.github.com/rust-itertools/itertools/issues/1000))
- Improved `tree_reduce` documentation
([#&#8203;955](https://redirect.github.com/rust-itertools/itertools/issues/955))
- Improved discoverability of `merge_join_by`
([#&#8203;966](https://redirect.github.com/rust-itertools/itertools/issues/966))
- Improved discoverability of `take_while_inclusive`
([#&#8203;972](https://redirect.github.com/rust-itertools/itertools/issues/972))
- Improved documentation of `find_or_last` and `find_or_first`
([#&#8203;984](https://redirect.github.com/rust-itertools/itertools/issues/984))
- Prevented exponentially large type sizes in `tuple_combinations`
([#&#8203;945](https://redirect.github.com/rust-itertools/itertools/issues/945))
- Added `track_caller` attr for `asser_equal`
([#&#8203;976](https://redirect.github.com/rust-itertools/itertools/issues/976))

##### Notable Internal Changes

- Fixed clippy lints
([#&#8203;956](https://redirect.github.com/rust-itertools/itertools/issues/956),
[#&#8203;987](https://redirect.github.com/rust-itertools/itertools/issues/987),
[#&#8203;1008](https://redirect.github.com/rust-itertools/itertools/issues/1008))
- Addressed warnings within doctests
([#&#8203;964](https://redirect.github.com/rust-itertools/itertools/issues/964))
- CI: Run most tests with miri
([#&#8203;961](https://redirect.github.com/rust-itertools/itertools/issues/961))
- CI: Speed up "cargo-semver-checks" action
([#&#8203;938](https://redirect.github.com/rust-itertools/itertools/issues/938))
- Changed an instance of `default_features` in `Cargo.toml` to
`default-features`
([#&#8203;985](https://redirect.github.com/rust-itertools/itertools/issues/985))

</details>

<details>
<summary>rust-phf/rust-phf (phf)</summary>

###
[`v0.11.3`](https://redirect.github.com/rust-phf/rust-phf/compare/phf-v0.11.2...phf-v0.11.3)

[Compare
Source](https://redirect.github.com/rust-phf/rust-phf/compare/phf-v0.11.2...phf-v0.11.3)

</details>

<details>
<summary>dtolnay/prettyplease (prettyplease)</summary>

###
[`v0.2.27`](https://redirect.github.com/dtolnay/prettyplease/releases/tag/0.2.27)

[Compare
Source](https://redirect.github.com/dtolnay/prettyplease/compare/0.2.26...0.2.27)

- Avoid trailing '.' on non-macro float literals
([#&#8203;89](https://redirect.github.com/dtolnay/prettyplease/issues/89))

###
[`v0.2.26`](https://redirect.github.com/dtolnay/prettyplease/releases/tag/0.2.26)

[Compare
Source](https://redirect.github.com/dtolnay/prettyplease/compare/0.2.25...0.2.26)

- Synthesize parentheses for precedence
([#&#8203;88](https://redirect.github.com/dtolnay/prettyplease/issues/88))

</details>

<details>
<summary>serde-rs/json (serde_json)</summary>

###
[`v1.0.135`](https://redirect.github.com/serde-rs/json/releases/tag/v1.0.135)

[Compare
Source](https://redirect.github.com/serde-rs/json/compare/v1.0.134...v1.0.135)

- Add serde_json::Map::into_values method
([#&#8203;1226](https://redirect.github.com/serde-rs/json/issues/1226),
thanks [@&#8203;tisonkun](https://redirect.github.com/tisonkun))

</details>

<details>
<summary>dtolnay/syn (syn)</summary>

###
[`v2.0.95`](https://redirect.github.com/dtolnay/syn/releases/tag/2.0.95)

[Compare
Source](https://redirect.github.com/dtolnay/syn/compare/2.0.94...2.0.95)

- Fix parenthesization of struct literals in let-chains
([#&#8203;1832](https://redirect.github.com/dtolnay/syn/issues/1832))

###
[`v2.0.94`](https://redirect.github.com/dtolnay/syn/releases/tag/2.0.94)

[Compare
Source](https://redirect.github.com/dtolnay/syn/compare/2.0.93...2.0.94)

- Expression precedence fixes
([#&#8203;1811](https://redirect.github.com/dtolnay/syn/issues/1811),
[#&#8203;1812](https://redirect.github.com/dtolnay/syn/issues/1812),
[#&#8203;1813](https://redirect.github.com/dtolnay/syn/issues/1813),
[#&#8203;1814](https://redirect.github.com/dtolnay/syn/issues/1814),
[#&#8203;1815](https://redirect.github.com/dtolnay/syn/issues/1815),
[#&#8203;1816](https://redirect.github.com/dtolnay/syn/issues/1816),
[#&#8203;1818](https://redirect.github.com/dtolnay/syn/issues/1818),
[#&#8203;1819](https://redirect.github.com/dtolnay/syn/issues/1819),
[#&#8203;1820](https://redirect.github.com/dtolnay/syn/issues/1820),
[#&#8203;1825](https://redirect.github.com/dtolnay/syn/issues/1825),
[#&#8203;1826](https://redirect.github.com/dtolnay/syn/issues/1826),
[#&#8203;1827](https://redirect.github.com/dtolnay/syn/issues/1827),
[#&#8203;1828](https://redirect.github.com/dtolnay/syn/issues/1828),
[#&#8203;1829](https://redirect.github.com/dtolnay/syn/issues/1829),
[#&#8203;1830](https://redirect.github.com/dtolnay/syn/issues/1830))

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 9am on monday" (UTC),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Disabled by config. Please merge this manually once you
are satisfied.

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get
[config
help](https://redirect.github.com/renovatebot/renovate/discussions) if
that's undesired.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR was generated by [Mend Renovate](https://mend.io/renovate/).
View the [repository job
log](https://developer.mend.io/github/keithamus/hdx).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOS44NS4wIiwidXBkYXRlZEluVmVyIjoiMzkuODUuMCIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
  • Loading branch information
renovate[bot] authored Jan 7, 2025
1 parent 5ae10d5 commit 7d6c8bf
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 48 deletions.
69 changes: 22 additions & 47 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ bumpalo = { version = "3.16.0" }

# Data structure libraries/helpers
bitmask-enum = { version = "2.2.5" }
itertools = { version = "0.13.0" }
itertools = { version = "0.14.0" }
ropey = { version = "1.6.1" }
smallvec = { version = "1.13.2" }
strum = { version = "0.26.3" }
Expand Down

0 comments on commit 7d6c8bf

Please sign in to comment.