Skip to content

fix(deps): update secretlint to v13 - #26

Open
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-secretlint
Open

fix(deps): update secretlint to v13#26
renovate[bot] wants to merge 1 commit into
mainfrom
renovate/major-secretlint

Conversation

@renovate

@renovate renovate Bot commented Feb 5, 2024

Copy link
Copy Markdown
Contributor

ℹ️ Note

This PR body was truncated due to platform limits.

This PR contains the following updates:

Package Change Age Confidence
@secretlint/core (source) ^3.3.0^13.0.5 age confidence
@secretlint/secretlint-rule-pattern (source) ^3.3.0^13.0.5 age confidence
@secretlint/secretlint-rule-preset-recommend (source) ^3.3.0^13.0.5 age confidence

Release Notes

secretlint/secretlint (@​secretlint/core)

v13.0.5

Compare Source

What's Changed
Performance
  • fix(profiler): enable profiling only when --profile is specified by @​azu in #​1673

It will fix linting performance problems #​1653 #​1633

CI
Dependency Updates

Full Changelog: secretlint/secretlint@v13.0.4...v13.0.5

v13.0.4

Compare Source

What's Changed
CI
Fixes

Full Changelog: secretlint/secretlint@v13.0.3...v13.0.4

v13.0.3

Compare Source

What's Changed
Bug Fixes
  • fix(database-connection): Ignore database connection strings with identical example credentials by @​azu in #​1631
Refactoring
  • Configure TypeScript module output to NodeNext in rollup configs by @​azu in #​1567
CI
Dependency Updates
Other Changes

Full Changelog: secretlint/secretlint@v13.0.2...v13.0.3

v13.0.2

What's Changed

📝 v13.0.1 published as v13.0.2

Bug Fixes
  • Fix secp256k1 private key detection to avoid false positives by @​azu in #​1564
CI
Dependency Updates
Other Changes
  • Reorganize CLI options and update glob syntax documentation by @​azu in #​1540

Full Changelog: secretlint/secretlint@v13.0.0...v13.0.2

v13.0.0

Compare Source

Highlights

v13 changes how files are discovered on disk and adds three credential detection rules.

.gitignore is respected by default

Nested .gitignore files now apply to file discovery with ripgrep semantics: rules from each directory cascade into its subtree, and a negation rule in a deeper file can flip an earlier verdict.

Files excluded by any .gitignore on the path are no longer scanned. Repositories that previously relied on Secretlint scanning ignored files (such as dist/ or generated artefacts) will see fewer files in the output. .secretlintignore is unchanged and continues to apply alongside .gitignore.

To restore the v12 behaviour:

secretlint --no-gitignore "**/*"

If a file is matched by a .gitignore rule but still appears in Secretlint's output, please open an issue at https://github.com/secretlint/secretlint/issues.

Glob-shaped paths that exist on disk are treated literally

--no-glob and "globs by default" both existed in v12. What changed in v13 is the fallback for inputs that contain glob metacharacters but resolve to a real file or directory.

In v12, an input like src/(group)/page.tsx was always parsed as a glob, so SvelteKit / Next.js routes whose names contain (), [], {}, or ? required --no-glob. v13 runs a single stat per glob-shaped input: if it exists, the input is treated literally; otherwise it stays a glob.

Pattern On disk v12 default v13 default
src/(group)/page.tsx exists parsed as glob, no match matched literally
src/(missing)/page.tsx absent parsed as glob parsed as glob
src/[a-z]ormal.tsx normal.tsx exists matched via glob matched via glob

Pass --no-glob to skip the probe and force literal interpretation.

New and promoted rules

Added to preset-recommend:

Rule Detects
@secretlint/secretlint-rule-tailscale Tailscale API keys (new package)
@secretlint/secretlint-rule-stripe Stripe API keys (new package)
@secretlint/secretlint-rule-cloudflare Cloudflare API tokens (promoted from preset-canary)

What's Changed

Breaking Changes
Features
CI
Dependency Updates
Other Changes

