diff --git a/ComposableArchitecture.xcworkspace/xcshareddata/swiftpm/Package.resolved b/ComposableArchitecture.xcworkspace/xcshareddata/swiftpm/Package.resolved index f122482400a1..9e7b65556284 100644 --- a/ComposableArchitecture.xcworkspace/xcshareddata/swiftpm/Package.resolved +++ b/ComposableArchitecture.xcworkspace/xcshareddata/swiftpm/Package.resolved @@ -5,8 +5,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/combine-schedulers", "state" : { - "revision" : "487a4d151e795a5e076a7e7aedcd13c2ebff6c31", - "version" : "1.0.1" + "revision" : "9fa31f4403da54855f1e2aeaeff478f4f0e40b13", + "version" : "1.0.2" } }, { @@ -32,8 +32,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swift-case-paths", "state" : { - "revision" : "031704ba0634b45e02fe875b8ddddc7f30a07f49", - "version" : "1.5.3" + "revision" : "71344dd930fde41e8f3adafe260adcbb2fc2a3dc", + "version" : "1.5.4" } }, { @@ -41,8 +41,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swift-clocks", "state" : { - "revision" : "eb64eacfed55635a771e3410f9c91de46cf5c6a0", - "version" : "1.0.3" + "revision" : "3581e280bf0d90c3fb9236fb23e75a5d8c46b533", + "version" : "1.0.4" } }, { @@ -68,8 +68,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swift-custom-dump", "state" : { - "revision" : "d237304f42af07f22563aa4cc2d7e2cfb25da82e", - "version" : "1.3.1" + "revision" : "aec6a73f5c1dc1f1be4f61888094b95cf995d973", + "version" : "1.3.2" } }, { @@ -77,8 +77,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swift-dependencies", "state" : { - "revision" : "52018827ce21e482a36e3795bea2666b3898164c", - "version" : "1.3.4" + "revision" : "cc26d06125dbc913c6d9e8a905a5db0b994509e0", + "version" : "1.3.5" } }, { @@ -108,15 +108,6 @@ "version" : "1.1.0" } }, - { - "identity" : "swift-issue-reporting", - "kind" : "remoteSourceControl", - "location" : "https://github.com/pointfreeco/swift-issue-reporting", - "state" : { - "revision" : "357ca1e5dd31f613a1d43320870ebc219386a495", - "version" : "1.2.2" - } - }, { "identity" : "swift-macro-testing", "kind" : "remoteSourceControl", @@ -131,8 +122,8 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swift-perception", "state" : { - "revision" : "2c75ce556a6fc106721b0dadc2c7327244ad3999", - "version" : "1.3.3" + "revision" : "1552c8f722ac256cc0b8daaf1a7073217d4fcdfb", + "version" : "1.3.4" } }, { @@ -167,8 +158,17 @@ "kind" : "remoteSourceControl", "location" : "https://github.com/pointfreeco/swiftui-navigation", "state" : { - "revision" : "97f854044356ac082e7e698f39264cc035544d77", - "version" : "1.5.2" + "revision" : "fc91d591ebba1f90d65028ccb65c861e5979e898", + "version" : "1.5.4" + } + }, + { + "identity" : "xctest-dynamic-overlay", + "kind" : "remoteSourceControl", + "location" : "https://github.com/pointfreeco/xctest-dynamic-overlay", + "state" : { + "revision" : "357ca1e5dd31f613a1d43320870ebc219386a495", + "version" : "1.2.2" } } ], diff --git a/Sources/ComposableArchitecture/SharedState/SharedChangeTracking.swift b/Sources/ComposableArchitecture/SharedState/SharedChangeTracking.swift index 5102be06c586..34484e284c7a 100644 --- a/Sources/ComposableArchitecture/SharedState/SharedChangeTracking.swift +++ b/Sources/ComposableArchitecture/SharedState/SharedChangeTracking.swift @@ -30,7 +30,7 @@ protocol Change { extension Change { func assertUnchanged() { if let difference = diff(snapshot, self.reference.value, format: .proportional) { - XCTFail( + reportIssue( """ Tracked changes to '\(self.reference.description)' but failed to assert: …