Skip to content

Commit be3f1bf

Browse files
committed
Docs: Add 2.25.0 changelog
1 parent 854470d commit be3f1bf

File tree

5 files changed

+30
-7
lines changed

5 files changed

+30
-7
lines changed

History.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -49,6 +49,13 @@
4949
* HTML Reporter: Remove support for legacy markup. Use `<div id="qunit">` instead. Check [Browser Runner § Getting started](https://qunitjs.com/browser/).
5050
* Build: Discontinue publication to Bower for future releases. Check [How to install](https://qunitjs.com/intro/#download) or [Getting started](https://qunitjs.com/intro/). [#1677](https://github.com/qunitjs/qunit/issues/1677)
5151

52+
2.25.0 / 2025-12-30
53+
==================
54+
55+
### Added
56+
57+
* Core: Add `QUnit.config.testFilter` to programmatically filter tests. (NullVoxPopuli, Sebastian Gbudje) [#1814](https://github.com/qunitjs/qunit/issues/1814)
58+
5259
2.24.3 / 2025-11-29
5360
==================
5461

Lines changed: 16 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,16 @@
1+
---
2+
layout: post
3+
title: "QUnit 2.25.0 Released: Add callback filter"
4+
author: krinkle
5+
excerpt: Introduce QUnit.config.testFilter to programmatically filter tests.
6+
tags:
7+
- release
8+
---
9+
10+
### Added
11+
12+
* Core: Add [`QUnit.config.testFilter`](https://qunitjs.com/api/config/testFilter/) to programmatically filter tests. (NullVoxPopuli, Sebastian Gbudje) [#1814](https://github.com/qunitjs/qunit/issues/1814)
13+
14+
## See also
15+
16+
* [Git tag: 2.25.0](https://github.com/qunitjs/qunit/releases/tag/2.25.0)

docs/browser.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -24,11 +24,11 @@ QUnit releases are standalone and require no runtime dependencies for use in the
2424
<html>
2525
<meta charset="utf-8">
2626
<title>QUnit</title>
27-
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.24.3.css">
27+
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.25.0.css">
2828
<body>
2929
<div id="qunit"></div>
3030
<div id="qunit-fixture"></div>
31-
<script src="https://code.jquery.com/qunit/qunit-2.24.3.js"></script>
31+
<script src="https://code.jquery.com/qunit/qunit-2.25.0.js"></script>
3232
<!-- <script src="your_app.test.js"></script> -->
3333
</body>
3434
</html>

docs/index.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -74,11 +74,11 @@ ok 1 add > two numbers
7474

7575
## Current Release
7676

77-
<p class="lead lead--center">v2.24.3 (<a href="https://github.com/qunitjs/qunit/blob/2.24.3/History.md">changelog</a>)</p>
77+
<p class="lead lead--center">v2.25.0 (<a href="https://github.com/qunitjs/qunit/blob/2.25.0/History.md">changelog</a>)</p>
7878

7979
These are the official [release channels](intro.md#download) for QUnit:
8080

81-
* Download: [`qunit-2.24.3.js`](https://code.jquery.com/qunit/qunit-2.24.3.js) and [`qunit-2.24.3.css`](https://code.jquery.com/qunit/qunit-2.24.3.css)
81+
* Download: [`qunit-2.25.0.js`](https://code.jquery.com/qunit/qunit-2.25.0.js) and [`qunit-2.25.0.css`](https://code.jquery.com/qunit/qunit-2.25.0.css)
8282
* npm: `npm install --save-dev qunit`
8383
* Yarn: `yarn add --dev qunit`
8484

docs/intro.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -96,14 +96,14 @@ These are the official release channels for QUnit releases:
9696

9797
* Download:
9898

99-
You can save the [`qunit-2.24.3.js`](https://code.jquery.com/qunit/qunit-2.24.3.js) and [`qunit-2.24.3.css`](https://code.jquery.com/qunit/qunit-2.24.3.css) files directly from the jQuery CDN.
99+
You can save the [`qunit-2.25.0.js`](https://code.jquery.com/qunit/qunit-2.25.0.js) and [`qunit-2.25.0.css`](https://code.jquery.com/qunit/qunit-2.25.0.css) files directly from the jQuery CDN.
100100
For older versions, browse the [release archives](https://releases.jquery.com/qunit/).
101101

102102
Or download them via the terminal, and save them in your Git repository.
103103

104104
```bash
105-
curl -o qunit.css 'https://code.jquery.com/qunit/qunit-2.24.3.css'
106-
curl -o qunit.js 'https://code.jquery.com/qunit/qunit-2.24.3.js'
105+
curl -o qunit.css 'https://code.jquery.com/qunit/qunit-2.25.0.css'
106+
curl -o qunit.js 'https://code.jquery.com/qunit/qunit-2.25.0.js'
107107
```
108108

109109
* npm Registry:

0 commit comments

Comments
 (0)