Releases: product-os/minio-init
Releases · product-os/minio-init
v0.0.10
Update pre-commit hook pre-commit/pre-commit-hooks to v3.4.0
Notable changes
file-contents-sorter
: Add--unique
argumentcheck-vcs-permalinks
: Add--additional-github-domain
option- New hook:
destroyed-symlinks
to detect unintentional symlink-breakages on windows. file-contents-sorter
: add--ignore-case
option for case-insensitive sortingcheck-added-large-files
: add--enforce-all
option to check non-added files as wellfix-byte-order-marker
: new hook which fixes UTF-8 byte-order marker.check-byte-order-marker
is now deprecated forfix-byte-order-marker
pre-commit/pre-commit-hooks (pre-commit/pre-commit-hooks)
v3.4.0
: pre-commit-hooks v3.4.0
Features
file-contents-sorter
: Add--unique
argument- #524 PR by @danielhoherd.
check-vcs-permalinks
: Add--additional-github-domain
option- #530 PR by @youngminz.
- New hook:
destroyed-symlinks
to detect unintentional symlink-breakages on windows.- #511 PR by @m-khvoinitsky.
v3.3.0
: pre-commit-hooks v3.3.0
Features
file-contents-sorter
: add--ignore-case
option for case-insensitive sortingcheck-added-large-files
: add--enforce-all
option to check non-added files as well- #519 PR by @mshawcroft.
- #518 issue by @mshawcroft.
fix-byte-order-marker
: new hook which fixes UTF-8 byte-order marker.
Deprecations
check-byte-order-marker
is now deprecated forfix-byte-order-marker
List of commits
4acc139 (Update pre-commit hook pre-commit/pre-commit-hooks to v3.4.0, 2024-12-30)
v0.0.9
Update pre-commit hook igorshubovych/markdownlint-cli to v0.43.0
Notable changes
- Update
markdownlint
dependency to0.36.1
- Update all dependencies via
Dependabot
igorshubovych/markdownlint-cli (igorshubovych/markdownlint-cli)
v0.43.0
- Update
markdownlint
dependency to0.36.1
- Improve
MD051
- Make
micromark
parser available to custom rules - Improve performance
- Improve
- Update all dependencies via
Dependabot
List of commits
6ba86a0 (Update pre-commit hook igorshubovych/markdownlint-cli to v0.43.0, 2024-12-30)
v0.0.8
Update pre-commit hook crate-ci/typos to v1.28.4
Notable changes
--format sarif
support- Correct
imlementations
,includs
,qurorum
,transatctions
,trasnactions
,validasted
,vview
- Don't correct
parametrize
variants - Add back in
lock
file types accidentally removed in 1.28 (go.sum
,requirements.txt
) - Updated the dictionary with the November 2024 changes
- Add many new types and file extensions to the
--type-list
, including ada, alire, bat, candid, carp, cml, devicetree, dita, dockercompose, grpbuild, graphql, hare, lean, meson, prolog, raku, reasonml, rescript, solidity, svelte, usd, v, wgsl
crate-ci/typos (crate-ci/typos)
v1.28.4
[1.28.4] - 2024-12-16
Features
--format sarif
support
v1.28.3
[1.28.3] - 2024-12-12
Fixes
- Correct
imlementations
,includs
,qurorum
,transatctions
,trasnactions
,validasted
,vview
v1.28.2
[1.28.2] - 2024-12-02
Fixes
- Don't correct
parametrize
variants
v1.28.1
[1.28.1] - 2024-11-26
Fixes
- Add back in
lock
file types accidentally removed in 1.28 (go.sum
,requirements.txt
)
v1.28.0
[1.28.0] - 2024-11-25
Features
- Updated the dictionary with the November 2024 changes
- Add many new types and file extensions to the
--type-list
, including ada, alire, bat, candid, carp, cml, devicetree, dita, dockercompose, grpbuild, graphql, hare, lean, meson, prolog, raku, reasonml, rescript, solidity, svelte, usd, v, wgsl
List of commits
68609f1 (Update pre-commit hook crate-ci/typos to v1.28.4, 2024-12-30)
v0.0.7
Update pre-commit hook rhysd/actionlint to v1.7.5
Notable changes
- Strictly check available contexts in
${{ }}
placeholders following the 'Context availability' table in the official document. - Check a string literal passed to
fromJSON()
call. This pattern is popular to create array or object constants because GitHub Actions does not provide the literal syntax for them. See the document for more details. (#464) - Disallow the usage of popular actions that run on
node16
runner. Thenode16
runner will reach the end of life on November 12. - Provide the configuration for ignoring errors by regular expressions in
actionlint.yml
(oractionlint.yaml
). Please see the document for more details. (#217, #342) - This configuration was not implemented initially because I wanted to keep the configuration as minimal as possible. However, due to several requests for it, the configuration has now been added.
- Untrusted inputs check is safely skipped inside specific function calls. (#459, thanks @IlyaGulya)
- Recognize
gcr.io
andgcr.dev
as the correct container registry hosts. (#463, thanks @takaidohigasi) - Remove
macos-x.0
runner labels which are no longer available. (#452) - Disable shellcheck
SC2043
rule because it can cause false positives on checkingrun:
. (#355) - Fix the error message was not deterministic when detecting cycles in
needs
dependencies. - Fix the check for
format()
function was not applied when the function name contains upper case likeFormat()
. Note that function names in${{ }}
placeholders are case-insensitive. - Update the popular actions data set to the latest.
- Add
actions/cache/save
andactions/cache/restore
to the popular actions data set. - Links in the README.md now point to the document of the latest version tag instead of HEAD of
main
branch. - Add
Linter.LintStdin
method dedicated to linting STDIN instead of handling STDIN inCommand
. - (Dev) Add new
check-checks
script to maintain the 'Checks' document. It automatically updates the outputs and playground links for example inputs in the document. It also checks the document is up-to-date on CI. Please read the document for more details.
rhysd/actionlint (rhysd/actionlint)
v1.7.5
- Strictly check available contexts in
${{ }}
placeholders following the 'Context availability' table in the official document.- For example,
jobs.<job>.env
allowsgithub
context butjobs.<job>.services.<service>.env
doesn't allow any contexts. Now actionlint can catch the mistake.jobs: test: runs-on: ubuntu-latest env:
- For example,
OK. github
context is available here.
COMMIT_SHA: ${{ github.sha }}
services:
redis:
image: redis
env:
ERROR: No context is available here.
COMMIT_SHA: ${{ github.sha }}
steps:
- ...
```
- Check a string literal passed to
fromJSON()
call. This pattern is popular to create array or object constants because GitHub Actions does not provide the literal syntax for them. See the document for more details. (#464)jobs: test:
ERROR: Key 'mac' does not exist in the object returned by the fromJSON()
runs-on: ${{ fromJSON('{"win":"windows-latest","linux":"ubuntul-latest"}')['mac'] }}
steps:
- run: echo This is a special branch!
ERROR: Broken JSON string passed to fromJSON.
if: contains(fromJSON('["main","release","dev"'), github.ref_name)
- Allow passing command arguments to `-shellcheck` argument. ([#​483](https://redirect.github.com/rhysd/actionlint/issues/483), thanks [@​anuraaga](https://redirect.github.com/anuraaga))
- This is useful when you want to use alternative build of shellcheck like [go-shellcheck](https://redirect.github.com/wasilibs/go-shellcheck/).
```sh
actionlint -shellcheck="go run github.com/wasilibs/go-shellcheck/cmd/shellcheck@latest"
```
- Support undocumented `repository_visibility`, `artifact_cache_size_limit`, `step_summary`, `output`, `state` properties in `github` context. ([#​489](https://redirect.github.com/rhysd/actionlint/issues/489), thanks [@​rasa](https://redirect.github.com/rasa) for adding `repository_visibility` property)
- Remove `macos-12` runner label from known labels because it was [dropped](https://redirect.github.com/actions/runner-images/issues/10721) from GitHub-hosted runners on Dec. 3 and is no longer available.
- Add `windows-2025` runner label to the known labels. The runner is in [public preview](https://github.blog/changelog/2024-12-19-windows-server-2025-is-now-in-public-preview/). ([#​491](https://redirect.github.com/rhysd/actionlint/issues/491), thanks [@​ericcornelissen](https://redirect.github.com/ericcornelissen))
- Add `black` to the list of colors for `branding.color` action metadata. ([#​485](https://redirect.github.com/rhysd/actionlint/issues/485), thanks [@​eifinger](https://redirect.github.com/eifinger))
- Add `table` to the list of icons for `branding.icon` action metadata.
- Fix parsing escaped `{` in `format()` function call's first argument.
- Fix the incorrect `join()` function overload. `join(s1: string, s2: string)` was wrongly accepted.
- Update popular actions data set to the latest.
- Add `download-artifact/v3-node20` to the data set. ([#​468](https://redirect.github.com/rhysd/actionlint/issues/468))
- Fix missing the `reviewdog/action-hadolint@v1` action input. ([#​487](https://redirect.github.com/rhysd/actionlint/issues/487), thanks [@​mi-wada](https://redirect.github.com/mi-wada))
- Link to the documents of the stable version in actionlint `man` page and `-help` output.
- Refactor `LintStdin()` API example and some unit tests. ([#​472](https://redirect.github.com/rhysd/actionlint/issues/472), [#​475](https://redirect.github.com/rhysd/actionlint/issues/475), thanks [@​alexandear](https://redirect.github.com/alexandear))
- Improve the configuration example in `actionlint.yaml` document to explain glob patterns for `paths`. ([#​481](https://redirect.github.com/rhysd/actionlint/issues/481))
[Changes][v1.7.5]
<a id="v1.7.4"></a>
v1.7.4
- Disallow the usage of popular actions that run on
node16
runner. Thenode16
runner will reach the end of life on November 12.- In case of the error, please update your actions to the latest version so that they run on the latest
node20
runner. - If you're using self-hosted runner and you cannot upgrade your runner to
node20
soon, please consider to ignore the error by thepaths
configuration described below. - If you're using
actions/upload-artifact@v3
andactions/download-artifact@v3
on GHES, please replace them withactions/upload-artifact@v3-node20
andactions/download-artifact@v3-node20
. (#468)
- In case of the error, please update your actions to the latest version so that they run on the latest
- Provide the configuration for ignoring errors by regular expressions in
actionlint.yml
(oractionlint.yaml
). Please see the document for more details. (#217, #342)- ...
v0.0.6
Update pre-commit hook crate-ci/typos to v1.27.3
Notable changes
- Don't correct
alloced
- Don't correct
registor
, a more domain specific variant ofregister
- Correct
fand
- Correct
alingment
asalignment
, rather thanalinement
crate-ci/typos (crate-ci/typos)
v1.27.3
[1.27.3] - 2024-11-08
Fixes
- Don't correct
alloced
- Don't correct
registor
, a more domain specific variant ofregister
v1.27.2
[1.27.2] - 2024-11-06
Fixes
- Correct
fand
v1.27.1
[1.27.1] - 2024-11-06
Fixes
- Correct
alingment
asalignment
, rather thanalinement
List of commits
1e62616 (Update pre-commit hook crate-ci/typos to v1.27.3, 2024-12-30)
v0.0.5
v0.0.4
v0.0.3
v0.0.2
v0.0.2