Full Changelog: secretlint/secretlint@v12.3.1...v13.0.0

v12.3.1

Compare Source

What's Changed
CI
  • Pin QEMU binfmt image version in Docker release workflow by @​azu in #​1523

Full Changelog: secretlint/secretlint@v12.3.0...v12.3.1

v12.3.0

Compare Source

What's Changed
Features
CI
Dependency Updates

Full Changelog: secretlint/secretlint@v12.2.0...v12.3.0

v12.2.0

Compare Source

What's Changed
Features
Documentation
New Contributors

Full Changelog: secretlint/secretlint@v12.1.0...v12.2.0

v12.1.0

Compare Source

What's Changed
Features
  • Add per-pattern allows configuration for secretlint-rule-pattern by @​azu in #​1504

Full Changelog: secretlint/secretlint@v12.0.1...v12.1.0

v12.0.1

Compare Source

What's Changed
Documentation
  • Add macOS SecureClipboard application to documentation by @​azu in #​1500
Refactoring
  • Bump minimum Node.js version requirement to 22 by @​azu in #​1502
  • secretelint v12 requires Node.js 22+
CI

Full Changelog: secretlint/secretlint@v12.0.0...v12.0.1

v12.0.0

Compare Source

What's Changed
New rules added to recommend

Secretlint v12.0.0 includes the following new rules in the @​secretlint/secretlint-rule-preset-recommend preset:

Breaking Changes
  • Require Node.js 22+
  • Remove CommonJS build output and dual-package support by @​azu in #​1495
  • feat(preset-recommend)!: sync canary rules into recommend preset by @​azu in #​1498
Refactoring
CI
Dependency Updates
Other Changes

Full Changelog: secretlint/secretlint@v11.7.1...v12.0.0

v11.7.1

What's Changed
Service Package PR
Notion @secretlint/secretlint-rule-notion #​1471
Figma @secretlint/secretlint-rule-figma #​1472
Hugging Face @secretlint/secretlint-rule-huggingface #​1473
Grafana @secretlint/secretlint-rule-grafana #​1474
Groq @secretlint/secretlint-rule-groq #​1475
GitLab @secretlint/secretlint-rule-gitlab #​1476
HashiCorp Vault @secretlint/secretlint-rule-hashicorp-vault #​1477
Databricks @secretlint/secretlint-rule-databricks #​1478
Docker @secretlint/secretlint-rule-docker #​1481
Features
Bug Fixes
  • fix(rules): add regex boundary assertions to 8 existing scanner rules by @​azu in #​1482
Documentation
  • docs(agents): add architecture overview and improve AI assistant guidance by @​azu in #​1468
  • docs(AGENTS): add regex boundary conventions for rule implementation by @​azu in #​1470
CI
Dependency Updates
Other Changes
  • refactor(preset-recommend): remove groq to defer sync per AGENTS.md by @​azu in #​1479

Full Changelog: secretlint/secretlint@v11.6.0...v11.7.1

v11.6.0

What's Changed
Features
  • Add Vercel secretlint rule for detecting token leaks by @​azu in #​1451
  • Add allowlist support to Vercel token detection rule by @​azu in #​1458
Bug Fixes
  • fix(secretlint-rule-pattern): match files under dot-directories with filePathGlobs by @​azu in #​1463
Documentation
  • docs: add development guide for AI assistants and contributors by @​azu in #​1459
Refactoring
CI
Dependency Updates
Other Changes

Full Changelog: secretlint/secretlint@v11.4.1...v11.6.0

v11.4.1

Compare Source

What's Changed

[!NOTE]
Enable Immutable Release

CI
Dependency Updates

Full Changelog: secretlint/secretlint@v11.4.0...v11.4.1

v11.4.0

Compare Source

What's Changed
Features
  • feat: add --no-glob option to treat inputs as literal file paths by @​azu in #​1407
Documentation
  • docs: add quotepath option to changed-files action for non-ASCII path support by @​azu in #​1423
