Skip to content

Commit af1c091

Browse files
chore: Prepare Release v9.5.0 (auto-deploy) (#8111)
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
1 parent b33c59a commit af1c091

File tree

29 files changed

+675
-3
lines changed

29 files changed

+675
-3
lines changed

.release.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
{
2-
"name": "v9.4.0",
3-
"version": "9.4.0",
4-
"tag": "v9.4.0"
2+
"name": "v9.5.0",
3+
"version": "9.5.0",
4+
"tag": "v9.5.0"
55
}

CHANGELOG.md

Lines changed: 102 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,108 @@
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+
## v9.5.0 (2025-12-16)
7+
8+
### Features
9+
10+
<details>
11+
<summary>feat: Report errors with nested config files (<a href="https://github.com/streetsidesoftware/cspell/pull/8155">#8155</a>)</summary>
12+
13+
### feat: Report errors with nested config files ([#8155](https://github.com/streetsidesoftware/cspell/pull/8155))
14+
15+
fixes: #7837
16+
17+
Errors in nested configuration files were ignored. This lead to unexpected behavior.
18+
19+
Note: this is a fix, but since it can impact existing installs, it is marked as a feature change.
20+
21+
---
22+
23+
</details>
24+
25+
<details>
26+
<summary>fix: Enable cts config support (<a href="https://github.com/streetsidesoftware/cspell/pull/8152">#8152</a>)</summary>
27+
28+
### fix: Enable cts config support ([#8152](https://github.com/streetsidesoftware/cspell/pull/8152))
29+
30+
Add support for `.cts` config files.
31+
32+
Update docs with `ts`, `mts`, and `cts` config.
33+
34+
---
35+
36+
</details>
37+
38+
### Fixes
39+
40+
<details>
41+
<summary>fix: Add cspell-tools option keepUncompressed (<a href="https://github.com/streetsidesoftware/cspell/pull/8163">#8163</a>)</summary>
42+
43+
### fix: Add cspell-tools option keepUncompressed ([#8163](https://github.com/streetsidesoftware/cspell/pull/8163))
44+
45+
---
46+
47+
</details>
48+
49+
<details>
50+
<summary>fix: Improve CSpell Tools (<a href="https://github.com/streetsidesoftware/cspell/pull/8160">#8160</a>)</summary>
51+
52+
### fix: Improve CSpell Tools ([#8160](https://github.com/streetsidesoftware/cspell/pull/8160))
53+
54+
Generate both compressed and non-compressed files when `compress: true`. This allows cspell-dicts to keep track of changes and have compressed files at the same time.
55+
56+
---
57+
58+
</details>
59+
60+
<details>
61+
<summary>fix: Make sure `cspell` exports `defineConfig ` for CommonJS (<a href="https://github.com/streetsidesoftware/cspell/pull/8156">#8156</a>)</summary>
62+
63+
### fix: Make sure `cspell` exports `defineConfig ` for CommonJS ([#8156](https://github.com/streetsidesoftware/cspell/pull/8156))
64+
65+
---
66+
67+
</details>
68+
69+
### Dictionary Updates
70+
71+
<details>
72+
<summary>fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/pull/8149">#8149</a>)</summary>
73+
74+
### fix: Workflow Bot -- Update Dictionaries (main) ([#8149](https://github.com/streetsidesoftware/cspell/pull/8149))
75+
76+
# Update Dictionaries (main)
77+
78+
## Summary
79+
80+
```
81+
.../snapshots/AdaDoom3/AdaDoom3/report.yaml | 7 +-
82+
.../snapshots/AdaDoom3/AdaDoom3/snapshot.txt | 7 +-
83+
.../snapshots/TheAlgorithms/Python/report.yaml | 5 +-
84+
.../snapshots/TheAlgorithms/Python/snapshot.txt | 5 +-
85+
.../snapshots/dart-lang/sdk/report.yaml | 8 +-
86+
.../snapshots/dart-lang/sdk/snapshot.txt | 4 +-
87+
.../snapshots/django/django/report.yaml | 13 +--
88+
.../snapshots/django/django/snapshot.txt | 44 ++++----
89+
.../iluwatar/java-design-patterns/report.yaml | 3 +-
90+
.../iluwatar/java-design-patterns/snapshot.txt | 3 +-
91+
.../snapshots/ktaranov/sqlserver-kit/report.yaml | 4 +-
92+
.../snapshots/ktaranov/sqlserver-kit/snapshot.txt | 3 +-
93+
.../snapshots/neovim/nvim-lspconfig/report.yaml | 5 +-
94+
.../snapshots/neovim/nvim-lspconfig/snapshot.txt | 3 +-
95+
.../snapshots/slint-ui/slint/report.yaml | 8 +-
96+
.../snapshots/slint-ui/slint/snapshot.txt | 7 +-
97+
.../snapshots/sveltejs/svelte/report.yaml | 3 +-
98+
.../snapshots/sveltejs/svelte/snapshot.txt | 3 +-
99+
packages/cspell-bundled-dicts/package.json | 20 ++--
100+
pnpm-lock.yaml | 120 +++++++++++----------
101+
20 files changed, 115 insertions(+), 160 deletions(-)
102+
```
103+
104+
---
105+
106+
</details>
107+
6108
## v9.4.0 (2025-12-01)
7109

8110
### Features

packages/Samples/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
## v9.5.0 (2025-12-16)
7+
8+
### Features
9+
10+
- feat: Report errors with nested config files (<a href="https://github.com/streetsidesoftware/cspell/pull/8155">#8155</a>)
11+
- fix: Enable cts config support (<a href="https://github.com/streetsidesoftware/cspell/pull/8152">#8152</a>)
12+
13+
### Fixes
14+
15+
- fix: Add cspell-tools option keepUncompressed (<a href="https://github.com/streetsidesoftware/cspell/pull/8163">#8163</a>)
16+
- fix: Improve CSpell Tools (<a href="https://github.com/streetsidesoftware/cspell/pull/8160">#8160</a>)
17+
18+
- fix: Make sure `cspell` exports `defineConfig ` for CommonJS (<a href="https://github.com/streetsidesoftware/cspell/pull/8156">#8156</a>)
19+
20+
### Dictionary Updates
21+
22+
- fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/pull/8149">#8149</a>)
23+
624
## v9.4.0 (2025-12-01)
725

826
### Features

packages/cspell-bundled-dicts/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
## v9.5.0 (2025-12-16)
7+
8+
### Features
9+
10+
- feat: Report errors with nested config files (<a href="https://github.com/streetsidesoftware/cspell/pull/8155">#8155</a>)
11+
- fix: Enable cts config support (<a href="https://github.com/streetsidesoftware/cspell/pull/8152">#8152</a>)
12+
13+
### Fixes
14+
15+
- fix: Add cspell-tools option keepUncompressed (<a href="https://github.com/streetsidesoftware/cspell/pull/8163">#8163</a>)
16+
- fix: Improve CSpell Tools (<a href="https://github.com/streetsidesoftware/cspell/pull/8160">#8160</a>)
17+
18+
- fix: Make sure `cspell` exports `defineConfig ` for CommonJS (<a href="https://github.com/streetsidesoftware/cspell/pull/8156">#8156</a>)
19+
20+
### Dictionary Updates
21+
22+
- fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/pull/8149">#8149</a>)
23+
624
## v9.4.0 (2025-12-01)
725

826
### Features

packages/cspell-config-lib/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
## v9.5.0 (2025-12-16)
7+
8+
### Features
9+
10+
- feat: Report errors with nested config files (<a href="https://github.com/streetsidesoftware/cspell/pull/8155">#8155</a>)
11+
- fix: Enable cts config support (<a href="https://github.com/streetsidesoftware/cspell/pull/8152">#8152</a>)
12+
13+
### Fixes
14+
15+
- fix: Add cspell-tools option keepUncompressed (<a href="https://github.com/streetsidesoftware/cspell/pull/8163">#8163</a>)
16+
- fix: Improve CSpell Tools (<a href="https://github.com/streetsidesoftware/cspell/pull/8160">#8160</a>)
17+
18+
- fix: Make sure `cspell` exports `defineConfig ` for CommonJS (<a href="https://github.com/streetsidesoftware/cspell/pull/8156">#8156</a>)
19+
20+
### Dictionary Updates
21+
22+
- fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/pull/8149">#8149</a>)
23+
624
## v9.4.0 (2025-12-01)
725

826
### Features

packages/cspell-dictionary/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
## v9.5.0 (2025-12-16)
7+
8+
### Features
9+
10+
- feat: Report errors with nested config files (<a href="https://github.com/streetsidesoftware/cspell/pull/8155">#8155</a>)
11+
- fix: Enable cts config support (<a href="https://github.com/streetsidesoftware/cspell/pull/8152">#8152</a>)
12+
13+
### Fixes
14+
15+
- fix: Add cspell-tools option keepUncompressed (<a href="https://github.com/streetsidesoftware/cspell/pull/8163">#8163</a>)
16+
- fix: Improve CSpell Tools (<a href="https://github.com/streetsidesoftware/cspell/pull/8160">#8160</a>)
17+
18+
- fix: Make sure `cspell` exports `defineConfig ` for CommonJS (<a href="https://github.com/streetsidesoftware/cspell/pull/8156">#8156</a>)
19+
20+
### Dictionary Updates
21+
22+
- fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/pull/8149">#8149</a>)
23+
624
## v9.4.0 (2025-12-01)
725

826
### Features

packages/cspell-eslint-plugin/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
## v9.5.0 (2025-12-16)
7+
8+
### Features
9+
10+
- feat: Report errors with nested config files (<a href="https://github.com/streetsidesoftware/cspell/pull/8155">#8155</a>)
11+
- fix: Enable cts config support (<a href="https://github.com/streetsidesoftware/cspell/pull/8152">#8152</a>)
12+
13+
### Fixes
14+
15+
- fix: Add cspell-tools option keepUncompressed (<a href="https://github.com/streetsidesoftware/cspell/pull/8163">#8163</a>)
16+
- fix: Improve CSpell Tools (<a href="https://github.com/streetsidesoftware/cspell/pull/8160">#8160</a>)
17+
18+
- fix: Make sure `cspell` exports `defineConfig ` for CommonJS (<a href="https://github.com/streetsidesoftware/cspell/pull/8156">#8156</a>)
19+
20+
### Dictionary Updates
21+
22+
- fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/pull/8149">#8149</a>)
23+
624
## v9.4.0 (2025-12-01)
725

826
### Features

packages/cspell-filetypes/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
## v9.5.0 (2025-12-16)
7+
8+
### Features
9+
10+
- feat: Report errors with nested config files (<a href="https://github.com/streetsidesoftware/cspell/pull/8155">#8155</a>)
11+
- fix: Enable cts config support (<a href="https://github.com/streetsidesoftware/cspell/pull/8152">#8152</a>)
12+
13+
### Fixes
14+
15+
- fix: Add cspell-tools option keepUncompressed (<a href="https://github.com/streetsidesoftware/cspell/pull/8163">#8163</a>)
16+
- fix: Improve CSpell Tools (<a href="https://github.com/streetsidesoftware/cspell/pull/8160">#8160</a>)
17+
18+
- fix: Make sure `cspell` exports `defineConfig ` for CommonJS (<a href="https://github.com/streetsidesoftware/cspell/pull/8156">#8156</a>)
19+
20+
### Dictionary Updates
21+
22+
- fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/pull/8149">#8149</a>)
23+
624
## v9.4.0 (2025-12-01)
725

826
### Features

packages/cspell-gitignore/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
## v9.5.0 (2025-12-16)
7+
8+
### Features
9+
10+
- feat: Report errors with nested config files (<a href="https://github.com/streetsidesoftware/cspell/pull/8155">#8155</a>)
11+
- fix: Enable cts config support (<a href="https://github.com/streetsidesoftware/cspell/pull/8152">#8152</a>)
12+
13+
### Fixes
14+
15+
- fix: Add cspell-tools option keepUncompressed (<a href="https://github.com/streetsidesoftware/cspell/pull/8163">#8163</a>)
16+
- fix: Improve CSpell Tools (<a href="https://github.com/streetsidesoftware/cspell/pull/8160">#8160</a>)
17+
18+
- fix: Make sure `cspell` exports `defineConfig ` for CommonJS (<a href="https://github.com/streetsidesoftware/cspell/pull/8156">#8156</a>)
19+
20+
### Dictionary Updates
21+
22+
- fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/pull/8149">#8149</a>)
23+
624
## v9.4.0 (2025-12-01)
725

826
### Features

packages/cspell-glob/CHANGELOG.md

Lines changed: 18 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,24 @@
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+
## v9.5.0 (2025-12-16)
7+
8+
### Features
9+
10+
- feat: Report errors with nested config files (<a href="https://github.com/streetsidesoftware/cspell/pull/8155">#8155</a>)
11+
- fix: Enable cts config support (<a href="https://github.com/streetsidesoftware/cspell/pull/8152">#8152</a>)
12+
13+
### Fixes
14+
15+
- fix: Add cspell-tools option keepUncompressed (<a href="https://github.com/streetsidesoftware/cspell/pull/8163">#8163</a>)
16+
- fix: Improve CSpell Tools (<a href="https://github.com/streetsidesoftware/cspell/pull/8160">#8160</a>)
17+
18+
- fix: Make sure `cspell` exports `defineConfig ` for CommonJS (<a href="https://github.com/streetsidesoftware/cspell/pull/8156">#8156</a>)
19+
20+
### Dictionary Updates
21+
22+
- fix: Workflow Bot -- Update Dictionaries (main) (<a href="https://github.com/streetsidesoftware/cspell/pull/8149">#8149</a>)
23+
624
## v9.4.0 (2025-12-01)
725

826
### Features

0 commit comments

Comments
 (0)