Skip to content

fix(deps): update secretlint to v11 (major)#26

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

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

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 5, 2024

ℹ️ 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^11.3.1 age confidence
@secretlint/secretlint-rule-pattern (source) ^3.3.0^11.3.1 age confidence
@secretlint/secretlint-rule-preset-recommend (source) ^3.3.0^11.3.1 age confidence

Release Notes

secretlint/secretlint (@​secretlint/core)

v11.3.1

Compare Source

What's Changed
Bug Fixes
  • fix(secretlint-rule-pattern): support negation patterns in filePathGlobs by @​azu in #​1382
CI
Dependency Updates

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

v11.3.0

Compare Source

What's Changed
Feature

secretlint support GitHub Formatter for using in GitHub Actions.

$ secretlint --format=github
  • docs(readme): add --format github option for GitHub Actions annotations by @​azu in #​1366
CI
Dependency Updates
Other Changes

Full Changelog: secretlint/secretlint@v11.2.5...v11.3.0

v11.2.5

Compare Source

What's Changed
Bug Fixes
  • fix(private-key): reduce false positives for placeholder private keys by @​azu in #​1269
Refactoring
Maintenance
CI
Dependency Updates

Full Changelog: secretlint/secretlint@v11.2.4...v11.2.5

v11.2.4

Compare Source

What's Changed

Maintenance
CI
Dependency Updates

Full Changelog: secretlint/secretlint@v11.2.3...v11.2.4

v11.2.3

Compare Source

What's Changed

secretlint v11.2.3+ support npm Provenance.

image
Testing
  • refactor: Consolidate snapshot tests and move rule configs to test directories by @​azu in #​1188
CI
Dependency Updates
Other Changes

Full Changelog: secretlint/secretlint@v11.2.0...v11.2.3

v11.2.2

Compare Source

This is not released in npm.

v11.2.0

Compare Source

What's Changed

Features
Bug Fixes
  • Add support for Makefile variable pattern $(VARIABLE) in database-connection-string rule by @​Copilot in #​1191
Dependency Updates

New Contributors

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

v11.1.0

Compare Source

What's Changed

Features

You can use filePathGlobs to match against file paths using glob patterns:

{
  "rules": [
    {
      "id": "@​secretlint/secretlint-rule-pattern",
      "options": {
        "patterns": [
          {
            "name": "env files",
            "filePathGlobs": ["**/.env", "**/.env.*"]
          },
          {
            "name": "AWS credentials in env files",
            "filePathGlobs": ["**/.env*"],
            "pattern": "/aws_access_key_id|aws_secret_access_key/i"
          },
          {
            "name": "private keys",
            "filePathGlobs": ["**/*.pem", "**/*.key"],
            "pattern": "/BEGIN (RSA |EC )?PRIVATE KEY/"
          }
        ]
      }
    }
  ]
}
  • When only filePathGlobs is specified, the rule reports if the file path matches any of the glob patterns
  • When only pattern is specified, the rule reports if the file content matches the regex pattern
  • When both are specified, the rule reports only if both the file path matches the glob AND the content matches the pattern
Refactoring
  • refactor(types): migrate from tsd to vitest for type testing by @​azu in #​1169
Testing
CI
Dependency Updates

Full Changelog: secretlint/secretlint@v11.0.2...v11.1.0

v11.0.2

Compare Source

What's Changed

Bug Fixes
  • fix(binary): resolve --version issue in Bun compiled binaries by @​azu in #​1164
Documentation
  • docs(contributing): add pre-release documentation checklist by @​azu in #​1162
  • docs(readme): add missing rules from preset-recommend by @​azu in #​1163
Testing
  • test: update valid test snapshots for database connection string rule by @​azu in #​1160
Dependency Updates

Full Changelog: secretlint/secretlint@v11.0.1...v11.0.2

v11.0.1

Compare Source

New Recommended Rules

  • Add @secretlint/secretlint-rule-anthropic to detect Claude API keys (pattern: sk-ant-api0\d-[A-Za-z0-9_-]{90,128}AA)
  • Add @secretlint/secretlint-rule-database-connection-string to detect database credentials like mongodb://user:s3cr3tP4ss@cluster.mongodb.net/myd

What's Changed

Breaking Changes
  • feat: add Anthropic and Database Connection String rules to recommended preset by @​azu in #​1154
Bug Fixes
  • fix: use workspace:* references for internal dependencies in examples by @​azu in #​1157
Documentation
Refactoring
Maintenance
CI
Dependency Updates

Full Changelog: secretlint/secretlint@v10.2.2...v11.0.1

v11.0.0

Compare Source

See v11.0.1

v10.2.2

Compare Source

What's Changed

Bug Fixes
Maintenance
  • fix(turbo): fix turbo.json configuration to match actual file structure by @​azu in #​1123
Dependency Updates

Full Changelog: secretlint/secretlint@v10.2.1...v10.2.2

v10.2.1

Compare Source

What's Changed

Bug Fixes
  • fix(database-connection-string): improve password detection to avoid false negatives by @​azu in #​1118
CI
Dependency Updates

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 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 changed the title fix(deps): update secretlint to v10 (major) fix(deps): update secretlint to v11 (major) Aug 17, 2025
@renovate renovate bot force-pushed the renovate/major-secretlint branch from 4ba68e0 to 02238ec Compare August 18, 2025 06:33
@renovate renovate bot force-pushed the renovate/major-secretlint branch from 02238ec to cd83c63 Compare August 31, 2025 08:55
@renovate renovate bot force-pushed the renovate/major-secretlint branch 2 times, most recently from ae7fbb1 to a109a8d Compare September 13, 2025 23:37
@renovate renovate bot force-pushed the renovate/major-secretlint branch from a109a8d to 4bab1db Compare September 15, 2025 17:38
@renovate renovate bot force-pushed the renovate/major-secretlint branch from 4bab1db to dde5f8a Compare October 18, 2025 12:37
@renovate renovate bot force-pushed the renovate/major-secretlint branch from dde5f8a to 0ff1b84 Compare November 18, 2025 23:03
@renovate renovate bot force-pushed the renovate/major-secretlint branch from 0ff1b84 to dde2f90 Compare January 16, 2026 13:51
@renovate renovate bot force-pushed the renovate/major-secretlint branch from dde2f90 to b2575bf Compare January 31, 2026 08:51
@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
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