diffx icon indicating copy to clipboard operation
diffx copied to clipboard

Pretty diffs for scala case classes

Results 27 diffx issues
Sort by recently updated
recently updated
newest added

https://docs.scala-lang.org/overviews/core/binary-compatibility-for-library-authors.html#versioning-scheme---communicating-compatibility-breakages

help wanted

Bumps [release-drafter/release-drafter](https://github.com/release-drafter/release-drafter) from 5 to 6. Release notes Sourced from release-drafter/release-drafter's releases. v6.0.0 What's Changed Update Node.js to 20 (#1379) @​massongit Full Changelog: https://github.com/release-drafter/release-drafter/compare/v5.25.0...v6.0.0 v6.0.0-beta.1 Prerelease of v6, first release...

dependencies

Bumps [coursier/setup-action](https://github.com/coursier/setup-action) from 1.3.4 to 1.3.5. Release notes Sourced from coursier/setup-action's releases. v1.3.5 Update / maintenance build(deps-dev): bump @​vercel/ncc from 0.36.1 to 0.38.0 by @​dependabot in coursier/setup-action#474 build(deps): bump @​actions/core...

dependencies

It'd be nice for diffx to be able to output diffs in one line out of the box. Right now I have a hack like that: `.replace("\n", "").replace(" ", "")`....

Bumps [actions/cache](https://github.com/actions/cache) from 3 to 4. Release notes Sourced from actions/cache's releases. v4.0.0 What's Changed Update action to node20 by @​takost in actions/cache#1284 feat: save-always flag by @​to-s in actions/cache#1242...

dependencies

I would like to define common `Diff` instances to be used in multiple test suites. However, when defined something like: ```scala trait MyCommonDiffs { implicit val diffA: Diff[A] = ???...

Bumps [actions/setup-java](https://github.com/actions/setup-java) from 3 to 4. Release notes Sourced from actions/setup-java's releases. v4.0.0 What's Changed In the scope of this release, the version of the Node.js runtime was updated to...

dependencies

Hello, I was trying to compare two case classes with nested optional structures but it seems that it doesn't work. For example the following ``` import com.softwaremill.diffx.Diff.Typeclass import com.softwaremill.diffx.* case...

Hi recently migrated my codebase to Scala 3. But it seems that the old test cases that use `shouldMatchTo` seem to complain ``` ??? shouldMatchTo ??? ``` With this error:...