Skip to content

Releases: rojopolis/spellcheck-github-actions

0.17.0

14 Oct 19:49
aa00f5d
Compare
Choose a tag to compare

0.17.0 2021-10-14 maintenance release, update not required

  • Docker image updated to Python 3.9.7 slim via PR #62 and again to Python 3.10.0 slim via PR #64 both from @dependabot

0.16.0

15 Aug 11:18
5330262
Compare
Choose a tag to compare

0.16.0 2021-08-15 bug fix release, update recommended

Experienced an issue with the new multi-stage Docker build, where aspell disappears.

This release implements a hack to make use that it is present, by reinstalling it :-/

0.15.0

15 Aug 10:34
8d01ffe
Compare
Choose a tag to compare

0.15.0 2021-08-13 maintenance release, update not required

Issue #53 describes an issue with ignoring Markdown regions with code fences. This was an issue in pyspelling, which is the core component in this action. Luckily @facelessuser, the maintainer of pyspelling was to fix it. So the requirement for pyspelling was bumped from 2.6.1 to 2.7.3

Thanks to @supernovae and @facelessuser

This however demonstrated that several of the dependencies was not up to date.

'The following dependencies have been updated:

Additionally some work has been done in regard to the Docker build, so it is possible to specify new languages, using multi-stage build, see PR #39 addressing issue: #13

Please see the Wiki for details.

Thanks to @aSemy and @edumco

  • Thanks to @PeterPetrik for correction to command line example in README

  • Docker image updated to Python 3.9.6 slim via PR #51 from @dependabot

0.14.0

13 May 13:09
e0dcc87
Compare
Choose a tag to compare

0.14.0 2021-05-13 maintenance release, update not required

  • Docker image updated to Python 3.9.5 slim via PR #48 from @dependabot

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