Skip to content

Tags: aaron-foreflight/swift-custom-dump

Tags

1.1.1

Toggle 1.1.1's commit message
wip

1.1.0

Toggle 1.1.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Turn Windows CI back on (pointfreeco#99)

* Turn Windows CI back on

* Only test debug

1.0.0

Toggle 1.0.0's commit message
Bump dependencies

0.11.1

Toggle 0.11.1's commit message
Fix 5.9 tests

0.11.0

Toggle 0.11.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
visionOS Support (pointfreeco#94)

* visionOS Support

* wip

* try again

0.10.3

Toggle 0.10.3's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Sort unordered dictionaries when nested in another type (pointfreeco#91)

Fixes pointfreeco#87.

The generic `T` is `Any` when traversing deeper into the mirror. It's
possible that we should be opening existentials more explicitly at each
layer, but we already have the mirror's subject type, so we can use that
instead.

0.10.2

Toggle 0.10.2's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Only print "no difference detected" when diff output is the same (poi…

…ntfreeco#85)

* Only print "no difference detected" when diff output is the same

* wip

* fix for Xcode 13.4.1

0.10.1

Toggle 0.10.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Show difference when values are equal if labels differ (pointfreeco#84)

0.10.0

Toggle 0.10.0's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Don't use `AnyKeyPath.debugDescription` due to crash (pointfreeco#81)

* Don't use `AnyKeyPath.debugDescription` due to crash

SE-0369's implementation unfortunately has a crash related to dynamic
member lookup, so we should revert our reliance on it till the bug is
fixed.

See swiftlang/swift#64865 for more info.

* wip

* wip

* wip

0.9.1

Toggle 0.9.1's commit message

Verified

This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
Fix regression in `typeName` output (pointfreeco#77)

* Fix regression in `typeName` output

The regular expression that strips excessive info from type names was
refactored in pointfreeco#73 to fix some bugs that were discovered, but this change
caused a regression in some nested types.

* fix

* wip