Skip to content

Commit 986143f

Browse files
committed
Preparing release 0.44.0
1 parent e591a46 commit 986143f

File tree

4 files changed

+29
-16
lines changed

4 files changed

+29
-16
lines changed

CHANGELOG.md

Lines changed: 14 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,18 @@
11
# Change Log for spellcheck-github-actions
22

3+
## 0.44.0, 2024-10-25, maintenance release, update not required
4+
5+
- Docker image updated to Python 3.13.0 slim via PR [#217](https://github.com/rojopolis/spellcheck-github-actions/pull/217) from Dependabot. [Release notes for Python 3.13.0](https://docs.python.org/release/3.13.0/whatsnew/changelog.html)
6+
7+
- Since lxml was not building I bumped to the lastest release 5.3.0. In in relation to that, so I while I was at it I went through the dependencies and updated the ones possible using a PySpelling build as the baseline. The following dependencies were updated:
8+
9+
- beautifulsoup4 bumped from version 4.12.2 to 4.12.3, see [release notes](https://git.launchpad.net/beautifulsoup/tree/CHANGELOG)
10+
- lxml bumped from version 4.9.3 to 5.3.0, see [release notes](https://github.com/lxml/lxml/blob/master/CHANGES.txt)
11+
- Markdown bumped from version 3.4.4 to 3.7, see [release notes](https://python-markdown.github.io/changelog/#37-2024-08-16)
12+
- pymdown-extensions bumped from version 10.4 to 10.11.2, see [release notes](https://github.com/facelessuser/pymdown-extensions/releases/tag/10.11.2)
13+
- PyYAML bumped from version 6.0.1 to 6.0.2, see [release notes](https://github.com/yaml/pyyaml/blob/main/CHANGES)
14+
- soupsieve bumped from version 2.5 to 2.6, see [release notes](https://github.com/facelessuser/soupsieve/releases/tag/2.6)
15+
316
## 0.43.1, 2024-10-17, bug fix release, update recommended
417

518
- This is an attempt at addressing the conflict between using the PySpelling `--source` parameter and the `sources` parameter in the PySpelling configuration file introduced by this action. With the recommendation of using the GitHub Action: [tj-actions/changed-files](https://github.com/marketplace/actions/changed-files), the use of the `--source` flag was adopted, but this bypasses the filtering mechanism, which can be enabled in the configuration file. The update recommendation is due to the fact that you might experience unwanted behaviour if your `sources` contain negated file patterns. The patch enables application of the configured filter to the source parameters, so the action can be used with the `--source` parameter and the `sources` configuration parameter in combination.
@@ -63,7 +76,7 @@ Bumping to Python 3.12.0 slim, introduced a number of dependency updates, not al
6376
- beautifulsoup4 bumped from version 4.9.3 to 4.12.2, see [release notes](https://git.launchpad.net/beautifulsoup/tree/CHANGELOG)
6477
- lxml bumped from version 4.9.2 to 4.9.3, see [release notes](https://github.com/lxml/lxml/blob/master/CHANGES.txt)
6578
- Markdown bumped from version 3.3.4 to 3.4.4, see [release notes](https://python-markdown.github.io/changelog/#344-2023-07-25)
66-
- pymdown-extension bumped from version 10.0.1 to 10.4, see [release notes](https://github.com/facelessuser/pymdown-extensions/releases/tag/10.4)
79+
- pymdown-extensions bumped from version 10.0.1 to 10.4, see [release notes](https://github.com/facelessuser/pymdown-extensions/releases/tag/10.4)
6780
- PyYAML bumped from version 5.4.1 to 6.0.1, see [release notes](https://github.com/yaml/pyyaml/blob/main/CHANGES)
6881
- soupsieve bumped from version 2.2.1 to 2.5, see [release notes](https://github.com/facelessuser/soupsieve/releases/tag/2.5)
6982

README.md

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -104,7 +104,7 @@ jobs:
104104
steps:
105105
# The checkout step
106106
- uses: actions/checkout@v3
107-
- uses: rojopolis/spellcheck-github-actions@0.43.1
107+
- uses: rojopolis/spellcheck-github-actions@0.44.0
108108
name: Spellcheck
109109
```
110110
@@ -114,7 +114,7 @@ For example, it could be named `.github/workflows/spelling_action.yml` for easy
114114

115115
### Using a Canonical Version
116116

117-
In the above example, the configuration is pointing to the exact version of `0.43.1`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
117+
In the above example, the configuration is pointing to the exact version of `0.44.0`, this repository also offers the canonical version `v0`, so there is less hassle keeping the action up to date.
118118

119119
```yaml
120120
name: Spellcheck Action
@@ -202,7 +202,7 @@ jobs:
202202
steps:
203203
# The checkout step
204204
- uses: actions/checkout@v3
205-
- uses: rojopolis/spellcheck-github-actions@0.43.1
205+
- uses: rojopolis/spellcheck-github-actions@0.44.0
206206
name: Spellcheck
207207
with:
208208
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -230,7 +230,7 @@ jobs:
230230
steps:
231231
# The checkout step
232232
- uses: actions/checkout@v3
233-
- uses: rojopolis/spellcheck-github-actions@0.43.1
233+
- uses: rojopolis/spellcheck-github-actions@0.44.0
234234
name: Spellcheck
235235
with:
236236
source_files: README.md CHANGELOG.md notes/Notes.md
@@ -317,7 +317,7 @@ jobs:
317317
runs-on: ubuntu-latest
318318
steps:
319319
- uses: actions/checkout@v3
320-
- uses: rojopolis/spellcheck-github-actions@0.43.1
320+
- uses: rojopolis/spellcheck-github-actions@0.44.0
321321
name: Spellcheck
322322
with:
323323
config_path: config/.spellcheck.yml # put path to configuration file here
@@ -517,7 +517,7 @@ jobs:
517517
runs-on: ubuntu-latest
518518
steps:
519519
- uses: actions/checkout@v3
520-
- uses: rojopolis/spellcheck-github-actions@0.43.1
520+
- uses: rojopolis/spellcheck-github-actions@0.44.0
521521
name: Spellcheck
522522
with:
523523
config_path: .github/spellcheck.yml # <--- put path to configuration file here
@@ -758,7 +758,7 @@ jobs:
758758
runs-on: ubuntu-latest
759759
steps:
760760
- uses: actions/checkout@v3
761-
- uses: rojopolis/spellcheck-github-actions@0.43.1
761+
- uses: rojopolis/spellcheck-github-actions@0.44.0
762762
name: Spellcheck
763763
```
764764

action.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -23,4 +23,4 @@ branding:
2323
icon: type
2424
runs:
2525
using: docker
26-
image: 'docker://jonasbn/github-action-spellcheck:0.43.1'
26+
image: 'docker://jonasbn/github-action-spellcheck:0.44.0'

requirements.txt

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
backrefs==5.6
2-
beautifulsoup4==4.12.2
3-
bracex==2.1.1
2+
beautifulsoup4==4.12.3
3+
bracex==2.5.post1
44
html5lib==1.1
55
lxml==5.3.0
6-
Markdown==3.4.4
7-
pymdown-extensions==10.4
6+
Markdown==3.7
7+
pymdown-extensions==10.11.2
88
pyspelling==2.10
9-
PyYAML==6.0.1
9+
PyYAML==6.0.2
1010
six==1.16.0
11-
soupsieve==2.5
12-
wcmatch>=8.5
11+
soupsieve==2.6
12+
wcmatch>=10.0
1313
webencodings==0.5.1
1414
zipp>=3.19.1 # not directly required, pinned by Snyk to avoid a vulnerability

0 commit comments

Comments
 (0)