Skip to content

Releases: QuiiBz/sherif

v1.1.1

11 Dec 09:15
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.1.0...v1.1.1

v1.1.0

10 Dec 08:22
Compare
Choose a tag to compare

What's Changed

New Contributors

Full Changelog: v1.0.2...v1.1.0

v1.0.2

18 Nov 11:21
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1...v1.0.2

v1

16 Nov 09:03
Compare
Choose a tag to compare

What's Changed

Full Changelog: v1.0.1...v1

v1.0.1

16 Oct 12:43
Compare
Choose a tag to compare

What's Changed

  • fix: sort multiple-dependency-versions for pre-release versions by @QuiiBz in #96
  • fix: make sure bun is detected even when yarn.lock file is present by @baptisteArno in #99

New Contributors

Full Changelog: v1.0.0...v1.0.1

v1.0.0

31 Aug 13:31
Compare
Choose a tag to compare

New unordered-dependencies rule

Dependencies should be ordered alphabetically to prevent complex diffs when installing a new dependency via a package manager. This rule is auto-fixable with --fix:

Screenshot 2024-08-31 at 14 22 09

Automatically run your package manager's install command when autofixing

When running Sherif with --fix, your lockfile might need to be refreshed (e.g. when a dependency version is updated, or moved from normal dependencies to devDependencies). Sherif will now automatically run your package manager's install command for you.

Your package manager is auto-detected based on its lockfile - if none is found, Sherif will ask you to choose one. The following package managers are supported:

  • NPM
  • PNPM
  • Yarn
  • Bun

This feature is disabled in CI environments, and can be disabled with the --no-install flag.

Support nested packages in the workspace using **

Sherif now supports expanding packages defined in the workspace using **. For example, packages/**/* is now a supported syntax:

{
  "name": "example-workspace",
  "workspaces": [
    "packages/*", // already supported
    "packages/**/*" // new!
  ]
}

What's Changed

  • fix: nested ignored packages by @QuiiBz in #91
  • feat: expand nested packages by @QuiiBz in #92
  • feat: new unordered-dependencies rule by @QuiiBz in #94
  • feat: automatic package manager install when autofixing by @Willem-Jaap in #71

Full Changelog: v0.11.0...v1.0.0

v0.11.0

10 Aug 07:38
Compare
Choose a tag to compare

Ignore a specific dependency and version

Let's say your monorepo has two versions of react: 18.3.1 and 19.0.0. One of your application is expected to use the new react 19.0.0, but you still want to make sure you keep the same react 18.* version on all your other applications

Previously, you had to ignore completely the react dependency from the multiple-dependency-versions rule, which means you would completely loose track of potentially different react 18.* versions:

sherif -i react

But now, you can ignore a specific set of dependency and version, so the multiple-dependency-versions rule will keep detecting any other react version and alert you:

sherif -i react@19.0.0

Report dependency versions mismatch with the root package.json

Previously, Sherif didn't check the multiple-dependency-versions in the root package.json. It now does, meaning you can deduplicate more dependency versions if they are present in both a package in a workspace, and the root package.json.

What's Changed

  • feat: multiple-dependency-versions also checks root package by @QuiiBz in #82
  • feat: allow ignoring specific dependency and version for multiple-dependency-versions by @QuiiBz in #84
  • docs: fix typo in README by @Willem-Jaap in #85
  • feat: upload binaries on release by @QuiiBz in #72

New Contributors

Full Changelog: v0.10.0...v0.11.0

v0.10.0

07 Jul 09:45
25a1441
Compare
Choose a tag to compare

What's Changed

  • feat: preserve newline with --fix by @QuiiBz in #75
  • feat: improve multiple-dependency-versions fix style by @QuiiBz in #76
  • fix: grammatical error in packages-without-package-json by @tyleralbee in #77

New Contributors

Full Changelog: v0.9.0...v0.10.0

v0.9.0

23 Jun 07:28
Compare
Choose a tag to compare

What's Changed

  • feat: print packages collect errors by @QuiiBz in #65
  • feat: sort multiple-dependency-versions autofix by @QuiiBz in #66

Full Changelog: v0.8.4...v0.9.0

v0.8.4

13 Apr 13:43
Compare
Choose a tag to compare

What's Changed

  • Revert "feat(multiple-dependency-versions): report peerDependencies (#50) by @QuiiBz

Full Changelog: v0.8.1...v0.8.4