secretlint/secretlint (@secretlint/secretlint-rule-preset-recommend)
### [`v8.4.0`](https://redirect.github.com/secretlint/secretlint/releases/tag/v8.4.0)
[Compare Source](https://redirect.github.com/secretlint/secretlint/compare/v8.3.3...v8.4.0)
##### What's Changed
##### Features
- feat(linear): add secretlint-rule-linear by [@azu](https://redirect.github.com/azu) in [https://github.com/secretlint/secretlint/pull/906](https://redirect.github.com/secretlint/secretlint/pull/906)
##### Other Changes
- chore(deps): update tj-actions/changed-files action to v45 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/871](https://redirect.github.com/secretlint/secretlint/pull/871)
- chore(deps): update node.js to v20 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/707](https://redirect.github.com/secretlint/secretlint/pull/707)
- chore(deps): update pkgdeps/git-tag-action action to v3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/742](https://redirect.github.com/secretlint/secretlint/pull/742)
- chore(deps): update peter-evans/repository-dispatch action to v3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/744](https://redirect.github.com/secretlint/secretlint/pull/744)
**Full Changelog**: https://github.com/secretlint/secretlint/compare/v8.3.3...v8.4.0
### [`v8.3.3`](https://redirect.github.com/secretlint/secretlint/releases/tag/v8.3.3)
[Compare Source](https://redirect.github.com/secretlint/secretlint/compare/v8.3.2...v8.3.3)
#### What's Changed
Add single-executable binary for `secretlint`.
#### Supported Platform
[Releases page](https://redirect.github.com/secretlint/secretlint/releases) includes the following platform binaries:
| Platform | Arch | FileName |
|----------|-------|----------------------------------------|
| Linux | x64 | `secretlint--linux-x64` |
| Linux | arm64 | `secretlint--linux-arm64` |
| Windows | x64 | `secretlint--windows-x64.exe` |
| macOS | x64 | `secretlint--darwin-x64` |
| macOS | arm64 | `secretlint--darwin-arm64` |
Checksum files are available as `secretlint--sha256sum.txt`
#### Built-in Rules
This binary includes the following rules:
- [@secretlint/secretlint-rule-preset-recommend](https://www.npmjs.com/package/@secretlint/secretlint-rule-preset-recommend)
- [@secretlint/secretlint-rule-pattern](https://www.npmjs.com/package/@secretlint/secretlint-rule-pattern)
- [@secretlint/secretlint-formatter-sarif](https://www.npmjs.com/package/@secretlint/secretlint-formatter-sarif)
#### Usage
```bash
#!/usr/bin/env bash
set -euo pipefail
### Get current architecture
SECRETLINT_VERSION="8.3.3"
ARCH=$(uname -m)
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
### Map architecture to the expected format
case "$ARCH" in
x86_64)
ARCH="x64"
;;
aarch64)
ARCH="arm64"
;;
arm64)
ARCH="arm64"
;;
*)
echo "Unsupported architecture: $ARCH"
exit 1
;;
esac
### Download the binary
curl -sSL "https://github.com/secretlint/secretlint/releases/download/$(SECRETLINT_VERSION)/secretlint-$(SECRETLINT_VERSION)-$(OS)-$(ARCH)" -o secretlint
chmod +x secretlint
### init .secretlintrc.json
./secretlint --init
### Run secretlint
./secretlint "**/*"
```
For more details, please see https://github.com/secretlint/secretlint/tree/master/publish/binary-compiler
##### Bug Fixes
- fix(binary-compiler): improve binary-compiler and implement [@secretlint/resolver](https://redirect.github.com/secretlint/resolver) by [@azu](https://redirect.github.com/azu) in [https://github.com/secretlint/secretlint/pull/904](https://redirect.github.com/secretlint/secretlint/pull/904)
It make `secretlint` binary stable
**Full Changelog**: https://github.com/secretlint/secretlint/compare/v8.3.2...v8.3.3
### [`v8.3.2`](https://redirect.github.com/secretlint/secretlint/releases/tag/v8.3.2)
[Compare Source](https://redirect.github.com/secretlint/secretlint/compare/v8.3.1...v8.3.2)
#### What's Changed
##### Other Changes
- fix(deps): update to [@textlint/linter-formatter](https://redirect.github.com/textlint/linter-formatter)[@14](https://redirect.github.com/14).2.1 by [@azu](https://redirect.github.com/azu) in [https://github.com/secretlint/secretlint/pull/901](https://redirect.github.com/secretlint/secretlint/pull/901)
**Full Changelog**: https://github.com/secretlint/secretlint/compare/v8.3.1...v8.3.2
### [`v8.3.1`](https://redirect.github.com/secretlint/secretlint/releases/tag/v8.3.1)
[Compare Source](https://redirect.github.com/secretlint/secretlint/compare/v8.3.0...v8.3.1)
#### What's Changed
##### Bug Fixes
- fix(binary-compiler): bundle built-in package into binary by [@azu](https://redirect.github.com/azu) in [https://github.com/secretlint/secretlint/pull/899](https://redirect.github.com/secretlint/secretlint/pull/899)
##### CI
- CI: fix publish by [@azu](https://redirect.github.com/azu) in [https://github.com/secretlint/secretlint/pull/898](https://redirect.github.com/secretlint/secretlint/pull/898)
**Full Changelog**: https://github.com/secretlint/secretlint/compare/v8.3.0...v8.3.1
### [`v8.3.0`](https://redirect.github.com/secretlint/secretlint/releases/tag/v8.3.0)
[Compare Source](https://redirect.github.com/secretlint/secretlint/compare/v8.2.4...v8.3.0)
#### What's Changed
Add single-executable binary for `secretlint`.
#### Supported Platform
> \[!NOTE]
> secretlint 8.3.3+
[Releases page](https://redirect.github.com/secretlint/secretlint/releases) includes the following platform binaries:
See 8.3.3 release page.
- https://github.com/secretlint/secretlint/releases/tag/v8.3.3
8.3.0's binary is broken
| Platform | Arch | FileName |
|----------|-------|----------------------------------------|
| Linux | x64 | `secretlint--linux-x64` |
| Linux | arm64 | `secretlint--linux-arm64` |
| Windows | x64 | `secretlint--windows-x64.exe` |
| macOS | x64 | `secretlint--darwin-x64` |
| macOS | arm64 | `secretlint--darwin-arm64` |
Checksum files are available as `secretlint--sha256sum.txt`
#### Built-in Rules
This binary includes the following rules:
- [@secretlint/secretlint-rule-preset-recommend](https://www.npmjs.com/package/@secretlint/secretlint-rule-preset-recommend)
- [@secretlint/secretlint-rule-pattern](https://www.npmjs.com/package/@secretlint/secretlint-rule-pattern)
- [@secretlint/secretlint-formatter-sarif](https://www.npmjs.com/package/@secretlint/secretlint-formatter-sarif)
#### Usage
```bash
#!/usr/bin/env bash
set -euo pipefail
### Get current architecture
SECRETLINT_VERSION="x.x.x"
ARCH=$(uname -m)
OS=$(uname -s | tr '[:upper:]' '[:lower:]')
### Map architecture to the expected format
case "$ARCH" in
x86_64)
ARCH="x64"
;;
aarch64)
ARCH="arm64"
;;
arm64)
ARCH="arm64"
;;
*)
echo "Unsupported architecture: $ARCH"
exit 1
;;
esac
### Download the binary
curl -sSL "https://github.com/secretlint/secretlint/releases/download/$(SECRETLINT_VERSION)/secretlint-$(SECRETLINT_VERSION)-$(OS)-$(ARCH)" -o secretlint
chmod +x secretlint
### init .secretlintrc.json
echo '{
"rules": [
{
"id": "@secretlint/secretlint-rule-preset-recommend"
},
{
"id": "@secretlint/secretlint-rule-pattern"
}
]
}' > .secretlintrc.json
### Run secretlint
./secretlint "**/*"
```
For more details, please see [publish/binary-compiler](./publish/binary-compiler) README.
##### Features
- feat(binary-compiler): move to bun from deno by [@azu](https://redirect.github.com/azu) in https://github.com/secretlint/
secretlint/pull/895
##### Dependency Updates
- chore(deps): update dependency turbo to ^1.13.3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/819](https://redirect.github.com/secretlint/secretlint/pull/819)
- fix(deps): update dependency ajv to ^8.13.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/820](https://redirect.github.com/secretlint/secretlint/pull/820)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.12.8 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/821](https://redirect.github.com/secretlint/secretlint/pull/821)
- chore(deps): update yarn to v4.2.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/822](https://redirect.github.com/secretlint/secretlint/pull/822)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.12.10 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/823](https://redirect.github.com/secretlint/secretlint/pull/823)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.12.11 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/824](https://redirect.github.com/secretlint/secretlint/pull/824)
- chore(deps): update yarn to v4.2.2 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/825](https://redirect.github.com/secretlint/secretlint/pull/825)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.12.12 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/826](https://redirect.github.com/secretlint/secretlint/pull/826)
- chore(deps): update dependency [@rollup/plugin-commonjs](https://redirect.github.com/rollup/plugin-commonjs) to ^25.0.8 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/827](https://redirect.github.com/secretlint/secretlint/pull/827)
- fix(deps): update dependency ajv to ^8.14.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/828](https://redirect.github.com/secretlint/secretlint/pull/828)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.12.13 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/829](https://redirect.github.com/secretlint/secretlint/pull/829)
- fix(deps): update dependency debug to ^4.3.5 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/830](https://redirect.github.com/secretlint/secretlint/pull/830)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.12.14 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/831](https://redirect.github.com/secretlint/secretlint/pull/831)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.13.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/832](https://redirect.github.com/secretlint/secretlint/pull/832)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.13.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/833](https://redirect.github.com/secretlint/secretlint/pull/833)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/834](https://redirect.github.com/secretlint/secretlint/pull/834)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/835](https://redirect.github.com/secretlint/secretlint/pull/835)
- fix(deps): update dependency ajv to ^8.15.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/836](https://redirect.github.com/secretlint/secretlint/pull/836)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/837](https://redirect.github.com/secretlint/secretlint/pull/837)
- chore(deps): update dependency turbo to ^1.13.4 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/838](https://redirect.github.com/secretlint/secretlint/pull/838)
- fix(deps): update dependency ajv to ^8.16.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/839](https://redirect.github.com/secretlint/secretlint/pull/839)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.2 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/840](https://redirect.github.com/secretlint/secretlint/pull/840)
- chore(deps): update yarn to v4.3.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/841](https://redirect.github.com/secretlint/secretlint/pull/841)
- chore(deps): update dependency tsd to ^0.31.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/842](https://redirect.github.com/secretlint/secretlint/pull/842)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/843](https://redirect.github.com/secretlint/secretlint/pull/843)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.4 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/844](https://redirect.github.com/secretlint/secretlint/pull/844)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.5 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/845](https://redirect.github.com/secretlint/secretlint/pull/845)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.6 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/846](https://redirect.github.com/secretlint/secretlint/pull/846)
- chore(deps): update yarn to v4.3.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/847](https://redirect.github.com/secretlint/secretlint/pull/847)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.7 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/848](https://redirect.github.com/secretlint/secretlint/pull/848)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.8 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/849](https://redirect.github.com/secretlint/secretlint/pull/849)
- chore(deps): update dependency [@types/mocha](https://redirect.github.com/types/mocha) to ^10.0.7 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/850](https://redirect.github.com/secretlint/secretlint/pull/850)
- chore(deps): update dependency mocha to ^10.5.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/851](https://redirect.github.com/secretlint/secretlint/pull/851)
- chore(deps): update dependency mocha to ^10.5.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/852](https://redirect.github.com/secretlint/secretlint/pull/852)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.9 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/853](https://redirect.github.com/secretlint/secretlint/pull/853)
- chore(deps): update dependency mocha to ^10.5.2 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/854](https://redirect.github.com/secretlint/secretlint/pull/854)
- fix(deps): update dependency globby to ^14.0.2 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/856](https://redirect.github.com/secretlint/secretlint/pull/856)
- chore(deps): update dependency mocha to ^10.6.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/857](https://redirect.github.com/secretlint/secretlint/pull/857)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.10 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/858](https://redirect.github.com/secretlint/secretlint/pull/858)
- fix(deps): update dependency ajv to ^8.17.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/859](https://redirect.github.com/secretlint/secretlint/pull/859)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.11 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/860](https://redirect.github.com/secretlint/secretlint/pull/860)
- chore(deps): update dependency mocha to ^10.6.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/861](https://redirect.github.com/secretlint/secretlint/pull/861)
- chore(deps): update dependency mocha to ^10.7.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/862](https://redirect.github.com/secretlint/secretlint/pull/862)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.12 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/863](https://redirect.github.com/secretlint/secretlint/pull/863)
- fix(deps): update dependency debug to ^4.3.6 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/864](https://redirect.github.com/secretlint/secretlint/pull/864)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.13 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/865](https://redirect.github.com/secretlint/secretlint/pull/865)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.14 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/866](https://redirect.github.com/secretlint/secretlint/pull/866)
- chore(deps): update yarn to v4.4.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/867](https://redirect.github.com/secretlint/secretlint/pull/867)
- chore(deps): update dependency mocha to ^10.7.3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/868](https://redirect.github.com/secretlint/secretlint/pull/868)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.14.15 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/870](https://redirect.github.com/secretlint/secretlint/pull/870)
- chore(deps): bump elliptic from 6.5.4 to 6.5.7 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/secretlint/secretlint/pull/869](https://redirect.github.com/secretlint/secretlint/pull/869)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.15.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/872](https://redirect.github.com/secretlint/secretlint/pull/872)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.15.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/873](https://redirect.github.com/secretlint/secretlint/pull/873)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/874](https://redirect.github.com/secretlint/secretlint/pull/874)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/875](https://redirect.github.com/secretlint/secretlint/pull/875)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/876](https://redirect.github.com/secretlint/secretlint/pull/876)
- chore(deps): update yarn to v4.4.1 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/877](https://redirect.github.com/secretlint/secretlint/pull/877)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.2 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/879](https://redirect.github.com/secretlint/secretlint/pull/879)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/880](https://redirect.github.com/secretlint/secretlint/pull/880)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.4 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/881](https://redirect.github.com/secretlint/secretlint/pull/881)
- chore(deps): update patch updates (patch) by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/882](https://redirect.github.com/secretlint/secretlint/pull/882)
- fix(deps): update dependency debug to ^4.3.7 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/883](https://redirect.github.com/secretlint/secretlint/pull/883)
- chore(deps): update dependency [@types/mocha](https://redirect.github.com/types/mocha) to ^10.0.8 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/884](https://redirect.github.com/secretlint/secretlint/pull/884)
- chore(deps): update yarn to v4.5.0 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/885](https://redirect.github.com/secretlint/secretlint/pull/885)
- fix(deps): update dependency [@types/bn](https://redirect.github.com/types/bn).js to ^5.1.6 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/886](https://redirect.github.com/secretlint/secretlint/pull/886)
- chore(deps-dev): bump rollup from 3.29.4 to 3.29.5 by [@dependabot](https://redirect.github.com/dependabot) in [https://github.com/secretlint/secretlint/pull/887](https://redirect.github.com/secretlint/secretlint/pull/887)
- chore(deps): update dependency rollup to ^3.29.5 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/888](https://redirect.github.com/secretlint/secretlint/pull/888)
- chore(deps): update dependency [@rollup/plugin-node-resolve](https://redirect.github.com/rollup/plugin-node-resolve) to ^15.2.4 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/889](https://redirect.github.com/secretlint/secretlint/pull/889)
- chore(deps): update patch updates (patch) by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/890](https://redirect.github.com/secretlint/secretlint/pull/890)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.7 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/891](https://redirect.github.com/secretlint/secretlint/pull/891)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.8 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/892](https://redirect.github.com/secretlint/secretlint/pull/892)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.9 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/893](https://redirect.github.com/secretlint/secretlint/pull/893)
- chore(deps): update dependency [@types/node](https://redirect.github.com/types/node) to ^20.16.10 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/894](https://redirect.github.com/secretlint/secretlint/pull/894)
**Full Changelog**: https://github.com/secretlint/secretlint/compare/v8.2.4...v8.3.0
Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
[ ] If you want to rebase/retry this PR, check this box
This PR contains the following updates:
8.2.4
->8.4.0
8.2.4
->8.4.0
Release Notes
secretlint/secretlint (@secretlint/secretlint-rule-preset-recommend)
### [`v8.4.0`](https://redirect.github.com/secretlint/secretlint/releases/tag/v8.4.0) [Compare Source](https://redirect.github.com/secretlint/secretlint/compare/v8.3.3...v8.4.0) ##### What's Changed ##### Features - feat(linear): add secretlint-rule-linear by [@azu](https://redirect.github.com/azu) in [https://github.com/secretlint/secretlint/pull/906](https://redirect.github.com/secretlint/secretlint/pull/906) ##### Other Changes - chore(deps): update tj-actions/changed-files action to v45 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/871](https://redirect.github.com/secretlint/secretlint/pull/871) - chore(deps): update node.js to v20 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/707](https://redirect.github.com/secretlint/secretlint/pull/707) - chore(deps): update pkgdeps/git-tag-action action to v3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/742](https://redirect.github.com/secretlint/secretlint/pull/742) - chore(deps): update peter-evans/repository-dispatch action to v3 by [@renovate](https://redirect.github.com/renovate) in [https://github.com/secretlint/secretlint/pull/744](https://redirect.github.com/secretlint/secretlint/pull/744) **Full Changelog**: https://github.com/secretlint/secretlint/compare/v8.3.3...v8.4.0 ### [`v8.3.3`](https://redirect.github.com/secretlint/secretlint/releases/tag/v8.3.3) [Compare Source](https://redirect.github.com/secretlint/secretlint/compare/v8.3.2...v8.3.3) #### What's Changed Add single-executable binary for `secretlint`. #### Supported Platform [Releases page](https://redirect.github.com/secretlint/secretlint/releases) includes the following platform binaries: | Platform | Arch | FileName | |----------|-------|----------------------------------------| | Linux | x64 | `secretlint-Configuration
📅 Schedule: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined).
🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.
♻ Rebasing: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox.
🔕 Ignore: Close this PR and you won't be reminded about these updates again.
This PR was generated by Mend Renovate. View the repository job log.