Skip to content
Open
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
2 changes: 1 addition & 1 deletion .github/workflows/benchmark.yml
Original file line number Diff line number Diff line change
Expand Up @@ -41,7 +41,7 @@ jobs:
run: echo ${{ github.event.number }} > ./pr_number

- name: Upload deltas
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v5
with:
name: delta-action-deltas
retention-days: 7
Expand Down
2 changes: 1 addition & 1 deletion .github/workflows/integration-tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ jobs:
run: echo "shard=$(echo '${{ matrix.shard }}' | tr '/' '-')" >> $GITHUB_OUTPUT

- name: Store npm error artefacts
uses: actions/upload-artifact@v6
uses: actions/upload-artifact@v5
if: always()
with:
name: npm-logs--${{ matrix.os }}--${{ matrix.node-version }}--${{ steps.sanitize-shard-name.outputs.shard }}
Expand Down
17 changes: 0 additions & 17 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,23 +8,6 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
Generated by [`auto-changelog`](https://github.com/CookPete/auto-changelog).


## [23.13.5](https://github.com/netlify/cli/compare/v23.13.4...v23.13.5) (2026-01-20)


### Bug Fixes

* **deps:** bump tar from 7.5.2 to 7.5.3 ([#7871](https://github.com/netlify/cli/issues/7871)) ([3e7c3a0](https://github.com/netlify/cli/commit/3e7c3a0583465815e4941be0f9eafe858159e657))
* **deps:** update netlify packages ([#7873](https://github.com/netlify/cli/issues/7873)) ([be07b3c](https://github.com/netlify/cli/commit/be07b3cc97f82b20bd5492fff1ccb863dd8b44ef))

## [23.13.4](https://github.com/netlify/cli/compare/v23.13.3...v23.13.4) (2026-01-17)


### Bug Fixes

* **deps:** bump h3 from 1.15.4 to 1.15.5 ([#7867](https://github.com/netlify/cli/issues/7867)) ([14eee2c](https://github.com/netlify/cli/commit/14eee2c661f8fe81c4554ed691a486c749ffd2dd))
* **types:** improve type safety in command helpers ([#7852](https://github.com/netlify/cli/issues/7852)) ([665fa01](https://github.com/netlify/cli/commit/665fa010ff3ee40e5eec825019afe62008bf293c))
* **types:** improve type safety in create-stream-promise util ([#7855](https://github.com/netlify/cli/issues/7855)) ([34d8a95](https://github.com/netlify/cli/commit/34d8a9529aca298e37a465b988c4a928746cd562))

## [23.13.3](https://github.com/netlify/cli/compare/v23.13.2...v23.13.3) (2026-01-08)


Expand Down
11 changes: 5 additions & 6 deletions e2e/install.e2e.ts
Original file line number Diff line number Diff line change
Expand Up @@ -203,11 +203,10 @@ const installTests: [packageManager: string, config: InstallTest][] = [
]

describe.each(installTests)('%s → installs the cli and runs commands without errors', (packageManager, config) => {
// Yarn v1 enforces engine constraints strictly. A transitive dep (chokidar@5) requires node >=20.19.0,
// breaking yarn installs on older Node 20.x. Node 20 EOL is April 2026, so we skip rather than override.
const yarnOnOldNode20 = packageManager === 'yarn' && process.versions.node === '20.12.2'
// TODO: Figure out why this flow is failing on Windows.
const npxOnWindows = platform() === 'win32' && 'run' in config

itWithMockNpmRegistry.skipIf(yarnOnOldNode20)('runs the commands without errors', async ({ registry }) => {
itWithMockNpmRegistry.skipIf(npxOnWindows)('runs the commands without errors', async ({ registry }) => {
// Install

const cwd = registry.cwd
Expand Down Expand Up @@ -304,9 +303,9 @@ const runTests: [packageManager: string, config: RunTest][] = [

describe.each(runTests)('%s → runs cli commands without errors', (packageManager, config) => {
// TODO: Figure out why this flow is failing on Windows.
const skipOnWindows = platform() === 'win32'
const npxOnWindows = platform() === 'win32' && 'run' in config

itWithMockNpmRegistry.skipIf(skipOnWindows)('runs commands without errors', async ({ registry }) => {
itWithMockNpmRegistry.skipIf(npxOnWindows)('runs commands without errors', async ({ registry }) => {
const [cmd, args] = config.run
const env = {
npm_config_registry: registry.address,
Expand Down
147 changes: 43 additions & 104 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Loading