Skip to content
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

Update dependency pointfreeco/swift-case-paths to from: "1.6.1" #80

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jan 30, 2024

This PR contains the following updates:

Package Update Change
pointfreeco/swift-case-paths minor from: "1.2.1" -> from: "1.6.1"

Release Notes

pointfreeco/swift-case-paths (pointfreeco/swift-case-paths)

v1.6.1

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.6.0...1.6.1

v1.6.0

Compare Source

What's Changed
New Contributors

Full Changelog: pointfreeco/swift-case-paths@1.5.6...1.6.0

v1.5.6

Compare Source

What's Changed

New Contributors

Full Changelog: pointfreeco/swift-case-paths@1.5.5...1.5.6

v1.5.5

Compare Source

What's Changed

New Contributors

Full Changelog: pointfreeco/swift-case-paths@1.5.4...1.5.5

v1.5.4

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.5.3...1.5.4

v1.5.3

Compare Source

What's Changed

New Contributors

Full Changelog: pointfreeco/swift-case-paths@1.5.2...1.5.3

v1.5.2

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.5.1...1.5.2

v1.5.1

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.5.0...1.5.1

v1.5.0

Compare Source

What's Changed

New Contributors

Full Changelog: pointfreeco/swift-case-paths@1.4.2...1.5.0

v1.4.2

Compare Source

What's Changed

New Contributors

Full Changelog: pointfreeco/swift-case-paths@1.4.1...1.4.2

v1.4.1

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.4.0...1.4.1

v1.4.0

Compare Source

What's Changed

  • Added: A @CasePathable instance can now be used to look up its associated case path (https://github.com/pointfreeco/swift-case-paths/pull/158).

    @​CasePathable
    enum Foo {
      case bar(Int)
      case baz(String)
    }
    
    let baz = Foo.baz("Blob")
    let bazCase = Foo.allCasePaths[baz]  // PartialCaseKeyPath<Foo>
    baz.is(bazCase)  // true
  • Added: A @CasePathable enum can now iterate over all of its case key paths (https://github.com/pointfreeco/swift-case-paths/pull/159).

    @&#8203;CasePathable
    enum Foo {
      case bar(Int)
      case baz(String)
    }
    
    let baz = Foo.baz("Blob")
    for casePath in Foo.allCasePaths {
      print(baz.is(casePath))
    }
    // false
    // true
    let casePaths = Array(Foo.allCasePaths)  // [PartialCaseKeyPath<Foo>]
    casePaths == [\.bar, \.baz]  // true
  • Infrastructure: Strict concurrency has been enabled in preparation for Swift 6 (https://github.com/pointfreeco/swift-case-paths/pull/156).

Full Changelog: pointfreeco/swift-case-paths@1.3.3...1.4.0

v1.3.3

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.3.2...1.3.3

v1.3.2

Compare Source

What's Changed

New Contributors

Full Changelog: pointfreeco/swift-case-paths@1.3.1...1.3.2

v1.3.1

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.3.0...1.3.1

v1.3.0

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.2.4...1.3.0

v1.2.4

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.2.3...1.2.4

v1.2.3

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.2.2...1.2.3

v1.2.2

Compare Source

What's Changed

Full Changelog: pointfreeco/swift-case-paths@1.2.1...1.2.2


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 becomes conflicted, or you tick the rebase/retry checkbox.

🔕 Ignore: Close this PR and you won't be reminded about this update again.


  • 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 changed the title Update dependency pointfreeco/swift-case-paths to from: "1.2.2" Update dependency pointfreeco/swift-case-paths to from: "1.2.3" Feb 1, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 0d4044d to df1212f Compare February 1, 2024 03:18
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from df1212f to 2008dd0 Compare February 9, 2024 21:17
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.2.3" Update dependency pointfreeco/swift-case-paths to from: "1.2.4" Feb 9, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 2008dd0 to 2b0e0bb Compare March 5, 2024 00:36
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.2.4" Update dependency pointfreeco/swift-case-paths to from: "1.3.0" Mar 5, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 2b0e0bb to bdd4028 Compare April 5, 2024 02:27
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.3.0" Update dependency pointfreeco/swift-case-paths to from: "1.3.1" Apr 5, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from bdd4028 to 4dca95a Compare April 5, 2024 23:15
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.3.1" Update dependency pointfreeco/swift-case-paths to from: "1.3.2" Apr 5, 2024
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.3.2" Update dependency pointfreeco/swift-case-paths to from: "1.3.3" Apr 26, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 4dca95a to db6fd1f Compare April 26, 2024 18:35
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from db6fd1f to 7129f35 Compare June 6, 2024 16:48
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.3.3" Update dependency pointfreeco/swift-case-paths to from: "1.4.0" Jun 6, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 7129f35 to 67cebc8 Compare June 6, 2024 22:58
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.4.0" Update dependency pointfreeco/swift-case-paths to from: "1.4.1" Jun 6, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 67cebc8 to 01fcb64 Compare June 12, 2024 18:32
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.4.1" Update dependency pointfreeco/swift-case-paths to from: "1.4.2" Jun 12, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 01fcb64 to 9e6ffcc Compare July 12, 2024 23:04
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.4.2" Update dependency pointfreeco/swift-case-paths to from: "1.5.0" Jul 12, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 9e6ffcc to fdf6ef4 Compare July 16, 2024 23:19
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.5.0" Update dependency pointfreeco/swift-case-paths to from: "1.5.1" Jul 16, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from fdf6ef4 to 31c38ff Compare July 18, 2024 23:44
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.5.1" Update dependency pointfreeco/swift-case-paths to from: "1.5.2" Jul 18, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 31c38ff to 83c8ded Compare July 22, 2024 23:12
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.5.2" Update dependency pointfreeco/swift-case-paths to from: "1.5.3" Jul 22, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 83c8ded to 948251f Compare July 24, 2024 19:39
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.5.3" Update dependency pointfreeco/swift-case-paths to from: "1.5.4" Jul 24, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 948251f to 7cec419 Compare August 29, 2024 18:07
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.5.4" Update dependency pointfreeco/swift-case-paths to from: "1.5.5" Aug 29, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 7cec419 to 60e6925 Compare October 2, 2024 19:31
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.5.5" Update dependency pointfreeco/swift-case-paths to from: "1.5.6" Oct 2, 2024
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from 60e6925 to b8a103d Compare January 16, 2025 18:17
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.5.6" Update dependency pointfreeco/swift-case-paths to from: "1.6.0" Jan 16, 2025
@renovate renovate bot force-pushed the renovate/pointfreeco-swift-case-paths-1.x branch from b8a103d to a6a4f0d Compare January 30, 2025 22:24
@renovate renovate bot changed the title Update dependency pointfreeco/swift-case-paths to from: "1.6.0" Update dependency pointfreeco/swift-case-paths to from: "1.6.1" Jan 30, 2025
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