From 2e3b11ac8fc42fb7a3ba1badc69825fbed0b7731 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 14 Mar 2023 21:21:40 +0000 Subject: [PATCH] chore: release 9.6.2 --- .release-please-manifest.json | 6 +++--- CHANGELOG.md | 12 ++++++++++++ package-lock.json | 12 ++++++------ package.json | 6 +++--- workspaces/config/CHANGELOG.md | 6 ++++++ workspaces/config/package.json | 2 +- workspaces/libnpmpublish/CHANGELOG.md | 7 +++++++ workspaces/libnpmpublish/package.json | 2 +- 8 files changed, 39 insertions(+), 14 deletions(-) diff --git a/.release-please-manifest.json b/.release-please-manifest.json index 76ce4a5109b61..2fc489d407181 100644 --- a/.release-please-manifest.json +++ b/.release-please-manifest.json @@ -1,5 +1,5 @@ { - ".": "9.6.1", + ".": "9.6.2", "workspaces/arborist": "6.2.5", "workspaces/libnpmaccess": "7.0.2", "workspaces/libnpmdiff": "5.0.13", @@ -8,9 +8,9 @@ "workspaces/libnpmhook": "9.0.3", "workspaces/libnpmorg": "5.0.3", "workspaces/libnpmpack": "5.0.13", - "workspaces/libnpmpublish": "7.1.1", + "workspaces/libnpmpublish": "7.1.2", "workspaces/libnpmsearch": "6.0.2", "workspaces/libnpmteam": "5.0.3", "workspaces/libnpmversion": "4.0.2", - "workspaces/config": "6.1.3" + "workspaces/config": "6.1.4" } diff --git a/CHANGELOG.md b/CHANGELOG.md index b3e873d5a8399..f4ff394b6a10b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,5 +1,17 @@ # Changelog +## [9.6.2](https://github.com/npm/cli/compare/v9.6.1...v9.6.2) (2023-03-14) + +### Bug Fixes + +* [`4622b42`](https://github.com/npm/cli/commit/4622b425751bc6e3eebb9abfa5fc3fbf94890e34) [#6247](https://github.com/npm/cli/pull/6247) add provenance publish notice (#6247) (@bdehamer) + +### Dependencies + +* [`434b461`](https://github.com/npm/cli/commit/434b461e4c15513817eaec6acfe82c7814789c85) [#6255](https://github.com/npm/cli/pull/6255) `sigstore@1.1.1` (#6255) +* [Workspace](https://github.com/npm/cli/releases/tag/config-v6.1.4): `@npmcli/config@6.1.4` +* [Workspace](https://github.com/npm/cli/releases/tag/libnpmpublish-v7.1.2): `libnpmpublish@7.1.2` + ## [9.6.1](https://github.com/npm/cli/compare/v9.6.0...v9.6.1) (2023-03-08) ### Bug Fixes diff --git a/package-lock.json b/package-lock.json index d8583548f7af0..33c319bc54128 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "npm", - "version": "9.6.1", + "version": "9.6.2", "lockfileVersion": 3, "requires": true, "packages": { "": { "name": "npm", - "version": "9.6.1", + "version": "9.6.2", "bundleDependencies": [ "@isaacs/string-locale-compare", "@npmcli/arborist", @@ -85,7 +85,7 @@ "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/arborist": "^6.2.5", - "@npmcli/config": "^6.1.3", + "@npmcli/config": "^6.1.4", "@npmcli/map-workspaces": "^3.0.2", "@npmcli/package-json": "^3.0.0", "@npmcli/run-script": "^6.0.0", @@ -113,7 +113,7 @@ "libnpmhook": "^9.0.3", "libnpmorg": "^5.0.3", "libnpmpack": "^5.0.13", - "libnpmpublish": "^7.1.1", + "libnpmpublish": "^7.1.2", "libnpmsearch": "^6.0.2", "libnpmteam": "^5.0.3", "libnpmversion": "^4.0.2", @@ -15050,7 +15050,7 @@ }, "workspaces/config": { "name": "@npmcli/config", - "version": "6.1.3", + "version": "6.1.4", "license": "ISC", "dependencies": { "@npmcli/map-workspaces": "^3.0.2", @@ -15213,7 +15213,7 @@ } }, "workspaces/libnpmpublish": { - "version": "7.1.1", + "version": "7.1.2", "license": "ISC", "dependencies": { "ci-info": "^3.6.1", diff --git a/package.json b/package.json index 2bff0c1431ed3..bfd702e4e7afe 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "version": "9.6.1", + "version": "9.6.2", "name": "npm", "description": "a package manager for JavaScript", "workspaces": [ @@ -54,7 +54,7 @@ "dependencies": { "@isaacs/string-locale-compare": "^1.1.0", "@npmcli/arborist": "^6.2.5", - "@npmcli/config": "^6.1.3", + "@npmcli/config": "^6.1.4", "@npmcli/map-workspaces": "^3.0.2", "@npmcli/package-json": "^3.0.0", "@npmcli/run-script": "^6.0.0", @@ -82,7 +82,7 @@ "libnpmhook": "^9.0.3", "libnpmorg": "^5.0.3", "libnpmpack": "^5.0.13", - "libnpmpublish": "^7.1.1", + "libnpmpublish": "^7.1.2", "libnpmsearch": "^6.0.2", "libnpmteam": "^5.0.3", "libnpmversion": "^4.0.2", diff --git a/workspaces/config/CHANGELOG.md b/workspaces/config/CHANGELOG.md index 1e77b0d51e80b..465742826ad23 100644 --- a/workspaces/config/CHANGELOG.md +++ b/workspaces/config/CHANGELOG.md @@ -1,5 +1,11 @@ # Changelog +## [6.1.4](https://github.com/npm/cli/compare/config-v6.1.3...config-v6.1.4) (2023-03-14) + +### Bug Fixes + +* [`968f63a`](https://github.com/npm/cli/commit/968f63ada828ee8ccfdba3d6d437c9e7c6917026) [#6236](https://github.com/npm/cli/pull/6236) parse date objects from config files (#6236) (@wraithgar) + ## [6.1.3](https://github.com/npm/cli/compare/config-v6.1.2...config-v6.1.3) (2023-02-07) ### Dependencies diff --git a/workspaces/config/package.json b/workspaces/config/package.json index 42bd2dfb7e87c..a5b48d3309c75 100644 --- a/workspaces/config/package.json +++ b/workspaces/config/package.json @@ -1,6 +1,6 @@ { "name": "@npmcli/config", - "version": "6.1.3", + "version": "6.1.4", "files": [ "bin/", "lib/" diff --git a/workspaces/libnpmpublish/CHANGELOG.md b/workspaces/libnpmpublish/CHANGELOG.md index 0601559e83900..1ab22298da97b 100644 --- a/workspaces/libnpmpublish/CHANGELOG.md +++ b/workspaces/libnpmpublish/CHANGELOG.md @@ -1,5 +1,12 @@ # Changelog +## [7.1.2](https://github.com/npm/cli/compare/libnpmpublish-v7.1.1...libnpmpublish-v7.1.2) (2023-03-14) + +### Bug Fixes + +* [`4622b42`](https://github.com/npm/cli/commit/4622b425751bc6e3eebb9abfa5fc3fbf94890e34) [#6247](https://github.com/npm/cli/pull/6247) add provenance publish notice (#6247) (@bdehamer) +* [`17adfb7`](https://github.com/npm/cli/commit/17adfb7b6c125cf033ac259936fb15bb85339aac) [#6228](https://github.com/npm/cli/pull/6228) provenance build type v2 (#6228) (@bdehamer, @feelepxyz) + ## [7.1.1](https://github.com/npm/cli/compare/libnpmpublish-v7.1.0...libnpmpublish-v7.1.1) (2023-03-08) ### Bug Fixes diff --git a/workspaces/libnpmpublish/package.json b/workspaces/libnpmpublish/package.json index 84c3eefeaf2ca..7c04d2adb9f20 100644 --- a/workspaces/libnpmpublish/package.json +++ b/workspaces/libnpmpublish/package.json @@ -1,6 +1,6 @@ { "name": "libnpmpublish", - "version": "7.1.1", + "version": "7.1.2", "description": "Programmatic API for the bits behind npm publish and unpublish", "author": "GitHub Inc.", "main": "lib/index.js",