From 66ed2b1b9cd44ea75fec58619ef15f7202b772eb Mon Sep 17 00:00:00 2001 From: "cgrindel-self-hosted-renovate[bot]" <139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com> Date: Wed, 8 Jan 2025 14:41:56 +0000 Subject: [PATCH] chore(deps): update dependency pointfreeco/swift-composable-architecture to from: "1.17.1" (#1433) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit This PR contains the following updates: | Package | Update | Change | |---|---|---| | [pointfreeco/swift-composable-architecture](https://redirect.github.com/pointfreeco/swift-composable-architecture) | patch | `from: "1.17.0"` -> `from: "1.17.1"` | --- ### Release Notes
pointfreeco/swift-composable-architecture (pointfreeco/swift-composable-architecture) ### [`v1.17.1`](https://redirect.github.com/pointfreeco/swift-composable-architecture/releases/tag/1.17.1) [Compare Source](https://redirect.github.com/pointfreeco/swift-composable-architecture/compare/1.17.0...1.17.1) #### What's Changed - Fixed: Record state access when constructing store collections ([https://github.com/pointfreeco/swift-composable-architecture/pull/3521](https://redirect.github.com/pointfreeco/swift-composable-architecture/pull/3521)). - Fixed: Don't report unasserted shared changes in `Reducer._printChanges()` ([https://github.com/pointfreeco/swift-composable-architecture/pull/3528](https://redirect.github.com/pointfreeco/swift-composable-architecture/pull/3528)). - Fixed: Relax [Sharing](https://redirect.github.com/pointfreeco/swift-sharing) requirement to include major 2.0 version ([https://github.com/pointfreeco/swift-composable-architecture/pull/3546](https://redirect.github.com/pointfreeco/swift-composable-architecture/pull/3546)). - Infrastructure: Documentation fixes (thanks [@​takehilo](https://redirect.github.com/takehilo), [https://github.com/pointfreeco/swift-composable-architecture/pull/3540](https://redirect.github.com/pointfreeco/swift-composable-architecture/pull/3540)). - Infrastructure: Unit test fixes for Xcode 16 and older iOS destinations (thanks [@​pyrtsa](https://redirect.github.com/pyrtsa), [https://github.com/pointfreeco/swift-composable-architecture/pull/3537](https://redirect.github.com/pointfreeco/swift-composable-architecture/pull/3537)). See [the migration guide](https://redirect.github.com/pointfreeco/swift-composable-architecture/blob/main/Sources/ComposableArchitecture/Documentation.docc/Articles/MigrationGuides/MigratingTo1.17.1.md) for more details. **Full Changelog**: https://github.com/pointfreeco/swift-composable-architecture/compare/1.17.0...1.17.1
--- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), 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](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR has been generated by [Renovate Bot](https://redirect.github.com/renovatebot/renovate). Co-authored-by: cgrindel-self-hosted-renovate[bot] <139595543+cgrindel-self-hosted-renovate[bot]@users.noreply.github.com> Co-authored-by: mergify[bot] <37929162+mergify[bot]@users.noreply.github.com> --- examples/tca_example/Package.swift | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/examples/tca_example/Package.swift b/examples/tca_example/Package.swift index 9c2b87016..0318f88d4 100644 --- a/examples/tca_example/Package.swift +++ b/examples/tca_example/Package.swift @@ -7,7 +7,7 @@ let package = Package( dependencies: [ .package( url: "https://github.com/pointfreeco/swift-composable-architecture", - .upToNextMajor(from: "1.17.0") + .upToNextMajor(from: "1.17.1") ), ] )