8000 [deps]: Update mint minor by renovate[bot] · Pull Request #641 · bitwarden/ios · GitHub
[go: up one dir, main page]
More Web Proxy on the site http://driver.im/
Skip to content

[deps]: Update mint minor #641

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’ 8000 ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 2 commits into from
Jun 27, 2024
Merged

[deps]: Update mint minor #641

merged 2 commits into from
Jun 27, 2024

Conversation

renovate[bot]
Copy link
Contributor
@renovate renovate bot commented May 12, 2024

Mend Renovate

This PR contains the following updates:

Package Update Change
nicklockwood/SwiftFormat minor 0.53.8 -> 0.54.0
realm/SwiftLint minor 0.54.0 -> 0.55.1
yonaskolb/xcodegen minor 2.40.1 -> 2.41.0

Release Notes

nicklockwood/SwiftFormat (nicklockwood/SwiftFormat)

v0.54.0

Compare Source

  • Added blankLineAfterSwitchCase rule for inserting blank lines after switch cases
  • Added consistentSwitchCaseSpacing rule for ensuring consistent spacing between switch cases
  • Added redundantProperty rule for removing variable assignments where value is immediately returned
  • Added redundantTypedThrows rule for stripping redundant Never or any Error throws types
  • Setting --report without --reporter type now raises an error if type can't be inferred
  • Added XML reporter for Checkstyle-compatible lint reporting (use the --reporter xml option)
  • Added --typedelimiter option for controlling spacing around the colon in type definitions
  • Added --initcodernil option for returning nil instead of asserting in unavailable init?(coder:)
  • The fileHeader rule now uses git info for created date (if available) instead of file system
  • Added git author, author.name and author.email tokens for file header templates
  • Added --callsiteparen option for controlling closing paren placement at function call sites
  • The wrapAttributes rule can now be applied differently to computed properties vs stored properties
  • The wrapAttributes rule can now be applied differently to complex (parameterized) vs simple attributes
  • Replaced --varattributes with --storedvarattrs, --computedvarattrs and --complexattrs options
  • Added —-nilinit option for controlling whether redundantNilInit adds or removes explicit nil
  • Added ability to organize declarations by type over visibility (use --organizationmode type)
  • Fixed bug where enabling organizeDeclarations for structs caused sortDeclarations to have no effect
  • Fixed bug where if statement body could be incorrectly parsed as a trailing closure
  • Improved attribute handling in opaqueGenericParameters rule
  • SwiftFormat now recognizes init and _modify property accessors
  • Fixed bug with preferForLoop rule and tuple argument matching
  • Extended conditionalAssignment rule to handle more cases
  • Added --condassignment after-property option
  • Fixed await being hoisted outside of macro arguments
  • Fixed unsafe adding/removal of self within macros
  • Added os_log to --selfrequired defaults

v0.53.10

Compare Source

  • Fixed creation of spurious stdout directory when using --output stdout
  • Fixed unusedArguments false positive for multiline function call arguments
  • Fixed parsing of generic arguments containing attributes or ~ operator
  • Fixed spurious errors about missing --report or --reporter arguments
  • Fixed strongifiedSelf removing required backticks around nonisolated self
  • Deprecated explicit default value for --reporter (introduced in 0.53.9)
  • Added support for sending keyword

v0.53.9

Compare Source

  • Fixed bug in unusedArguments when shadowing function argument with conditional assignment declaration
  • Individual --lint errors are no longer shown in --quiet mode (restores pre-0.53.8 behavior)
realm/SwiftLint (realm/SwiftLint)

v0.55.1

Compare Source

Breaking
  • None.
Experimental
  • None.
