Skip to content
Permalink

Comparing changes

Choose two branches to see what’s changed or to start a new pull request. If you need to, you can also or learn more about diff comparisons.

Open a pull request

Create a new pull request by comparing changes across two branches. If you need to, you can also . Learn more about diff comparisons here.
base repository: npm/cli
Failed to load repositories. Confirm that selected base ref is valid, then try again.
Loading
base: v10.0.0
Choose a base ref
...
head repository: npm/cli
Failed to load repositories. Confirm that selected head ref is valid, then try again.
Loading
compare: v10.1.0
Choose a head ref
  • 10 commits
  • 42 files changed
  • 7 contributors

Commits on Sep 5, 2023

  1. Copy the full SHA
    09d8e0a View commit details

Commits on Sep 8, 2023

  1. Create bug_10.yml

    saquibkhan authored and lukekarrys committed Sep 8, 2023
    Copy the full SHA
    d0b7899 View commit details
  2. Copy the full SHA
    7bf2374 View commit details
  3. Copy the full SHA
    1c93c44 View commit details
  4. Copy the full SHA
    42bef2c View commit details
  5. deps: @npmcli/agent@2.1.1

    lukekarrys committed Sep 8, 2023
    Copy the full SHA
    f76066a View commit details
  6. Copy the full SHA
    a85945b View commit details
  7. Copy the full SHA
    7d87d29 View commit details
  8. chore: update changelog for v10

    v9 changelog is in the `release/v9` branch
    this mirrors what we did in v9 and v8.
    wraithgar authored and lukekarrys committed Sep 8, 2023
    Copy the full SHA
    4469fcd View commit details
  9. chore: release 10.1.0

    github-actions[bot] authored and lukekarrys committed Sep 8, 2023
    Copy the full SHA
    39e2b87 View commit details
Showing with 498 additions and 1,041 deletions.
  1. +5 −5 .github/ISSUE_TEMPLATE/{bug_8.yml → bug_10.yml}
  2. +4 −6 .github/workflows/ci-npmcli-smoke-tests.yml
  3. +7 −7 .release-please-manifest.json
  4. +4 −0 AUTHORS
  5. +24 −927 CHANGELOG.md
  6. +1 −0 DEPENDENCIES.md
  7. +2 −3 README.md
  8. +2 −0 lib/commands/install.js
  9. +3 −5 node_modules/@npmcli/agent/lib/agents.js
  10. +0 −8 node_modules/@npmcli/agent/lib/proxy.js
  11. +3 −2 node_modules/@npmcli/agent/package.json
  12. +156 −22 package-lock.json
  13. +7 −7 package.json
  14. +9 −2 smoke-tests/package.json
  15. +8 −2 smoke-tests/test/fixtures/setup.js
  16. +29 −0 smoke-tests/test/proxy.js
  17. +4 −0 tap-snapshots/test/lib/commands/config.js.test.cjs
  18. +33 −3 tap-snapshots/test/lib/docs.js.test.cjs
  19. +6 −0 workspaces/arborist/CHANGELOG.md
  20. +2 −2 workspaces/arborist/lib/arborist/reify.js
  21. +1 −1 workspaces/arborist/package.json
  22. +75 −0 workspaces/arborist/tap-snapshots/test/arborist/reify.js.test.cjs
  23. +12 −0 workspaces/arborist/test/arborist/reify.js
  24. +3 −0 workspaces/arborist/test/fixtures/registry-mocks/content/platform-specifying-test-package.json
  25. +3 −0 workspaces/arborist/test/fixtures/registry-mocks/content/platform-specifying-test-package.min.json
  26. +10 −0 workspaces/config/CHANGELOG.md
  27. +22 −0 workspaces/config/lib/definitions/definitions.js
  28. +0 −7 workspaces/config/lib/definitions/index.js
  29. +3 −0 workspaces/config/lib/index.js
  30. +1 −4 workspaces/config/lib/set-envs.js
  31. +1 −1 workspaces/config/package.json
  32. +8 −0 workspaces/config/tap-snapshots/test/type-description.js.test.cjs
  33. +0 −13 workspaces/config/test/definitions/index.js
  34. +18 −6 workspaces/config/test/set-envs.js
  35. +6 −0 workspaces/libnpmdiff/CHANGELOG.md
  36. +2 −2 workspaces/libnpmdiff/package.json
  37. +6 −0 workspaces/libnpmexec/CHANGELOG.md
  38. +2 −2 workspaces/libnpmexec/package.json
  39. +6 −0 workspaces/libnpmfund/CHANGELOG.md
  40. +2 −2 workspaces/libnpmfund/package.json
  41. +6 −0 workspaces/libnpmpack/CHANGELOG.md
  42. +2 −2 workspaces/libnpmpack/package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
