Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

build(deps-dev): bump @lerna-lite/exec from 1.17.0 to 2.0.0 #2115

Closed

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 14, 2023

Bumps @lerna-lite/exec from 1.17.0 to 2.0.0.

Release notes

Sourced from @​lerna-lite/exec's releases.

v2.0.0

2.0.0 (2023-04-14)

⚠ BREAKING CHANGES

  • publish: make version & publish commands optional, closes #450 (#552)
  • build: migrate to ESM build & switch to Vitest for ESM support (#537)

New Requirement

  • Node >=16.15.0 is now required
  • The version and publish commands are now optional, like all other Lerna-Lite commands
    • see migration below

Description

Since Node 14 becomes EOL at the end of April and the project is a little over a year old, I think now is a good time to go ahead with our next major 2.0 release which brings a lot of internal changes. The project is now built as ESM only, which is for the most part transparent to the user, however it does require Node 16.15.0 and higher. The move to ESM brings a lot of great benefits (smaller bundle & download, the TypeScript code is now nearly identical to the published code and finally all the exceptions that we had for skipping "ESM only" dependencies in Renovate are gone and we are now up to date on everything. Another internal change related to the ESM change was to migrate to Vitest for our unit tests since it has a better ESM support than Jest (which itself is still in experimental mode).

The biggest breaking change for the user is that the version and publish commands are now optional (like all other commands) and must be installed separately. The reason is because it was requested by some users who are actually only interested in run or exec commands and do not require version and/or publish... so with this breaking change, it makes Lerna-Lite entirely modular (which is the biggest difference with the original Lerna which itself is still a pretty large all-in-one tool (it got even bigger since latest Lerna v6 now requires Nx and that is not and will never be the case with Lerna-Lite). The CLI is still required and must be installed but the only command that comes with it is the init command. So from now on, each user will have to choose which command(s) to use and install.

If you wanted to see the full list of changes for this new release, take a look at the Next Major 2.0 Release Roadmap which contains the full list of changes and PRs associated to this release.

Migration

"@lerna-lite/cli": "2.0.0",
+ "@lerna-lite/publish": "2.0.0"
+ "@lerna-lite/version": "2.0.0",
OR you could skip "@​lerna-lite/version" entirely since it's a dependent of the "@​lerna-lite/publish" package
"@​lerna-lite/cli": "2.0.0",

"@​lerna-lite/publish": "2.0.0"

in both cases, the following will be installed

"@lerna-lite/cli": "2.0.0",
"@lerna-lite/publish": "2.0.0"
"@lerna-lite/version": "2.0.0",

⚠ Breaking Changes

  • build: prepare official Lerna-Lite 2.0 release (#567)
  • publish: make version & publish commands optionnal, closes #450 (#552)
  • build: migrate to ESM build & switch to Vitest for ESM support (#537)

Features

... (truncated)

Changelog

Sourced from @​lerna-lite/exec's changelog.

2.0.0 (2023-04-14)

⚠ BREAKING CHANGES

  • build: prepare official Lerna-Lite 2.0 release (#567)

Features

2.0.0-alpha.2 (2023-04-07)

Note: Version bump only for package @​lerna-lite/exec

2.0.0-alpha.1 (2023-04-07)

Note: Version bump only for package @​lerna-lite/exec

2.0.0-alpha.0 (2023-04-07)

⚠ BREAKING CHANGES

  • publish: make version & publish commands optionnal, closes #450 (#552)
  • build: migrate to ESM build & switch to Vitest for ESM support (#537)

Features

Commits
  • 95237d6 chore(release): publish new version 2.0.0
  • fc67355 chore(deps): update all non-major dependencies (#558)
  • 2865a60 feat(build)!: prepare official Lerna-Lite 2.0 release (#567)
  • da96f55 chore(deps): update all non-major dependencies (#524)
  • See full diff in compare view

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code labels Apr 14, 2023
Bumps [@lerna-lite/exec](https://github.com/lerna-lite/lerna-lite/tree/HEAD/packages/exec) from 1.17.0 to 2.0.0.
- [Release notes](https://github.com/lerna-lite/lerna-lite/releases)
- [Changelog](https://github.com/lerna-lite/lerna-lite/blob/main/packages/exec/CHANGELOG.md)
- [Commits](https://github.com/lerna-lite/lerna-lite/commits/v2.0.0/packages/exec)

---
updated-dependencies:
- dependency-name: "@lerna-lite/exec"
  dependency-type: direct:development
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot dependabot bot force-pushed the dependabot/npm_and_yarn/lerna-lite/exec-2.0.0 branch from 2a3b35d to adc6a91 Compare April 15, 2023 12:28
@dependabot @github
Copy link
Contributor Author

dependabot bot commented on behalf of github Apr 15, 2023

Looks like @lerna-lite/exec is up-to-date now, so this is no longer needed.

@dependabot dependabot bot closed this Apr 15, 2023
@dependabot dependabot bot deleted the dependabot/npm_and_yarn/lerna-lite/exec-2.0.0 branch April 15, 2023 12:57
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file javascript Pull requests that update Javascript code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

0 participants