Skip to content

Releases: rojopolis/spellcheck-github-actions

0.13.0

14 Apr 05:04
8b2b9dd
Compare
Choose a tag to compare

0.13.0 2021-04-14 maintenance release, update not required

  • Docker image updated to Python 3.9.4 slim via PR #41 from @dependabot

0.12.0

22 Feb 06:13
3d1b561
Compare
Choose a tag to compare

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

19 Feb 08:06
58d2466
Compare
Choose a tag to compare

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

06 Feb 19:28
833ab91
Compare
Choose a tag to compare

0.10.0 2021-02-06 feature release, update not required

  • Added capability to specify a set of files in the action, bypassing the filename pattern specified in the configuration. Implementation from PR #34 from Matt Calvert, @miff2000

0.9.1

12 Jan 18:08
77c6666
Compare
Choose a tag to compare

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

11 Jan 18:39
083ef6a
Compare
Choose a tag to compare

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/spellcheck-github-actions@0.9.0
      name: Spellcheck
      with:
        config_path: .github/spellcheck.yml # put path to configuration file here

0.8.0

08 Jan 17:34
Compare
Choose a tag to compare

0.8.0 2021-01-08 feature release, update not required

  • Added support for extensions for Python's Markdown, namely the pymdown-extensions introducing the superfences 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

14 Dec 19:53
afd4691
Compare
Choose a tag to compare

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

18 Oct 15:25
ce04b2f
Compare
Choose a tag to compare

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

05 Jun 09:41
9fc64f5
Compare
Choose a tag to compare

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