Enhancements
Bug Fixes
  • Fix Bazel build when bzlmod is not in use by adding transitive dependencies
    explicitly.
    SimplyDanny
    #​5568

  • Treat condionally activatable variable declarations and initializer as if
    they were always active in unneeded_synthesized_initializer rule to avoid
    compilation issues when unexpected items are there after all.
    SimplyDanny
    #​5574

  • Silence unused_enumerated rule when $0 in a closure is explicitly unpacked.
    SimplyDanny
    #​5573

  • Remove redundant initializers in unneeded_override rule only when checking
    initializers is actually enabled in the configuration.
    SimplyDanny
    #​5571

  • Respect comments before opening brace in opening_brace rule when there is
    one space before the brace after the comment. Everything else is still a
    violation, yet the rewriter will not remove the comment anymore.
    SimplyDanny
    #​5578

v0.55.0

Compare Source

Breaking
  • Rewrite SwiftLintBuildToolPlugin using BUILD_WORKSPACE_DIRECTORY without relying
    on the --config option.
    Garric Nahapetian

  • Introduce SwiftLintCommandPlugin.
    Rename SwiftLintBuildToolPlugin.
    Add Swift Package Manager installation instructions.
    garricn

  • Fix Code Climate reporter output by having lower case severity
    values to comply with the Code Climate specification.
    waitButY

  • The superfluous_disable_command rule will now be enabled for the analyze
    command, unless it has been disabled, and will warn abo 8000 ut superfluous
    disablement of analyzer rules.
    Martin Redington
    #​4792

  • With the introduction of the consider_default_literal_types_redundant
    option to the redundant_type_annotation rule, Bool literals will no
    longer be considered redundant by default. Set this option to true to
    preserve the previous behavior.
    Garric Nahapetian

Experimental
  • Add two new options to the lint and analyze commands: --write-baseline
    to save a baseline to disk, and --baseline to read a saved baseline and
    use it to filter out detected pre-existing violations. A new baseline
    command uses the reporters to print the violations in a baseline.
    Martin Redington
    #​5475
    #​3421
