This repository was archived by the owner on Aug 25, 2023. It is now read-only.
Update lerna monorepo (major) #184
Open
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
This PR contains the following updates:
4.0.0->6.4.1^4.0.0->^6.0.04.0.0->6.4.14.0.0->7.1.5Release Notes
lerna/lerna (@lerna/package)
v6.4.1Compare Source
Bug Fixes
v6.4.0Compare Source
Bug Fixes
Features
lerna watchcommand (#3466) (008b995)v6.3.0Compare Source
Features
v6.2.0Compare Source
Bug Fixes
Features
v6.1.0Compare Source
Bug Fixes
Features
6.0.3 (2022-11-07)
Bug Fixes
6.0.2 (2022-11-02)
Bug Fixes
6.0.1 (2022-10-14)
Bug Fixes
v6.0.3Compare Source
Bug Fixes
v6.0.2Compare Source
Bug Fixes
v6.0.1Compare Source
Bug Fixes
v6.0.0Compare Source
Super fast, modern task-runner implementation for
lerna runAs of version 6.0.0, Lerna will now delegate the implementation details of the
lerna runcommand to the super fast, modern task-runner (powered by Nx) by default.If for some reason you wish to opt in to the legacy task-runner implementation details (powered by
p-mapandp-queue), you can do so by setting"useNx": falsein your lerna.json. (Please let us know via a Github issue if you feel the need to do that, however, as in general the new task-runner should just work how you expect it to as a lerna user).Interactive configuration for
lerna runcaching and task pipelines via the newlerna add-cachingcommandWhen using the modern task-runner implementation described above, the way to get the most out of it is to tell it about the outputs of your various scripts, and also any relationships that exist between them (such as needing to run the
buildscript before thetest, for example).Simply run
lerna add-cachingand follow the instructions in order to generate all the relevant configuration for your workspace.You can learn more about the configuration it generates here: https://lerna.js.org/docs/concepts/task-pipeline-configuration
Automatic loading of .env files in
lerna runwith the new task-runner implementationBy default the modern task runner powered by Nx will automatically load
.envfiles for you. You can set--load-env-filesto false if you want to disable this behavior for any reason.For more details about what
.envfiles will be loaded by default please see: https://nx.dev/recipes/environment-variables/define-environment-variablesObsolete options in
lerna runwith the new task-runner implementationThere are certain legacy options for
lerna runwhich are no longer applicable to the modern task-runner. Please see full details about those flags, and the reason behind their obselence, here:https://lerna.js.org/docs/lerna6-obsolete-options
New
lerna repaircommandWhen configuration changes over time as new versions of a tool are published it can be tricky to keep up with the changes and sometimes it's possible to miss out on optimizations as a result.
When you run the new command
lerna repair, lerna will execute a series of code migrations/codemods which update your workspace to the latest and greatest best practices for workspace configuration.The actual codemods which run will be added to over time, but for now one you might see run on your workspace is that it will remove any explicit
"useNx": truereferences from lerna.json files, because that is no longer necessary and it's cleaner not to have it.We are really excited about this feature and how we can use it to help users keep their workspaces up to date.
v5.6.2Compare Source
Bug Fixes
"red"color with"brightBlue"on package's output prefix (#2774) (d7c1b87)v5.6.1Compare Source
Bug Fixes
v5.6.0Compare Source
Bug Fixes
Features
5.5.4 (2022-09-28)
Note: Version bump only for package lerna-monorepo
5.5.3 (2022-09-28)
Bug Fixes
5.5.2 (2022-09-20)
Bug Fixes
fs-extradependency declaration (#3332) (068830e)5.5.1 (2022-09-09)
Bug Fixes
workspace:prefix (#3322) (746ce33)v5.5.4Compare Source
Note: Version bump only for package lerna-monorepo
v5.5.3Compare Source
Bug Fixes
v5.5.2Compare Source
Bug Fixes
fs-extradependency declaration (#3332) (068830e)v5.5.1Compare Source
Bug Fixes
workspace:prefix (#3322) (746ce33)v5.5.0Compare Source
Bug Fixes
Features
5.4.3 (2022-08-16)
Bug Fixes
5.4.2 (2022-08-14)
Bug Fixes
5.4.1 (2022-08-12)
Bug Fixes
v5.4.3Compare Source
Bug Fixes
v5.4.2Compare Source
Bug Fixes
v5.4.1Compare Source
Bug Fixes
v5.4.0Compare Source
Bug Fixes
Features
v5.3.0Compare Source
Bug Fixes
Features
v5.2.0Compare Source
Bug Fixes
Features
verifyAccessbehavior by default (#3249) (94174c1)5.1.8 (2022-07-07)
Bug Fixes
5.1.7 (2022-07-06)
Bug Fixes
5.1.6 (2022-06-24)
Bug Fixes
5.1.5 (2022-06-24)
Bug Fixes
5.1.4 (2022-06-15)
Bug Fixes
5.1.3 (2022-06-15)
Bug Fixes
5.1.2 (2022-06-13)
Bug Fixes
5.1.1 (2022-06-09)
Bug Fixes
v5.1.8Compare Source
Bug Fixes
v5.1.7Compare Source
Bug Fixes
v5.1.6Compare Source
Bug Fixes
v5.1.5Compare Source
Bug Fixes
v5.1.4Compare Source
Bug Fixes
v5.1.3Compare Source
Bug Fixes
v5.1.1Compare Source
Bug Fixes
v5.1.0Compare Source
Bug Fixes
Features
v5.0.0Compare Source
Lerna workspaces no longer have dependency deprecation warnings.
Bug Fixes
BREAKING CHANGES
Node v10.x and v12.x are no longer supported.
Internally npm lifecycle scripts are now invoked using
@npmcli/run-scriptinstead ofnpm-lifecyclein order to modernize the package and fix package vulnerabilities and deprecations.We are classing this as a breaking change because the APIs of
npm-lifecycleand@npmcli/run-scriptare significantly different, despite@npmcli/run-scriptbeing the official successor tonpm-lifecycle.We have successfully made the integration test suite we inherited pass with this change, but there may potentially be aspects related to it which are not covered by the tests and are breaking. If you encounter any issues you believe are related to this change please open a new issue with a dedicated reproduction for us to look into!
lerna/lerna (lerna)
v7.1.5Compare Source
Note: Version bump only for package lerna
v7.1.4Compare Source
Bug Fixes
v7.1.3Compare Source
Bug Fixes
v7.1.2Compare Source
v7.1.1Compare Source
Bug Fixes
v7.1.0Compare Source
Features
7.0.2 (2023-06-15)
Note: Version bump only for package lerna
7.0.1 (2023-06-13)
Note: Version bump only for package lerna
v7.0.2Compare Source
Note: Version bump only for package lerna
v7.0.1Compare Source
Note: Version bump only for package lerna
v7.0.0Compare Source
Bug Fixes
Features
v6.6.2Compare Source
Bug Fixes
v6.6.1Compare Source
Bug Fixes
v6.6.0Compare Source
Bug Fixes
Features
6.5.1 (2023-02-14)
Bug Fixes
v6.5.1Compare Source
Bug Fixes
v6.5.0Compare Source
Features
6.4.1 (2023-01-12)
Bug Fixes
v6.4.1Compare Source
Bug Fixes
v6.4.0Compare Source
Features
lerna watchcommand (#3466) (008b995)v6.3.0Compare Source
Features
v6.2.0Compare Source
Bug Fixes
Features
v6.1.0Compare Source
Features
6.0.3 (2022-11-07)
Note: Version bump only for package lerna
6.0.2 (2022-11-02)
Note: Version bump only for package lerna
6.0.1 (2022-10-14)
Bug Fixes
v6.0.3Compare Source
Note: Version bump only for package lerna
v6.0.2Compare Source
Note: Version bump only for package lerna
v6.0.1Compare Source
Bug Fixes
v6.0.0Compare Source
Note: Version bump only for package lerna
v5.6.2Compare Source
Note: Version bump only for package lerna
v5.6.1Compare Source
Bug Fixes
v5.6.0Compare Source
Features
5.5.4 (2022-09-28)
Note: Version bump only for package lerna
5.5.3 (2022-09-28)
Note: Version bump only for package lerna
5.5.2 (2022-09-20)
Note: Version bump only for package lerna
5.5.1 (2022-09-09)
Bug Fixes
v5.5.4Compare Source
Note: Version bump only for package lerna
v5.5.2Compare Source
Note: Version bump only for package lerna
v5.5.1Compare Source
Bug Fixes
v5.5.0Compare Source
Features
Reverts
5.4.3 (2022-08-16)
Note: Version bump only for package lerna
5.4.2 (2022-08-14)
Note: Version bump only for package lerna
5.4.1 (2022-08-12)
Note: Version bump only for package lerna
v5.4.3Compare Source
Note: Version bump only for package lerna
v5.4.2Compare Source
Note: Version bump only for package lerna
v5.4.1Compare Source
Note: Version bump only for package lerna
v5.4.0Compare Source
Bug Fixes
v5.3.0Compare Source
Features
v5.2.0Compare Source
Features
5.1.8 (2022-07-07)
Note: Version bump only for package lerna
5.1.7 (2022-07-06)
Note: Version bump only for package lerna
5.1.6 (2022-06-24)
Note: Version bump only for package lerna
5.1.5 (2022-06-24)
Note: Version bump only for package lerna
5.1.4 (2022-06-15)
Note: Version bump only for package lerna
5.1.3 (2022-06-15)
Note: Version bump only for package lerna
5.1.2 (2022-06-13)
Bug Fixes
5.1.1 (2022-06-09)
Bug Fixes
v5.1.8Compare Source
Note: Version bump only for package lerna
v5.1.7Compare Source
Note: Version bump only for package lerna
v5.1.6Compare Source
Note: Version bump only for package lerna
v5.1.5Compare Source
Note: Version bump only for package lerna
v5.1.4Compare Source
Note: Version bump only for package lerna
v5.1.3Compare Source
Note: Version bump only for package lerna
v5.1.2Compare Source
Bug Fixes
v5.1.1Compare Source
Bug Fixes
v5.1.0Compare Source
Note: Version bump only for package lerna
v5.0.0Compare Source
Note: Version bump only for package lerna
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.
This PR has been generated by Mend Renovate. View repository job log here.