Skip to content

Commit a8e1436

Browse files
committed
Docs: Add 2.24.2 changelog
1 parent f0af617 commit a8e1436

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
@@ -55,6 +55,13 @@
5555
* HTML Reporter: Remove support for legacy markup. Use `<div id="qunit">` instead. Check [Browser Runner § Getting started](https://qunitjs.com/browser/).
5656
* 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)
5757

58+
2.24.2 / 2025-10-09
59+
==================
60+
61+
### Fixed
62+
63+
* CLI: Fix TAP compliance for colon in unquoted YAML diag. [dbc02fb9fe](https://github.com/qunitjs/qunit/commit/dbc02fb9fe001a4544b04a6d1b5db2a1a1f6fa7b)
64+
5865
2.24.1 / 2025-01-25
5966
==================
6067

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.24.2 Released: Bug fix"
4+
author: krinkle
5+
excerpt: Another TAP compliance fix.
6+
tags:
7+
- release
8+
---
9+
10+
### Fixed
11+
12+
* CLI: Fix TAP compliance for colon in unquoted YAML diag. [dbc02fb9fe](https://github.com/qunitjs/qunit/commit/dbc02fb9fe001a4544b04a6d1b5db2a1a1f6fa7b)
13+
14+
## See also
15+
16+
* [Git tag: 2.24.2](https://github.com/qunitjs/qunit/releases/tag/2.24.2)

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.1.css">
27+
<link rel="stylesheet" href="https://code.jquery.com/qunit/qunit-2.24.2.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.1.js"></script>
31+
<script src="https://code.jquery.com/qunit/qunit-2.24.2.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.1 (<a href="https://github.com/qunitjs/qunit/blob/2.24.1/History.md">changelog</a>)</p>
77+
<p class="lead lead--center">v2.24.2 (<a href="https://github.com/qunitjs/qunit/blob/2.24.2/History.md">changelog</a>)</p>
7878

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

81-
* Download: [`qunit-2.24.1.js`](https://code.jquery.com/qunit/qunit-2.24.1.js) and [`qunit-2.24.1.css`](https://code.jquery.com/qunit/qunit-2.24.1.css)
81+
* Download: [`qunit-2.24.2.js`](https://code.jquery.com/qunit/qunit-2.24.2.js) and [`qunit-2.24.2.css`](https://code.jquery.com/qunit/qunit-2.24.2.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.1.js`](https://code.jquery.com/qunit/qunit-2.24.1.js) and [`qunit-2.24.1.css`](https://code.jquery.com/qunit/qunit-2.24.1.css) files directly from the jQuery CDN.
99+
You can save the [`qunit-2.24.2.js`](https://code.jquery.com/qunit/qunit-2.24.2.js) and [`qunit-2.24.2.css`](https://code.jquery.com/qunit/qunit-2.24.2.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.1.css'
106-
curl -o qunit.js 'https://code.jquery.com/qunit/qunit-2.24.1.js'
105+
curl -o qunit.css 'https://code.jquery.com/qunit/qunit-2.24.2.css'
106+
curl -o qunit.js 'https://code.jquery.com/qunit/qunit-2.24.2.js'
107107
```
108108

109109
* npm Registry:

0 commit comments

Comments
 (0)