name: 🐞 Bug v8
description: File a bug/issue against v8.x
name: 🐞 Bug v10
description: File a bug/issue against v10.x
title: "[BUG] <title>"
labels: [Bug, Needs Triage, Release 8.x]
labels: [Bug, Needs Triage, Release 10.x]
body:
- type: checkboxes
attributes:
@@ -45,8 +45,8 @@ body:
label: Environment
description: |
examples:
- **`npm -v`**: **npm**: 7.6.3
- **`node -v`**: **Node.js**: 13.14.0
- **`npm -v`**: **npm**: 10.0.0
- **`node -v`**: **Node.js**: 18.0.0
- **OS Name**: Ubuntu 20.04
- **System Model Name**: Macbook Pro
- **`npm config ls`**: `; "user" config from ...`
10 changes: 4 additions & 6 deletions .github/workflows/ci-npmcli-smoke-tests.yml
Original file line number Diff line number Diff line change
@@ -35,7 +35,7 @@ jobs:
- name: Setup Node
uses: actions/setup-node@v3
with:
node-version: 18.x
node-version: 20.x
cache: npm
check-latest: true
- name: Check Git Status
@@ -64,12 +64,10 @@ jobs:
os: windows-latest
shell: cmd
node-version:
- 14.17.0
- 14.x
- 16.13.0
- 16.x
- 18.0.0
- 18.17.0
- 18.x
- 20.5.0
- 20.x
runs-on: ${{ matrix.platform.os }}
defaults:
run:
14 changes: 7 additions & 7 deletions .release-please-manifest.json
Original file line number Diff line number Diff line change
@@ -1,16 +1,16 @@
{
".": "10.0.0",
"workspaces/arborist": "7.0.0",
".": "10.1.0",
"workspaces/arborist": "7.1.0",
"workspaces/libnpmaccess": "8.0.0",
"workspaces/libnpmdiff": "6.0.0",
"workspaces/libnpmexec": "7.0.0",
"workspaces/libnpmfund": "4.1.0",
"workspaces/libnpmdiff": "6.0.1",
"workspaces/libnpmexec": "7.0.1",
"workspaces/libnpmfund": "4.1.1",
"workspaces/libnpmhook": "10.0.0",
"workspaces/libnpmorg": "6.0.0",
"workspaces/libnpmpack": "6.0.0",
"workspaces/libnpmpack": "6.0.1",
"workspaces/libnpmpublish": "9.0.0",
"workspaces/libnpmsearch": "7.0.0",
"workspaces/libnpmteam": "6.0.0",
"workspaces/libnpmversion": "5.0.0",
"workspaces/config": "7.1.0"
"workspaces/config": "7.2.0"
}
4 changes: 4 additions & 0 deletions AUTHORS
Original file line number Diff line number Diff line change
@@ -894,3 +894,7 @@ Emmanuel Ferdman <emmanuelferdman@gmail.com>
P-Chan <hello@0x50.io>
Rahul <rahulgithub96@gmail.com>
Francesco Sardone <francesco@airscript.it>
joaootavios <joaootaviostivi2@gmail.com>
Saquib <saquibkhan@github.com>
Dan Rose <danoftheroses@gmail.com>
Yuku Kotani <poyo0315@gmail.com>
Loading