Skip to content

chore: bump the development-dependencies group across 1 directory with 2 updates - #6

Merged
mstuart merged 2 commits into
masterfrom
dependabot/npm_and_yarn/development-dependencies-bcfbfc7390
Aug 4, 2026
Merged

chore: bump the development-dependencies group across 1 directory with 2 updates#6
mstuart merged 2 commits into
masterfrom
dependabot/npm_and_yarn/development-dependencies-bcfbfc7390

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jul 6, 2026

Copy link
Copy Markdown
Contributor

Bumps the development-dependencies group with 2 updates in the / directory: ava and xo.

Updates ava from 7.0.0 to 8.0.1

Release notes

Sourced from ava's releases.

v8.0.1

What's Changed

This release officially adds Node.js 26 support, with thanks to @​novemberborn in avajs/ava#3450.

Per our policy, support for Node.js 25 has been removed.

Full Changelog: avajs/ava@v8.0.0...v8.0.1

v8.0.0

Breaking Changes

AVA now expects Node.js 22.20, 24.12 or newer.

Internally AVA is now fully ESM. This is possible now that Node.js supports loading ES modules using require() calls and simplifies AVA's types and internals.

If you use AVA from a CommonJS project you'll have to update your imports:

-const test = require('ava');
+const {default: test} = require('ava');

We expect an increasing number of projects to be ESM only. As per the above, CommonJS is still supported, but we don't expect cjs extensions to be used. The default file extensions are now js and mjs. Specify extensions: ['cjs', 'js', 'mjs'] for AVA to run test files with the cjs extension.

All test files (and those loaded through AVA's require config) are now loaded via import(). Use customization hooks for transpilation. The object form of the extensions configuration is no longer supported.

If you use AVA with @​ava/typescript you must upgrade that package to v7.

New Features

There's two new test modifiers courtesy of @​sindresorhus: test.skipIf() to skip a test based on a runtime condition. test.runIf() is the inverse: the test only runs when the condition is true.

test.skipIf(process.platform === 'win32')('not on Windows', t => {
	t.pass();
});
test.runIf(process.platform === 'linux')('Linux only', t => {
t.pass();
});

These work with other modifiers like .serial and .failing:

test.serial.skipIf(process.platform === 'win32')('serial, not on Windows', t => {
	t.pass();
});
</tr></table>

... (truncated)

Commits

Updates xo from 1.2.3 to 4.0.0

Release notes

Sourced from xo's releases.

v4.0.0

Improvements

  • Lint node:test files with the new eslint-node-test plugin
  • Recognize any tool's *-ignore/*:ignore comment (like svelte-ignore), not just a hardcoded list, for capitalized-comments

New rules

... (truncated)

Commits
  • 2775f7f 4.0.0
  • 5d90a39 Update dependencies
  • 5201c05 Update ISSUE_TEMPLATE to remove TypeScript link (#893)
  • 41b9bb9 3.0.2
  • 7baa7f2 Fix --fix corrupting TypeScript files outside the tsconfig
  • 561be4e 3.0.1
  • 91d3e6d Fix type resolution for TypeScript files outside the tsconfig
  • 698a903 3.0.0
  • a728ac5 Replace xoToEslintConfig with xo/eslint-adapter and delegate Prettier to ...
  • 9fbffd0 Add issue template config to route rule issues to config repos
  • Additional commits viewable in compare view

@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jul 6, 2026
@dependabot dependabot Bot changed the title chore: bump the development-dependencies group with 2 updates chore: bump the development-dependencies group across 1 directory with 2 updates Jul 27, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-bcfbfc7390 branch from 83e37bb to ab3c7a7 Compare July 27, 2026 14:25
@mstuart

mstuart commented Aug 4, 2026

Copy link
Copy Markdown
Owner

@dependabot rebase

@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-bcfbfc7390 branch from ab3c7a7 to 8ae10cb Compare August 4, 2026 00:58
@mstuart

mstuart commented Aug 4, 2026

Copy link
Copy Markdown
Owner

@dependabot rebase

…h 2 updates

Bumps the development-dependencies group with 2 updates in the / directory: [ava](https://github.com/avajs/ava) and [xo](https://github.com/xojs/xo).


Updates `ava` from 7.0.0 to 8.0.1
- [Release notes](https://github.com/avajs/ava/releases)
- [Commits](avajs/ava@v7.0.0...v8.0.1)

Updates `xo` from 1.2.3 to 4.0.0
- [Release notes](https://github.com/xojs/xo/releases)
- [Commits](xojs/xo@v1.2.3...v4.0.0)

---
updated-dependencies:
- dependency-name: ava
  dependency-version: 8.0.1
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: xo
  dependency-version: 3.0.2
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-bcfbfc7390 branch from 8ae10cb to 7c84eab Compare August 4, 2026 04:33
ava@8 and xo@4 (via eslint-plugin-unicorn) use Set.prototype.union,
a Node 22+ language feature, in the dev toolchain (lint/test runner).
This is confined to CI dev tooling, not shipped runtime code, so the
package.json engines field (>=20) for consumers is unaffected. Node
20 can no longer run the dev toolchain; drop it from the CI matrix.
@mstuart
mstuart merged commit 0db7548 into master Aug 4, 2026
7 checks passed
@mstuart
mstuart deleted the dependabot/npm_and_yarn/development-dependencies-bcfbfc7390 branch August 4, 2026 05:06
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code

Projects

None yet

Development

Successfully merging this pull request may close these issues.

1 participant