Skip to content

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

Closed
dependabot[bot] wants to merge 7 commits into
masterfrom
dependabot/npm_and_yarn/development-dependencies-c9adfe4b7b
Closed

chore: bump the development-dependencies group across 1 directory with 2 updates#4
dependabot[bot] wants to merge 7 commits into
masterfrom
dependabot/npm_and_yarn/development-dependencies-c9adfe4b7b

Conversation

@dependabot

@dependabot dependabot Bot commented on behalf of github Jun 8, 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 3.0.2

Release notes

Sourced from xo's releases.

v3.0.2

  • Fix --fix corrupting TypeScript files outside the tsconfig 7baa7f2

xojs/xo@v3.0.1...v3.0.2

v3.0.1

  • Fix type resolution for TypeScript files outside the tsconfig 91d3e6d

xojs/xo@v3.0.0...v3.0.1

v3.0.0

Breaking

  • Requires Node.js 22
  • Removed built-in React support.
    • Add eslint-config-xo-react to your config instead. Learn more
    • It was removed to keep XO's core lean and framework-agnostic. Bundling eslint-plugin-react for everyone held XO back by its slow ESLint-major support, and there's now a competing plugin, @eslint-react, so picking one for all users no longer makes sense.
  • The bundled rules now live in a single eslint-config-xo package. The separate eslint-config-xo-typescript package is merged into it.
    • If you prefer using ESLint directly, you can get all the rules there now.
  • Replaced the xoToEslintConfig export with the xo/eslint-adapter import for editor/ESLint integration. For example, xoToEslintConfig([{space: true, prettier: true}]) becomes eslintConfigXo({space: true, prettier: true}) from eslint-config-xo, or simply export {default} from 'xo/eslint-adapter';.

Improvements

  • Lint CSS, Markdown, HTML, JSDoc comments, and regular expressions out of the box
  • Add --max-warnings flag to treat warnings as errors (#724)
  • Add ESLint bulk suppression support (#826)
  • Hide warnings when there are errors, so you can focus on what matters (#507)
  • Respect the global gitignore (#803)
  • Allow overriding default ignores with negation patterns (#65)
  • Throw when no files match explicitly provided patterns

New rules

... (truncated)

Commits
  • 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
  • 945fd51 Warn when the project's TypeScript is older than the bundled version
  • 797693a Fix crash when linting JSON files with Prettier enabled
  • 4fddd6f Remove built-in React support
  • Additional commits viewable in compare view

mstuart and others added 5 commits February 15, 2026 16:34
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
…h 3 updates (#3)

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


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

Updates `tsd` from 0.31.2 to 0.33.0
- [Release notes](https://github.com/tsdjs/tsd/releases)
- [Commits](tsdjs/tsd@v0.31.2...v0.33.0)

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

---
updated-dependencies:
- dependency-name: ava
  dependency-version: 7.0.0
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
- dependency-name: tsd
  dependency-version: 0.33.0
  dependency-type: direct:development
  update-type: version-update:semver-minor
  dependency-group: development-dependencies
- dependency-name: xo
  dependency-version: 1.2.3
  dependency-type: direct:development
  update-type: version-update:semver-major
  dependency-group: development-dependencies
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Bumps the github-actions group with 2 updates: [actions/checkout](https://github.com/actions/checkout) and [actions/setup-node](https://github.com/actions/setup-node).


Updates `actions/checkout` from 4 to 6
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v4...v6)

Updates `actions/setup-node` from 4 to 6
- [Release notes](https://github.com/actions/setup-node/releases)
- [Commits](actions/setup-node@v4...v6)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
- dependency-name: actions/setup-node
  dependency-version: '6'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
@dependabot dependabot Bot added dependencies Pull requests that update a dependency file javascript Pull requests that update javascript code labels Jun 8, 2026
dependabot Bot added 2 commits June 28, 2026 16:47
)

Bumps the github-actions group with 1 update: [actions/checkout](https://github.com/actions/checkout).


Updates `actions/checkout` from 6 to 7
- [Release notes](https://github.com/actions/checkout/releases)
- [Changelog](https://github.com/actions/checkout/blob/main/CHANGELOG.md)
- [Commits](actions/checkout@v6...v7)

---
updated-dependencies:
- dependency-name: actions/checkout
  dependency-version: '7'
  dependency-type: direct:production
  update-type: version-update:semver-major
  dependency-group: github-actions
...

Signed-off-by: dependabot[bot] <support@github.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
…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 3.0.2
- [Release notes](https://github.com/xojs/xo/releases)
- [Commits](xojs/xo@v1.2.3...v3.0.2)

---
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: 2.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 changed the title chore: bump the development-dependencies group with 2 updates chore: bump the development-dependencies group across 1 directory with 2 updates Jun 29, 2026
@dependabot
dependabot Bot force-pushed the dependabot/npm_and_yarn/development-dependencies-c9adfe4b7b branch from b8ce700 to de9f19f Compare June 29, 2026 14:25
@mstuart mstuart closed this Jul 2, 2026
@dependabot @github

dependabot Bot commented on behalf of github Jul 2, 2026

Copy link
Copy Markdown
Contributor Author

This pull request was built based on a group rule. Closing it will not ignore any of these versions in future pull requests.

To ignore these dependencies, configure ignore rules in dependabot.yml

@dependabot
dependabot Bot deleted the dependabot/npm_and_yarn/development-dependencies-c9adfe4b7b branch July 2, 2026 00:58
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