Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update secretlint monorepo to v8 (major) #133

Open
wants to merge 1 commit into
base: main
Choose a base branch
from

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented May 15, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@secretlint/secretlint-rule-preset-recommend (source) ^7.0.7 -> ^8.5.0 age adoption passing confidence
secretlint (source) 7.0.7 -> 8.5.0 age adoption passing confidence

Release Notes

secretlint/secretlint (@​secretlint/secretlint-rule-preset-recommend)

v8.5.0

Compare Source

What's Changed
Features

This enableIDScanRule will be false in secretlint v9.

Other Changes

Full Changelog: secretlint/secretlint@v8.4.0...v8.5.0

v8.4.0

Compare Source

What's Changed
Features
Other Changes

Full Changelog: secretlint/secretlint@v8.3.3...v8.4.0

v8.3.3

Compare Source

What's Changed

Add single-executable binary for secretlint.

Supported Platform

Releases page includes the following platform binaries:

Platform Arch FileName
Linux x64 secretlint-<version>-linux-x64
Linux arm64 secretlint-<version>-linux-arm64
Windows x64 secretlint-<version>-windows-x64.exe
macOS x64 secretlint-<version>-darwin-x64
macOS arm64 secretlint-<version>-darwin-arm64

Checksum files are available as secretlint-<version>-sha256sum.txt

Built-in Rules

This binary includes the following rules:

Usage
#!/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

It make secretlint binary stable

Full Changelog: secretlint/secretlint@v8.3.2...v8.3.3

v8.3.2

Compare Source

What's Changed
Other Changes

Full Changelog: secretlint/secretlint@v8.3.1...v8.3.2

v8.3.1

Compare Source

What's Changed
Bug Fixes
CI

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

v8.3.0

Compare Source

What's Changed

Add single-executable binary for secretlint.

Supported Platform

[!NOTE]
secretlint 8.3.3+

Releases page includes the following platform binaries:

See 8.3.3 release page.

8.3.0's binary is broken

Platform Arch FileName
Linux x64 secretlint-<version>-linux-x64
Linux arm64 secretlint-<version>-linux-arm64
Windows x64 secretlint-<version>-windows-x64.exe
macOS x64 secretlint-<version>-darwin-x64
macOS arm64 secretlint-<version>-darwin-arm64

Checksum files are available as secretlint-<version>-sha256sum.txt

Built-in Rules

This binary includes the following rules:

Usage
#!/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": "@&#8203;secretlint/secretlint-rule-preset-recommend"
    },
    {
      "id": "@&#8203;secretlint/secretlint-rule-pattern"
    }
  ]
}' > .secretlintrc.json

##### Run secretlint
./secretlint "**/*"

For more details, please see publish/binary-compiler README.

Features
Dependency Updates

Full Changelog: secretlint/secretlint@v8.2.4...v8.3.0

v8.2.4

Compare Source

What's Changed
Bug Fixes

This release allow to escape glob characters.

secretlint "./app/\(root\)/*"

Also, you not need to escape full path anymore.

secretlint "./app/(root)/test.js"
Documentation
CI
Dependency Updates

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

v8.2.3

Compare Source

What's Changed
Bug Fixes
CI

Full Changelog: secretlint/secretlint@v8.2.2...v8.2.3

v8.2.2

Compare Source

What's Changed
Features
CI
Dependency Updates

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

v8.2.1

Compare Source

What's Changed
CI
Other Changes

Full Changelog: secretlint/secretlint@v8.2.0...v8.2.1

v8.2.0

Compare Source

What's Changed
Features
Documentation
CI
Dependency Updates

Full Changelog: secretlint/secretlint@v8.1.2...v8.2.0

v8.1.2

Compare Source

What's Changed
Bug Fixes
Dependency Updates
Other Changes

Full Changelog: secretlint/secretlint@v8.1.1...v8.1.2

v8.1.1

Compare Source

What's Changed
Bug Fixes
Documentation
Dependency Updates
Other Changes
New Contributors

Full Changelog: secretlint/secretlint@v8.1.0...v8.1.1

v8.1.0

Compare Source

What's Changed
Features
CI
Dependency Updates
New Contributors

Configuration

📅 Schedule: Branch creation - "after 10:00 before 19:00 every weekday except after 13:00 before 14:00" in timezone Europe/Berlin, Automerge - At any time (no schedule defined).

🚦 Automerge: Disabled by config. Please merge this manually once you are satisfied.

Rebasing: Whenever PR is behind base branch, 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 requested a review from prisis as a code owner May 15, 2024 16:17
Copy link

github-actions bot commented May 15, 2024

Hey there and thank you for opening this pull request! 👋🏼

We require pull request titles to follow the Conventional Commits specification and it looks like your proposed title needs to be adjusted.

Details:

No release type found in pull request title "Update secretlint monorepo to v8 (major)". Add a prefix to indicate what kind of release this pull request corresponds to. For reference, see https://www.conventionalcommits.org/

Available types:
 - build
 - chore
 - ci
 - deps
 - docs
 - feat
 - fix
 - perf
 - refactor
 - revert
 - security
 - style
 - test
 - translation

@renovate renovate bot force-pushed the renovate/major-8-secretlint-monorepo branch from bbc7715 to 78a49f6 Compare October 7, 2024 10:12
BREAKING CHANGE: updated dependencies to major versions
@renovate renovate bot force-pushed the renovate/major-8-secretlint-monorepo branch from 78a49f6 to 92c35be Compare October 15, 2024 09:24
@renovate renovate bot changed the title chore(deps): update secretlint monorepo to v8 (major) Update secretlint monorepo to v8 (major) Jan 27, 2025
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

0 participants