Skip to content

Commit f1ff121

Browse files
committed
v19.0.0
1 parent 3351aa0 commit f1ff121

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

76 files changed

+2535
-138
lines changed

Diff for: @alias/commitlint-config-angular/CHANGELOG.md

+63
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,69 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [19.0.0](https://github.com/conventional-changelog/commitlint/compare/v18.6.2...v19.0.0) (2024-02-27)
7+
8+
9+
* feat!: migrate to pure ESM (#3850) ([3423735](https://github.com/conventional-changelog/commitlint/commit/342373559bdf7c783c4ef37ff05dc38a5f681159)), closes [#3850](https://github.com/conventional-changelog/commitlint/issues/3850)
10+
11+
12+
### Reverts
13+
14+
* Revert "chore!: minimum node version v20" ([2816783](https://github.com/conventional-changelog/commitlint/commit/2816783d00e7eb967de3ac9347c2fc43dc8b94fa))
15+
16+
17+
### BREAKING CHANGES
18+
19+
* migrate to pure ESM
20+
21+
* feat: migrate to pure ESM
22+
23+
* chore: update snapshot
24+
25+
* fix: load `parserPreset` with another `await`
26+
27+
* test: migrate to vitest
28+
29+
* test: remove no replacement `--runInBand` test-ci script
30+
31+
* chore: fix code reviews
32+
33+
* refactor(load): rewrite resolve logic
34+
35+
* fix(config-nx-scopes): fix syntax error
36+
37+
* feat(resolve-extends): add resolveFrom and loadParserPreset
38+
39+
* feat(load): use resolveFrom and loadParserPreset from resolve-extends
40+
41+
* test: include only @commitlint/* packages src in coverage
42+
43+
* test: explicit import vitest utilities
44+
45+
* test: remove @jest/globals from dependencies
46+
47+
* fix(resolve-extends): `resolveFrom` output should be platform aware
48+
49+
* test: restore NO_COLOR to test script
50+
51+
* chore: fix linting issues
52+
53+
* fix: should use fileURLToPath instead of pathname for Windows compatibility
54+
55+
* Apply suggestions from code review
56+
57+
* fix: should reuse `cli` instead call `yargs()`
58+
59+
* feat(cli): set terminalWidth as wrap to avoid work break on help
60+
61+
* Update .eslintrc.cjs
62+
63+
* feat: migrate @commitlint/config-conventional to pure ESM
64+
65+
66+
67+
68+
669
## [18.6.1](https://github.com/conventional-changelog/commitlint/compare/v18.6.0...v18.6.1) (2024-02-13)
770

871
**Note:** Version bump only for package commitlint-config-angular

Diff for: @alias/commitlint-config-angular/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "commitlint-config-angular",
33
"type": "module",
4-
"version": "18.6.1",
4+
"version": "19.0.0",
55
"description": "Shareable commitlint config enforcing the angular commit convention",
66
"files": [
77
"index.js"
@@ -31,10 +31,10 @@
3131
"node": ">=v18"
3232
},
3333
"dependencies": {
34-
"@commitlint/config-angular": "^18.6.1"
34+
"@commitlint/config-angular": "^19.0.0"
3535
},
3636
"devDependencies": {
37-
"@commitlint/utils": "^18.6.1"
37+
"@commitlint/utils": "^19.0.0"
3838
},
3939
"gitHead": "d829bf6260304ca8d6811f329fcdd1b6c50e9749"
4040
}

Diff for: @alias/commitlint-config-lerna-scopes/CHANGELOG.md

+63
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,69 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [19.0.0](https://github.com/conventional-changelog/commitlint/compare/v18.6.2...v19.0.0) (2024-02-27)
7+
8+
9+
* feat!: migrate to pure ESM (#3850) ([3423735](https://github.com/conventional-changelog/commitlint/commit/342373559bdf7c783c4ef37ff05dc38a5f681159)), closes [#3850](https://github.com/conventional-changelog/commitlint/issues/3850)
10+
11+
12+
### Reverts
13+
14+
* Revert "chore!: minimum node version v20" ([2816783](https://github.com/conventional-changelog/commitlint/commit/2816783d00e7eb967de3ac9347c2fc43dc8b94fa))
15+
16+
17+
### BREAKING CHANGES
18+
19+
* migrate to pure ESM
20+
21+
* feat: migrate to pure ESM
22+
23+
* chore: update snapshot
24+
25+
* fix: load `parserPreset` with another `await`
26+
27+
* test: migrate to vitest
28+
29+
* test: remove no replacement `--runInBand` test-ci script
30+
31+
* chore: fix code reviews
32+
33+
* refactor(load): rewrite resolve logic
34+
35+
* fix(config-nx-scopes): fix syntax error
36+
37+
* feat(resolve-extends): add resolveFrom and loadParserPreset
38+
39+
* feat(load): use resolveFrom and loadParserPreset from resolve-extends
40+
41+
* test: include only @commitlint/* packages src in coverage
42+
43+
* test: explicit import vitest utilities
44+
45+
* test: remove @jest/globals from dependencies
46+
47+
* fix(resolve-extends): `resolveFrom` output should be platform aware
48+
49+
* test: restore NO_COLOR to test script
50+
51+
* chore: fix linting issues
52+
53+
* fix: should use fileURLToPath instead of pathname for Windows compatibility
54+
55+
* Apply suggestions from code review
56+
57+
* fix: should reuse `cli` instead call `yargs()`
58+
59+
* feat(cli): set terminalWidth as wrap to avoid work break on help
60+
61+
* Update .eslintrc.cjs
62+
63+
* feat: migrate @commitlint/config-conventional to pure ESM
64+
65+
66+
67+
68+
669
## [18.6.1](https://github.com/conventional-changelog/commitlint/compare/v18.6.0...v18.6.1) (2024-02-13)
770

871
**Note:** Version bump only for package commitlint-config-lerna-scopes

Diff for: @alias/commitlint-config-lerna-scopes/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "commitlint-config-lerna-scopes",
33
"type": "module",
4-
"version": "18.6.1",
4+
"version": "19.0.0",
55
"description": "Shareable commitlint config enforcing lerna package names as scopes",
66
"files": [
77
"index.js"
@@ -31,10 +31,10 @@
3131
"node": ">=v18"
3232
},
3333
"dependencies": {
34-
"@commitlint/config-lerna-scopes": "^18.6.1"
34+
"@commitlint/config-lerna-scopes": "^19.0.0"
3535
},
3636
"devDependencies": {
37-
"@commitlint/utils": "^18.6.1"
37+
"@commitlint/utils": "^19.0.0"
3838
},
3939
"gitHead": "70f7f4688b51774e7ac5e40e896cdaa3f132b2bc"
4040
}

Diff for: @alias/commitlint-config-nx-scopes/CHANGELOG.md

+63
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,69 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [19.0.0](https://github.com/conventional-changelog/commitlint/compare/v18.6.2...v19.0.0) (2024-02-27)
7+
8+
9+
* feat!: migrate to pure ESM (#3850) ([3423735](https://github.com/conventional-changelog/commitlint/commit/342373559bdf7c783c4ef37ff05dc38a5f681159)), closes [#3850](https://github.com/conventional-changelog/commitlint/issues/3850)
10+
11+
12+
### Reverts
13+
14+
* Revert "chore!: minimum node version v20" ([2816783](https://github.com/conventional-changelog/commitlint/commit/2816783d00e7eb967de3ac9347c2fc43dc8b94fa))
15+
16+
17+
### BREAKING CHANGES
18+
19+
* migrate to pure ESM
20+
21+
* feat: migrate to pure ESM
22+
23+
* chore: update snapshot
24+
25+
* fix: load `parserPreset` with another `await`
26+
27+
* test: migrate to vitest
28+
29+
* test: remove no replacement `--runInBand` test-ci script
30+
31+
* chore: fix code reviews
32+
33+
* refactor(load): rewrite resolve logic
34+
35+
* fix(config-nx-scopes): fix syntax error
36+
37+
* feat(resolve-extends): add resolveFrom and loadParserPreset
38+
39+
* feat(load): use resolveFrom and loadParserPreset from resolve-extends
40+
41+
* test: include only @commitlint/* packages src in coverage
42+
43+
* test: explicit import vitest utilities
44+
45+
* test: remove @jest/globals from dependencies
46+
47+
* fix(resolve-extends): `resolveFrom` output should be platform aware
48+
49+
* test: restore NO_COLOR to test script
50+
51+
* chore: fix linting issues
52+
53+
* fix: should use fileURLToPath instead of pathname for Windows compatibility
54+
55+
* Apply suggestions from code review
56+
57+
* fix: should reuse `cli` instead call `yargs()`
58+
59+
* feat(cli): set terminalWidth as wrap to avoid work break on help
60+
61+
* Update .eslintrc.cjs
62+
63+
* feat: migrate @commitlint/config-conventional to pure ESM
64+
65+
66+
67+
68+
669
## [18.6.1](https://github.com/conventional-changelog/commitlint/compare/v18.6.0...v18.6.1) (2024-02-13)
770

871
**Note:** Version bump only for package commitlint-config-nx-scopes

Diff for: @alias/commitlint-config-nx-scopes/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "commitlint-config-nx-scopes",
33
"type": "module",
4-
"version": "18.6.1",
4+
"version": "19.0.0",
55
"description": "Shareable commitlint config enforcing nx project names as scopes",
66
"files": [
77
"index.js"
@@ -31,10 +31,10 @@
3131
"node": ">=v18"
3232
},
3333
"dependencies": {
34-
"@commitlint/config-nx-scopes": "^18.6.1"
34+
"@commitlint/config-nx-scopes": "^19.0.0"
3535
},
3636
"devDependencies": {
37-
"@commitlint/utils": "^18.6.1"
37+
"@commitlint/utils": "^19.0.0"
3838
},
3939
"gitHead": "70f7f4688b51774e7ac5e40e896cdaa3f132b2bc"
4040
}

Diff for: @alias/commitlint-config-patternplate/CHANGELOG.md

+63
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,69 @@
33
All notable changes to this project will be documented in this file.
44
See [Conventional Commits](https://conventionalcommits.org) for commit guidelines.
55

6+
# [19.0.0](https://github.com/conventional-changelog/commitlint/compare/v18.6.2...v19.0.0) (2024-02-27)
7+
8+
9+
* feat!: migrate to pure ESM (#3850) ([3423735](https://github.com/conventional-changelog/commitlint/commit/342373559bdf7c783c4ef37ff05dc38a5f681159)), closes [#3850](https://github.com/conventional-changelog/commitlint/issues/3850)
10+
11+
12+
### Reverts
13+
14+
* Revert "chore!: minimum node version v20" ([2816783](https://github.com/conventional-changelog/commitlint/commit/2816783d00e7eb967de3ac9347c2fc43dc8b94fa))
15+
16+
17+
### BREAKING CHANGES
18+
19+
* migrate to pure ESM
20+
21+
* feat: migrate to pure ESM
22+
23+
* chore: update snapshot
24+
25+
* fix: load `parserPreset` with another `await`
26+
27+
* test: migrate to vitest
28+
29+
* test: remove no replacement `--runInBand` test-ci script
30+
31+
* chore: fix code reviews
32+
33+
* refactor(load): rewrite resolve logic
34+
35+
* fix(config-nx-scopes): fix syntax error
36+
37+
* feat(resolve-extends): add resolveFrom and loadParserPreset
38+
39+
* feat(load): use resolveFrom and loadParserPreset from resolve-extends
40+
41+
* test: include only @commitlint/* packages src in coverage
42+
43+
* test: explicit import vitest utilities
44+
45+
* test: remove @jest/globals from dependencies
46+
47+
* fix(resolve-extends): `resolveFrom` output should be platform aware
48+
49+
* test: restore NO_COLOR to test script
50+
51+
* chore: fix linting issues
52+
53+
* fix: should use fileURLToPath instead of pathname for Windows compatibility
54+
55+
* Apply suggestions from code review
56+
57+
* fix: should reuse `cli` instead call `yargs()`
58+
59+
* feat(cli): set terminalWidth as wrap to avoid work break on help
60+
61+
* Update .eslintrc.cjs
62+
63+
* feat: migrate @commitlint/config-conventional to pure ESM
64+
65+
66+
67+
68+
669
## [18.6.1](https://github.com/conventional-changelog/commitlint/compare/v18.6.0...v18.6.1) (2024-02-13)
770

871
**Note:** Version bump only for package commitlint-config-patternplate

Diff for: @alias/commitlint-config-patternplate/package.json

+3-3
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
{
22
"name": "commitlint-config-patternplate",
33
"type": "module",
4-
"version": "18.6.1",
4+
"version": "19.0.0",
55
"description": "Lint your commits, patternplate-style",
66
"files": [
77
"index.js"
@@ -31,10 +31,10 @@
3131
"node": ">=v18"
3232
},
3333
"dependencies": {
34-
"@commitlint/config-patternplate": "^18.6.1"
34+
"@commitlint/config-patternplate": "^19.0.0"
3535
},
3636
"devDependencies": {
37-
"@commitlint/utils": "^18.6.1"
37+
"@commitlint/utils": "^19.0.0"
3838
},
3939
"gitHead": "d829bf6260304ca8d6811f329fcdd1b6c50e9749"
4040
}

0 commit comments

Comments
 (0)