You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: CHANGELOG.md
+7Lines changed: 7 additions & 0 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -1,5 +1,12 @@
1
1
# Change Log for spellcheck-github-actions
2
2
3
+
## 0.52.0, 2025-09-10, feature release, update not required
4
+
5
+
- With version 2.11 of **PySpelling** a new command line option `--skip-dict-compile` is introduced to **PySpelling** and is adopted by this action. This will skip the dictionary compiling step if the dictionary already exists. Changes to a custom dictionary will be ignored., see the [release notes for PySpelling](https://github.com/facelessuser/pyspelling/releases/tag/2.11). Do see the updated documentation for details.
6
+
7
+
- The feature can be enabled by setting the input parameter `skip_dict_compile` to `true`, the default is `false`, meaning that the dictionary will be compiled on each run of the action.
8
+
- This can save time if you have a large custom dictionary that does not change often.
9
+
3
10
## 0.51.0, 2025-06-20, maintenance release, update not required
4
11
5
12
- Docker image updated to Python 3.13.5 slim via PR [#249](https://github.com/rojopolis/spellcheck-github-actions/pull/249) from Dependabot. [Release notes for Python 3.13.5](https://docs.python.org/release/3.13.5/whatsnew/changelog.html)
skip_dict_compile: true # <--- set to true to skip custom dictionary compilation
572
+
```
573
+
574
+
This can be useful if you have a large custom dictionary that does not change often, as it can save time during the action run.
575
+
576
+
The feature was added in version `0.52.0` of the action and it can be disabled by setting the input to `false` or omitting it altogether. The default value is `false`.
577
+
553
578
## Tips
554
579
555
580
### How to declutter your root directory from Spellcheck configuration files
0 commit comments