curlz
curlz copied to clipboard
fix(deps): update bump minor versions (minor)
This PR contains the following updates:
| Package | Type | Update | Change |
|---|---|---|---|
| base64 | dependencies | minor | 0.21 -> 0.22 |
| clap | dependencies | minor | 4.2.2 -> 4.5.38 |
| clap-verbosity-flag | dependencies | minor | 2.0.1 -> 2.2.3 |
| convert_case | dependencies | minor | 0.6 -> 0.8 |
| curlimages/curl | final | minor | 8.00.1 -> 8.13.0 |
| curlimages/curl | stage | minor | 8.00.1 -> 8.13.0 |
| dialoguer | dependencies | minor | 0.10 -> 0.11 |
| env_logger | dependencies | minor | 0.10 -> 0.11 |
| humantime | dependencies | minor | 2.1.0 -> 2.2.0 |
| insta (source) | dev-dependencies | minor | 1.26.0 -> 1.43.1 |
| minijinja | dependencies | minor | 0.32 -> 0.34 |
| minijinja-stack-ref | dependencies | minor | 0.32 -> 0.34 |
| predicates | dev-dependencies | minor | 3.0.3 -> 3.1.3 |
| pretty_assertions | dev-dependencies | minor | 1.3.0 -> 1.4.1 |
| rstest | dev-dependencies | minor | 0.17 -> 0.25 |
| tempfile (source) | dev-dependencies | minor | 3.5.0 -> 3.20.0 |
| wiremock | dev-dependencies | minor | 0.5 -> 0.6 |
Release Notes
marshallpierce/rust-base64 (base64)
v0.22.1
- Correct the symbols used for the predefined
alphabet::BIN_HEX.
v0.22.0
DecodeSliceError::OutputSliceTooSmallis now conservative rather than precise. That is, the error will only occur if the decoded output cannot fit, meaning thatEngine::decode_slicecan now be used with exactly-sized output slices. As part of this,Engine::internal_decodenow returnsDecodeSliceErrorinstead ofDecodeError, but that is not expected to affect any external callers.DecodeError::InvalidLengthnow refers specifically to the number of valid symbols being invalid (i.e.len % 4 == 1), rather than just the number of input bytes. This avoids confusing scenarios when based on interpretation you could make a case for eitherInvalidLengthorInvalidBytebeing appropriate.- Decoding is somewhat faster (5-10%)
v0.21.7
- Support getting an alphabet's contents as a str via
Alphabet::as_str()
v0.21.6
- Improved introductory documentation and example
v0.21.5
- Add
DebugandCloneimpls for the general purpose Engine
v0.21.4
- Make
encoded_lenconst, allowing the creation of arrays sized to encode compile-time-known data lengths
v0.21.3
- Implement
sourceinstead ofcauseon Error types - Roll back MSRV to 1.48.0 so Debian can continue to live in a time warp
- Slightly faster chunked encoding for short inputs
- Decrease binary size
v0.21.2
- Rollback MSRV to 1.57.0 -- only dev dependencies need 1.60, not the main code
v0.21.1
- Remove the possibility of panicking during decoded length calculations
DecoderReaderno longer sometimes erroneously ignores padding #226
Breaking changes
Engine.internal_decodereturn type changed- Update MSRV to 1.60.0
clap-rs/clap (clap)
v4.5.38
Fixes
- (help) When showing aliases, include leading
--or-
v4.5.37
Features
- Added
ArgMatches::try_clear_id()
v4.5.36
Fixes
- (help) Revert 4.5.35's "Don't leave space for shorts if there are none" for now
v4.5.35
Fixes
- (help) Align positionals and flags when put in the same
help_heading - (help) Don't leave space for shorts if there are none
v4.5.34
Fixes
- (help) Don't add extra blank lines with
flatten_help(true)and subcommands without arguments
v4.5.33
Fixes
- (error) When showing the usage of a suggestion for an unknown argument, don't show the group
v4.5.32
Features
- Add
Error::remove
Documentation
- (cookbook) Switch from
humantimetojiff - (tutorial) Better cover required vs optional
Internal
- Update
pulldown-cmark
v4.5.31
Features
- Add
ValueParserFactoryforSaturating<T>
v4.5.30
Fixes
- (assert) Allow
num_args(0..=1)to be used withSetTrue - (assert) Clean up rendering of
takes_valuesassertions
v4.5.29
Fixes
- Change
ArgMatches::args_presentso not-present flags are considered not-present (matching the documentation)
v4.5.28
Features
- (derive) Unstable support for full markdown syntax for doc comments, enabled with
unstable-markdown
v4.5.27
Documentation
- Iterate on tutorials and reference based on feedback
v4.5.26
Fixes
- (error) Reduce binary size with the
suggestionsfeature
v4.5.25
Fixes
- (help) Reduce binary size
v4.5.24
Fixes
- (parser) Correctly handle defaults with
ignore_errors(true)and when a suggestion is provided for an unknown argument
v4.5.23
Fixes
- (parser) When check
allow_negative_numbers, allowEagain
v4.5.22
Fixes
- (assert) Catch bugs with arguments requiring themself
v4.5.21
Fixes
- (parser) Ensure defaults are filled in on error with
ignore_errors(true)
v4.5.20
Features
- (unstable) Add
CommandExt
v4.5.19
Internal
- Update dependencies
v4.5.18
Features
- (builder) Expose
Arg::get_display_orderandCommand::get_display_order
v4.5.17
Fixes
- (help) Style required argument groups
- (derive) Improve error messages when unsupported fields are used
v4.5.16
Fixes
- (derive) Improve error messages when
derivefeature is missing
v4.5.15
Compatiblity
- (unstable-ext)
Arg::removechanged return types
Fixes
- (unstable-ext) Make
Arg::removereturn the removed item
v4.5.14
Features
- (unstable-ext) Added
Arg::addfor attaching arbitrary state, like completion hints, toArgwithoutArgknowing about it
v4.5.13
Fixes
- (derive) Improve error message when
#[flatten]ing an optional#[group(skip)] - (help) Properly wrap long subcommand descriptions in help
v4.5.12
v4.5.11
v4.5.10
v4.5.9
Fixes
- (error) When defining a custom help flag, be sure to suggest it like we do the built-in one
v4.5.8
Fixes
- Reduce extra flushes
v4.5.7
Fixes
- Clean up error message when too few arguments for
num_args
v4.5.6
v4.5.5
Fixes
- Allow
exclusiveto overriderequired_unless_present,required_unless_present_any,required_unless_present_all
v4.5.4
Fixes
- (derive) Allow non-literal
#[arg(id)]attributes again
v4.5.3
Fixes
- (help) When showing aliases, include leading
--or-
v4.5.2
Fixes
- Change
ArgMatches::args_presentso not-present flags are considered not-present (matching the documentation)
v4.5.1
Internal
- Update dependencies
v4.5.0
Compatibility
- Update MSRV to 1.74
v4.4.18
Fixes
- (error) When lacking
usagefeature, ensure the list of required arguments is unique
v4.4.17
Fixes
- Fix
panic!when mixingargs_conflicts_with_subcommandswithArgGroup(which is implicit withderive) introduced in 4.4.15
v4.4.16
Fixes
- Ensure invalid escape sequences in user-defined strings are correctly stripped when terminal doesn't support color
v4.4.15
Fixes
- Improve error for
args_conflicts_with_subcommands - Ensure we error for
args_conflicts_with_subcommandswhen using subcommand short and long flags
v4.4.14
Documentation
- Fix
findcookbook entry to allow repeats of flags/options
Features
- Allow
num_args(0)on options which allows making them emulate being a flag for position-tracking flags
v4.4.13
Documentation
- Fix link to structopt migration guide
v4.4.12
Performance
- Only ask
TypedValueParserfor possible values if needed
v4.4.11
Features
- Add
Command::mut_group
v4.4.10
Documentation
- Link out to changelog
- Cross link derive's attribute reference to derive tutorial
v4.4.9
Fixes
- (help) Show correct
Command::aboutunder flattened headings - (help) Respect
hidewhen flattening subcommands
v4.4.8
Features
- Add
Command::flatten_helpto allowgit stash -hlike help for subcommands
v4.4.7
Performance
- Reduced code size
v4.4.6
Internal
- Upgrade
anstream
v4.4.5
Fixes
- (parser) When inferring subcommand
nameorlong_flag, allow ambiguous-looking matches that unambiguously map back to the same command - (parser) When inferring subcommand
long_flag, don't panic - (assert) Clarify what action is causing a positional that doesn't set values which is especially useful for derive users
v4.4.4
Internal
- Update
terminal_sizeto 0.3
v4.4.3
Documentation
- (derive) Clarify use of attributes within the tutorial
- Split sections in the builder and derive tutorials into separate modules
v4.4.2
Performance
- Improve build times by removing
once_celldependency
v4.4.1
Fixes
- (error) When lacking
usagefeature, ensure the list of required arguments is unique
v4.4.0
compatibility
- update msrv to 1.70.0
v4.3.24
Fixes
- Ensure column padding is preserved in
--helpwith custom templates
v4.3.23
Fixes
- Fixed
UnknownArgumentValueParserto not error on flag's absence
v4.3.22
Features
- Add
UnknownArgumentValueParserfor injecting errors for improving the experience with errors
v4.3.21
Features
- Expose
TryMapValueParserso the type can be named
v4.3.20
Features
Command::mut_argsfor modifying all arguments en masse
v4.3.19
Fixes
- (parse) Respect
value_terminatoreven in the presence of later multiple-value positional arguments
v4.3.18
Fixes
- (parse) Suggest
--in fewer places where it won't work
v4.3.17
Fixes
- (help) Address a regression in wrapping
PossibleValuedescriptions in--help
v4.3.16
Fixes
- Don't assert when stateful value parsers fail on defaults (e.g. checking if a path exists)
v4.3.15
Features
- (unstable-styles) Re-export
anstyle
Documentation
- (unstable-styles) Provide more examples
v4.3.14
Features
ArgAction::HelpShortandArgAction::HelpLongfor explicitly specifying which style of help to display
Fixes
- Skip
[OPTIONS]in usage if a help or versionArgActionis used
v4.3.13
v4.3.12
Fixes
- (derive) Don't error on enum variant field attributes
v4.3.11
Features
- (derive) Support fields wrapped in
num::Wrapping,Box, orArc - (derive) Support
Box<str>,Box<OsStr>, andBox<Path>
v4.3.10
Performance
- Drop a dependency, reducing binary size by 1.3 KiB
v4.3.9
Fixes
Command::ignore_errorsno longer masks help/version
v4.3.8
Fixes
- Error on ambiguity with
infer_long_arg, rather than arbitrarily picking one, matching the documentation and subcommand's behavior
v4.3.7
Documentation
- Further clarify magic behavior in derive tutorial
- Further clarify derive API's relationship to builder within the tutorial
v4.3.6
Documentation
- Suggest
clio
v4.3.5
ColorChoice::possible_valuesis added to simplify things for builder users
Fixes
ColorChoice::to_possible_valueno longer includes descriptions, encouraging shorter help where possible
v4.3.4
Features
- Add
Error::exit_code
v4.3.3
Features
Command::deferfor delayed initialization of subcommands to reduce startup times of large applications like deno
v4.3.2
Fixes
- Ensure column padding is preserved in
--helpwith custom templates
v4.3.1
Fixes
- (parse) Respect
value_terminatoreven in the presence of later multiple-value positional arguments
v4.3.0
Fixes
- (assert) Allow multiple, value-terminated, positional arguments
- (assert) Clear up language on
lastassertion - (parser) Correctly assign values to arguments when using multiple, value-termianted, positional arguments
- (parser) Ensure
value_terminatorhas higher precedence thanallow_hyphen_values - (help) Only use next-line-help on subcommand list when explicitly specified, not just with
--help - (help) Correctly align possible values list
- (help) Don't waste code, vertical space in moving possible value descriptions to next line
v4.2.7
Fixes
- Correctly track remaining length for iterators provided by
ArgMatches
v4.2.6
Features
impl Eq<std::any::TypeId> for clap_builder::util::AnyValueId
v4.2.5
Fixes
- Improve panic when a group requires a non-existent ID
v4.2.4
Documentation
- Corrected docs for
Command::style
v4.2.3
Features
Command::stylesfor theming help/errors (behindunstable-styles)
clap-rs/clap-verbosity-flag (clap-verbosity-flag)
v2.2.3
Features
- Add
DebugLevelandTraceLevelfor exploratory programming
v2.2.2
Fixes
- Resolve overflow issues
v2.2.1
Compatibility
- Raised MSRV to 1.74
v2.2.0
Compatibility
- Raised MSRV to 1.73
Features
- Add
is_present()to see if one of the flags is present on the command-line
v2.1.2
Fixes
- Don't pollute the CLIs help
v2.1.1
Fixes
- Tried to clarify help output for
-v/-q
Documentation
- Tried to clarify role of
LogLeveltrait
v2.1.0
Compatibility
- Raised MSRV to 1.70.0
Features
- Implement
Default
curl/curl-container (curlimages/curl)
v8.13.0
Changed
- bump to curl 8.13.0
- bump to alpine:3.21.3
v8.12.1
Changed
- bump to curl 8.12.1
v8.12.0
Changed
- bump to curl 8.12.0
- bump to alpine:3.21.2
v8.11.1
Changed
- bump to curl 8.11.1
- bump to alpine:3.21.0
v8.11.0
Changed
- bump to curl 8.11.0
v8.10.1
Changed
- bump to curl 8.10.1
v8.10.0
Changed
- bump to curl 8.10.0
- bump to alpine:3.20.3
v8.9.1
Changed
- bump to curl 8.9.1
v8.9.0
Changed
- bump to curl 8.9.0
- bump to alpine 3.20.2
v8.8.0
Changed
- bump to curl 8.8.0
v8.7.1
Changed
- bump to curl 8.7.1
v8.6.0
Changed
- bump to curl 8.6.0
- bump to alpine 3.19.1
v8.5.0
Changed
- add libpsl
- bump to alpine 3.19.0
v8.4.0
Changed
- bump to curl 8.4.0
- bump to alpine 3.18.4
- build enabled --with-gssapi
v8.3.0
[8.3.1] - 2023-09-13
Changed
- bump to curl 8.3.0
- bump to alpine 3.18.3
v8.2.1
Changed
- bump to curl 8.2.1
v8.2.0
Changed
- bump to curl 8.2.0
- bump to alpine 3.18.2
v8.1.2
Changed
- added clamav and grype to security scan
- added user working directory
- skimmed apk cache
- added back arches (arm64, etc) by fixing issue #3
console-rs/dialoguer (dialoguer)
v0.11.0
Enhancements
- Added
dialoguer::Resultanddialoguer::Error - Added a
BasicHistoryimplementation forHistory - Added vim mode for
FuzzySelect - All prompts implement
Clone - Add handling of
Deletekey forFuzzySelect
Bug fixes
- Resolve some issues on Windows where pressing shift keys sometimes aborted dialogs
- Resolve
MultiSelectchecked and unchecked variants looking the same on Windows Inputvalues that are invalid are now also stored inHistory- Resolve some issues with cursor positioning in
Inputwhen usingutf-8characters - Correct page is shown when default selected option is not on the first page for
Select - Fix panic in
FuzzySelectwhen using non-ASCII characters
Breaking
- Updated MSRV to
1.63.0due to multiple dependencies on different platforms:rustix,tempfile,linux-raw-sys - Removed deprecated
Confirm::with_text - Removed deprecated
ColorfulTheme::inline_selections - Prompt builder functions now take
mut selfinstead of&mut self - Prompt builder functions now return
Selfinstead of&mut Self - Prompt interaction functions now take
selfinstead of&self - Prompt interaction functions and other operations now return
dialoguer::Resultinstead ofstd::io::Result - Rename
ValidatortoInputValidator - The trait method
Theme::format_fuzzy_select_prompt()now takes a byte position instead of a cursor position in order to support UTF-8.
v0.10.4
Enhancements
- Added validator for password input
rust-cli/env_logger (env_logger)
v0.11.8
Compatibility
- (kv) Deprecate the
unstable-kvfeature which may be removed in a future patch release
Features
- (kv) Stabilize key-value support behind the
kvfeature - Expose
ConfigurableFormatto build custom [Builder::format]s that leverage this
v0.11.7
Internal
- Replaced
humantimewithjiff
v0.11.6
Features
- Opt-in file and line rendering
v0.11.5
v0.11.4
v0.11.3
Features
- Experimental support for key-value logging behind
unstable-kv
v0.11.2
v0.11.1
Fixes
- Allow styling with
Target::Pipe
v0.11.0
Migration Guide
env_logger::fmt::Style:
The bespoke styling API, behind color, was removed, in favor of accepting any
ANSI styled string and adapting it to the target stream's capabilities.
Possible styling libraries include:
- anstyle is a minimal, runtime string styling API and is re-exported as
env_logger::fmt::style - owo-colors is a feature rich runtime string styling API
- color-print for feature-rich compile-time styling API
custom_format.rs
uses anstyle via
Formatter::default_level_style
Breaking Change
- Removed bespoke styling API
env_logger::fmt::Formatter::styleenv_logger::fmt::Formatter::default_styled_levelenv_logger::fmt::Styleenv_logger::fmt::Colorenv_logger::fmt::StyledValue
- Removed
env_logger::filterin favor ofenv_filter
Compatibility
MSRV changed to 1.71
Features
- Automatically adapt ANSI escape codes in logged messages to the current terminal's capabilities
- Add support for
NO_COLORandCLICOLOR_FORCE, see https://bixense.com/clicolors/
Fixes
- Print colors when
is_test(true)
v0.10.2
Performance
- Avoid extra UTF-8 validation performed in some cases
Fixes
- Ensure custom pipes/stdout get flushed
- Don't panic on broken pipes when
coloris disabled
v0.10.1
Performance
- Avoid hashing directives and accessing RNG on startup
Documentation
- Tweak
RUST_LOGdocumentation
mitsuhiko/insta (insta)
v1.43.1
This release in identical in rust code to 1.43.0, but reruns the GitHub Actions workflows, which failed to create a release within GitHub for 1.43.0.
v1.43.0
- Add uppercase keyboard shortcuts for bulk operations in
cargo insta review:Ato accept all,Rto reject all, andSto skip all remaining snapshots. #745 --unreferenced=auto(or other relevant values) no longer cleans up pending snapshots. A bug wherecargo insta test --unreferenced=autowould incorrectly pass on new pending snapshots has been fixed.- Support specifying
cargo-nextestbin withINSTA_CARGO_NEXTEST_BIN. #721 (Louis Fruleux) - Allow setting
INSTA_WORKSPACE_ROOTat compile time. This is useful for reproducible binaries so they don't contain references toCARGO_MANIFEST_DIR. #726 (Pascal Bach) - Qualify all references in macros to avoid name clashes. #729 (Austin Schey)
- Remove
linked-hash-mapandpin-projectdependencies. #742, #741, #738 cargo insta reviewfails with a helpful error message when run in a non-TTY environment.
v1.42.2
- Support other indention characters than spaces in inline snapshots. #679
- Fix an issue where multiple targets with the same root would cause too many pending snapshots to be reported. #730
- Hide
unseenoption in CLI, as it's pending deprecation. #732 - Stop
\tand\x1b(ANSI color escape) from causing snapshots to be escaped. #715 - Improved handling of inline snapshots within
allow_duplicates! { .. }. #712
v1.42.1
- Improved handling of control characters in inline snapshots. #713
- Add pending deprecation warning for
--accept-unseen. We've left an issue open at #659 eliciting feedback on whether anyone uses this for a few months. A warning will now be printed when--accept-unseenis used, and we'll eventually remove the feature unless we get some feedback that it's useful. #668
v1.42.0
- Text snapshots no longer contain
snapshot_type: textin 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 usedcargo insta test --force-update-snapshotsto 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. #690 - Pending snapshots are no longer removed throughout the workspace by
cargo-instabefore running tests. Instead, running a test will overwrite or remove its own pending snapshot. To remove all pending snapshots, usecargo insta rejector run tests with--unreferenced=delete. #651 insta::internals::SettingsBindDropGuard(returned fromSettings::bind_to_scope) no longer implementsSend. This was incorrect and any tests relying on this behavior where not working properly. Fixes #694 in #695 by @jalil-salame
v1.41.1
- Re-release of 1.41.1 to generate release artifacts correctly.
v1.41.0
-
Experimental support for binary snapshots. #610 (Florian Plattner)
-
--force-update-snapshotsnow causescargo-instato write every snapshot, regardless of whether snapshots fully match, and now implies--accept. This allows for--force-update-snapshotsto update inline snapshots' delimiters and indentation.For the previous behavior of
--force-update-snapshots, which limited writes to snapshots which didn't fully match, use--require-full-match. The main difference between--require-full-matchand the existing behavior of--force-update-snapshotsis a non-zero exit code on any snapshots which don't fully match.Like the previous behavior of
--force-update-snapshots,--require-full-matchdoesn't track inline snapshots' delimiters or indentation, so can't update if those don't match. #644 -
Inline snapshots only use
#characters as delimiters when required. #603 -
Warnings for undiscovered snapshots are more robust, and include files with custom snapshot extensions. #637
-
Insta runs correctly on packages which reference rust files in a parent path. #626
-
Warnings are printed when any snapshot uses a legacy format. #599
-
cargo insta --versionnow prints a version. #665 -
instanow internally usesINSTA_UPDATE=forcerather thanINSTA_FORCE_UPDATE=1. (This doesn't affect users ofcargo-insta, which handles this internally.) #482 -
cargo-insta's integration tests continue to grow over the past couple of versions, and now offer coverage of most ofcargo-insta's interface.
v1.40.0
-
cargo-instano longer panics when runningcargo insta test --accept --workspaceon a workspace with a default crate. #532 -
MSRV for
instahas been raised to 1.60, and forcargo-instato 1.64. -
Added support for compact debug snapshots (
assert_compact_debug_snapshot). #514 -
Deprecate
--no-force-passincargo-insta. The--checkoption covers the same functionality and has a clearer name. #513 -
Inline snapshots now use the required number of
#s to escape the snapshot value, rather than always using###. This allows snapshotting values which themselves contain###. If there are no existing#characters in the snapshot value, a single#will be used. #540 -
Inline snapshots can now be updated with
--force-update-snapshots. #569 -
cargo insta testaccepts multiple--excludeflags. #520 -
testrunnerin insta's yaml config works. #544 -
Print a warning when encountering old snapshot formats. #503
-
Group the options in
cargo insta --help, upgrade toclapfromstructopt. #518 -
No longer suggest running
cargo instamessage when runningcargo insta test --check. #515 -
Print a clearer error message when accepting a snapshot that was removed. #516
-
Mark
require-full-matchas experimental, given some corner-cases are currently difficult to manage. #497 -
Add a new integration test approach for
cargo-instaand a set of integration tests. #537 -
Enable Filters to be created from
IntoIteratortypes, rather than justVecs. #570 -
Implemented total sort order for an internal
Keytype correctly. This prevents potential crashes introduced by the new sort algorithm in Rust 1.81. #586
v1.39.0
-
Fixed a bug in
require_full_match. #485 -
Fixed a bug that caused snapshot and module names to sometimes be inaccurate. #483
-
Insta will no longer error when attempting to remove snapshots that were already removed. #484
-
Added support for trailing commas in inline snapshots. #472
-
Don't pass
--colorin all cases tolibtestany more to work around limitations with custom test harnesses. #491
v1.38.0
-
Filtersis now constructible fromIntoIterator. #400 -
Change
stdmacro calls to be fully qualified. This fixes issues where the prelude was not used or the macros were overridden. #469
v1.37.0
-
All macros for file snapshots should now handle trailing commas (but not yet inline snapshots)
-
Vendored old
yaml-rustdependency to avoid rustsec warnings. #465
v1.36.1
- Fix an ownership issue introduced in 1.36 with snapshot assertions. #453
v1.36.0
-
Deprecate
INSTA_FORCE_UPDATE_SNAPSHOTSenv-var forINSTA_FORCE_UPDATE. The latter was documented, the former was implemented. #449 -
Add
require_full_matchoption. #448 -
Deprecate
assert_display_snapshot!. #385
v1.35.1
- Fixed a bug with diffs showing bogus newlines.
v1.35.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
- [ ] If you want to rebase/retry this PR, check this box
This PR was generated by Mend Renovate. View the repository job log.
Codecov Report
All modified and coverable lines are covered by tests :white_check_mark:
Project coverage is 74.55%. Comparing base (
1d18d4a) to head (6d00e90).
:exclamation: Current head 6d00e90 differs from pull request most recent head 5442adc
Please upload reports for the commit 5442adc to get more accurate results.
Additional details and impacted files
@@ Coverage Diff @@
## main #128 +/- ##
==========================================
+ Coverage 74.50% 74.55% +0.05%
==========================================
Files 37 37
Lines 957 959 +2
==========================================
+ Hits 713 715 +2
Misses 244 244
:umbrella: View full report in Codecov by Sentry.
:loudspeaker: Have feedback on the report? Share it here.