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

chore(deps): update npm devdependencies #38

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

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Jul 20, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@changesets/cli (source) 2.27.7 -> 2.27.9 age adoption passing confidence
@secretlint/secretlint-rule-preset-recommend (source) 8.2.4 -> 8.4.0 age adoption passing confidence
@tksst/eslint-config 13.8.0 -> 13.9.0 age adoption passing confidence
@vitest/coverage-v8 (source) 2.0.3 -> 2.1.2 age adoption passing confidence
better-typescript-lib 2.8.0 -> 2.9.0 age adoption passing confidence
eslint (source) 9.7.0 -> 9.12.0 age adoption passing confidence
husky 9.1.1 -> 9.1.6 age adoption passing confidence
lint-staged 15.2.7 -> 15.2.10 age adoption passing confidence
npm-run-all2 6.2.2 -> 6.2.3 age adoption passing confidence
secretlint (source) 8.2.4 -> 8.4.0 age adoption passing confidence
tsup (source) 8.2.0 -> 8.3.0 age adoption passing confidence
typescript (source) 5.5.3 -> 5.6.2 age adoption passing confidence
vitest (source) 2.0.3 -> 2.1.2 age adoption passing confidence

Release Notes

changesets/changesets (@​changesets/cli)

v2.27.9

Compare Source

Patch Changes

v2.27.8

Compare Source

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

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

tksst/eslint-config (@​tksst/eslint-config)

v13.9.0

Compare Source

Minor Changes
vitest-dev/vitest (@​vitest/coverage-v8)

v2.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.1

Compare Source

   🐞 Bug Fixes
    View changes on GitHub

v2.1.0

Compare Source

This release makes another big change to the Browser Mode by introducing locators API:

test('renders blog posts', async () => {
  const screen = page.render(<Blog />)

  await expect.element(screen.getByRole('heading', { name: 'Blog' })).toBeInTheDocument()

  const [firstPost] = screen.getByRole('listitem').all()

  await firstPost.getByRole('button', { name: 'Delete' }).click()

  expect(screen.getByRole('listitem').all()).toHaveLength(3)
})

You can use either vitest-browser-vue, vitest-browser-svelte or vitest-browser-react to render components and make assertions using locators. Locators are also available on the page object from @vitest/browser/context.

   🚀 Features
   🐞 Bug Fixes

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.

👻 Immortal: This PR will be recreated if closed unmerged. Get config help if that's undesired.


  • If you want to rebase/retry this PR, check this box

This PR was generated by Mend Renovate. View the repository job log.

Copy link

changeset-bot bot commented Jul 20, 2024

⚠️ No Changeset found

Latest commit: fab70a9

Merging this PR will not cause a version bump for any packages. If these changes should not result in a new version, you're good to go. If these changes should result in a version bump, you need to add a changeset.

This PR includes no changesets

When changesets are added to this PR, you'll see the packages that this PR includes changesets for and the associated semver types

Click here to learn what changesets are, and how to add one.

Click here if you're a maintainer who wants to add a changeset to this PR

@renovate renovate bot force-pushed the renovate/npm-devdependencies branch from afe1847 to 3756647 Compare July 22, 2024 11:28
@renovate renovate bot changed the title chore(deps): update dependency tsup to v8.2.1 chore(deps): update npm devdependencies Jul 22, 2024
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch 7 times, most recently from d488249 to e3c3262 Compare July 29, 2024 17:18
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch 3 times, most recently from d635f7d to a52c039 Compare August 3, 2024 07:51
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch 2 times, most recently from 695ec31 to fc263ea Compare August 13, 2024 06:32
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch 2 times, most recently from 186749a to 11c8e63 Compare August 23, 2024 21:24
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch 3 times, most recently from 0e9a6fa to 9f9f4dc Compare September 6, 2024 21:40
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch 5 times, most recently from 6f239e4 to 9047c0f Compare September 13, 2024 23:09
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch 4 times, most recently from 8a65846 to 12759ca Compare September 23, 2024 21:04
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch 7 times, most recently from 499c900 to 20f8eda Compare October 6, 2024 04:14
@renovate renovate bot force-pushed the renovate/npm-devdependencies branch from 20f8eda to fab70a9 Compare October 6, 2024 10: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