Skip to content

chore: release 11.4.1 #8313

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 21, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 6 additions & 6 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
".": "11.4.0",
"workspaces/arborist": "9.1.0",
".": "11.4.1",
"workspaces/arborist": "9.1.1",
"workspaces/libnpmaccess": "10.0.1",
"workspaces/libnpmdiff": "8.0.3",
"workspaces/libnpmexec": "10.1.2",
"workspaces/libnpmfund": "7.0.3",
"workspaces/libnpmdiff": "8.0.4",
"workspaces/libnpmexec": "10.1.3",
"workspaces/libnpmfund": "7.0.4",
"workspaces/libnpmorg": "8.0.0",
"workspaces/libnpmpack": "9.0.3",
"workspaces/libnpmpack": "9.0.4",
"workspaces/libnpmpublish": "11.0.0",
"workspaces/libnpmsearch": "9.0.0",
"workspaces/libnpmteam": "8.0.1",
Expand Down
2 changes: 2 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
Expand Up @@ -967,3 +967,5 @@ David Glasser <[email protected]>
Alex Schwartz <[email protected]>
xaos7991 <[email protected]>
Tom Mrazauskas <[email protected]>
sam crochet <[email protected]>
tarekwfa0110 <[email protected]>
16 changes: 16 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,21 @@
# Changelog

