Skip to content

Commit

Permalink
chore(release): 8.5.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed May 9, 2023
1 parent 793eedb commit 7bd5129
Show file tree
Hide file tree
Showing 19 changed files with 54 additions and 28 deletions.
6 changes: 0 additions & 6 deletions .changeset/angry-bobcats-develop.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/heavy-dolls-itch.md

This file was deleted.

6 changes: 0 additions & 6 deletions .changeset/two-grapes-think.md

This file was deleted.

7 changes: 7 additions & 0 deletions exec/plugin-commands-script-runners/CHANGELOG.md
@@ -1,5 +1,12 @@
# @pnpm/plugin-commands-script-runners

## 7.0.11

### Patch Changes

- Updated dependencies [d5c40b556]
- @pnpm/plugin-commands-installation@13.0.5

## 7.0.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion exec/plugin-commands-script-runners/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-script-runners",
"version": "7.0.10",
"version": "7.0.11",
"description": "Commands for running scripts",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
11 changes: 11 additions & 0 deletions patching/plugin-commands-patching/CHANGELOG.md
@@ -1,5 +1,16 @@
# @pnpm/plugin-commands-patching

## 3.1.0

### Minor Changes

- `pnpm patch-remove` command added [#6521](https://github.com/pnpm/pnpm/pull/6521).

### Patch Changes

- Updated dependencies [d5c40b556]
- @pnpm/plugin-commands-installation@13.0.5

## 3.0.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion patching/plugin-commands-patching/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-patching",
"version": "3.0.10",
"version": "3.1.0",
"description": "Commands for creating patches",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
6 changes: 6 additions & 0 deletions pkg-manager/plugin-commands-installation/CHANGELOG.md
@@ -1,5 +1,11 @@
# @pnpm/plugin-commands-installation

## 13.0.5

### Patch Changes

- d5c40b556: `pnpm link -g <pkg-name>` should not modify the `package.json` file [#4341](https://github.com/pnpm/pnpm/issues/4341).

## 13.0.4

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion pkg-manager/plugin-commands-installation/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-installation",
"version": "13.0.4",
"version": "13.0.5",
"description": "Commands for installation",
"main": "lib/index.js",
"types": "lib/index.d.ts",
Expand Down
12 changes: 12 additions & 0 deletions pnpm/CHANGELOG.md
@@ -1,5 +1,17 @@
# pnpm

## 8.5.0

### Minor Changes

- `pnpm patch-remove` command added [#6521](https://github.com/pnpm/pnpm/pull/6521).

### Patch Changes

- `pnpm link -g <pkg-name>` should not modify the `package.json` file [#4341](https://github.com/pnpm/pnpm/issues/4341).
- The deploy command should not ask for confirmation to purge the `node_modules` directory [#6510](https://github.com/pnpm/pnpm/issues/6510).
- Show cyclic workspace dependency details [#5059](https://github.com/pnpm/pnpm/issues/5059).

## 8.4.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion pnpm/artifacts/exe/package.json
@@ -1,7 +1,7 @@
{
"name": "@pnpm/exe",
"description": "Fast, disk space efficient package manager",
"version": "8.4.0",
"version": "8.5.0",
"publishConfig": {
"bin": {
"pnpm": "pnpm"
Expand Down
2 changes: 1 addition & 1 deletion pnpm/artifacts/linux-arm64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/linux-arm64",
"version": "8.4.0",
"version": "8.5.0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion pnpm/artifacts/linux-x64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/linux-x64",
"version": "8.4.0",
"version": "8.5.0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion pnpm/artifacts/macos-arm64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/macos-arm64",
"version": "8.4.0",
"version": "8.5.0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion pnpm/artifacts/macos-x64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/macos-x64",
"version": "8.4.0",
"version": "8.5.0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion pnpm/artifacts/win-x64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/win-x64",
"version": "8.4.0",
"version": "8.5.0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion pnpm/package.json
@@ -1,7 +1,7 @@
{
"name": "pnpm",
"description": "Fast, disk space efficient package manager",
"version": "8.4.0",
"version": "8.5.0",
"bin": {
"pnpm": "bin/pnpm.cjs",
"pnpx": "bin/pnpx.cjs"
Expand Down
7 changes: 7 additions & 0 deletions releasing/plugin-commands-deploy/CHANGELOG.md
@@ -1,5 +1,12 @@
# @pnpm/plugin-commands-deploy

## 3.0.11

### Patch Changes

- Updated dependencies [d5c40b556]
- @pnpm/plugin-commands-installation@13.0.5

## 3.0.10

### Patch Changes
Expand Down
2 changes: 1 addition & 1 deletion releasing/plugin-commands-deploy/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/plugin-commands-deploy",
"version": "3.0.10",
"version": "3.0.11",
"description": "Commands for deploy",
"funding": "https://opencollective.com/pnpm",
"main": "lib/index.js",
Expand Down

0 comments on commit 7bd5129

Please sign in to comment.