Enhancements
  • Add a reporter that outputs violations in the Static
    Analysis Results Interchange Format (SARIF).
    waitButY

  • Ignore absence of a non-initial local config instead of
    falling back to default.
    kohtenko

  • Add new option ignore_typealiases_and_associatedtypes to
    nesting rule. It excludes typealias and associatedtype
    declarations from the analysis.
    marunomi
    #​3183

  • Prevent from compiling SwiftLint target when only using SwiftLintPlugin on macOS.
    Julien Baillon
    #​5372

  • Allow to set the severity of rules (if they have one) in the short form
    rule_name: warning|error provided that no other attributes need to be
    configured.
    SimplyDanny

  • Add new ignore_one_liners option to switch_case_alignment
    rule to ignore switch statements written in a single line.
    tonell-m
    #​5373

  • Add new shorthand_argument rule that triggers on shorthand arguments
    like $0, $1, etc. in closures if they are too far away from the
    beginning of the closure. Options allow further cases to always trigger.
    SimplyDanny
    #​70

  • Warn when --fix comes together with --strict or --lenient as only --fix
    takes effect then.
    SimplyDanny
    #​5387

  • Add new one_declaration_per_file rule that allows only a
    single class/struct/enum/protocol declaration per file.
    Extensions are an exception; more than one is allowed.
    Muhammad Zeeshan
    #​2802

  • Add new ignore_attributes option to redundant_type_annotation rule
    that allows disabling the rule for properties that are marked with at least
    one of the configured attributes.
    tonell-m
    #​5366

  • Rewrite the following rules with SwiftSyntax:

    • explicit_acl
    • extension_access_modifier
    • identifier_name
    • let_var_whitespace
    • mark
    • multiline_literal_brackets
    • nesting
    • nimble_operator
    • opening_brace
    • orphaned_doc_comment
    • redundant_type_annotation
    • trailing_closure
    • void_return

    SimplyDanny
    kishikawakatsumi
    Marcelo Fabri
    swiftty
    KS1019
    tonell-m

  • Print invalid keys when configuration parsing fails.
    SimplyDanny
    #​5347

  • Add new final_test_case rule that triggers on non-final test classes.
    SimplyDanny

  • Make superfluous_else rule auto-correctable.
    SimplyDanny

  • Support other scope-exiting statements continue, break and throw in
    superfluous_else rule.
    SimplyDanny

  • Trigger on -> () return signatures in return_value_from_void_function
    rule. Moreover, support automatic fixes for obvious cases.
    SimplyDanny

  • Refine violation position of trailing_closure rule.
    SimplyDanny

  • Trigger on the declaration keyword (i.e. let, var, func, subscript)
    instead of the static or class keywords in the explicit_acl rule.
    SimplyDanny

  • Allow to configure more operators in identifier_name rule. The new option
    is named additional_operators. Use it to add more operators to the list
    of default operators known to the rule.
    SimplyDanny
    #​1762

  • Stop triggering no_magic_numbers rule on literals used in range
    expressions assigned to variables.
    SimplyDanny
    #​5430

  • Add affect_initializers option to allow unneeded_override rule
    to affect initializers.
    leonardosrodrigues0
    #​5265

  • Respect scattered disable commands in auto-correction of duplicate_imports
    rule.
    SimplyDanny
    #​5418

  • Add new non_optional_string_data_conversion rule to enforce
    non-failable conversions of UTF-8 String <-> Data.
    Ben P
    #​5263

  • Refine violation position of superfluous_else rule.
    SimplyDanny

  • Make sorted_enum_cases rule's comparison case-insensitive to
    avoid unexpected ordering.
    Oleg Kokhtenko

  • Add excluded_lines_patterns to line_length to avoid linting lines
    that contain one of the patterns.
    kasrababaei

  • Make empty_count auto-correctable.
    KS1019

  • Make private_swiftui_state auto-correctable.
    mt00chikin

  • Make trailing_closure correctable.
    KS1019

  • Add new static_over_final_class rule to prefer static over
    final class declaration.
    phlippieb
    #​5471

  • Extends unused_enumerated rule to cover closure parameters, to
    detect cases like list.enumerated().map { idx, _ in idx } and
    list.enumerated().map { $1 }.
    Martin Redington
    #​5470

  • Include Double, Int and String to the exiting redundant type validation
    check of Bool in the redundant_type_annotation rule. Add
    consider_default_literal_types_redundant option supporting Bool,
    Double, Int and String. Setting this option to true lets the rule
    consider said types in declarations like let i: Int = 1 or
    let s: String = "" as redundant.
    Garric Nahapetian

Bug Fixes
  • Invalid keys in a configuration don't lead to the default configuration being
    used anymore. The invalid key will just be reported but otherwise ignored.
    SimplyDanny
    #​5565

  • Fix version comparison algorithm which caused some version-dependent rules to
    misbehave with Swift 5.10.
    chandlerwall
    #​5517

  • Silence discarded_notification_center_observer rule in closures. Furthermore,
    handle get and set accessors correctly and consider implicit returns.
    SimplyDanny
    #​4801

  • Fix some false positives in let_var_whitespace rule that would happen
    when attributes attached to declarations were spread over multiple lines.
    SimplyDanny
    #​4801

  • Support private_over_fileprivate rule for actors.
    SimplyDanny
    #​5489

  • Ensure that declarations referenced only as extended types do not count as
    used by means of the unused_declaration rule.
    SimplyDanny
    #​5550

  • Fix some false positives in multiline_literal_brackets rule that would
    happen when comments are present.
    Marcelo Fabri

  • Fix some false positives in the opening_brace rule.
    kishikawakatsumi
    SimplyDanny
    #​4610
    #​5114
    #​3470
    #​3574
    #​2632
    #​3476
    #​3756
    #​3690

  • Ignore overridden functions with default parameters in the unneeded_override
    rule as they might change behavior.
    SimplyDanny
    #​5355

  • Trigger nsobject_prefer_isequal and redundant_self_in_closure even in case
    the surrounding declaration is nested in an extension.
    SimplyDanny

  • Fixed false positives for the no_magic_numbers rule, when they
    are defined in a tuple like let (a, b) = (5, 10) or let a = (2, 3).
    Martin Redington
    #​5305

  • Take array and nested types into account in redundant_type_annotation rule.
    SimplyDanny
    #​3141
    #​3146

  • Silence pattern_matching_keywords rule when an identifier is referenced
    in the argument list of a matching enum case.
    SimplyDanny
    #​3852

  • Don't trigger the return_value_from_void_function warning from initializers.
    mrbkap

  • Fixes superfluous warnings about configurations for rules that were not
    enabled, when the rules were enabled in a parent configuration.
    Martin Redington
    #​4858

  • Add all pseudo-rule for analyzer_rules - enables all analyzer rules
    that are not listed in disabled_rules.
    woxtu
    Martin Redington
    #​4999

  • Updates the reasons provided by violations of the blanket_disable_command
    to omit language about the end of the file, and to direct users to
    re-enable the rule as soon as possible.
    Martin Redington
    #​5450