## [11.4.1](https://github.com/npm/cli/compare/v11.4.0...v11.4.1) (2025-05-21)
### Documentation
* [`3ed764a`](https://github.com/npm/cli/commit/3ed764aa08f2087fa1d1bd7391a646ba47565294) [#8308](https://github.com/npm/cli/pull/8308) Clarify script working directory behavior (fixes #8305) (#8308) (@tarekwfa0110, @owlstronaut)
### Chores
* [`2f30251`](https://github.com/npm/cli/commit/2f302516401928239593dd2eebc171729df60537) [#8314](https://github.com/npm/cli/pull/8314) remove references to skimdb.npmjs.com (#8314) (@shmam)
* [`9cb9d50`](https://github.com/npm/cli/commit/9cb9d5030b1fdb83e3ffa45b7c8d2de80a657768) [#8298](https://github.com/npm/cli/pull/8298) add contributor to changelog entry (#8298) (@wraithgar)


### Dependencies

* [workspace](https://github.com/npm/cli/releases/tag/arborist-v9.1.1): `@npmcli/[email protected]`
* [workspace](https://github.com/npm/cli/releases/tag/libnpmdiff-v8.0.4): `[email protected]`
* [workspace](https://github.com/npm/cli/releases/tag/libnpmexec-v10.1.3): `[email protected]`
* [workspace](https://github.com/npm/cli/releases/tag/libnpmfund-v7.0.4): `[email protected]`
* [workspace](https://github.com/npm/cli/releases/tag/libnpmpack-v9.0.4): `[email protected]`

## [11.4.0](https://github.com/npm/cli/compare/v11.3.0...v11.4.0) (2025-05-15)
### Features
* [`a0e60fb`](https://github.com/npm/cli/commit/a0e60fb1893ac77a78380d9a9faaaaa54da1fe85) [#8246](https://github.com/npm/cli/pull/8246) added init-private option (@owlstronaut)
Expand Down
1 change: 1 addition & 0 deletions node_modules/@npmcli/package-json/lib/index.js
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ class PackageJson {
'binRefs',
'bundleDependencies',
'bundleDependenciesFalse',
'fixName',
'fixNameField',
'fixVersionField',
'fixRepositoryField',
Expand Down
10 changes: 9 additions & 1 deletion node_modules/@npmcli/package-json/lib/normalize.js
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,7 @@ const clean = require('semver/functions/clean')
const fs = require('node:fs/promises')
const path = require('node:path')
const { log } = require('proc-log')
const moduleBuiltin = require('node:module')

/**
* @type {import('hosted-git-info')}
Expand Down Expand Up @@ -144,7 +145,7 @@ const normalize = async (pkg, { strict, steps, root, changes, allowLegacyCase })
const pkgId = `${data.name ?? ''}@${data.version ?? ''}`

// name and version are load bearing so we have to clean them up first
if (steps.includes('fixNameField') || steps.includes('normalizeData')) {
if (steps.includes('fixName') || steps.includes('fixNameField') || steps.includes('normalizeData')) {
if (!data.name && !strict) {
changes?.push('Missing "name" field was set to an empty string')
data.name = ''
Expand All @@ -170,6 +171,13 @@ const normalize = async (pkg, { strict, steps, root, changes, allowLegacyCase })
}
}

if (steps.includes('fixName')) {
// Check for conflicts with builtin modules
if (moduleBuiltin.builtinModules.includes(data.name)) {
log.warn('package-json', pkgId, `Package name "${data.name}" conflicts with a Node.js built-in module name`)
}
}

if (steps.includes('fixVersionField') || steps.includes('normalizeData')) {
// allow "loose" semver 1.0 versions in non-strict mode
// enforce strict semver 2.0 compliance in strict mode
Expand Down
2 changes: 1 addition & 1 deletion node_modules/@npmcli/package-json/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@npmcli/package-json",
"version": "6.1.1",
"version": "6.2.0",
"description": "Programmatic API to update package.json",
"keywords": [
"npm",
Expand Down
38 changes: 19 additions & 19 deletions package-lock.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,12 @@
{
"name": "npm",
"version": "11.4.0",
"version": "11.4.1",
"lockfileVersion": 3,
"requires": true,
"packages": {
"": {
"name": "npm",
"version": "11.4.0",
"version": "11.4.1",
"bundleDependencies": [
"@isaacs/string-locale-compare",
"@npmcli/arborist",
Expand Down Expand Up @@ -85,7 +85,7 @@
],
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
"@npmcli/arborist": "^9.1.0",
"@npmcli/arborist": "^9.1.1",
"@npmcli/config": "^10.3.0",
"@npmcli/fs": "^4.0.0",
"@npmcli/map-workspaces": "^4.0.2",
Expand All @@ -110,11 +110,11 @@
"is-cidr": "^5.1.1",
"json-parse-even-better-errors": "^4.0.0",
"libnpmaccess": "^10.0.1",
"libnpmdiff": "^8.0.3",
"libnpmexec": "^10.1.2",
"libnpmfund": "^7.0.3",
"libnpmdiff": "^8.0.4",
"libnpmexec": "^10.1.3",
"libnpmfund": "^7.0.4",
"libnpmorg": "^8.0.0",
"libnpmpack": "^9.0.3",
"libnpmpack": "^9.0.4",
"libnpmpublish": "^11.0.0",
"libnpmsearch": "^9.0.0",
"libnpmteam": "^8.0.1",
Expand Down Expand Up @@ -3672,9 +3672,9 @@
}
},
"node_modules/@npmcli/package-json": {
"version": "6.1.1",
"resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-6.1.1.tgz",
"integrity": "sha512-d5qimadRAUCO4A/Txw71VM7UrRZzV+NPclxz/dc+M6B2oYwjWTjqh8HA/sGQgs9VZuJ6I/P7XIAlJvgrl27ZOw==",
"version": "6.2.0",
"resolved": "https://registry.npmjs.org/@npmcli/package-json/-/package-json-6.2.0.tgz",
"integrity": "sha512-rCNLSB/JzNvot0SEyXqWZ7tX2B5dD2a1br2Dp0vSYVo5jh8Z0EZ7lS9TsZ1UtziddB1UfNUaMCc538/HztnJGA==",
"inBundle": true,
"license": "ISC",
"dependencies": {
Expand Down Expand Up @@ -18926,7 +18926,7 @@
},
"workspaces/arborist": {
"name": "@npmcli/arborist",
"version": "9.1.0",
"version": "9.1.1",
"license": "ISC",
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
Expand Down Expand Up @@ -19024,10 +19024,10 @@
}
},
"workspaces/libnpmdiff": {
"version": "8.0.3",
"version": "8.0.4",
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^9.1.0",
"@npmcli/arborist": "^9.1.1",
"@npmcli/installed-package-contents": "^3.0.0",
"binary-extensions": "^3.0.0",
"diff": "^7.0.0",
Expand All @@ -19046,10 +19046,10 @@
}
},
"workspaces/libnpmexec": {
"version": "10.1.2",
"version": "10.1.3",
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^9.1.0",
"@npmcli/arborist": "^9.1.1",
"@npmcli/package-json": "^6.1.1",
"@npmcli/run-script": "^9.0.1",
"ci-info": "^4.0.0",
Expand All @@ -19076,10 +19076,10 @@
}
},
"workspaces/libnpmfund": {
"version": "7.0.3",
"version": "7.0.4",
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^9.1.0"
"@npmcli/arborist": "^9.1.1"
},
"devDependencies": {
"@npmcli/eslint-config": "^5.0.1",
Expand Down Expand Up @@ -19109,10 +19109,10 @@
}
},
"workspaces/libnpmpack": {
"version": "9.0.3",
"version": "9.0.4",
"license": "ISC",
"dependencies": {
"@npmcli/arborist": "^9.1.0",
"@npmcli/arborist": "^9.1.1",
"@npmcli/run-script": "^9.0.1",
"npm-package-arg": "^12.0.0",
"pacote": "^21.0.0"
Expand Down
12 changes: 6 additions & 6 deletions package.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"version": "11.4.0",
"version": "11.4.1",
"name": "npm",
"description": "a package manager for JavaScript",
"workspaces": [
Expand Down Expand Up @@ -52,7 +52,7 @@
},
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
"@npmcli/arborist": "^9.1.0",
"@npmcli/arborist": "^9.1.1",
"@npmcli/config": "^10.3.0",
"@npmcli/fs": "^4.0.0",
"@npmcli/map-workspaces": "^4.0.2",
Expand All @@ -77,11 +77,11 @@
"is-cidr": "^5.1.1",
"json-parse-even-better-errors": "^4.0.0",
"libnpmaccess": "^10.0.1",
"libnpmdiff": "^8.0.3",
"libnpmexec": "^10.1.2",
"libnpmfund": "^7.0.3",
"libnpmdiff": "^8.0.4",
"libnpmexec": "^10.1.3",
"libnpmfund": "^7.0.4",
"libnpmorg": "^8.0.0",
"libnpmpack": "^9.0.3",
"libnpmpack": "^9.0.4",
"libnpmpublish": "^11.0.0",
"libnpmsearch": "^9.0.0",
"libnpmteam": "^8.0.1",
Expand Down
4 changes: 4 additions & 0 deletions workspaces/arborist/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

## [9.1.1](https://github.com/npm/cli/compare/arborist-v9.1.0...arborist-v9.1.1) (2025-05-21)
### Bug Fixes
* [`8f6eb6b`](https://github.com/npm/cli/commit/8f6eb6b29904b5a807c5c4c01c1246afc70a77f1) [#8312](https://github.com/npm/cli/pull/8312) arborist: fix file dep making wrong link (#8312) (@alexsch01)

## [9.1.0](https://github.com/npm/cli/compare/arborist-v9.0.2...arborist-v9.1.0) (2025-05-15)
### Features
* [`57aa89f`](https://github.com/npm/cli/commit/57aa89ff70e0c6186a43888b944b5799b25c7bc8) [#8265](https://github.com/npm/cli/pull/8265) use run by default and run-script as the alias (#8265) (@owlstronaut)
Expand Down
2 changes: 1 addition & 1 deletion workspaces/arborist/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "@npmcli/arborist",
"version": "9.1.0",
"version": "9.1.1",
"description": "Manage node_modules trees",
"dependencies": {
"@isaacs/string-locale-compare": "^1.1.0",
Expand Down
4 changes: 4 additions & 0 deletions workspaces/libnpmdiff/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@

* [workspace](https://github.com/npm/cli/releases/tag/arborist-v9.1.0): `@npmcli/[email protected]`

### Dependencies

* [workspace](https://github.com/npm/cli/releases/tag/arborist-v9.1.1): `@npmcli/[email protected]`

## [8.0.0](https://github.com/npm/cli/compare/libnpmdiff-v8.0.0-pre.1...libnpmdiff-v8.0.0) (2024-12-16)
### Features
* [`a7bfc6d`](https://github.com/npm/cli/commit/a7bfc6df76882996ebb834dbca785fdf33b8c50d) [#7972](https://github.com/npm/cli/pull/7972) trigger release process (#7972) (@wraithgar)
Expand Down
4 changes: 2 additions & 2 deletions workspaces/libnpmdiff/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libnpmdiff",
"version": "8.0.3",
"version": "8.0.4",
"description": "The registry diff",
"repository": {
"type": "git",
Expand Down Expand Up @@ -47,7 +47,7 @@
"tap": "^16.3.8"
},
"dependencies": {
"@npmcli/arborist": "^9.1.0",
"@npmcli/arborist": "^9.1.1",
"@npmcli/installed-package-contents": "^3.0.0",
"binary-extensions": "^3.0.0",
"diff": "^7.0.0",
Expand Down
4 changes: 4 additions & 0 deletions workspaces/libnpmexec/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Changelog

### Dependencies

* [workspace](https://github.com/npm/cli/releases/tag/arborist-v9.1.1): `@npmcli/[email protected]`

## [10.1.2](https://github.com/npm/cli/compare/libnpmexec-v10.1.1...libnpmexec-v10.1.2) (2025-05-15)
### Bug Fixes
* [`fdc3413`](https://github.com/npm/cli/commit/fdc3413019c2f34f1fde35449e5f3a6b0fb51ba2) [#8221](https://github.com/npm/cli/pull/8221) exec: Fails to Execute Binaries Named After Shell Keywords (#8221) (@13sfaith)
Expand Down
4 changes: 2 additions & 2 deletions workspaces/libnpmexec/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libnpmexec",
"version": "10.1.2",
"version": "10.1.3",
"files": [
"bin/",
"lib/"
Expand Down Expand Up @@ -60,7 +60,7 @@
"tap": "^16.3.8"
},
"dependencies": {
"@npmcli/arborist": "^9.1.0",
"@npmcli/arborist": "^9.1.1",
"@npmcli/package-json": "^6.1.1",
"@npmcli/run-script": "^9.0.1",
"ci-info": "^4.0.0",
Expand Down
4 changes: 4 additions & 0 deletions workspaces/libnpmfund/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,10 @@

* [workspace](https://github.com/npm/cli/releases/tag/arborist-v9.1.0): `@npmcli/[email protected]`

### Dependencies

* [workspace](https://github.com/npm/cli/releases/tag/arborist-v9.1.1): `@npmcli/[email protected]`

## [7.0.0](https://github.com/npm/cli/compare/libnpmfund-v7.0.0-pre.1...libnpmfund-v7.0.0) (2024-12-16)
### Features
* [`a7bfc6d`](https://github.com/npm/cli/commit/a7bfc6df76882996ebb834dbca785fdf33b8c50d) [#7972](https://github.com/npm/cli/pull/7972) trigger release process (#7972) (@wraithgar)
Expand Down
4 changes: 2 additions & 2 deletions workspaces/libnpmfund/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libnpmfund",
"version": "7.0.3",
"version": "7.0.4",
"main": "lib/index.js",
"files": [
"bin/",
Expand Down Expand Up @@ -46,7 +46,7 @@
"tap": "^16.3.8"
},
"dependencies": {
"@npmcli/arborist": "^9.1.0"
"@npmcli/arborist": "^9.1.1"
},
"engines": {
"node": "^20.17.0 || >=22.9.0"
Expand Down
4 changes: 4 additions & 0 deletions workspaces/libnpmpack/CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,10 @@

* [workspace](https://github.com/npm/cli/releases/tag/arborist-v9.1.0): `@npmcli/[email protected]`

### Dependencies

* [workspace](https://github.com/npm/cli/releases/tag/arborist-v9.1.1): `@npmcli/[email protected]`

## [9.0.0](https://github.com/npm/cli/compare/libnpmpack-v9.0.0-pre.1...libnpmpack-v9.0.0) (2024-12-16)
### Features
* [`a7bfc6d`](https://github.com/npm/cli/commit/a7bfc6df76882996ebb834dbca785fdf33b8c50d) [#7972](https://github.com/npm/cli/pull/7972) trigger release process (#7972) (@wraithgar)
Expand Down
4 changes: 2 additions & 2 deletions workspaces/libnpmpack/package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "libnpmpack",
"version": "9.0.3",
"version": "9.0.4",
"description": "Programmatic API for the bits behind npm pack",
"author": "GitHub Inc.",
"main": "lib/index.js",
Expand Down Expand Up @@ -37,7 +37,7 @@
"bugs": "https://github.com/npm/libnpmpack/issues",
"homepage": "https://npmjs.com/package/libnpmpack",
"dependencies": {
"@npmcli/arborist": "^9.1.0",
"@npmcli/arborist": "^9.1.1",
"@npmcli/run-script": "^9.0.1",
"npm-package-arg": "^12.0.0",
"pacote": "^21.0.0"
Expand Down