Skip to content

chore(deps): update mint packages#249

Open
renovate[bot] wants to merge 1 commit intomainfrom
renovate/mint-packages
Open

chore(deps): update mint packages#249
renovate[bot] wants to merge 1 commit intomainfrom
renovate/mint-packages

Conversation

@renovate
Copy link
Copy Markdown
Contributor

@renovate renovate bot commented Feb 1, 2026

This PR contains the following updates:

Package Update Change
nicklockwood/SwiftFormat minor 0.58.70.60.1
realm/SwiftLint patch 0.63.10.63.2
yonaskolb/xcodegen minor 2.44.12.45.3

Release Notes

nicklockwood/SwiftFormat (nicklockwood/SwiftFormat)

v0.60.1

Compare Source

  • Fixed issue where redundantSendable rule would unexpectedly remove Sendable conformance on type defined in public extension
  • Fixed issue where redundantSendable rule would leave behind extra space when removing :
  • Renamed redundantProperty rule to redundantVariable
  • Updated redundantVariable rule to preserve variables with explicit type annotations
  • Updated enumNamespaces rule to preserve Swift Testing suites as structs

v0.60.0

Compare Source

  • Added redundantSwiftTestingSuite rule
  • Added redundantSendable rule
  • Added preferExpicitFalse rule
  • Added support for :: module selector syntax
  • Added support for value generics syntax
  • Updated swiftTestingTestCaseNames to use raw identifiers by default
  • Updated swiftTestingTestCaseNames to use UpperCamelCase for test suite names
  • Updated redundantSelf to handle guard statements
  • Updated unusedArguments to handle for loop variables
  • Updated redundantType to better handle Set literals
  • Updated redundantParents to remove empty parens from attributes
  • Updated sortImports to sort imports by access control
  • Updated blankLinesBetweenImports to preserve indentation when indent disabled
  • Updated unusedPrivateDeclaration rule to preserve private @Test functions
  • Updated preferSwiftTesting rule to convert tests in extensions within the same file
  • Updated --stdin-path to not require the file to actually exist
  • Updated simplifyGenericConstraints to avoid adding duplicate constraints
  • Updated blankLinesAroundMark to insert blank line before MARK at start of scope when allowed by blankLinesAtStartOfScope config
  • Updated redundantEquatable to preserve == implementation in types with Strideable conformance
  • Fixed handling of switch statements with #if blocks in several rules
  • Fixed issue where async function declarations were wrapped using wrapArguments instead of wrapParameters
  • Fixed issue where redudantViewBuilder would remove @ViewBuilder from protocol members
  • Fixed redundantSelf parsing issue with throwing closure return types and switch expressions in if let condition
  • Fixed trailingCommas rule incorrectly adding commas to if #available checks
  • Fixed guard...else indentation in wrapArguments with wrap-conditions
  • Fixed issue where simplifyGenericConstraints would leave dangling where keyword in protocol members
  • Fixed issue where trailingCommas didn't handle closure capture lists with macro expressions
  • Fixed indentation for closure parameters on separate lines
  • Fixed issue where .init would be removed in code like [Foo].init { ... } (not supported until Swift 6.4).
  • Fixed issue where .swift-version files were read from excluded directories
  • Fixed incorrect replacement of && operator with , inside a ternary condition
  • Fixed unusedArguments bug in code with try? await
  • Fixed handling of MainActor attributes in redundantViewBuilder

v0.59.1

Compare Source

  • Reverted changes to indent rule --ifdef handling from 0.59.0
  • Updated docComments rule to use doc comments on nested functions and handle conditional compilation blocks in function bodies
  • Updated spaceAroundBrackets to preserve space between global actor attribute and closure capture list
  • Updated redundantMemberwiseInit to preserve inits with attributes
  • Fixed handling of any keyword in sortTypealiases rule
  • Resolved build issue related to macOS 13 SDK availability

v0.59.0

