diff --git a/CHANGELOG.md b/CHANGELOG.md index f096137551..2741ac7f40 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,6 +3,26 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.0.0](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0) (2023-06-08) + +### Bug Fixes + +- bump cosmiconfig to v8 ([#3701](https://github.com/lerna/lerna/issues/3701)) ([898923d](https://github.com/lerna/lerna/commit/898923d198319d76ed5e37e553bfe3b27e43604c)) +- daemon communication ([e82618b](https://github.com/lerna/lerna/commit/e82618bf1a8aaea6d3d7f74f9afb8f1c5afe04ad)) +- ensure repair command not blocked by config validation ([e237d58](https://github.com/lerna/lerna/commit/e237d585e63a2fb502a8958f15a1efe03d781c57)) +- improve github client missing env var error ([ce4b352](https://github.com/lerna/lerna/commit/ce4b35213200b07e89a6ab09743f84aa60e5ca2c)) +- internal cli.js should not be bundled ([53d73c6](https://github.com/lerna/lerna/commit/53d73c6aa9833e5a5bf60c2c78896456e77fab40)) +- migration building/publishing issues ([27bf800](https://github.com/lerna/lerna/commit/27bf800b6e7670ea1ec5576fdf008e8d09897d4b)) +- **publish:** use correct version in log messages ([#3702](https://github.com/lerna/lerna/issues/3702)) ([4be9188](https://github.com/lerna/lerna/commit/4be9188e68c5d4c320c0946e6e386cbee95a8efe)) +- share project data when nesting commands ([#3709](https://github.com/lerna/lerna/issues/3709)) ([53e71e4](https://github.com/lerna/lerna/commit/53e71e4746604aa3fbaada3dad58b02904769759)) +- support nx 16.3.1+ ([#3707](https://github.com/lerna/lerna/issues/3707)) ([647dbb5](https://github.com/lerna/lerna/commit/647dbb512bf6a873cab6362c434b420b18af0ad4)) + +### Features + +- add migration for adding $schema, increase some strictness ([73ceac3](https://github.com/lerna/lerna/commit/73ceac3dc2cf0e1246d4433cb101d1e794b2cca3)) +- Add name of package that fails to publish ([#3644](https://github.com/lerna/lerna/issues/3644)) ([11d8473](https://github.com/lerna/lerna/commit/11d847308bb8f4078e47a30a14b4d883948c4530)) +- **publish:** support custom directory per-package ([#3699](https://github.com/lerna/lerna/issues/3699)) ([9da575e](https://github.com/lerna/lerna/commit/9da575e9da221b8be4fbaa2fb1e7676b54d86d4f)) + # [7.0.0-alpha.8](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0-alpha.8) (2023-06-07) ### Bug Fixes diff --git a/lerna.json b/lerna.json index f89d2621af..f0cd381cdc 100644 --- a/lerna.json +++ b/lerna.json @@ -16,5 +16,5 @@ } }, "ignoreChanges": ["**/__fixtures__/**", "**/__tests__/**", "**/*.md"], - "version": "7.0.0-alpha.5" + "version": "7.0.0" } diff --git a/package-lock.json b/package-lock.json index c2255cba67..1190d146bf 100644 --- a/package-lock.json +++ b/package-lock.json @@ -18600,7 +18600,7 @@ }, "packages/child-process": { "name": "@lerna/child-process", - "version": "7.0.0-alpha.8", + "version": "7.0.0", "license": "MIT", "dependencies": { "chalk": "^4.1.0", @@ -18613,10 +18613,10 @@ }, "packages/legacy-package-management": { "name": "@lerna/legacy-package-management", - "version": "7.0.0-alpha.8", + "version": "7.0.0", "license": "MIT", "dependencies": { - "@lerna/child-process": "7.0.0-alpha.8", + "@lerna/child-process": "7.0.0", "@npmcli/arborist": "6.2.9", "@npmcli/run-script": "6.0.2", "@nx/devkit": ">=16.1.3 < 17", @@ -18686,10 +18686,10 @@ }, "packages/legacy-structure/commands/create": { "name": "@lerna/create", - "version": "7.0.0-alpha.8", + "version": "7.0.0", "license": "MIT", "dependencies": { - "@lerna/child-process": "7.0.0-alpha.8", + "@lerna/child-process": "7.0.0", "dedent": "0.7.0", "fs-extra": "^11.1.1", "init-package-json": "5.0.0", @@ -18708,11 +18708,11 @@ } }, "packages/lerna": { - "version": "7.0.0-alpha.8", + "version": "7.0.0", "license": "MIT", "dependencies": { - "@lerna/child-process": "7.0.0-alpha.8", - "@lerna/create": "7.0.0-alpha.8", + "@lerna/child-process": "7.0.0", + "@lerna/create": "7.0.0", "@npmcli/run-script": "6.0.2", "@nx/devkit": ">=16.1.3 < 17", "@octokit/plugin-enterprise-rest": "6.0.1", diff --git a/packages/child-process/CHANGELOG.md b/packages/child-process/CHANGELOG.md index 0ed930db68..8d63a2c40b 100644 --- a/packages/child-process/CHANGELOG.md +++ b/packages/child-process/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.0.0](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0) (2023-06-08) + +### Bug Fixes + +- migration building/publishing issues ([27bf800](https://github.com/lerna/lerna/commit/27bf800b6e7670ea1ec5576fdf008e8d09897d4b)) +- **publish:** use correct version in log messages ([#3702](https://github.com/lerna/lerna/issues/3702)) ([4be9188](https://github.com/lerna/lerna/commit/4be9188e68c5d4c320c0946e6e386cbee95a8efe)) +- support nx 16.3.1+ ([#3707](https://github.com/lerna/lerna/issues/3707)) ([647dbb5](https://github.com/lerna/lerna/commit/647dbb512bf6a873cab6362c434b420b18af0ad4)) + # [7.0.0-alpha.8](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0-alpha.8) (2023-06-07) ### Bug Fixes diff --git a/packages/child-process/package.json b/packages/child-process/package.json index 6eb5092193..c78b35a25a 100644 --- a/packages/child-process/package.json +++ b/packages/child-process/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/child-process", - "version": "7.0.0-alpha.8", + "version": "7.0.0", "description": "Lerna's internal child_process wrapper", "keywords": [ "lerna", diff --git a/packages/legacy-package-management/CHANGELOG.md b/packages/legacy-package-management/CHANGELOG.md index 58c9131981..8957f46b13 100644 --- a/packages/legacy-package-management/CHANGELOG.md +++ b/packages/legacy-package-management/CHANGELOG.md @@ -3,6 +3,15 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.0.0](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0) (2023-06-08) + +### Bug Fixes + +- bump cosmiconfig to v8 ([#3701](https://github.com/lerna/lerna/issues/3701)) ([898923d](https://github.com/lerna/lerna/commit/898923d198319d76ed5e37e553bfe3b27e43604c)) +- migration building/publishing issues ([27bf800](https://github.com/lerna/lerna/commit/27bf800b6e7670ea1ec5576fdf008e8d09897d4b)) +- **publish:** use correct version in log messages ([#3702](https://github.com/lerna/lerna/issues/3702)) ([4be9188](https://github.com/lerna/lerna/commit/4be9188e68c5d4c320c0946e6e386cbee95a8efe)) +- support nx 16.3.1+ ([#3707](https://github.com/lerna/lerna/issues/3707)) ([647dbb5](https://github.com/lerna/lerna/commit/647dbb512bf6a873cab6362c434b420b18af0ad4)) + # [7.0.0-alpha.8](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0-alpha.8) (2023-06-07) ### Bug Fixes diff --git a/packages/legacy-package-management/package.json b/packages/legacy-package-management/package.json index 1b823d331a..5f0eaa47b6 100644 --- a/packages/legacy-package-management/package.json +++ b/packages/legacy-package-management/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/legacy-package-management", - "version": "7.0.0-alpha.8", + "version": "7.0.0", "description": "Legacy package management concerns provided by lerna. Please migrate to use npm/yarn/pnpm workspaces instead.", "keywords": [ "lerna", @@ -26,7 +26,7 @@ "directory": "packages/legacy-package-management" }, "dependencies": { - "@lerna/child-process": "7.0.0-alpha.8", + "@lerna/child-process": "7.0.0", "@npmcli/arborist": "6.2.9", "@npmcli/run-script": "6.0.2", "@nx/devkit": ">=16.1.3 < 17", diff --git a/packages/legacy-structure/commands/create/CHANGELOG.md b/packages/legacy-structure/commands/create/CHANGELOG.md index 2e2829c7a4..f72fdc986f 100644 --- a/packages/legacy-structure/commands/create/CHANGELOG.md +++ b/packages/legacy-structure/commands/create/CHANGELOG.md @@ -3,6 +3,14 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.0.0](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0) (2023-06-08) + +### Bug Fixes + +- migration building/publishing issues ([27bf800](https://github.com/lerna/lerna/commit/27bf800b6e7670ea1ec5576fdf008e8d09897d4b)) +- **publish:** use correct version in log messages ([#3702](https://github.com/lerna/lerna/issues/3702)) ([4be9188](https://github.com/lerna/lerna/commit/4be9188e68c5d4c320c0946e6e386cbee95a8efe)) +- support nx 16.3.1+ ([#3707](https://github.com/lerna/lerna/issues/3707)) ([647dbb5](https://github.com/lerna/lerna/commit/647dbb512bf6a873cab6362c434b420b18af0ad4)) + # [7.0.0-alpha.8](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0-alpha.8) (2023-06-07) ### Bug Fixes diff --git a/packages/legacy-structure/commands/create/package.json b/packages/legacy-structure/commands/create/package.json index ef1a5518ae..34a08b6513 100644 --- a/packages/legacy-structure/commands/create/package.json +++ b/packages/legacy-structure/commands/create/package.json @@ -1,6 +1,6 @@ { "name": "@lerna/create", - "version": "7.0.0-alpha.8", + "version": "7.0.0", "description": "Create a new lerna-managed package", "keywords": [ "lerna", @@ -30,7 +30,7 @@ "directory": "packages/legacy-structure/commands/create" }, "dependencies": { - "@lerna/child-process": "7.0.0-alpha.8", + "@lerna/child-process": "7.0.0", "dedent": "0.7.0", "fs-extra": "^11.1.1", "init-package-json": "5.0.0", diff --git a/packages/lerna/CHANGELOG.md b/packages/lerna/CHANGELOG.md index 7d2141209f..0e18941dd2 100644 --- a/packages/lerna/CHANGELOG.md +++ b/packages/lerna/CHANGELOG.md @@ -3,6 +3,20 @@ All notable changes to this project will be documented in this file. See [Conventional Commits](https://conventionalcommits.org) for commit guidelines. +# [7.0.0](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0) (2023-06-08) + +### Bug Fixes + +- bump cosmiconfig to v8 ([#3701](https://github.com/lerna/lerna/issues/3701)) ([898923d](https://github.com/lerna/lerna/commit/898923d198319d76ed5e37e553bfe3b27e43604c)) +- internal cli.js should not be bundled ([53d73c6](https://github.com/lerna/lerna/commit/53d73c6aa9833e5a5bf60c2c78896456e77fab40)) +- migration building/publishing issues ([27bf800](https://github.com/lerna/lerna/commit/27bf800b6e7670ea1ec5576fdf008e8d09897d4b)) +- **publish:** use correct version in log messages ([#3702](https://github.com/lerna/lerna/issues/3702)) ([4be9188](https://github.com/lerna/lerna/commit/4be9188e68c5d4c320c0946e6e386cbee95a8efe)) +- support nx 16.3.1+ ([#3707](https://github.com/lerna/lerna/issues/3707)) ([647dbb5](https://github.com/lerna/lerna/commit/647dbb512bf6a873cab6362c434b420b18af0ad4)) + +### Features + +- add migration for adding $schema, increase some strictness ([73ceac3](https://github.com/lerna/lerna/commit/73ceac3dc2cf0e1246d4433cb101d1e794b2cca3)) + # [7.0.0-alpha.8](https://github.com/lerna/lerna/compare/7.0.0-alpha.0...7.0.0-alpha.8) (2023-06-07) ### Bug Fixes diff --git a/packages/lerna/package.json b/packages/lerna/package.json index 8e76a90bec..a25903691a 100644 --- a/packages/lerna/package.json +++ b/packages/lerna/package.json @@ -1,6 +1,6 @@ { "name": "lerna", - "version": "7.0.0-alpha.8", + "version": "7.0.0", "description": "Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository", "keywords": [ "lerna", @@ -37,8 +37,8 @@ "migrations": "./migrations.json" }, "dependencies": { - "@lerna/child-process": "7.0.0-alpha.8", - "@lerna/create": "7.0.0-alpha.8", + "@lerna/child-process": "7.0.0", + "@lerna/create": "7.0.0", "@npmcli/run-script": "6.0.2", "@nx/devkit": ">=16.1.3 < 17", "@octokit/plugin-enterprise-rest": "6.0.1",