yonaskolb/xcodegen (yonaskolb/xcodegen)

v2.41.0

Compare Source

Added
  • Added xcodegen cache command that writes the cache. Useful for post-commit git hook integration #​1476 @​yonaskolb
Changed
Fixed
  • Fixed supportedDestinations validation when it contains watchOS for multiplatform apps. #​1470 @​tatsuky

Configuration

📅 Schedule: Branch creation - "every 2nd week starting on the 2 week of the year before 4am 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 if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR has been generated by Mend Renovate. View repository job log here.

Copy link
Contributor
github-actions bot commented May 12, 2024
8000
58 Warnings
⚠️ Ignoring duplicate libraries: '-lbitwarden_uniffi'
⚠️ GlobalTestHelpers/Extensions/Data+PrettyPrintJSON.swift#L9: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/HTTPResponseTests.swift#L25: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/HTTPResponseTests.swift#L36: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/Extensions/URLSessionHTTPClientTests.swift#L35: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/Extensions/URLSessionHTTPClientTests.swift#L41: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/ResponseTests.swift#L12: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/ResponseTests.swift#L25: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Sources/Networking/HTTPLogger.swift#L46: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/RequestBodyTests.swift#L23: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/RequestBodyTests.swift#L28: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/RequestBodyTests.swift#L46: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/RequestBodyTests.swift#L62: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/HTTPRequestTests.swift#L8: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/HTTPRequestTests.swift#L34: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/HTTPRequestTests.swift#L38: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Networking/Tests/NetworkingTests/HTTPRequestTests.swift#L60: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ Bitwarden/Application/Services/DefaultNFCReaderService.swift#L52: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/UI/Auth/AuthCoordinator.swift#L693: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/UI/Platform/Application/AppProcessorTests.swift#L99: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Tools/Models/Domain/UsernameGenerationOptionsTests.swift#L57: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Tools/Models/Domain/PasswordGenerationOptionsTests.swift#L55: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Models/Response/AccountRevisionDateResponseModel.swift#L17: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/AuthServiceTests.swift#L173: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/AuthServiceTests.swift#L203: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/API/Organization/Requests/SingleSignOnDetailsRequestTests.swift#L29: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/KeychainRepositoryTests.swift#L308: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/KeychainRepositoryTests.swift#L337: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/API/Auth/Requests/IdentityTokenRefreshRequestTests.swift#L30: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/API/Auth/Requests/IdentityTokenRequestTests.swift#L53: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/API/Auth/Requests/IdentityTokenRequestTests.swift#L64: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/API/Auth/Fixtures/APITestData+Auth.swift#L6: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Auth/Services/AuthService.swift#L675: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Utilities/AnyCodableTests.swift#L68: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Utilities/DomainName.swift#L218: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/Stores/AppSettingsStore.swift#L532: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/NotificationService.swift#L298: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/API/Extensions/JSONEncoderBitwardenTests.swift#L18: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/API/Extensions/JSONEncoderBitwardenTests.swift#L36: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/API/Requests/PushNotificationTokenRequestTests.swift#L28: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Autofill/Utilities/ActionExtensionHelperTests.swift#L32: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Autofill/Utilities/ActionExtensionHelperTests.swift#L72: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Autofill/Utilities/ActionExtensionHelperTests.swift#L170: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Autofill/Utilities/ActionExtensionHelperTests.swift#L315: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/NotificationServiceTests.swift#L65: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/NotificationServiceTests.swift#L81: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/NotificationServiceTests.swift#L385: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/NotificationServiceTests.swift#L412: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/NotificationServiceTests.swift#L478: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/NotificationServiceTests.swift#L501: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Platform/Services/NotificationServiceTests.swift#L526: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Autofill/Utilities/ActionExtensionHelper.swift#L135: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Autofill/Utilities/ActionExtensionHelper.swift#L156: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Vault/Models/Enum/PolicyTypeTests.swift#L11: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Vault/Models/Enum/PolicyTypeTests.swift#L15: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ 8000 BitwardenShared/Core/Vault/Models/Enum/PolicyTypeTests.swift#L19: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Vault/Models/Enum/PolicyTypeTests.swift#L27: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)
⚠️ BitwardenShared/Core/Vault/Models/Enum/PolicyTypeTests.swift#L31: Non-Optional String <-> Data Conversion Violation: Prefer using UTF-8 encoded strings when converting between String and Data (non_optional_string_data_conversion)

