yarn v2.3.0 Release Notes

  • yarn set version 2.3.0
    

    CLI

    • The yarn tag set of commands has been ported over from Yarn Classic as yarn npm tag.
    • ๐Ÿ“ฆ Running yarn info will now print many information about your dependencies. Various options are available to tweak the output, including --json. Plugin authors can provide their own information sections via the fetchPackageInfo hook.
    • ๐Ÿ‘€ Running yarn stage with the -r,--reset flag will now unstage all changes that seem related to Yarn.
    • ๐Ÿ‘€ All commands now document each of their options (run yarn add -h to see an example).
    • Publish registry errors will now be reported as is rather than being collapsed into a generic error message.
    • ๐Ÿ A native binary jumper will now be used on Windows to avoid the Terminate batch job (Y/N)? prompts when invoking dependency binaries.

    Installs

    PnP API

    0๏ธโƒฃ The following changes only apply to the pnp linker (which is the default install strategy):

    • The pnpapi module now exposes a new function called getAllLocators allow you to access the list of all locators in the map without having to traverse the dependency tree. This method is considered a Yarn extension, so you should check for its existence if you plan to use it in your code.
    • ๐Ÿ“ฆ When using a portal to a package that had peer dependencies, Yarn would loose the information required to resolve those peer dependencies. It will now properly resolve them the same way as all other packages in the dependency tree.

    The following changes only apply to the node-modules linker:

    • ๐Ÿšš The bin symlinks will now be properly removed from the node_modules/.bin folder as their corresponding dependencies are removed.
    • A new setting called nmHoistingLimits has appeared. It replaces what was previously known as nohoist in Yarn 1.
    • ๐Ÿ“ฆ We are now more forgiving for packages that make incorrect assumptions about the hoisting layout by first trying to maximize package exposure at the top-level. Only after the top-level has been populated will we deduplicate the remaining packages.
    • ๐Ÿ›  Fixed some pathological cases around peer dependencies. In particular, workspaces' peer dependencies will now be resolved against their closest workspace ancestor (according to the directory hierarchy) rather than be ignored. Note that peer dependencies are inherently problematic with workspaces when using the node-modules linker, and that the strictly correct behavior can only be obtained by using the default Plug'n'Play linker.
    • โš™ Running install after an interrupted install is supported now and will result in a consistent install state

    Shell

    • โž• Added support for $$ and $PPID
    • ๐Ÿ›  Fixes some pathological globbing problems.

    ๐Ÿ›  Bugfixes

    • The yarn constraints --fix command will now properly persist the changes on disk.
    • ๐Ÿ“ฆ The yarn unplug command will now work when used on packages with peer dependencies.
    • The yarn stage command will now allow to stage files when called without the -c,--commit flag.
    • ๐Ÿ›  Fixes a performance regression when using FSEvents.

    Miscellaneous

    • โœ‚ Removes extraneous subprocesses when using the yarnPath setting.

    Third-party integrations

    • โšก๏ธ Updated the VSCode SDK to take into account changes in the TypeScript server protocol.
    • โž• Added a few builtin extensions to improve compatibility with packages that weren't correctly listing their dependencies.
    • โšก๏ธ Updatedd the TypeScript patch to cover TypeScript 4.1.