Skip to content

Commit 8b5c627

Browse files
committed
Docs: Fix mistaken use of localhost URL in some release notes
Caught by the daily hydra-link-checker job. Follows-up 5f810e5.
1 parent 53ee0a7 commit 8b5c627

6 files changed

+13
-9
lines changed

History.md

+3-3
Original file line numberDiff line numberDiff line change
@@ -585,7 +585,7 @@ QUnit 3.0 Roadmap and feedback: https://github.com/qunitjs/qunit/issues/1498
585585
2.4.0 / 2017-07-08
586586
==================
587587

588-
* Assert: New [`assert.timeout()`](http://localhost:4000/api/assert/timeout/) for setting per-test timeout durations. (Trent Willis) [#1165](https://github.com/qunitjs/qunit/pull/1165)
588+
* Assert: New [`assert.timeout()`](https://qunitjs.com/api/assert/timeout/) for setting per-test timeout durations. (Trent Willis) [#1165](https://github.com/qunitjs/qunit/pull/1165)
589589
* Assert: Fix assert.push deprecation link.
590590
* CLI: Better messaging on early exits.
591591
* CLI: Default to non-zero exit code.
@@ -750,7 +750,7 @@ QUnit 3.0 Roadmap and feedback: https://github.com/qunitjs/qunit/issues/1498
750750
1.22.0 / 2016-02-23
751751
==================
752752

753-
* Assert: New [`assert.pushResult()`](http://localhost:4000/api/assert/pushResult/) method. (YongWoo Jeon) [#920](https://github.com/qunitjs/qunit/pull/920)
753+
* Assert: New [`assert.pushResult()`](https://qunitjs.com/api/assert/pushResult/) method. (YongWoo Jeon) [#920](https://github.com/qunitjs/qunit/pull/920)
754754
* Assert: Extend Assert methods to QUnit for backwards compatibility.
755755
* HTML Reporter: Escape setUrl output.
756756

@@ -1005,7 +1005,7 @@ QUnit 3.0 Roadmap and feedback: https://github.com/qunitjs/qunit/issues/1498
10051005

10061006
* Core: A test without any assertions now fails by default, unless [`assert.expect(0)`](https://qunitjs.com/api/assert/expect/) is called. [#178](https://github.com/qunitjs/qunit/issues/178)
10071007
* Core: Add `QUnit.pushFailure` to log error conditions like exceptions. Accepts stacktrace as second argument, allowing extraction with catched exceptions (useful even in Safari). [#210](https://github.com/qunitjs/qunit/issues/210)
1008-
* Core: Apply [`notrycatch` option](http://localhost:4000/api/config/notrycatch/) to setup and teardown hooks. [#203](https://github.com/qunitjs/qunit/issues/203) [#204](https://github.com/qunitjs/qunit/issues/204)
1008+
* Core: Apply [`notrycatch` option](https://qunitjs.com/api/config/notrycatch/) to setup and teardown hooks. [#203](https://github.com/qunitjs/qunit/issues/203) [#204](https://github.com/qunitjs/qunit/issues/204)
10091009
* Core: Extend exports object with QUnit properties at the end of the file to export everything.
10101010
* Core: Prefix test-related session-storage items to make removal more specific. [#213](https://github.com/qunitjs/qunit/issues/213)
10111011
* HTML Reporter: Sort objects in value dumps alphabetically to improve diffs. [#206](https://github.com/qunitjs/qunit/issues/206)

build/hydra-config.json

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,13 +1,17 @@
11
{
22
"//": [
3-
"twitter.com broken with redirect-loop",
3+
"twitter.com serves broken redirect-loop",
44
"app.element.io chat rooms render fine but use HTTP 404 for some reason",
55
"npmjs.com responds HTTP 429 Too Many Requests too easily",
6+
"Skip trivial github.com links to hopefully avoid HTTP 429 Too Many Requests",
67
""
78
],
89
"exclude_scheme_prefixes": [
910
"https://twitter.com/",
1011
"https://app.element.io/",
11-
"https://www.npmjs.com/package/"
12+
"https://www.npmjs.com/package/",
13+
"https://github.com/qunitjs/qunit/issues/",
14+
"https://github.com/qunitjs/qunit/pull/",
15+
"https://github.com/qunitjs/qunit/blob/main/docs/_posts/"
1216
]
1317
}

docs/_posts/2012-03-10-qunit-1-4-0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ tags:
1010

1111
* Core: A test without any assertions now fails by default, unless [`assert.expect(0)`](https://qunitjs.com/api/assert/expect/) is called. [#178](https://github.com/qunitjs/qunit/issues/178)
1212
* Core: Add `QUnit.pushFailure` to log error conditions like exceptions. Accepts stacktrace as second argument, allowing extraction with catched exceptions (useful even in Safari). [#210](https://github.com/qunitjs/qunit/issues/210)
13-
* Core: Apply [`notrycatch` option](http://localhost:4000/api/config/notrycatch/) to setup and teardown hooks. [#203](https://github.com/qunitjs/qunit/issues/203) [#204](https://github.com/qunitjs/qunit/issues/204)
13+
* Core: Apply [`notrycatch` option](https://qunitjs.com/api/config/notrycatch/) to setup and teardown hooks. [#203](https://github.com/qunitjs/qunit/issues/203) [#204](https://github.com/qunitjs/qunit/issues/204)
1414
* Core: Extend exports object with QUnit properties at the end of the file to export everything.
1515
* Core: Prefix test-related session-storage items to make removal more specific. [#213](https://github.com/qunitjs/qunit/issues/213)
1616
* HTML Reporter: Sort objects in value dumps alphabetically to improve diffs. [#206](https://github.com/qunitjs/qunit/issues/206)

docs/_posts/2016-02-23-qunit-1-22-0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tags:
88

99
## Changelog
1010

11-
* Assert: New [`assert.pushResult()`](http://localhost:4000/api/assert/pushResult/) method. (YongWoo Jeon) [#920](https://github.com/qunitjs/qunit/pull/920)
11+
* Assert: New [`assert.pushResult()`](https://qunitjs.com/api/assert/pushResult/) method. (YongWoo Jeon) [#920](https://github.com/qunitjs/qunit/pull/920)
1212
* Assert: Extend Assert methods to QUnit for backwards compatibility.
1313
* HTML Reporter: Escape setUrl output.
1414

docs/_posts/2017-07-08-qunit-2-4-0.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ tags:
88

99
## Changelog
1010

11-
* Assert: New [`assert.timeout()`](http://localhost:4000/api/assert/timeout/) for setting per-test timeout durations. (Trent Willis) [#1165](https://github.com/qunitjs/qunit/pull/1165)
11+
* Assert: New [`assert.timeout()`](https://qunitjs.com/api/assert/timeout/) for setting per-test timeout durations. (Trent Willis) [#1165](https://github.com/qunitjs/qunit/pull/1165)
1212
* Assert: Fix assert.push deprecation link.
1313
* CLI: Better messaging on early exits.
1414
* CLI: Default to non-zero exit code.

docs/api/config/index.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ group: config
44
title: QUnit.config
55
excerpt: General configuration options for QUnit.
66
amethyst:
7-
# Override inherited "pagetype: navigation" to enable TypeSense indexing
7+
# Override inherited "pagetype: navigation" to enable Typesense indexing
88
pagetype: custom
99
robots: index
1010
redirect_from:

0 commit comments

Comments
 (0)