Compare Source

  • Added simplifyGenericConstraints rule
  • Added validateTestCases rule
  • Added testSuiteAccessControl rule
  • Added wrapPropertyBodies rule
  • Added wrapFunctionBodies rule
  • Added redundantViewBuilder rule
  • Added --ifdef preserve option to indent rule
  • Added --prefer-synthesized-init-for-internal-structs option to redundantMemberwiseInit rule
  • Enabled more rules by default: blankLinesBetweenImports, docComments, emptyExtensions, environmentEntry, noForceTryInTests, noForceUnwrapInTests, redundantAsync, redundantEquatable, redundantMemberwiseInit, redundantProperty, redundantThrows
  • Updated typeSugar to only preserve explicit Optional<T> in structs with a synthesized memberwise initializer
  • Updated closing paren of single-argument functions and collections to wrap if needed
  • Updated redundantMemberwiseInit rule to support result builder attributes
  • Improved how organizeDeclarations handles structs with a synthesized memberwise initializer
  • Updated docComments rule to preserve formatting of comments with directives
  • Fixed --ifdef no-indent handling of method chains and nested directives
  • Fixed issue where XMLReporter did not properly escape strings
  • Fixed support for unsafe keyword
  • Fixed edge cases in spaceAroundBrackets rule
  • Fixed crash in sortTypealiases rule
  • Fixed issue where redundantSelf rule could crash if encountering a function with no body (e.g.@_silgen_name)
realm/SwiftLint (realm/SwiftLint)

v0.63.2

Compare Source

Breaking
  • None.
Experimental
  • None.
Enhancements
  • Add ignore_regex configuration option to the large_tuple rule to silence
    violations for tuples inside Regex<...> types, which commonly have large
    tuple type parameters for capture groups.
    Deco354
    #​6340
Bug Fixes
  • Use start position of closure (in addition to the containing function call) to check
    if violations are disabled for it in trailing_closure rule.
    SimplyDanny
    #​6451
yonaskolb/xcodegen (yonaskolb/xcodegen)

v2.45.3

Compare Source

Fixed
  • Fix folder source PBXFileReference path regression with createIntermediateGroups #​1605 @​yonaskolb
  • Fix synced folders: includes silently ignored + no deduplication across targets #​1604 @​4brunu

v2.45.2

Compare Source

Fixed

v2.45.1

Compare Source

Added

v2.45.0

Compare Source

Added
  • Added ability to specify project format version via projectFormat option #​1566 @​anivaros
  • Added explicitFolders property to TargetSource that is passed through to PBXFileSystemSynchronizedRootGroup, to turn entire subfolders into Resources #​1596 @​macguru
  • Allow synced folders to be sorted using groupOrdering #​1596 @​macguru
  • Added excludes support for syncedFolder sources with glob pattern matching #​1587 @​mirkokg
Fixed
  • Fixed synced folders ignoring createIntermediateGroups=YES and always being created at the root level #​1596 @​macguru
  • Fix membership exceptions not working for nested synced folders with intermediate groups enabled #​1596 @​macguru
  • Fix supportedDestinations presets being injected when settingPresets is none #​1599 @​macguru
  • Automatically exclude Info.plist from synced folder membership when it's within the synced folder #​1587 @​mirkokg
  • Add empty copy resources build phase for synced folders so resources are copied correctly #​1587 @​mirkokg
Internal

Configuration

📅 Schedule: Branch creation - "every weekend" in timezone America/Chicago, Automerge - At any time (no schedule defined).

🚦 Automerge: Enabled.

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.

@renovate renovate bot enabled auto-merge (squash) February 1, 2026 16:31
@renovate renovate bot force-pushed the renovate/mint-packages branch from 364bbf9 to 2b35527 Compare February 7, 2026 08:46
@renovate renovate bot force-pushed the renovate/mint-packages branch 6 times, most recently from b252538 to a6e27d4 Compare March 7, 2026 17:16
@renovate renovate bot force-pushed the renovate/mint-packages branch from a6e27d4 to f778ddc Compare March 10, 2026 17:57
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.

0 participants