Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: lerna/lerna
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v7.3.0
Choose a base ref
...
head repository: lerna/lerna
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v7.3.1
Choose a head ref
  • 4 commits
  • 13 files changed
  • 3 contributors

Commits on Oct 9, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    87fec84 View commit details

Commits on Oct 10, 2023

  1. Verified

    This commit was created on GitHub.com and signed with GitHub’s verified signature. The key has expired.
    Copy the full SHA
    0674555 View commit details
  2. Copy the full SHA
    f01f568 View commit details
  3. chore(misc): publish 7.3.1

    JamesHenry committed Oct 10, 2023
    Copy the full SHA
    f09e00a View commit details
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [7.3.1](https://github.com/lerna/lerna/compare/v7.3.0...v7.3.1) (2023-10-10)

### Bug Fixes

- **core:** update package engines.node to correctly include only >=16 ([#3861](https://github.com/lerna/lerna/issues/3861)) ([0674555](https://github.com/lerna/lerna/commit/067455559a1ffa25350800bff6c9226d0e24e6b9))

# [7.3.0](https://github.com/lerna/lerna/compare/v7.2.0...v7.3.0) (2023-09-13)

### Bug Fixes
@@ -94,6 +100,16 @@ See [Conventional Commits](https://conventionalcommits.org) for commit guideline
As this is a major release there are a few breaking changes to be aware of, which may or may not affect your lerna repos, depending on how you are using the tool.

- **node v14 support is dropped because it is end of life**

When a node version because end of life (EOL) it means that it does not receive any updates or maintenance whatsoever, even if critical security vulnerabilities have been uncovered.

We strongly encourage all folks here to keep up with the maintenance LTS version of Node at an absolute minimum:

https://github.com/nodejs/release#release-schedule

NOTE: Due to an oversight, we initially forgot to formally remove this from the engines field. This was corrected in patch `7.3.1`

- **legacy package management commands have been removed**

We no longer include the `bootstrap`, `add`, and `link` commands by default. We strongly recommend using your package manager (`npm`, `yarn`, `pnpm`) for package management related concerns such as installing and linking dependencies.
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
@@ -16,5 +16,5 @@
}
},
"ignoreChanges": ["**/__fixtures__/**", "**/__tests__/**", "**/*.md"],
"version": "7.3.0"
"version": "7.3.1"
}
26 changes: 13 additions & 13 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -12,7 +12,7 @@
"yarn": "1.22.19"
},
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": ">=16.0.0"
},
"scripts": {
"build": "tools/scripts/build.sh",
6 changes: 6 additions & 0 deletions packages/child-process/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [7.3.1](https://github.com/lerna/lerna/compare/v7.3.0...v7.3.1) (2023-10-10)

### Bug Fixes

- **core:** update package engines.node to correctly include only >=16 ([#3861](https://github.com/lerna/lerna/issues/3861)) ([0674555](https://github.com/lerna/lerna/commit/067455559a1ffa25350800bff6c9226d0e24e6b9))

# [7.3.0](https://github.com/lerna/lerna/compare/v7.2.0...v7.3.0) (2023-09-13)

**Note:** Version bump only for package @lerna/child-process
4 changes: 2 additions & 2 deletions packages/child-process/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lerna/child-process",
"version": "7.3.0",
"version": "7.3.1",
"description": "Lerna's internal child_process wrapper",
"keywords": [
"lerna",
@@ -17,7 +17,7 @@
],
"main": "index.js",
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
6 changes: 6 additions & 0 deletions packages/legacy-package-management/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [7.3.1](https://github.com/lerna/lerna/compare/v7.3.0...v7.3.1) (2023-10-10)

### Bug Fixes

- **core:** update package engines.node to correctly include only >=16 ([#3861](https://github.com/lerna/lerna/issues/3861)) ([0674555](https://github.com/lerna/lerna/commit/067455559a1ffa25350800bff6c9226d0e24e6b9))

# [7.3.0](https://github.com/lerna/lerna/compare/v7.2.0...v7.3.0) (2023-09-13)

### Bug Fixes
6 changes: 3 additions & 3 deletions packages/legacy-package-management/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lerna/legacy-package-management",
"version": "7.3.0",
"version": "7.3.1",
"description": "Legacy package management concerns provided by lerna. Please migrate to use npm/yarn/pnpm workspaces instead.",
"keywords": [
"lerna",
@@ -15,7 +15,7 @@
],
"main": "./dist/index.js",
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
@@ -26,7 +26,7 @@
"directory": "packages/legacy-package-management"
},
"dependencies": {
"@lerna/child-process": "7.3.0",
"@lerna/child-process": "7.3.1",
"@npmcli/arborist": "6.2.9",
"@npmcli/run-script": "6.0.2",
"@nx/devkit": ">=16.1.3 < 17",
6 changes: 6 additions & 0 deletions packages/legacy-structure/commands/create/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [7.3.1](https://github.com/lerna/lerna/compare/v7.3.0...v7.3.1) (2023-10-10)

### Bug Fixes

- **core:** update package engines.node to correctly include only >=16 ([#3861](https://github.com/lerna/lerna/issues/3861)) ([0674555](https://github.com/lerna/lerna/commit/067455559a1ffa25350800bff6c9226d0e24e6b9))

# [7.3.0](https://github.com/lerna/lerna/compare/v7.2.0...v7.3.0) (2023-09-13)

### Bug Fixes
6 changes: 3 additions & 3 deletions packages/legacy-structure/commands/create/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lerna/create",
"version": "7.3.0",
"version": "7.3.1",
"description": "Create a new lerna-managed package",
"keywords": [
"lerna",
@@ -19,7 +19,7 @@
],
"main": "./dist/index.js",
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": ">=16.0.0"
},
"publishConfig": {
"access": "public"
@@ -30,7 +30,7 @@
"directory": "packages/legacy-structure/commands/create"
},
"dependencies": {
"@lerna/child-process": "7.3.0",
"@lerna/child-process": "7.3.1",
"@npmcli/run-script": "6.0.2",
"@nx/devkit": ">=16.5.1 < 17",
"@octokit/plugin-enterprise-rest": "6.0.1",
6 changes: 6 additions & 0 deletions packages/lerna/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -3,6 +3,12 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

## [7.3.1](https://github.com/lerna/lerna/compare/v7.3.0...v7.3.1) (2023-10-10)

### Bug Fixes

- **core:** update package engines.node to correctly include only >=16 ([#3861](https://github.com/lerna/lerna/issues/3861)) ([0674555](https://github.com/lerna/lerna/commit/067455559a1ffa25350800bff6c9226d0e24e6b9))

# [7.3.0](https://github.com/lerna/lerna/compare/v7.2.0...v7.3.0) (2023-09-13)

### Bug Fixes
8 changes: 4 additions & 4 deletions packages/lerna/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lerna",
"version": "7.3.0",
"version": "7.3.1",
"description": "Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository",
"keywords": [
"lerna",
@@ -23,7 +23,7 @@
],
"main": "./src/index.js",
"engines": {
"node": "^14.17.0 || >=16.0.0"
"node": ">=16.0.0"
},
"publishConfig": {
"tag": "next"
@@ -37,8 +37,8 @@
"migrations": "./migrations.json"
},
"dependencies": {
"@lerna/child-process": "7.3.0",
"@lerna/create": "7.3.0",
"@lerna/child-process": "7.3.1",
"@lerna/create": "7.3.1",
"@npmcli/run-script": "6.0.2",
"@nx/devkit": ">=16.5.1 < 17",
"@octokit/plugin-enterprise-rest": "6.0.1",
38 changes: 24 additions & 14 deletions website/package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.