Skip to content

Commit

Permalink
chore(misc): publish 7.0.0-alpha.0
Browse files Browse the repository at this point in the history
  • Loading branch information
JamesHenry committed May 10, 2023
1 parent efe26d3 commit e2246b5
Show file tree
Hide file tree
Showing 11 changed files with 57 additions and 15 deletions.
15 changes: 15 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.0.0-alpha.0](https://github.com/lerna/lerna/compare/6.6.2...7.0.0-alpha.0) (2023-05-10)

### Features

- **core:** convert commands to use nx project graph instead of legacy package graph ([#3667](https://github.com/lerna/lerna/issues/3667)) ([8e813c4](https://github.com/lerna/lerna/commit/8e813c46c543aa8e002a8982ca0b7f6afcee539e))
- do not include bootstrap, add, link commands by default ([#3658](https://github.com/lerna/lerna/issues/3658)) ([487d475](https://github.com/lerna/lerna/commit/487d4755e8602ab3694992dd7702a2dd08f55861))

### BREAKING CHANGES

- 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.

If you want to temporarily continue to use those commands in v7 you can do so by installing the @lerna/legacy-package-management package at the same version as your lerna version.

There will not be any active work done on these commands and you should look to migrate as soon as possible, please check out https://lerna.js.org for further guidance.

## [6.6.2](https://github.com/lerna/lerna/compare/6.6.1...6.6.2) (2023-05-04)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion lerna.json
Original file line number Diff line number Diff line change
Expand Up @@ -17,5 +17,5 @@
},
"ignoreChanges": ["**/__fixtures__/**", "**/__tests__/**", "**/*.md"],
"useWorkspaces": true,
"version": "6.6.2"
"version": "7.0.0-alpha.0"
}
14 changes: 7 additions & 7 deletions package-lock.json

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

4 changes: 4 additions & 0 deletions packages/child-process/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.0.0-alpha.0](https://github.com/lerna/lerna/compare/6.6.2...7.0.0-alpha.0) (2023-05-10)

**Note:** Version bump only for package @lerna/child-process

## [6.6.2](https://github.com/lerna/lerna/compare/6.6.1...6.6.2) (2023-05-04)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion packages/child-process/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@lerna/child-process",
"version": "6.6.2",
"version": "7.0.0-alpha.0",
"description": "Lerna's internal child_process wrapper",
"keywords": [
"lerna",
Expand Down
4 changes: 4 additions & 0 deletions packages/legacy-package-management/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.0.0-alpha.0](https://github.com/lerna/lerna/compare/6.6.2...7.0.0-alpha.0) (2023-05-10)

**Note:** Version bump only for package @lerna/legacy-package-management

## [6.6.2](https://github.com/lerna/lerna/compare/6.6.1...6.6.2) (2023-05-04)

### Bug Fixes
Expand Down
2 changes: 1 addition & 1 deletion 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": "6.6.2",
"version": "7.0.0-alpha.0",
"description": "Legacy package management concerns provided by lerna. Please migrate to use npm/yarn/pnpm workspaces instead.",
"keywords": [
"lerna",
Expand Down
4 changes: 4 additions & 0 deletions packages/legacy-structure/commands/create/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,10 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.0.0-alpha.0](https://github.com/lerna/lerna/compare/6.6.2...7.0.0-alpha.0) (2023-05-10)

**Note:** Version bump only for package @lerna/create

## [6.6.2](https://github.com/lerna/lerna/compare/6.6.1...6.6.2) (2023-05-04)

### Bug Fixes
Expand Down
4 changes: 2 additions & 2 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": "6.6.2",
"version": "7.0.0-alpha.0",
"description": "Create a new lerna-managed package",
"keywords": [
"lerna",
Expand Down Expand Up @@ -30,7 +30,7 @@
"directory": "packages/legacy-structure/commands/create"
},
"dependencies": {
"@lerna/child-process": "6.6.2",
"@lerna/child-process": "7.0.0-alpha.0",
"dedent": "^0.7.0",
"fs-extra": "^9.1.0",
"init-package-json": "^3.0.2",
Expand Down
15 changes: 15 additions & 0 deletions packages/lerna/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,21 @@
All notable changes to this project will be documented in this file.
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.

# [7.0.0-alpha.0](https://github.com/lerna/lerna/compare/6.6.2...7.0.0-alpha.0) (2023-05-10)

### Features

- **core:** convert commands to use nx project graph instead of legacy package graph ([#3667](https://github.com/lerna/lerna/issues/3667)) ([8e813c4](https://github.com/lerna/lerna/commit/8e813c46c543aa8e002a8982ca0b7f6afcee539e))
- do not include bootstrap, add, link commands by default ([#3658](https://github.com/lerna/lerna/issues/3658)) ([487d475](https://github.com/lerna/lerna/commit/487d4755e8602ab3694992dd7702a2dd08f55861))

### BREAKING CHANGES

- 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.

If you want to temporarily continue to use those commands in v7 you can do so by installing the @lerna/legacy-package-management package at the same version as your lerna version.

There will not be any active work done on these commands and you should look to migrate as soon as possible, please check out https://lerna.js.org for further guidance.

## [6.6.2](https://github.com/lerna/lerna/compare/6.6.1...6.6.2) (2023-05-04)

### Bug Fixes
Expand Down
6 changes: 3 additions & 3 deletions packages/lerna/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "lerna",
"version": "6.6.2",
"version": "7.0.0-alpha.0",
"description": "Lerna is a fast, modern build system for managing and publishing multiple JavaScript/TypeScript packages from the same repository",
"keywords": [
"lerna",
Expand Down Expand Up @@ -37,8 +37,8 @@
"migrations": "./migrations.json"
},
"dependencies": {
"@lerna/child-process": "6.6.2",
"@lerna/create": "6.6.2",
"@lerna/child-process": "7.0.0-alpha.0",
"@lerna/create": "7.0.0-alpha.0",
"@npmcli/arborist": "6.2.3",
"@npmcli/run-script": "4.1.7",
"@nx/devkit": ">=16.1.3 < 17",
Expand Down

0 comments on commit e2246b5

Please sign in to comment.