Skip to content

Commit 8211f6d

Browse files
committed
Release 8.0.0
1 parent 85f2d53 commit 8211f6d

File tree

3 files changed

+62
-10
lines changed

3 files changed

+62
-10
lines changed

CHANGELOG.md

+31
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,36 @@
11

22

3+
## [8.0.0](https://github.com/platinumazure/eslint-plugin-qunit/compare/v7.3.4...v8.0.0) (2023-06-28)
4+
5+
6+
### ⚠ BREAKING CHANGES
7+
8+
* Require eslint@^8.38, drop support for [email protected] (#376)
9+
* change require-expect rule default option to never-except-zero (#375)
10+
* strictly define node API (#374)
11+
* drop support for Node 12, 14, 17, 19 (#373)
12+
13+
### Features
14+
15+
* change require-expect rule default option to never-except-zero ([#375](https://github.com/platinumazure/eslint-plugin-qunit/issues/375)) ([1c5935b](https://github.com/platinumazure/eslint-plugin-qunit/commit/1c5935b7559212875de7b26b417028bb98f61659))
16+
* drop support for Node 12, 14, 17, 19 ([#373](https://github.com/platinumazure/eslint-plugin-qunit/issues/373)) ([2009a54](https://github.com/platinumazure/eslint-plugin-qunit/commit/2009a545a9f4bb2940531f0dd70bd140eeba9aec))
17+
* Require eslint@^8.38, drop support for [email protected] ([#376](https://github.com/platinumazure/eslint-plugin-qunit/issues/376)) ([9b30134](https://github.com/platinumazure/eslint-plugin-qunit/commit/9b30134971793fa6c7ac9a7f2212b4374c7b1002))
18+
* strictly define node API ([#374](https://github.com/platinumazure/eslint-plugin-qunit/issues/374)) ([391647e](https://github.com/platinumazure/eslint-plugin-qunit/commit/391647e0f81f303bd668b2080ba8d64ca52c3542))
19+
20+
21+
### Documentation
22+
23+
* Correct GitHub access token variable name for releases ([#277](https://github.com/platinumazure/eslint-plugin-qunit/issues/277)) ([7a10cb4](https://github.com/platinumazure/eslint-plugin-qunit/commit/7a10cb422549ff312aa1446c052ffa83456269c7))
24+
25+
26+
### Chores
27+
28+
* Add object-curly-newline to ESLint config ([0f88ebe](https://github.com/platinumazure/eslint-plugin-qunit/commit/0f88ebebe8efcfb2138c9f6093601577608b2f83))
29+
* tweak release-it ([#380](https://github.com/platinumazure/eslint-plugin-qunit/issues/380)) ([85f2d53](https://github.com/platinumazure/eslint-plugin-qunit/commit/85f2d5323276bfb6bce1a1dce1df8e1fb30594f4))
30+
* Update caniuse in lockfile to suppress warnings in npm test ([a29c17e](https://github.com/platinumazure/eslint-plugin-qunit/commit/a29c17e0e7a0d70e597a1b9da6ea660af34841c9))
31+
* use ecmaVersion latest for eslint ([#379](https://github.com/platinumazure/eslint-plugin-qunit/issues/379)) ([e2c206e](https://github.com/platinumazure/eslint-plugin-qunit/commit/e2c206e67d5a5a977818bb0bee96934231a99058))
32+
* use node protocol for imports ([#378](https://github.com/platinumazure/eslint-plugin-qunit/issues/378)) ([4177030](https://github.com/platinumazure/eslint-plugin-qunit/commit/41770309d5bb047c92b9e805c3fcd5f5639e4961))
33+
334
## [7.3.4](https://github.com/platinumazure/eslint-plugin-qunit/compare/v7.3.3...v7.3.4) (2022-11-30)
435

536

package-lock.json

+2-2
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

package.json

+29-8
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
{
22
"name": "eslint-plugin-qunit",
3-
"version": "7.3.4",
3+
"version": "8.0.0",
44
"description": "ESLint plugin containing rules useful for QUnit tests.",
55
"exports": "./index.js",
66
"main": "./index.js",
@@ -95,13 +95,34 @@
9595
"preset": {
9696
"name": "conventionalcommits",
9797
"types": [
98-
{ "type": "feat", "section": "Features" },
99-
{ "type": "fix", "section": "Bug Fixes" },
100-
{ "type": "perf", "section": "Performance" },
101-
{ "type": "docs", "section": "Documentation" },
102-
{ "type": "chore", "section": "Chores" },
103-
{ "type": "refactor", "section": "Chores" },
104-
{ "type": "test", "section": "Chores" }
98+
{
99+
"type": "feat",
100+
"section": "Features"
101+
},
102+
{
103+
"type": "fix",
104+
"section": "Bug Fixes"
105+
},
106+
{
107+
"type": "perf",
108+
"section": "Performance"
109+
},
110+
{
111+
"type": "docs",
112+
"section": "Documentation"
113+
},
114+
{
115+
"type": "chore",
116+
"section": "Chores"
117+
},
118+
{
119+
"type": "refactor",
120+
"section": "Chores"
121+
},
122+
{
123+
"type": "test",
124+
"section": "Chores"
125+
}
105126
]
106127
},
107128
"infile": "CHANGELOG.md"

0 commit comments

Comments
 (0)