Releases: rojopolis/spellcheck-github-actions
0.12.0
0.12.0 2021-02-22 maintenance release, update not required
- Docker image updated to Python 3.9.2 slim via PR #38 from @dependabot
0.11.0
0.11.0 2021-02-19 feature release, update not required
- Added support for German spelling:
lang: de
, including: Swiss and Austrian dictionaries addressing issue #35 via PR #36. This is experimental and will need further investigation. Aspell support 53 different dictionaries and supporting them all increases the Docker image size significantly so dynamic loading of dictionaries has to be investigated further, without increasing build time to a point where a pre-built Docker image is not longer feasible
0.10.0
0.9.1
0.9.1 2021-01-12 bug fix release, update not required
- Minor correction to the documentation, a significant change did not make it into 0.9.0, , PR #32 from Pavel Skipenes, @pavelskipenes
0.9.0
0.9.0 2021-01-11 feature release, update not required
- Added new ability specify an alternative path to a configuration file, PR #31 from Pavel Skipenes, @pavelskipenes
name: Spellcheck Action
on: push
jobs:
build:
name: Spellcheck
runs-on: ubuntu-latest
steps:
- uses: actions/checkout@master
- uses: rojopolis/[email protected]
name: Spellcheck
with:
config_path: .github/spellcheck.yml # put path to configuration file here
0.8.0
0.8.0 2021-01-08 feature release, update not required
- Added support for extensions for Python's Markdown, namely the
pymdown-extensions
introducing thesuperfences
extension, which can be used to address certain issue, which cannot be handled by handling of codefences by the Python Markdown implementation out of the box
0.7.0
0.7.0 2020-12-14 maintenance release, update not required
- Docker image updated to Python 3.9.1 slim via PR #27 from @dependabot
0.6.0
0.6.0 2020-10-18 feature release, update recommended
-
Docker image updated to Python 3.9.0 slim
-
Python requirement
lxml
updated to version 4.6.0, with wheel supporting Python 3.9.0 -
Requirement
pyspelling
updated to version 2.6.1 from 2.6.0 -
Python requirement
backrefs
updated to version 4.5 -
Python requirement
beautifulsoup4
updated to version 4.9.3 -
Python requirement
bracex
updated to version 2.0.1 -
Python requirement
html5lib
updated to version 1.1 -
Python requirement
Markdown
updated to version 3.3.1 -
Python requirement
wcmatch
updated to version 7.1
Contribution to documentation by Michael Flaxman, @mflaxman
0.5.0
0.5.0 2020-06-05 feature release, update recommended
- The action now uses a DockerHub served image, which mean that the Docker image does not have to be built at every invocation
- The documentation has been updated and the use of the
wordlist.txt
is no longer default. You have to introduce it yourself into your configuration, meaning that everything still works as expected for existing configurations - A minor bug introduced in 0.4.0 in the handling of the
wordlist.txt
was addressed
0.4.0
0.4.0 2020-05-28, feature release, update recommended
-
Introduced support for:
yml
extension in addition toyaml
for YAML configuration files. Please refer to the documentation for details -
Introduced support for hidden configuration files, so prefixing the spellcheck configuration file to make it less intrusive in your repository is now supported
patch from Stephen Bates, @sbates130272, PR: #7. Please refer to the documentation for details -
The default configuration has been limited to Markdown, please see additional examples in the
examples/
directory -
Updates to documentation, still work in progress
-
Improved support to local development using Docker
-
Release 0.3.0 (below) never made it to the GitHub Marketplace, this might be due to a missing
action.yml
please see:
https://github.521000.bestmunity/t/who-can-publish-an-action-to-the-marketplace/115602/3