CI
Dependency Updates

Important

✂ PR body was truncated to here.


Configuration

📅 Schedule: (in timezone Asia/Tokyo)

  • 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 was generated by Mend Renovate. View the repository job log.

@renovate renovate Bot added the dependencies label Feb 5, 2024
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 761c0df to a9b651d Compare February 17, 2024 13:06
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 3 times, most recently from a56aebb to 020e30a Compare April 7, 2024 12:53
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 020e30a to 67dce81 Compare April 29, 2024 13:33
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 4 times, most recently from db78d52 to 7766983 Compare October 6, 2024 09:51
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 7766983 to 507ceff Compare October 14, 2024 07:51
@renovate renovate Bot changed the title fix(deps): update secretlint to v8 (major) fix(deps): update secretlint to v9 (major) Oct 14, 2024
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 2 times, most recently from 67e630a to 94f432d Compare February 23, 2025 18:50
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 2 times, most recently from bd96677 to f89b902 Compare April 8, 2025 12:40
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from f89b902 to 8afbc8e Compare April 21, 2025 19:15
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 8afbc8e to e01e232 Compare May 8, 2025 03:49
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from e01e232 to 443e3f0 Compare May 30, 2025 01:32
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 443e3f0 to eed69ba Compare June 11, 2025 03:05
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from eed69ba to d196d28 Compare June 21, 2025 18:26
@renovate renovate Bot changed the title fix(deps): update secretlint to v9 (major) fix(deps): update secretlint to v10 (major) Jun 21, 2025
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from d196d28 to 657c272 Compare June 22, 2025 01:30
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 657c272 to d8f9b72 Compare July 1, 2025 12:36
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from d8f9b72 to 0cd70e9 Compare July 13, 2025 04:49
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 0cd70e9 to 3246950 Compare July 23, 2025 17:32
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 3 times, most recently from c7f1f21 to 5256cf7 Compare August 13, 2025 11:58
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 5256cf7 to 4ba68e0 Compare August 17, 2025 17:15
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from b2575bf to c70bf5a Compare February 17, 2026 20:48
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from c70bf5a to 5ed0f9b Compare March 5, 2026 17:49
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 5ed0f9b to 5956e85 Compare March 24, 2026 05:40
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 2 times, most recently from c993209 to ac68ff8 Compare April 6, 2026 02:06
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 2 times, most recently from fc6c027 to 4b99fa6 Compare April 9, 2026 15:35
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 2 times, most recently from b0ee59d to e51e7d5 Compare April 22, 2026 01:56
@renovate renovate Bot changed the title fix(deps): update secretlint to v11 (major) fix(deps): update secretlint to v12 (major) Apr 22, 2026
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 4 times, most recently from 9050ff5 to d20d0d2 Compare April 29, 2026 05:00
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from d20d0d2 to 11c0672 Compare April 29, 2026 20:41
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 11c0672 to 2cd3d34 Compare May 7, 2026 14:52
@renovate renovate Bot changed the title fix(deps): update secretlint to v12 (major) fix(deps): update secretlint to v13 (major) May 7, 2026
@renovate renovate Bot changed the title fix(deps): update secretlint to v13 (major) fix(deps): update secretlint to v13 May 12, 2026
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 2 times, most recently from b4987bd to ea78184 Compare May 18, 2026 19:04
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from ea78184 to 7aa08dd Compare June 1, 2026 20:30
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 7aa08dd to 9247765 Compare July 12, 2026 10:33
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 3 times, most recently from 77e4e82 to 3951cb0 Compare July 25, 2026 02:33
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from 3951cb0 to e401c51 Compare August 12, 2026 04:29
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch 2 times, most recently from f3f63b9 to b8a07e7 Compare August 30, 2026 02:13
@renovate
renovate Bot force-pushed the renovate/major-secretlint branch from b8a07e7 to f20e823 Compare September 2, 2026 23:32
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Projects

None yet

Development

Successfully merging this pull request may close these issues.

0 participants