Skip to content

Conversation

@renovate
Copy link
Contributor

@renovate renovate bot commented Feb 25, 2024

This PR contains the following updates:

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

Release Notes

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

v9.0.0

Compare Source

What's Changed

Secretlint v9 updates @secretlint/secretlint-rule-preset-recommend

BREAKING CHANGES
New Rules to Recommended

Add 1password and Linear rule to @secretlint/secretlint-rule-preset-recommend

Full Changelog: secretlint/secretlint@v8.5.0...v9.0.0

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

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 Type: Dependency Dependencies fixes label Feb 25, 2024
@cloudflare-workers-and-pages
Copy link

cloudflare-workers-and-pages bot commented Feb 25, 2024

Deploying vue-i18n-next with  Cloudflare Pages  Cloudflare Pages

Latest commit: 4c7bc27
Status: ✅  Deploy successful!
Preview URL: https://7298d41d.vue-i18n-next.pages.dev
Branch Preview URL: https://renovate-major-secretlint-mo.vue-i18n-next.pages.dev

View logs

@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from 1f0b701 to e77a75d Compare April 20, 2024 15:44
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from e77a75d to 837251b Compare July 7, 2024 21:02
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch 2 times, most recently from cc8a48f to 2994ca9 Compare July 29, 2024 07:58
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from 2994ca9 to bb81704 Compare August 29, 2024 06:00
@pkg-pr-new
Copy link

pkg-pr-new bot commented Aug 29, 2024

Open in Stackblitz

@intlify/core

npm i https://pkg.pr.new/@intlify/core@1747

@intlify/devtools-types

npm i https://pkg.pr.new/@intlify/devtools-types@1747

@intlify/core-base

npm i https://pkg.pr.new/@intlify/core-base@1747

@intlify/message-compiler

npm i https://pkg.pr.new/@intlify/message-compiler@1747

petite-vue-i18n

npm i https://pkg.pr.new/petite-vue-i18n@1747

@intlify/shared

npm i https://pkg.pr.new/@intlify/shared@1747

vue-i18n

npm i https://pkg.pr.new/vue-i18n@1747

@intlify/vue-i18n-core

npm i https://pkg.pr.new/@intlify/vue-i18n-core@1747

commit: 4c7bc27

@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from bb81704 to 7ff977d Compare September 4, 2024 07:46
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch 2 times, most recently from 906ad80 to 6970b95 Compare September 16, 2024 14:44
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch 2 times, most recently from 46aa98e to 6994c75 Compare September 22, 2024 07:31
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch 3 times, most recently from 8d289e4 to 3982e9d Compare October 6, 2024 12:23
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from 3982e9d to 634bdf6 Compare October 14, 2024 11:05
@renovate renovate bot changed the title chore(deps): update secretlint monorepo to v8 (major) chore(deps): update secretlint monorepo to v9 (major) Oct 14, 2024
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from 634bdf6 to b168540 Compare November 14, 2024 14:29
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from b168540 to 262f539 Compare November 28, 2024 07:08
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from 262f539 to b8fc8af Compare January 6, 2025 16:04
@github-actions
Copy link

github-actions bot commented Jan 6, 2025

Size Report

Bundles

File Size Gzip Brotli
core.esm-browser.prod.js 37.16 kB 11.35 kB 10.12 kB
core.global.prod.js 30.50 kB 10.55 kB 9.52 kB
core.prod.cjs 0.88 kB 0.43 kB 0.34 kB
core.runtime.esm-browser.prod.js 22.87 kB 7.45 kB 6.65 kB
core.runtime.global.prod.js 17.48 kB 6.81 kB 6.12 kB
message-compiler.esm-browser.prod.js 19.28 kB 5.76 kB 5.14 kB
message-compiler.global.prod.js 17.32 kB 5.54 kB 4.97 kB
message-compiler.prod.cjs 57.50 kB 10.06 kB 8.60 kB
petite-vue-i18n-core.esm-browser.prod.js 20.13 kB 6.76 kB 6.08 kB
petite-vue-i18n-core.global.prod.js 15.40 kB 5.96 kB 5.40 kB
petite-vue-i18n-core.prod.cjs 25.39 kB 5.95 kB 5.16 kB
petite-vue-i18n.esm-browser.prod.js 36.62 kB 11.24 kB 10.09 kB
petite-vue-i18n.global.prod.js 29.63 kB 10.09 kB 9.12 kB
petite-vue-i18n.prod.cjs 25.07 kB 5.86 kB 5.09 kB
petite-vue-i18n.runtime.esm-browser.prod.js 22.19 kB 7.23 kB 6.53 kB
petite-vue-i18n.runtime.global.prod.js 16.63 kB 6.32 kB 5.73 kB
vue-i18n.esm-browser.prod.js 50.23 kB 15.02 kB 13.44 kB
vue-i18n.global.prod.js 40.28 kB 13.49 kB 12.15 kB
vue-i18n.prod.cjs 0.72 kB 0.34 kB 0.28 kB
vue-i18n.runtime.esm-browser.prod.js 35.80 kB 11.03 kB 9.92 kB
vue-i18n.runtime.global.prod.js 27.26 kB 9.76 kB 8.83 kB

Usages

Name Size Gzip Brotli
packages/size-check-core (@intlify/core) 9.10 kB 3.76 kB 3.41 kB
packages/size-check-petite-vue-i18n (petite-vue-i18n) 77.58 kB 30.23 kB 27.24 kB
packages/size-check-vue-i18n (vue-i18n) 82.59 kB 31.65 kB 28.44 kB

@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from b8fc8af to 9d76691 Compare January 7, 2025 01:11
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from 9d76691 to cea849f Compare February 9, 2025 08:47
@renovate renovate bot force-pushed the renovate/major-secretlint-monorepo branch from cea849f to 4c7bc27 Compare February 16, 2025 13:58
@kazupon kazupon merged commit 0c776cd into master Mar 15, 2025
30 checks passed
@kazupon kazupon deleted the renovate/major-secretlint-monorepo branch March 15, 2025 10:20
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

Type: Dependency Dependencies fixes

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants