gitu
gitu copied to clipboard
build(deps): bump the minor-patch group across 1 directory with 8 updates
Bumps the minor-patch group with 8 updates in the / directory:
Package | From | To |
---|---|---|
arboard | 3.3.2 |
3.4.0 |
figment | 0.10.18 |
0.10.19 |
itertools | 0.12.1 |
0.13.0 |
serde | 1.0.199 |
1.0.202 |
toml | 0.8.12 |
0.8.13 |
tui-prompts | 0.3.11 |
0.3.12 |
tree-sitter-scala | 0.20.3 |
0.21.0 |
insta | 1.38.0 |
1.39.0 |
Updates arboard
from 3.3.2 to 3.4.0
Release notes
Sourced from arboard's releases.
v3.4.0
Added
- Added a
wait_until
method for Linux, as a superset of the existingwait
functionality. This is a helper for letting an application wait without manual timeout handling.Fixed
- Transparency in copied images now behaves better in certain Windows apps.
Changed
- Updated
image
to0.25
.- Removed direct
thiserror
dependency.- Fixed Linux documentation links
- Raised MSRV to 1.67.1
- Reverted timeout behavior of
Clipboard::new()
on platforms using X11. Applications are encouraged to wrap constructor calls in their own thread/channel timeout mechanisms instead to make sure the behavior matches each usecase.- Migrated away from
objc
to theobjc2
ecosystem for the Apple clipboard implementation.Full Changelog: https://github.com/1Password/arboard/compare/v3.3.2...v3.4.0
Changelog
Sourced from arboard's changelog.
3.4.0 on 2024-29-04
Added
- Added a
wait_until
method for Linux, as a superset of the existingwait
functionality. This is a helper for letting an application wait without manual timeout handling.Fixed
- Transparency in copied images now behaves better in certain Windows apps.
Changed
- Updated
image
to0.25
.- Removed direct
thiserror
dependency.- Fixed Linux documentation links
- Raised MSRV to 1.67.1
- Reverted timeout behavior of
Clipboard::new()
on platforms using X11. Applications are encouraged to wrap constructor calls in their own thread/channel timeout mechanisms instead to make sure the behavior matches each usecase.- Migrated away from
objc
to theobjc2
ecosystem for the Apple clipboard implementation.
Commits
151e679
Release 3.4.0610e29b
Remove direct thiserror dependency83740b7
Copy image as PNG file on Windows (#141)0bff1e0
Use objc2 and its framework crates1cca83d
Revert "add timeout to RustConnection::connect to X11 server"b4646f6
Increase version of clipboard-win used by defaulte2846f9
Fix clippy errors2f4b502
MoveWaitConfig
to src/platform/linux/mod.rs, useWaitConfig
inside `stru...6cf324c
AddedWaitConfig
, fixwait_until
note in docseabb191
add notice for X11 inSetExtLinux#wait_until
docs- Additional commits viewable in compare view
Updates figment
from 0.10.18 to 0.10.19
Commits
- See full diff in compare view
Updates itertools
from 0.12.1 to 0.13.0
Changelog
Sourced from itertools's changelog.
0.13.0
Breaking
- Removed implementation of
DoubleEndedIterator
forConsTuples
(#853)- Made
MultiProduct
fused and fixed on an empty iterator (#835, #834)- Changed
iproduct!
to return tuples for maxi one iterator too (#870)- Changed
PutBack::put_back
to return the old value (#880)- Removed deprecated
repeat_call, Itertools::{foreach, step, map_results, fold_results}
(#878)- Removed
TakeWhileInclusive::new
(#912)Added
- Added
Itertools::{smallest_by, smallest_by_key, largest, largest_by, largest_by_key}
(#654, #885)- Added
Itertools::tail
(#899)- Implemented
DoubleEndedIterator
forProcessResults
(#910)- Implemented
Debug
forFormatWith
(#931)- Added
Itertools::get
(#891)Changed
- Deprecated
Itertools::group_by
(renamedchunk_by
) (#866, #879)- Deprecated
unfold
(usestd::iter::from_fn
instead) (#871)- Optimized
GroupingMapBy
(#873, #876)- Relaxed
Fn
bounds toFnMut
indiff_with, Itertools::into_group_map_by
(#886)- Relaxed
Debug/Clone
bounds forMapInto
(#889)- Documented the
use_alloc
feature (#887)- Optimized
Itertools::set_from
(#888)- Removed badges in
README.md
(#890)- Added "no-std" categories in
Cargo.toml
(#894)- Fixed
Itertools::k_smallest
on short unfused iterators (#900)- Deprecated
Itertools::tree_fold1
(renamedtree_reduce
) (#895)- Deprecated
GroupingMap::fold_first
(renamedreduce
) (#902)- Fixed
Itertools::k_smallest(0)
to consume the iterator, optimizedItertools::k_smallest(1)
(#909)- Specialized
Combinations::nth
(#914)- Specialized
MergeBy::fold
(#920)- Specialized
CombinationsWithReplacement::nth
(#923)- Specialized
FlattenOk::{fold, rfold}
(#927)- Specialized
Powerset::nth
(#924)- Documentation fixes (#882, #936)
- Fixed
assert_equal
for iterators longer thani32::MAX
(#932)- Updated the
must_use
message of non-lazyKMergeBy
andTupleCombinations
(#939)Notable Internal Changes
Commits
d5084d1
Prepare v0.13.0 release (#937)d7c99d5
TupleCombinations
is not lazy but must be used nonetheless074c7fc
KMergeBy
is not lazy but must be used nonetheless2ad9e07
assert_equal
: fixclippy::default_numeric_fallback
0d4efc8
Remove free functionget
05cc0ee
get(s..=usize::MAX)
should be fine whens != 0
3c16f14
get
: when is it ESI and/or DEI4dd6ba0
get
: panics if the range includesusize::MAX
7a9ce56
get(r: Range)
asSkip\<Take>
f676f2f
Remove the unspecified check about.get(exhausted_range_inclusive)
- Additional commits viewable in compare view
Updates serde
from 1.0.199 to 1.0.202
Release notes
Sourced from serde's releases.
v1.0.202
- Provide public access to RenameAllRules in serde_derive_internals (#2743)
v1.0.201
- Resolve unexpected_cfgs warning (#2737)
v1.0.200
- Fix formatting of "invalid type" and "invalid value" deserialization error messages containing NaN or infinite floats (#2733, thanks
@jamessan
)
Commits
9e32a40
Release 1.0.20287f635e
Release serde_derive_internals 0.29.1d4b2dfb
Merge pull request #2743 from dtolnay/renameallrulesf6ab0bc
Provide public access to RenameAllRules in serde_derive_internals48cc2a6
Replace use of a syn From impl3202a68
Skip rerunning build script on library code changesb4f1bc1
Release 1.0.201029ab46
Merge pull request #2737 from dtolnay/checkcfg220ca0c
Resolve unexpected_cfgs warning20306f4
Fix cfg on test_systemtime_overflow- Additional commits viewable in compare view
Updates toml
from 0.8.12 to 0.8.13
Commits
912761b
chore: Release40b02a3
Merge pull request #730 from epage/msrv8eb5dcb
fix: Drop MSRV to 1.65f9249d8
Merge pull request #726 from mistydemeo/fix_typo1e3e033
docs: fix typoadbc75b
chore(deps): Update Rust Stable to v1.78 (#724)f8b1b26
Merge pull request #725 from epage/update7eef906
style: Address warnings813ce3d
chore(deps): Update compatible (dev) (#723)66f7f1a
docs: Remove stale content from examples- Additional commits viewable in compare view
Updates tui-prompts
from 0.3.11 to 0.3.12
Release notes
Sourced from tui-prompts's releases.
v0.3.12
Fixed
- (text_prompt) use unicode-width instead of char cnt (#46)
Other
- (text_prompt) avoid unnecessary clones (#48)
Changelog
Sourced from tui-prompts's changelog.
0.3.12 - 2024-05-11
Fixed
- (text_prompt) use unicode-width instead of char cnt (#46)
Other
- (text_prompt) avoid unnecessary clones (#48)
Commits
Updates tree-sitter-scala
from 0.20.3 to 0.21.0
Release notes
Sourced from tree-sitter-scala's releases.
0.21.0
updates
- Update tree-sitter to 0.21.0 by
@eed3si9n
in tree-sitter/tree-sitter-scala#387- Fixes character literal by
@eed3si9n
in tree-sitter/tree-sitter-scala#383behind the scenes
- Update GitHub Actions and Node by
@eed3si9n
in tree-sitter/tree-sitter-scala#381Full Changelog: https://github.com/tree-sitter/tree-sitter-scala/compare/v0.20.3...v0.21.0
Commits
b3ac6a5
Merge pull request #388 from tree-sitter/generation7802a92
chore: generate and sync from e205ec827d76957ef8680e832e0d9f2c3649f4cbe205ec8
Merge pull request #387 from eed3si9n/wip/tree-sitter-bump-0.21.04c7275c
Fix version numbers7dd646f
Refactor highlightingfb4e246
Commit bindings/node changes97c9cff
Update tree-sitter to 0.21.024fd647
Merge pull request #386 from tree-sitter/generation2914b02
chore: generate and sync from 71ee31cd2157eda9c3893b0b5e7ca1123de3486571ee31c
Merge pull request #381 from eed3si9n/wip/github-actions- Additional commits viewable in compare view
Updates insta
from 1.38.0 to 1.39.0
Release notes
Sourced from insta's releases.
1.39.0
Release Notes
Fixed a bug in
require_full_match
. #485Fixed a bug that caused snapshot and module names to sometimes be inaccurate. #483
Insta will no longer error when removing snapshots that were already removed. #484
Added support for trailing commas in inline snapshots. #472
Don't pass
--color
in all cases tolibtest
any more to work around limitations with custom test harnesses. #491Install cargo-insta 1.39.0
Install prebuilt binaries via shell script
curl --proto '=https' --tlsv1.2 -LsSf https://github.com/mitsuhiko/insta/releases/download/1.39.0/cargo-insta-installer.sh | sh
Install prebuilt binaries via powershell script
powershell -c "irm https://github.com/mitsuhiko/insta/releases/download/1.39.0/cargo-insta-installer.ps1 | iex"
Download cargo-insta 1.39.0
File Platform Checksum cargo-insta-aarch64-apple-darwin.tar.xz Apple Silicon macOS checksum cargo-insta-x86_64-apple-darwin.tar.xz Intel macOS checksum cargo-insta-x86_64-pc-windows-msvc.zip x64 Windows checksum cargo-insta-x86_64-unknown-linux-gnu.tar.xz x64 Linux checksum cargo-insta-x86_64-unknown-linux-musl.tar.xz x64 MUSL Linux checksum
Changelog
Sourced from insta's changelog.
1.39.0
Fixed a bug in
require_full_match
. #485Fixed a bug that caused snapshot and module names to sometimes be inaccurate. #483
Insta will no longer error when removing snapshots that were already removed. #484
Added support for trailing commas in inline snapshots. #472
Don't pass
--color
in all cases tolibtest
any more to work around limitations with custom test harnesses. #491
Commits
922c68f
1.39.0f291ca8
Improve the docs on the snapshot macro65947be
Only pass --color if not always to work around custom runners (#491)58daea1
Fix bad doctestf146f47
Mention disabling of features in compile time docs23d0e4d
Document use without cargo-instabe22494
Merge branch 'master' of github.com:mitsuhiko/insta1d2dd4a
Added changelog entryacb1ce5
Improve docs for snapshot updates (#479)a4f96da
Allow trailing commas in inline snapshots (#472)- Additional commits viewable in compare view
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