v1.3.0
PNPM v8
The project has been upgraded to use PNPM 8. Please update your references and check the following:
- Node.js 14 is no longer supported by PNPM. Please check with
node -v
that you have at least v16 installed. If not, it's best to go straight to the current LTS version 18.17.1. (NVM users:nvm alias default 18
). - The new lock file format is not backward compatible and this could cause CI builds to fail. Regenerate the lock files by rebuilding the solution and then commit them. If you have problems, try running this pwsh one-liner in the solution root:
Get-ChildItem -Recurse pnpm-lock.yaml | ForEach-Object { Push-Location $_.Directory; pnpm install; Pop-Location }
. - You shouldn't have to update PNPM yourself, because Lombiq.NodeJs.Extensions selects the specific excepted version automatically by calling
corepack enable && corepack prepare [email protected] --activate
. If you have manually installed PNPM before, uninstall it and let our library manage the version using corepack that comes with node out of the box.
What's Changed
- SPAL-39: Consolidate package version by @DAud-IcI in #66
- OSOE-603: Upgrade to pnpm@8 by @DAud-IcI in #58
Full Changelog: v1.2.5...v1.3.0