Skip to content

0.6.0

Latest
Compare
Choose a tag to compare
@micheleorselli micheleorselli released this 09 May 15:46
· 8 commits to main since this release
e7a9b6a

What's Changed

  • Allow to exclude some namespaces in NotDependsOnTheseNamespaces and DependsOnlyOnTheseNamespaces by @micheleorselli in #501

This is a BC Break, you must update any usage of DependsOnlyOnTheseNamespaces and NotDependsOnTheseNamespaces to remove the usage of variadic arg:

before:

new DependsOnlyOnTheseNamespaces('App\Domain', 'App\Infrastructure')

new NotDependsOnTheseNamespaces('App\Domain', 'App\Infrastructure')

after:

new DependsOnlyOnTheseNamespaces(['App\Domain', 'App\Infrastructure'])

new NotDependsOnTheseNamespaces(['App\Domain', 'App\Infrastructure'])

Full Changelog: 0.5.5...0.6.0