Skip to content

Commit

Permalink
chore(release): 6.35.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zkochan committed Oct 22, 2022
1 parent 844b1da commit f8d77dc
Show file tree
Hide file tree
Showing 11 changed files with 26 additions and 32 deletions.
5 changes: 0 additions & 5 deletions .changeset/loud-bees-rule.md

This file was deleted.

15 changes: 0 additions & 15 deletions .changeset/modern-dodos-switch.md

This file was deleted.

5 changes: 0 additions & 5 deletions .changeset/wet-turkeys-allow.md

This file was deleted.

2 changes: 1 addition & 1 deletion packages/artifacts/linux-arm64/package.json
@@ -1,6 +1,6 @@
{
"name": "@pnpm/linux-arm64",
"version": "6.34.0",
"version": "6.35.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": "6.34.0",
"version": "6.35.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": "6.34.0",
"version": "6.35.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": "6.34.0",
"version": "6.35.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": "6.34.0",
"version": "6.35.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": "6.34.0",
"version": "6.35.0",
"publishConfig": {
"bin": {
"pnpm": "pnpm"
Expand Down
19 changes: 19 additions & 0 deletions packages/pnpm/CHANGELOG.md
@@ -1,5 +1,24 @@
# pnpm

## 6.35.0

### Patch Changes

- Installing a package with `bin` that points to an `.exe` file on Windows [#5159](https://github.com/pnpm/pnpm/issues/5159).
- Ignore the `always-auth` setting.

pnpm will never reuse the registry auth token for requesting the package tarball, if the package tarball is hosted on a different domain.

So, for example, if your registry is at `https://company.registry.com/` but the tarballs are hosted at `https://tarballs.com/`, then you will have to configure the auth token for both domains in your `.npmrc`:

```
@my-company:registry=https://company.registry.com/
//company.registry.com/=SOME_AUTH_TOKEN
//tarballs.com/=SOME_AUTH_TOKEN
```

- When an error happens during installation of a subdependency, print some context information in order to be able to locate that subdependency. Print the exact chain of packages that led to the problematic dependency.

## 6.34.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": "6.34.0",
"version": "6.35.0",
"bin": {
"pnpm": "bin/pnpm.cjs",
"pnpx": "bin/pnpx.cjs"
Expand Down

0 comments on commit f8d77dc

Please sign in to comment.