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 dev dependencies #124

Merged
merged 2 commits into from
Oct 7, 2024
Merged

Conversation

renovate[bot]
Copy link
Contributor

@renovate renovate bot commented Oct 7, 2024

This PR contains the following updates:

Package Change Age Adoption Passing Confidence
@next/env (source) 14.2.13 -> 14.2.14 age adoption passing confidence
@secretlint/secretlint-rule-preset-recommend (source) 8.2.4 -> 8.4.0 age adoption passing confidence
@types/node (source) 20.16.5 -> 20.16.10 age adoption passing confidence
@types/react (source) 18.3.8 -> 18.3.11 age adoption passing confidence
@vitest/coverage-v8 (source) 2.1.1 -> 2.1.2 age adoption passing confidence
eslint-config-next (source) 14.2.13 -> 14.2.14 age adoption passing confidence
eslint-plugin-import 2.30.0 -> 2.31.0 age adoption passing confidence
secretlint (source) 8.2.4 -> 8.4.0 age adoption passing confidence
tailwindcss (source) 3.4.12 -> 3.4.13 age adoption passing confidence
turbo (source) 2.1.2 -> 2.1.3 age adoption passing confidence
vitest (source) 2.1.1 -> 2.1.2 age adoption passing confidence

Release Notes

vercel/next.js (@​next/env)

v14.2.14

Compare Source

[!NOTE]
This release is backporting bug fixes. It does not include all pending features/changes on canary.

Core Changes
  • Fix: clone response in first handler to prevent race (#​70082) (#​70649)
  • Respect reexports from metadata API routes (#​70508) (#​70647)
  • Externalize node binary modules for app router (#​70646)
  • Fix revalidateTag() behaviour when invoked in server components (#​70446) (#​70642)
  • Fix prefetch bailout detection for nested loading segments (#​70618)
  • Add missing node modules to externals (#​70382)
  • Feature: next/image: add support for images.remotePatterns.search (#​70302)
Credits

Huge thanks to @​styfle, @​ztanner, @​ijjk, @​huozhi and @​wyattjoh for helping!

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

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

v2.1.2

Compare Source

   🐞 Bug Fixes
    View changes on GitHub
import-js/eslint-plugin-import (eslint-plugin-import)

v2.31.0

Compare Source

Added
Fixed
Changed
tailwindlabs/tailwindcss (tailwindcss)

v3.4.13

Compare Source

Fixed
  • Improve source glob verification performance (#​14481)
vercel/turborepo (turbo)

v2.1.3: Turborepo v2.1.3

Compare Source

What's Changed

Docs
create-turbo
Changelog

New Contributors


Configuration

📅 Schedule: Branch creation - "before 4am on Monday" (UTC), 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.

👻 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.

@renovate renovate bot force-pushed the renovate/dev-dependencies branch from 3270aa0 to 1162e0a Compare October 7, 2024 11:12
Copy link
Contributor Author

renovate bot commented Oct 7, 2024

Edited/Blocked Notification

Renovate will not automatically rebase this PR, because it does not recognize the last commit author and assumes somebody else may have edited the PR.

You can manually request rebase by checking the rebase/retry box above.

⚠️ Warning: custom changes will be lost.

@ktmouk ktmouk merged commit 2ba08c3 into main Oct 7, 2024
7 checks passed
@ktmouk ktmouk deleted the renovate/dev-dependencies branch October 7, 2024 11:30
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.

1 participant