Bitwarden code coverage

Total coverage: 86.44%

Powered by Slather

Generated by 🚫 Danger

@bitwarden-bot
Copy link
bitwarden-bot commented May 12, 2024

Logo
Checkmarx One – Scan Summary & Detailsf0620c92-31c8-4137-92cd-19ab071dcf28

Fixed Issues

Severity Issue Source File / Package
MEDIUM Unpinned Actions Full Length Commit SHA /crowdin-pull.yml: 27

@renovate renovate bot force-pushed the renovate/mint-minor branch from 676bb6a to 8ad0578 Compare May 12, 2024 21:37
@renovate renovate bot changed the title [deps]: Update realm/SwiftLint to v0.55.0 [deps]: Update mint minor May 12, 2024
@renovate renovate bot force-pushed the renovate/mint-minor branch 9 times, most recently from fd02e6e to 03a728f Compare May 20, 2024 15:04
@renovate renovate bot force-pushed the renovate/mint-minor branch 2 times, most recently from 582f8dd to 287588d Compare May 30, 2024 16:08
< 8000 /batch-deferred-content>
@renovate renovate bot force-pushed the renovate/mint-minor branch from 287588d to db9a9ab Compare June 11, 2024 09:33
Copy link

Copy link
Contributor Author
renovate bot commented Jun 27, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

Copy link
codecov bot commented Jun 27, 2024

Codecov Report

All modified and coverable lines are covered by tests ✅

Please upload report for BASE (main@a8013b8). Learn more about missing BASE report.

Additional details and impacted files
@@           Coverage Diff           @@
##             main     #641   +/-   ##
=======================================
  Coverage        ?   87.75%           
=======================================
  Files           ?      546           
  Lines           ?    27238           
  Branches        ?        0           
=======================================
  Hits            ?    23902           
  Misses          ?     3336           
  Partials        ?        0           

☔ View full report in Codecov by Sentry.
📢 Have feedback on the report? Share it here.

@matt-livefront matt-livefront merged commit 4931643 into main Jun 27, 2024
8 checks passed
@matt-livefront matt-livefront deleted the renovate/mint-minor branch June 27, 2024 17:25
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants
0