Skip to content

Commit

Permalink
chore(release): 7.12.0-0
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed Sep 15, 2022
1 parent 156cc1e commit 223b23f
Show file tree
Hide file tree
Showing 8 changed files with 43 additions and 7 deletions.
2 changes: 1 addition & 1 deletion packages/artifacts/linux-arm64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/linux-arm64",
"version": "7.11.1-0",
"version": "7.12.0-0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/artifacts/linux-x64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/linux-x64",
"version": "7.11.1-0",
"version": "7.12.0-0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/artifacts/macos-arm64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/macos-arm64",
"version": "7.11.1-0",
"version": "7.12.0-0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/artifacts/macos-x64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/macos-x64",
"version": "7.11.1-0",
"version": "7.12.0-0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/artifacts/win-x64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/win-x64",
"version": "7.11.1-0",
"version": "7.12.0-0",
"license": "MIT",
"publishConfig": {
"bin": {
Expand Down
2 changes: 1 addition & 1 deletion packages/exe/package.json
@@ -1,7 +1,7 @@
{
"name": "@pnpm/exe",
"description": "Fast, disk space efficient package manager",
"version": "7.11.1-0",
"version": "7.12.0-0",
"publishConfig": {
"bin": {
"pnpm": "pnpm"
Expand Down
36 changes: 36 additions & 0 deletions packages/pnpm/CHANGELOG.md
@@ -1,5 +1,41 @@
# pnpm

## 7.12.0-0

### Minor Changes

- A new setting supported in the pnpm section of the `package.json` file: `allowNonAppliedPatches`. When it is set to `true`, non-applied patches will not cause an error, just a warning will be printed. For example:

```json
{
"name": "foo",
"version": "1.0.0",
"pnpm": {
"patchedDependencies": {
"express@4.18.1": "patches/express@4.18.1.patch"
},
"allowNonAppliedPatches": true
}
}
```

- Now it is possible to exclude packages from hoisting by prepending a `!` to the pattern. This works with both the `hoist-pattern` and `public-hoist-pattern` settings. For instance:

```
public-hoist-pattern[]='*types*'
public-hoist-pattern[]='!@types/react'
hoist-pattern[]='*eslint*'
hoist-pattern[]='!*eslint-plugin*'
```

Ref [#5272](https://github.com/pnpm/pnpm/issues/5272)

### Patch Changes

- `pnpm patch` should work on files that don't have an end of line [#5320](https://github.com/pnpm/pnpm/issues/5320).
- Fix `pnpm patch` using a custom `--edit-dir`.

## 7.11.0

### Minor Changes
Expand Down
2 changes: 1 addition & 1 deletion packages/pnpm/package.json
@@ -1,7 +1,7 @@
{
"name": "pnpm",
"description": "Fast, disk space efficient package manager",
"version": "7.11.1-0",
"version": "7.12.0-0",
"bin": {
"pnpm": "bin/pnpm.cjs",
"pnpx": "bin/pnpx.cjs"
Expand Down

0 comments on commit 223b23f

Please sign in to comment.