-
-
Notifications
You must be signed in to change notification settings - Fork 923
build(deps): bump the cargo-minor group with 9 updates #21598
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
Conversation
7ca8e4b
to
b2f872b
Compare
We'll have to address the png breaking changes: https://github.com/image-rs/image-png/blob/master/CHANGES.md#api-breaking-changes |
Dependabot tried to update this pull request, but something went wrong. We're looking into it, but in the meantime you can retry the update by commenting |
fd6e84c
to
d3c8689
Compare
DetailsSummary
Why is coverage important?There are two main reasons. Without coverage:
Significant amount of work on Ruffle comes from reverse engineering Flash. By adding tests you contribute to a better understanding of how Flash works and you make sure the work you've done will not disappear. The code you add will be modified in the future by someone else, who won't have the scenario you're implementing in mind. How to fix it?Add more tests! Currently coverage runs on SWF tests (that test compatibility with Flash Player). See Test Guidelines for more info. |
(I'd like a (possibly rubber-stamp) approval from someone else for the 3 lines of code I changed.) |
Have you thought about adding tests to cover the untested code? IMO it's particularly risky to have a part of code that is untested but is being updated automatically. |
Yes, but I don't have access to proper Flash ATM, and crafting tests with alternative tools sounds cumbersome (and I'm Also, the code wasn't updated automatically, I added the |
I'll try writing a test
Actually I wasn't referring to this code, this code at least is linted under our coverage, so we're aware that it's untested when we merge a PR. But more worrying is the whole implementation behind it that changes (and is updated automatically without coverage, so we don't know about it being untested). |
d3c8689
to
3cde864
Compare
DetailsSummary
Why is coverage important?There are two main reasons. Without coverage:
Significant amount of work on Ruffle comes from reverse engineering Flash. By adding tests you contribute to a better understanding of how Flash works and you make sure the work you've done will not disappear. The code you add will be modified in the future by someone else, who won't have the scenario you're implementing in mind. How to fix it?Add more tests! Currently coverage runs on SWF tests (that test compatibility with Flash Player). See Test Guidelines for more info. |
Test: #21738 |
Neat, thanks! But, what do you mean by "But more worrying is the whole implementation behind it that changes"? I think the JPEG decoder is changed only behind the |
Hmmm... I don't understand. My point was that when the line But now I see in our case this impl is covered in other parts of the code, so that's probably fine (but we've got a free test anyway). |
Okay, that makes sense. For some reason I thought you were referring to the new |
Looks like these dependencies are updatable in another way, so this is no longer needed. |
Excuse you, robot?! |
3cde864
to
b94e2d0
Compare
DetailsSummary
Why is coverage important?There are two main reasons. Without coverage:
Significant amount of work on Ruffle comes from reverse engineering Flash. By adding tests you contribute to a better understanding of how Flash works and you make sure the work you've done will not disappear. The code you add will be modified in the future by someone else, who won't have the scenario you're implementing in mind. How to fix it?Add more tests! Currently coverage runs on SWF tests (that test compatibility with Flash Player). See Test Guidelines for more info. |
Bumps the cargo-minor group with 9 updates: | Package | From | To | | --- | --- | --- | | [clap](https://github.com/clap-rs/clap) | `4.5.45` | `4.5.47` | | [bitflags](https://github.com/bitflags/bitflags) | `2.9.3` | `2.9.4` | | [chrono](https://github.com/chronotope/chrono) | `0.4.41` | `0.4.42` | | [image](https://github.com/image-rs/image) | `0.25.6` | `0.25.8` | | [log](https://github.com/rust-lang/log) | `0.4.27` | `0.4.28` | | [url](https://github.com/servo/rust-url) | `2.5.4` | `2.5.7` | | [png](https://github.com/image-rs/image-png) | `0.17.16` | `0.18.0` | | [windows-sys](https://github.com/microsoft/windows-rs) | `0.59.0` | `0.61.0` | | [insta](https://github.com/mitsuhiko/insta) | `1.43.1` | `1.43.2` | Updates `clap` from 4.5.45 to 4.5.47 - [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.45...clap_complete-v4.5.47) Updates `bitflags` from 2.9.3 to 2.9.4 - [Release notes](https://github.com/bitflags/bitflags/releases) - [Changelog](https://github.com/bitflags/bitflags/blob/main/CHANGELOG.md) - [Commits](bitflags/bitflags@2.9.3...2.9.4) Updates `chrono` from 0.4.41 to 0.4.42 - [Release notes](https://github.com/chronotope/chrono/releases) - [Changelog](https://github.com/chronotope/chrono/blob/main/CHANGELOG.md) - [Commits](chronotope/chrono@v0.4.41...v0.4.42) Updates `image` from 0.25.6 to 0.25.8 - [Changelog](https://github.com/image-rs/image/blob/v0.25.8/CHANGES.md) - [Commits](image-rs/image@v0.25.6...v0.25.8) Updates `log` from 0.4.27 to 0.4.28 - [Release notes](https://github.com/rust-lang/log/releases) - [Changelog](https://github.com/rust-lang/log/blob/master/CHANGELOG.md) - [Commits](rust-lang/log@0.4.27...0.4.28) Updates `url` from 2.5.4 to 2.5.7 - [Release notes](https://github.com/servo/rust-url/releases) - [Commits](servo/rust-url@v2.5.4...v2.5.7) Updates `png` from 0.17.16 to 0.18.0 - [Changelog](https://github.com/image-rs/image-png/blob/master/CHANGES.md) - [Commits](https://github.com/image-rs/image-png/commits) Updates `windows-sys` from 0.59.0 to 0.61.0 - [Release notes](https://github.com/microsoft/windows-rs/releases) - [Commits](microsoft/windows-rs@0.59.0...0.61.0) Updates `insta` from 1.43.1 to 1.43.2 - [Release notes](https://github.com/mitsuhiko/insta/releases) - [Changelog](https://github.com/mitsuhiko/insta/blob/master/CHANGELOG.md) - [Commits](mitsuhiko/insta@1.43.1...1.43.2) --- updated-dependencies: - dependency-name: clap dependency-version: 4.5.47 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: bitflags dependency-version: 2.9.4 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: chrono dependency-version: 0.4.42 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: image dependency-version: 0.25.8 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: log dependency-version: 0.4.28 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: url dependency-version: 2.5.7 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor - dependency-name: png dependency-version: 0.18.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: windows-sys dependency-version: 0.61.0 dependency-type: direct:production update-type: version-update:semver-minor dependency-group: cargo-minor - dependency-name: insta dependency-version: 1.43.2 dependency-type: direct:production update-type: version-update:semver-patch dependency-group: cargo-minor ... Signed-off-by: dependabot[bot] <[email protected]>
b94e2d0
to
f9838a6
Compare
DetailsSummary
Why is coverage important?There are two main reasons. Without coverage:
Significant amount of work on Ruffle comes from reverse engineering Flash. By adding tests you contribute to a better understanding of how Flash works and you make sure the work you've done will not disappear. The code you add will be modified in the future by someone else, who won't have the scenario you're implementing in mind. How to fix it?Add more tests! Currently coverage runs on SWF tests (that test compatibility with Flash Player). See Test Guidelines for more info. |
------------------------------------------------------------------------------------ eden.mk bf4dce8d0b0f5fb5abb4e0687b6d3005815b0ce6 # Version: Commits on Sept 24, 2025 ------------------------------------------------------------------------------------ [hid_core/frontend] use shared lock for accesses on emulated controller (reduces contention in FBSD) (#2553) -------------------------------------------------------------------------------------- ikemen.mk 3f64a81dcc032a3ddbb11d5b359318d08124a312 # Version: Commits on Sept 24, 2025 -------------------------------------------------------------------------------------- Merge pull request #2691 from ikemen-engine/fix2 fix: FFmpeg 7.1 and 8.0 support, --------------------------------------------------------------------------------------- openmsx.mk d44a87ccc0eb4f6f64a1607fa4ec9607cb35e6bb # Version: Commits on Sept 24, 2025 --------------------------------------------------------------------------------------- Some (final?) updates to the release notes..., ----------------------------------------------------- pcsx2.mk v2.5.174 # Version: Commits on Sept 24, 2025 ----------------------------------------------------- - [ImGui: Add contingent for empty binding in save state select menu](PCSX2/pcsx2#13291) ------------------------------------------------------------------------------------ play.mk a3d84f977b721cda752299739fec525addce1ef9 # Version: Commits on Sept 22, 2025 ------------------------------------------------------------------------------------ Sys246: Remove Soul Calibur 3 exception for 31kHz mode., -------------------------------------------------------------------------------------- ppsspp.mk d43f24dab3b440d82b1ec7ee1c5cc25e0f24510e # Version: Commits on Sept 24, 2025 -------------------------------------------------------------------------------------- Merge pull request #19336 from hrydgard/headless-defaults Use config defaults in the headless binary., ------------------------------------------------------------------------------------- rpcs3.mk 8163c6c041ab77d40f69946285c323ed9db7ea67 # Version: Commits on Sept 12, 2025 ------------------------------------------------------------------------------------- cellPad: simplify output button logic, ---------------------------------------------------------------- ruffle.mk nightly-2025-09-24 # Version: Commits on Sept 24, 2025 ---------------------------------------------------------------- ## What's Changed * core: Fix logic when determining next frame by @Bale001 in ruffle-rs/ruffle#21751 * chore: Bump the `profiling`, `tracing`, and `tracy` crate families by @torokati44 in ruffle-rs/ruffle#21750 * chore: Bump the `hyper` and `quinn` crate families by @torokati44 in ruffle-rs/ruffle#21749 * build(deps): bump the cargo-minor group with 9 updates by @dependabot[bot] in ruffle-rs/ruffle#21598 * web: Don't use .npmrc for detect_chromedriver_version by @danielhjacobs in ruffle-rs/ruffle#20041 **Full Changelog**: ruffle-rs/ruffle@nightly-2025-09-23...nightly-2025-09-24, -------------------------------------------------------------------------------------- snes9x.mk 94115094ead4da7342bd638bb4cc293ae7d297c0 # Version: Commits on Sept 24, 2025 -------------------------------------------------------------------------------------- win32: Don't use precise throttle when NetPlay activated., --------------------------------------------------------------------------------------------- supermodel-es.mk 369c9f421511f4c37234e4061bcaaab4dfc544ac # Version: Commits on Sept 24, 2025 --------------------------------------------------------------------------------------------- 0.3a-f2e3292, ------------------------------------------------------------------------------------------------- supermodel-legacy.mk 108386afb84b2bbab968e8640444fd8201309152 # Version: Commits on Sept 24, 2025 ------------------------------------------------------------------------------------------------- Align aliased -border argument, ---------------------------------------------------- xemu.mk v0.8.104 # Version: Commits on Sept 23, 2025 ---------------------------------------------------- , -------------------------------------------------------------------------------------------- xenia-native.mk bb740af7f9d0b789de214dfcff311daabdb7a60a # Version: Commits on Sept 23, 2025 -------------------------------------------------------------------------------------------- [XAM] Fixed XamShowSigninUI ImGUI assert, ------------------------------------------------------------------------------------- box64.mk 0e90b94272de677ea224d7cbf9783e45ba138a62 # Version: Commits on Sept 24, 2025 ------------------------------------------------------------------------------------- [ARM64_DYNAREC] Fixed flags for 8bits imul, ---------------------------------------------------------------------------------------- corsixth.mk ed7766666da8a1980fb42e52cc18ecb1f053a47a # Version: Commits on Sept 24, 2025 ---------------------------------------------------------------------------------------- Update Italian translation (#3047) Co-authored-by: dodero4 <[email protected]>, ---------------------------------------------------------------------------------------- etlegacy.mk 87449615af801547f057b32dd627ce6a24ef07c6 # Version: Commits on Sept 24, 2025 ---------------------------------------------------------------------------------------- app: update gradle and few dependencies, -------------------------------------------------------------------------------------------- jazz2-native.mk ab7a8d57f829a8ac3015904a93b84f7137aff3a9 # Version: Commits on Sept 24, 2025 -------------------------------------------------------------------------------------------- Unicode optimizations, ----------------------------------------------------------------------------------------- openmohaa.mk 28e6ea159cdc183c154074f88c4256735aab550a # Version: Commits on Sept 22, 2025 ----------------------------------------------------------------------------------------- SV_RehashBans_f may be executed when the server isn't running (#785), ----------------------------------------------------- rclone.mk v1.71.1 # Version: Commits on Sept 24, 2025 ----------------------------------------------------- This is the v1.71.1 release of rclone. Full details of the changes can be found in [the changelog](https://rclone.org/changelog/#v1-71-1-2025-09-24). , -------------------------------------------------------- syncthing.mk v2.0.10 # Version: Commits on Sept 24, 2025 -------------------------------------------------------- ## Major changes in 2.0 - Database backend switched from LevelDB to SQLite. There is a migration on first launch which can be lengthy for larger setups. The new database is easier to understand and maintain and, hopefully, less buggy. - The logging format has changed to use structured log entries (a message plus several key-value pairs). Additionally, we can now control the log level per package, and a new log level WARNING has been inserted between INFO and ERROR (which was previously known as WARNING...). The INFO level has become more verbose, indicating the sync actions taken by Syncthing. A new command line flag `--log-level` sets the default log level for all packages, and the `STTRACE` environment variable and GUI has been updated to set log levels per package. The `--verbose` and `--logflags` command line options have been removed and will be ignored if given. - Deleted items are no longer kept forever in the database, instead they are forgotten after fifteen months. If your use case require deletes to take effect after more than a fifteen month delay, set the `--db-delete-retention-interval` command line option or corresponding environment variable to zero, or a longer time interval of your choosing. - Modernised command line options parsing. Old single-dash long options are no longer supported, e.g. `-home` must be given as `--home`. Some options have been renamed, others have become subcommands. All serve options are now also accepted as environment variables. See `syncthing --help` and `syncthing serve --help` for details. - Rolling hash detection of shifted data is no longer supported as this effectively never helped. Instead, scanning and syncing is faster and more efficient without it. - A \default folder\ is no longer created on first startup. - Multiple connections are now used by default between v2 devices. The new default value is to use three connections: one for index metadata and two for data exchange. - The following platforms unfortunately no longer get prebuilt binaries for download at syncthing.net and on GitHub, due to complexities related to cross compilation with SQLite: - dragonfly/amd64 - solaris/amd64 - linux/ppc64 - netbsd/* - openbsd/386 and openbsd/arm - windows/arm - The handling of conflict resolution involving deleted files has changed. A delete can now be the winning outcome of conflict resolution, resulting in the deleted file being moved to a conflict copy. This release is also available as: * APT repository: https://apt.syncthing.net/ * Docker image: `docker.io/syncthing/syncthing:2.0.10` or `ghcr.io/syncthing/syncthing:2.0.10` (`{docker,ghcr}.io/syncthing/syncthing:2` to follow just the major version) ## What's Changed ### Fixes * fix: improve conflict detection by tracking previous file hash (fixes #10349) by @calmh in syncthing/syncthing#10351 * fix(ur): properly skip zero/empty fields in report by @calmh in syncthing/syncthing#10394 * fix(gui): don't fetch usage report preview unnecessarily on GUI load by @calmh in syncthing/syncthing#10395 * fix(db): only perform foreign key checking when a migration was applied by @pixelspark in syncthing/syncthing#10397 * fix(syncthing): do not perform CPU benchmark on startup unless logging enabled by @pixelspark in syncthing/syncthing#10398 * fix(model): don't announce untrusted devices to other devices (fixes #10393) by @calmh in syncthing/syncthing#10408 * fix(sqlite): actually always insert blocks for local files (fixes #10388) by @calmh in syncthing/syncthing#10411 ### Other * build: update GitHub actions by @mrclmr in syncthing/syncthing#10399 **Full Changelog**: syncthing/syncthing@v2.0.9...v2.0.10, ----------------------------------------------------------------------------------------- retroarch.mk 3f19b2a107c77b2efff2389a5844ef330128d07a # Version: Commits on Sept 24, 2025 ----------------------------------------------------------------------------------------- Fetch translations from Crowdin, ----------------------------------------------------------------------------------------- doomretro.mk 1d4d55b216ffa5ea1932209abe0594f3806c8ca6 # Version: Commits on Sept 24, 2025 ----------------------------------------------------------------------------------------- Fix typo, ------------------------------------------------------------------------------------------------- libretro-mojozork.mk 4d5082c504613b4ec9feea65a2ceaae08208e872 # Version: Commits on Sept 24, 2025 ------------------------------------------------------------------------------------------------- save: Stick a header on the Z-Machine state dump we currently use for saves. This is hopefully getting replaced by Quetzal format sooner or later., ----------------------------------------------------------------------------------------------- libretro-ppsspp.mk d43f24dab3b440d82b1ec7ee1c5cc25e0f24510e # Version: Commits on Sept 24, 2025 ----------------------------------------------------------------------------------------------- Merge pull request #19336 from hrydgard/headless-defaults Use config defaults in the headless binary., ------------------------------------------------------------------------------------------------ libretro-sameboy.mk f769eff1d959e0d1dce07eccd727ee4e68d4b518 # Version: Commits on Sept 24, 2025 ------------------------------------------------------------------------------------------------ Pressing buttons in Rewind should now cancel rewind mode, -------------------------------------------------------------------------------------------- glsl-shaders.mk bbec046178947afb6a1d69330d4b9800a0734328 # Version: Commits on Sept 24, 2025 -------------------------------------------------------------------------------------------- tiny_ntsc optimize speed (#532),
Bumps the cargo-minor group with 9 updates:
4.5.45
4.5.47
2.9.3
2.9.4
0.4.41
0.4.42
0.25.6
0.25.8
0.4.27
0.4.28
2.5.4
2.5.7
0.17.16
0.18.0
0.59.0
0.61.0
1.43.1
1.43.2
Updates
clap
from 4.5.45 to 4.5.47Release notes
Sourced from clap's releases.
Changelog
Sourced from clap's changelog.
Commits
f046ca6
chore: Release436949d
docs: Update changelog1ddab84
Merge pull request #5954 from epage/tests8a66dbf
test(complete): Add more native cases76465cf
test(complete): Make things more consistent232cedb
test(complete): Remove redundant index02244a6
Merge pull request #5949 from krobelus/option-name-completions-after-positionals2e13847
fix(complete): Missing options in multi-val arg74388d7
test(complete): Multi-valued, unbounded positional5b3d45f
refactor(complete): Extract function for optionsUpdates
bitflags
from 2.9.3 to 2.9.4Release notes
Sourced from bitflags's releases.
Changelog
Sourced from bitflags's changelog.
Commits
de0ec28
Merge pull request #461 from KodrAus/cargo/2.9.4c31df3c
prepare for 2.9.4 release3a9cce2
Merge pull request #460 from bitflags/doc/cargo-features8eb1c7c
add Cargo features to readmeUpdates
chrono
from 0.4.41 to 0.4.42Release notes
Sourced from chrono's releases.
Commits
f3fd15f
Bump version to 0.4.425cf5603
strftime: add regression test casea623170
strftime: simplify error handling36fbfb1
strftime: move specifier handling out of match to reduce rightward drift7f413c3
strftime: yield None early9d5dfe1
strftime: outline constantse5f6be7
strftime: move error() method below callerd516c27
strftime: merge impl blocks0ee2172
strftime: re-order items to keep impls together757a8b0
Upgrade to windows-bindgen 0.63Updates
image
from 0.25.6 to 0.25.8Changelog
Sourced from image's changelog.
Commits
98b001d
Merge pull request #2592 from image-rs/release-0.25.8f862320
Metadata and changelog for a 0.25.83b1c1db
Merge pull request #2593 from image-rs/luma-to-rgb-transform-is-broadcast1f574d3
Replace manual rounding code with f32::round545cb37
Color tests in the middle of dynamic range9882fa9
Remove coefficients from luma_expand70b9aa3
Revert "Make load_from_memory generic"b94c333
Enable CI for backport brancha24556b
Merge pull request #2581 from image-rs/release-0.25.79175dbc
Fix readme typo (#2580)Updates
log
from 0.4.27 to 0.4.28Release notes
Sourced from log's releases.
Changelog
Sourced from log's changelog.
Commits
6e17355
Merge pull request #695 from rust-lang/cargo/0.4.2857719db
focus on user-facing source changes in the changeloge0630c6
prepare for 0.4.28 release60829b1
Merge pull request #692 from nebkor/up-and-down95d44f8
change names of log-level-changing methods to be more descriptive2b63dfa
Addup()
anddown()
methods forLevel
andLevelFilter
3aa1359
Merge pull request #690 from HaoliangXu/master1091f2c
Chore:delete compare_exchange method for AtomicUsize on platforms24c5f44
Merge pull request #688 from ZylosLumen/patch-14498495
Unhide#[derive(Debug)]
in exampleUpdates
url
from 2.5.4 to 2.5.7Release notes
Sourced from url's releases.
Commits
43f47e2
make serde std feature use optional syntax (#1071)2387efa
fix: add Serde std feature if needed (#1068)aae60cf
Use no-std instead of no_std in Cargo.toml (#1064)44afd9f
version bump to 2.5.6 (#1065)91377f4
Bump versions (#1062)a40f904
version bump to 2.5.5 (#1061)cf305db
set_hostname should error when encountering colon ':' (#1060)88826bd
UpdateUrl::domain
docs to show that it includes subdomain (#1057)c3bbf66
Fix MSRV and clippy CI (#1058)dbd5261
rancargo clippy --fix -- -Wclippy::use_self
(#1048)Updates
png
from 0.17.16 to 0.18.0Changelog
Sourced from png's changelog.
Commits
Updates
windows-sys
from 0.59.0 to 0.61.0Release notes
Sourced from windows-sys's releases.
... (truncated)
Commits
5888c8c
Release 0.61.0 (#3418)9911fee
Improve feature search UX, add dark mode, and update deps (#3422)eed7453
Update GitHub Actions runners (#3423)284f189
Avoidtransmute
where possible (#3421)b35dfd1
Update web workflow to use external origin (#3420)3566fca
Fix provenance in direct32 sample (#3419)382ea56
Usetrack_caller
to make debuggingcppwinrt
build script errors easier (#...f09c132
Shorten sample crate names (#3416)5e8ce09
cppwinrt
should consistently panic on failure (#3415)d02c977
Detect unsupported array parameters (#3402)Updates
insta
from 1.43.1 to 1.43.2Release notes
Sourced from insta's releases.
Changelog
Sourced from insta's changelog.
Commits
01fc57f
Fix Windows runner configuration for releases88c9a2f
Prepare CHANGELOG for 1.43.2 release (#802)d03c2a6
Improve error handling for cargo workspace detection (#800)55987ac
Fix clippy uninlined_format_args lint warnings (#801)ae26e81
Change diff line numbers to 1-based indexing (#799)26efb60
Release insta 1.43.2 (#791)7793782
Preserve snapshot names with INSTA_GLOB_FILTER (#786)1d6e0c7
chore: bump libc crate (#784)1a17ea9
chore: fix clippy 1.88 errors (#783)7d0de48
Fix source path in snapshots for non-child workspaces (#778)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