-
Notifications
You must be signed in to change notification settings - Fork 1.8k
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
feat(ls): support output format #9031
feat(ls): support output format #9031
Conversation
The latest updates on your projects. Learn more about Vercel for Git ↗︎
8 Skipped Deployments
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Here's what I tested:
`--output=json`
$ t ls --output=json
turbo 2.0.14
WARNING ls command is experimental and may change in the future
{
"package_manager": "pnpm",
"packages": [
{
"name": "@turbo-internal/top-issues-gh-action",
"path": "packages/top-issues"
},
{
"name": "@turbo/benchmark",
"path": "packages/turbo-benchmark"
},
{
"name": "@turbo/codemod",
"path": "packages/turbo-codemod"
},
{
"name": "@turbo/eslint-config",
"path": "packages/eslint-config"
},
{
"name": "@turbo/exe-stub",
"path": "packages/turbo-exe-stub"
},
{
"name": "@turbo/gen",
"path": "packages/turbo-gen"
},
{
"name": "@turbo/telemetry",
"path": "packages/turbo-telemetry"
},
{
"name": "@turbo/test-utils",
"path": "packages/turbo-test-utils"
},
{
"name": "@turbo/tsconfig",
"path": "packages/tsconfig"
},
{
"name": "@turbo/types",
"path": "packages/turbo-types"
},
{
"name": "@turbo/utils",
"path": "packages/turbo-utils"
},
{
"name": "@turbo/workspaces",
"path": "packages/turbo-workspaces"
},
{
"name": "@turborepo-examples-tests/basic",
"path": "turborepo-tests/example-basic"
},
{
"name": "@turborepo-examples-tests/design-system",
"path": "turborepo-tests/example-design-system"
},
{
"name": "@turborepo-examples-tests/kitchen-sink",
"path": "turborepo-tests/example-kitchen-sink"
},
{
"name": "@turborepo-examples-tests/non-monorepo",
"path": "turborepo-tests/example-non-monorepo"
},
{
"name": "@turborepo-examples-tests/with-berry",
"path": "turborepo-tests/example-with-berry"
},
{
"name": "@turborepo-examples-tests/with-changesets",
"path": "turborepo-tests/example-with-changesets"
},
{
"name": "@turborepo-examples-tests/with-npm",
"path": "turborepo-tests/example-with-npm"
},
{
"name": "@turborepo-examples-tests/with-react-native-web",
"path": "turborepo-tests/example-with-react-native-web"
},
{
"name": "@turborepo-examples-tests/with-rollup",
"path": "turborepo-tests/example-with-rollup"
},
{
"name": "@turborepo-examples-tests/with-svelte",
"path": "turborepo-tests/example-with-svelte"
},
{
"name": "@turborepo-examples-tests/with-tailwind",
"path": "turborepo-tests/example-with-tailwind"
},
{
"name": "@turborepo-examples-tests/with-vite",
"path": "turborepo-tests/example-with-vite"
},
{
"name": "@turborepo-examples-tests/with-yarn",
"path": "turborepo-tests/example-with-yarn"
},
{
"name": "cargo-sweep-action",
"path": ".github/actions/cargo-sweep"
},
{
"name": "cli",
"path": "cli"
},
{
"name": "create-turbo",
"path": "packages/create-turbo"
},
{
"name": "eslint-config-turbo",
"path": "packages/eslint-config-turbo"
},
{
"name": "eslint-plugin-turbo",
"path": "packages/eslint-plugin-turbo"
},
{
"name": "prysk",
"path": "packages/prysk"
},
{
"name": "turbo-ignore",
"path": "packages/turbo-ignore"
},
{
"name": "turbo-vsc",
"path": "packages/turbo-vsc"
},
{
"name": "turborepo-examples",
"path": "examples"
},
{
"name": "turborepo-repository",
"path": "packages/turbo-repository"
},
{
"name": "turborepo-tests-helpers",
"path": "turborepo-tests/helpers"
},
{
"name": "turborepo-tests-integration",
"path": "turborepo-tests/integration"
}
]
}
`--output=pretty`
$ t ls --output=pretty
turbo 2.0.14
WARNING ls command is experimental and may change in the future
37 packages
@turbo-internal/top-issues-gh-action packages/top-issues
@turbo/benchmark packages/turbo-benchmark
@turbo/codemod packages/turbo-codemod
@turbo/eslint-config packages/eslint-config
@turbo/exe-stub packages/turbo-exe-stub
@turbo/gen packages/turbo-gen
@turbo/telemetry packages/turbo-telemetry
@turbo/test-utils packages/turbo-test-utils
@turbo/tsconfig packages/tsconfig
@turbo/types packages/turbo-types
@turbo/utils packages/turbo-utils
@turbo/workspaces packages/turbo-workspaces
@turborepo-examples-tests/basic turborepo-tests/example-basic
@turborepo-examples-tests/design-system turborepo-tests/example-design-system
@turborepo-examples-tests/kitchen-sink turborepo-tests/example-kitchen-sink
@turborepo-examples-tests/non-monorepo turborepo-tests/example-non-monorepo
@turborepo-examples-tests/with-berry turborepo-tests/example-with-berry
@turborepo-examples-tests/with-changesets turborepo-tests/example-with-changesets
@turborepo-examples-tests/with-npm turborepo-tests/example-with-npm
@turborepo-examples-tests/with-react-native-web turborepo-tests/example-with-react-native-web
@turborepo-examples-tests/with-rollup turborepo-tests/example-with-rollup
@turborepo-examples-tests/with-svelte turborepo-tests/example-with-svelte
@turborepo-examples-tests/with-tailwind turborepo-tests/example-with-tailwind
@turborepo-examples-tests/with-vite turborepo-tests/example-with-vite
@turborepo-examples-tests/with-yarn turborepo-tests/example-with-yarn
cargo-sweep-action .github/actions/cargo-sweep
cli cli
create-turbo packages/create-turbo
eslint-config-turbo packages/eslint-config-turbo
eslint-plugin-turbo packages/eslint-plugin-turbo
prysk packages/prysk
turbo-ignore packages/turbo-ignore
turbo-vsc packages/turbo-vsc
turborepo-examples examples
turborepo-repository packages/turbo-repository
turborepo-tests-helpers turborepo-tests/helpers
turborepo-tests-integration turborepo-tests/integration
with no `--output` flag
$ t ls
turbo 2.0.14
WARNING ls command is experimental and may change in the future
37 packages
@turbo-internal/top-issues-gh-action packages/top-issues
@turbo/benchmark packages/turbo-benchmark
@turbo/codemod packages/turbo-codemod
@turbo/eslint-config packages/eslint-config
@turbo/exe-stub packages/turbo-exe-stub
@turbo/gen packages/turbo-gen
@turbo/telemetry packages/turbo-telemetry
@turbo/test-utils packages/turbo-test-utils
@turbo/tsconfig packages/tsconfig
@turbo/types packages/turbo-types
@turbo/utils packages/turbo-utils
@turbo/workspaces packages/turbo-workspaces
@turborepo-examples-tests/basic turborepo-tests/example-basic
@turborepo-examples-tests/design-system turborepo-tests/example-design-system
@turborepo-examples-tests/kitchen-sink turborepo-tests/example-kitchen-sink
@turborepo-examples-tests/non-monorepo turborepo-tests/example-non-monorepo
@turborepo-examples-tests/with-berry turborepo-tests/example-with-berry
@turborepo-examples-tests/with-changesets turborepo-tests/example-with-changesets
@turborepo-examples-tests/with-npm turborepo-tests/example-with-npm
@turborepo-examples-tests/with-react-native-web turborepo-tests/example-with-react-native-web
@turborepo-examples-tests/with-rollup turborepo-tests/example-with-rollup
@turborepo-examples-tests/with-svelte turborepo-tests/example-with-svelte
@turborepo-examples-tests/with-tailwind turborepo-tests/example-with-tailwind
@turborepo-examples-tests/with-vite turborepo-tests/example-with-vite
@turborepo-examples-tests/with-yarn turborepo-tests/example-with-yarn
cargo-sweep-action .github/actions/cargo-sweep
cli cli
create-turbo packages/create-turbo
eslint-config-turbo packages/eslint-config-turbo
eslint-plugin-turbo packages/eslint-plugin-turbo
prysk packages/prysk
turbo-ignore packages/turbo-ignore
turbo-vsc packages/turbo-vsc
turborepo-examples examples
turborepo-repository packages/turbo-repository
turborepo-tests-helpers turborepo-tests/helpers
turborepo-tests-integration turborepo-tests/integration
`--help` contains the field
$ t ls --help
EXPERIMENTAL: List packages in your monorepo
Usage: turbo ls [OPTIONS] [PACKAGES]...
Arguments:
[PACKAGES]...
Get insight into a specific package, such as its dependencies and tasks
Options:
--affected
Show only packages that are affected by changes between the current branch and `main`
--version
-F, --filter <FILTER>
Use the given selector to specify package(s) to act as entry points. The syntax mirrors pnpm's syntax, and additional documentation and examples can be found in turbo's documentation https://turbo.build/repo/docs/reference/command-line-reference/run#--filter
--skip-infer
Skip any attempts to infer which version of Turbo the project is configured to use
--no-update-notifier
Disable the turbo update notification
--output <OUTPUT>
Output format
Possible values:
- pretty: Output in a human-readable format
- json: Output in JSON format for direct parsing
--api <API>
Override the endpoint for API calls
--color
Force color usage in the terminal
--cwd <CWD>
The directory in which to run turbo
--heap <HEAP>
Specify a file to save a pprof heap profile
--ui <UI>
Specify whether to use the streaming UI or TUI
Possible values:
- tui: Use the terminal user interface
- stream: Use the standard output stream
--login <LOGIN>
Override the login endpoint
--no-color
Suppress color usage in the terminal
--preflight
When enabled, turbo will precede HTTP requests with an OPTIONS request for authorization
--remote-cache-timeout <TIMEOUT>
Set a timeout for all HTTP requests
--team <TEAM>
Set the team slug for API calls
--token <TOKEN>
Set the auth token for API calls
--trace <TRACE>
Specify a file to save a pprof trace
--verbosity <COUNT>
Verbosity level
--dangerously-disable-package-manager-check
Allow for missing `packageManager` in `package.json`.
`turbo` will use hints from codebase to guess which package manager should be used.
-h, --help
Print help (see a summary with '-h')
`--output=asdf` returns a useful error
$ t ls --output=asdf
ERROR invalid value 'asdf' for '--output <OUTPUT>'
[possible values: pretty, json]
For more information, try '--help'.
all looks great!
4f1eae0
to
978e9ef
Compare
} else { | ||
for package in packages { | ||
let package_details = PackageDetails::new(&run, &package)?; | ||
package_details.print(); | ||
package_details.print(output); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This doesn't produce valid JSON for a consumer if there is more than one package provided as it'll produce one object per package
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Ah good call - I didn't realize we supported that - will fix.
let as_json = serde_json::to_string_pretty(&self); | ||
match as_json { | ||
Ok(json) => println!("{}", json), | ||
Err(err) => println!(r#"{{"error": "{}"}}"#, err), |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would recommend against pushing an error into the JSON and instead throw the error. As of #8969 we now print errors to stderr
so the error wouldn't get piped to jq
.
Putting the error into JSON leads to a confusing jq
error:
$ echo '{"error": "bad JSON"}' | jq '.packages | map(.path)'
jq: error (at <stdin>:1): Cannot iterate over null (null)
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
yeah that makes sense. Previously you'd get a panic error, but with stderr printing I guess that's avoided
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turborepo)) | [`2.0.14` -> `2.1.0`](https://renovatebot.com/diffs/npm/turbo/2.0.14/2.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turborepo (turbo)</summary> ### [`v2.1.0`](https://togithub.com/vercel/turborepo/releases/tag/v2.1.0): Turborepo v2.1.0 [Compare Source](https://togithub.com/vercel/turborepo/compare/v2.0.14...v2.1.0) #### What's Changed ##### Docs - documentation for for `cacheDir`, `daemon`, and `envMode` (config values, and env vars) by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9018](https://togithub.com/vercel/turborepo/pull/9018) - Update using-environment-variables.mdx by [@​robertn702](https://togithub.com/robertn702) in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) - (docs) Fix Node.js subpath import guidance. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9066](https://togithub.com/vercel/turborepo/pull/9066) ##### [@​turbo/codemod](https://togithub.com/turbo/codemod) - separate configs, colocate JSONSchema, remove `globalDotEnv` and `pipeline.dotEnv` from V2 by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9025](https://togithub.com/vercel/turborepo/pull/9025) ##### Examples - Update README.md by [@​Aditya0257](https://togithub.com/Aditya0257) in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - Update basic example to use stable Next.js. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9059](https://togithub.com/vercel/turborepo/pull/9059) ##### Changelog - TypeScript types for `cacheDir`, `daemon`, and `envMode` by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9011](https://togithub.com/vercel/turborepo/pull/9011) - chore: show deprecation info for globalDotEnv and dotEnv by [@​devy-bee](https://togithub.com/devy-bee) in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - fix: lock tui-term version to pass rust type check by [@​wadwings](https://togithub.com/wadwings) in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - feat: color no longer tied to task execution order by [@​Shaharking](https://togithub.com/Shaharking) in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - fix(tui): avoid panic on restarting tasks during watch by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9032](https://togithub.com/vercel/turborepo/pull/9032) - feat(ls): support output format by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turborepo/pull/9031](https://togithub.com/vercel/turborepo/pull/9031) - chore(tui): remove unwraps from tui by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9034](https://togithub.com/vercel/turborepo/pull/9034) - feat: implement a query interface for turborepo by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/8977](https://togithub.com/vercel/turborepo/pull/8977) - feat(tui): allow searching for tasks by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9042](https://togithub.com/vercel/turborepo/pull/9042) - fix(affected): prevent affected from being used with filter by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9049](https://togithub.com/vercel/turborepo/pull/9049) - allow multiple fallbacks for --affected base branch by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9045](https://togithub.com/vercel/turborepo/pull/9045) - fix(affected): don't respect empty scm env vars by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9053](https://togithub.com/vercel/turborepo/pull/9053) - fix(affected): no longer error if `main` does not exist by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9061](https://togithub.com/vercel/turborepo/pull/9061) - fix(cli): avoid use of process exit by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9065](https://togithub.com/vercel/turborepo/pull/9065) - chore: Remove version output on CI by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9068](https://togithub.com/vercel/turborepo/pull/9068) - chore(tui): fix lint warnings in tests by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9062](https://togithub.com/vercel/turborepo/pull/9062) #### New Contributors - [@​Aditya0257](https://togithub.com/Aditya0257) made their first contribution in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - [@​devy-bee](https://togithub.com/devy-bee) made their first contribution in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - [@​wadwings](https://togithub.com/wadwings) made their first contribution in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - [@​Shaharking](https://togithub.com/Shaharking) made their first contribution in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - [@​robertn702](https://togithub.com/robertn702) made their first contribution in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) **Full Changelog**: vercel/turborepo@v2.0.14...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/technifit/tasker).
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-config-turbo](https://togithub.com/vercel/turborepo) ([source](https://togithub.com/vercel/turborepo/tree/HEAD/packages/eslint-config-turbo)) | [`^2.0.14` -> `^2.1.0`](https://renovatebot.com/diffs/npm/eslint-config-turbo/2.0.14/2.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turborepo (eslint-config-turbo)</summary> ### [`v2.1.0`](https://togithub.com/vercel/turborepo/releases/tag/v2.1.0): Turborepo v2.1.0 [Compare Source](https://togithub.com/vercel/turborepo/compare/v2.0.14...v2.1.0) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.1.0 --> #### What's Changed ##### Docs - documentation for for `cacheDir`, `daemon`, and `envMode` (config values, and env vars) by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9018](https://togithub.com/vercel/turborepo/pull/9018) - Update using-environment-variables.mdx by [@​robertn702](https://togithub.com/robertn702) in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) - (docs) Fix Node.js subpath import guidance. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9066](https://togithub.com/vercel/turborepo/pull/9066) ##### [@​turbo/codemod](https://togithub.com/turbo/codemod) - separate configs, colocate JSONSchema, remove `globalDotEnv` and `pipeline.dotEnv` from V2 by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9025](https://togithub.com/vercel/turborepo/pull/9025) ##### Examples - Update README.md by [@​Aditya0257](https://togithub.com/Aditya0257) in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - Update basic example to use stable Next.js. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9059](https://togithub.com/vercel/turborepo/pull/9059) ##### Changelog - TypeScript types for `cacheDir`, `daemon`, and `envMode` by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9011](https://togithub.com/vercel/turborepo/pull/9011) - chore: show deprecation info for globalDotEnv and dotEnv by [@​devy-bee](https://togithub.com/devy-bee) in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - fix: lock tui-term version to pass rust type check by [@​wadwings](https://togithub.com/wadwings) in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - feat: color no longer tied to task execution order by [@​Shaharking](https://togithub.com/Shaharking) in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - fix(tui): avoid panic on restarting tasks during watch by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9032](https://togithub.com/vercel/turborepo/pull/9032) - feat(ls): support output format by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turborepo/pull/9031](https://togithub.com/vercel/turborepo/pull/9031) - chore(tui): remove unwraps from tui by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9034](https://togithub.com/vercel/turborepo/pull/9034) - feat: implement a query interface for turborepo by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/8977](https://togithub.com/vercel/turborepo/pull/8977) - feat(tui): allow searching for tasks by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9042](https://togithub.com/vercel/turborepo/pull/9042) - fix(affected): prevent affected from being used with filter by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9049](https://togithub.com/vercel/turborepo/pull/9049) - allow multiple fallbacks for --affected base branch by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9045](https://togithub.com/vercel/turborepo/pull/9045) - fix(affected): don't respect empty scm env vars by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9053](https://togithub.com/vercel/turborepo/pull/9053) - fix(affected): no longer error if `main` does not exist by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9061](https://togithub.com/vercel/turborepo/pull/9061) - fix(cli): avoid use of process exit by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9065](https://togithub.com/vercel/turborepo/pull/9065) - chore: Remove version output on CI by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9068](https://togithub.com/vercel/turborepo/pull/9068) - chore(tui): fix lint warnings in tests by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9062](https://togithub.com/vercel/turborepo/pull/9062) #### New Contributors - [@​Aditya0257](https://togithub.com/Aditya0257) made their first contribution in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - [@​devy-bee](https://togithub.com/devy-bee) made their first contribution in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - [@​wadwings](https://togithub.com/wadwings) made their first contribution in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - [@​Shaharking](https://togithub.com/Shaharking) made their first contribution in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - [@​robertn702](https://togithub.com/robertn702) made their first contribution in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) **Full Changelog**: vercel/turborepo@v2.0.14...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/inabagumi/shinju-date). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turborepo)) | [`^2.0.14` -> `^2.1.0`](https://renovatebot.com/diffs/npm/turbo/2.0.14/2.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turborepo (turbo)</summary> ### [`v2.1.0`](https://togithub.com/vercel/turborepo/releases/tag/v2.1.0): Turborepo v2.1.0 [Compare Source](https://togithub.com/vercel/turborepo/compare/v2.0.14...v2.1.0) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.1.0 --> #### What's Changed ##### Docs - documentation for for `cacheDir`, `daemon`, and `envMode` (config values, and env vars) by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9018](https://togithub.com/vercel/turborepo/pull/9018) - Update using-environment-variables.mdx by [@​robertn702](https://togithub.com/robertn702) in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) - (docs) Fix Node.js subpath import guidance. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9066](https://togithub.com/vercel/turborepo/pull/9066) ##### [@​turbo/codemod](https://togithub.com/turbo/codemod) - separate configs, colocate JSONSchema, remove `globalDotEnv` and `pipeline.dotEnv` from V2 by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9025](https://togithub.com/vercel/turborepo/pull/9025) ##### Examples - Update README.md by [@​Aditya0257](https://togithub.com/Aditya0257) in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - Update basic example to use stable Next.js. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9059](https://togithub.com/vercel/turborepo/pull/9059) ##### Changelog - TypeScript types for `cacheDir`, `daemon`, and `envMode` by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9011](https://togithub.com/vercel/turborepo/pull/9011) - chore: show deprecation info for globalDotEnv and dotEnv by [@​devy-bee](https://togithub.com/devy-bee) in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - fix: lock tui-term version to pass rust type check by [@​wadwings](https://togithub.com/wadwings) in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - feat: color no longer tied to task execution order by [@​Shaharking](https://togithub.com/Shaharking) in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - fix(tui): avoid panic on restarting tasks during watch by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9032](https://togithub.com/vercel/turborepo/pull/9032) - feat(ls): support output format by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turborepo/pull/9031](https://togithub.com/vercel/turborepo/pull/9031) - chore(tui): remove unwraps from tui by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9034](https://togithub.com/vercel/turborepo/pull/9034) - feat: implement a query interface for turborepo by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/8977](https://togithub.com/vercel/turborepo/pull/8977) - feat(tui): allow searching for tasks by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9042](https://togithub.com/vercel/turborepo/pull/9042) - fix(affected): prevent affected from being used with filter by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9049](https://togithub.com/vercel/turborepo/pull/9049) - allow multiple fallbacks for --affected base branch by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9045](https://togithub.com/vercel/turborepo/pull/9045) - fix(affected): don't respect empty scm env vars by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9053](https://togithub.com/vercel/turborepo/pull/9053) - fix(affected): no longer error if `main` does not exist by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9061](https://togithub.com/vercel/turborepo/pull/9061) - fix(cli): avoid use of process exit by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9065](https://togithub.com/vercel/turborepo/pull/9065) - chore: Remove version output on CI by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9068](https://togithub.com/vercel/turborepo/pull/9068) - chore(tui): fix lint warnings in tests by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9062](https://togithub.com/vercel/turborepo/pull/9062) #### New Contributors - [@​Aditya0257](https://togithub.com/Aditya0257) made their first contribution in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - [@​devy-bee](https://togithub.com/devy-bee) made their first contribution in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - [@​wadwings](https://togithub.com/wadwings) made their first contribution in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - [@​Shaharking](https://togithub.com/Shaharking) made their first contribution in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - [@​robertn702](https://togithub.com/robertn702) made their first contribution in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) **Full Changelog**: vercel/turborepo@v2.0.14...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/inabagumi/shinju-date). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOlsiZGVwZW5kZW5jaWVzIl19--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turborepo)) | [`2.0.14` -> `2.1.0`](https://renovatebot.com/diffs/npm/turbo/2.0.14/2.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turborepo (turbo)</summary> ### [`v2.1.0`](https://togithub.com/vercel/turborepo/releases/tag/v2.1.0): Turborepo v2.1.0 [Compare Source](https://togithub.com/vercel/turborepo/compare/v2.0.14...v2.1.0) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.1.0 --> #### What's Changed ##### Docs - documentation for for `cacheDir`, `daemon`, and `envMode` (config values, and env vars) by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9018](https://togithub.com/vercel/turborepo/pull/9018) - Update using-environment-variables.mdx by [@​robertn702](https://togithub.com/robertn702) in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) - (docs) Fix Node.js subpath import guidance. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9066](https://togithub.com/vercel/turborepo/pull/9066) ##### [@​turbo/codemod](https://togithub.com/turbo/codemod) - separate configs, colocate JSONSchema, remove `globalDotEnv` and `pipeline.dotEnv` from V2 by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9025](https://togithub.com/vercel/turborepo/pull/9025) ##### Examples - Update README.md by [@​Aditya0257](https://togithub.com/Aditya0257) in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - Update basic example to use stable Next.js. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9059](https://togithub.com/vercel/turborepo/pull/9059) ##### Changelog - TypeScript types for `cacheDir`, `daemon`, and `envMode` by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9011](https://togithub.com/vercel/turborepo/pull/9011) - chore: show deprecation info for globalDotEnv and dotEnv by [@​devy-bee](https://togithub.com/devy-bee) in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - fix: lock tui-term version to pass rust type check by [@​wadwings](https://togithub.com/wadwings) in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - feat: color no longer tied to task execution order by [@​Shaharking](https://togithub.com/Shaharking) in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - fix(tui): avoid panic on restarting tasks during watch by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9032](https://togithub.com/vercel/turborepo/pull/9032) - feat(ls): support output format by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turborepo/pull/9031](https://togithub.com/vercel/turborepo/pull/9031) - chore(tui): remove unwraps from tui by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9034](https://togithub.com/vercel/turborepo/pull/9034) - feat: implement a query interface for turborepo by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/8977](https://togithub.com/vercel/turborepo/pull/8977) - feat(tui): allow searching for tasks by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9042](https://togithub.com/vercel/turborepo/pull/9042) - fix(affected): prevent affected from being used with filter by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9049](https://togithub.com/vercel/turborepo/pull/9049) - allow multiple fallbacks for --affected base branch by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9045](https://togithub.com/vercel/turborepo/pull/9045) - fix(affected): don't respect empty scm env vars by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9053](https://togithub.com/vercel/turborepo/pull/9053) - fix(affected): no longer error if `main` does not exist by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9061](https://togithub.com/vercel/turborepo/pull/9061) - fix(cli): avoid use of process exit by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9065](https://togithub.com/vercel/turborepo/pull/9065) - chore: Remove version output on CI by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9068](https://togithub.com/vercel/turborepo/pull/9068) - chore(tui): fix lint warnings in tests by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9062](https://togithub.com/vercel/turborepo/pull/9062) #### New Contributors - [@​Aditya0257](https://togithub.com/Aditya0257) made their first contribution in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - [@​devy-bee](https://togithub.com/devy-bee) made their first contribution in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - [@​wadwings](https://togithub.com/wadwings) made their first contribution in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - [@​Shaharking](https://togithub.com/Shaharking) made their first contribution in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - [@​robertn702](https://togithub.com/robertn702) made their first contribution in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) **Full Changelog**: vercel/turborepo@v2.0.14...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/crea-orkest/crea-public). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==--> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Type | Update | Change | OpenSSF | |---|---|---|---|---| | [@iconify/utils](https://iconify.design/docs/libraries/utils/) ([source](https://togithub.com/iconify/iconify/tree/HEAD/packages/utils)) | devDependencies | patch | [`2.1.31` -> `2.1.32`](https://renovatebot.com/diffs/npm/@iconify%2futils/2.1.31/2.1.32) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/iconify/iconify/badge)](https://securityscorecards.dev/viewer/?uri=github.com/iconify/iconify) | | [@prisma/client](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/client)) | dependencies | minor | [`5.18.0` -> `5.19.0`](https://renovatebot.com/diffs/npm/@prisma%2fclient/5.18.0/5.19.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/prisma/prisma/badge)](https://securityscorecards.dev/viewer/?uri=github.com/prisma/prisma) | | [@prisma/instrumentation](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/instrumentation)) | dependencies | minor | [`5.18.0` -> `5.19.0`](https://renovatebot.com/diffs/npm/@prisma%2finstrumentation/5.18.0/5.19.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/prisma/prisma/badge)](https://securityscorecards.dev/viewer/?uri=github.com/prisma/prisma) | | [@prisma/nextjs-monorepo-workaround-plugin](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/nextjs-monorepo-workaround-plugin)) | devDependencies | minor | [`5.18.0` -> `5.19.0`](https://renovatebot.com/diffs/npm/@prisma%2fnextjs-monorepo-workaround-plugin/5.18.0/5.19.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/prisma/prisma/badge)](https://securityscorecards.dev/viewer/?uri=github.com/prisma/prisma) | | [@sentry/browser](https://togithub.com/getsentry/sentry-javascript/tree/master/packages/browser) ([source](https://togithub.com/getsentry/sentry-javascript)) | dependencies | minor | [`8.26.0` -> `8.27.0`](https://renovatebot.com/diffs/npm/@sentry%2fbrowser/8.26.0/8.27.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/getsentry/sentry-javascript/badge)](https://securityscorecards.dev/viewer/?uri=github.com/getsentry/sentry-javascript) | | [@sentry/nextjs](https://togithub.com/getsentry/sentry-javascript/tree/master/packages/nextjs) ([source](https://togithub.com/getsentry/sentry-javascript)) | dependencies | minor | [`8.26.0` -> `8.27.0`](https://renovatebot.com/diffs/npm/@sentry%2fnextjs/8.26.0/8.27.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/getsentry/sentry-javascript/badge)](https://securityscorecards.dev/viewer/?uri=github.com/getsentry/sentry-javascript) | | [@sentry/node](https://togithub.com/getsentry/sentry-javascript/tree/master/packages/node) ([source](https://togithub.com/getsentry/sentry-javascript)) | dependencies | minor | [`8.26.0` -> `8.27.0`](https://renovatebot.com/diffs/npm/@sentry%2fnode/8.26.0/8.27.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/getsentry/sentry-javascript/badge)](https://securityscorecards.dev/viewer/?uri=github.com/getsentry/sentry-javascript) | | [@sentry/opentelemetry](https://togithub.com/getsentry/sentry-javascript/tree/master/packages/opentelemetry) ([source](https://togithub.com/getsentry/sentry-javascript)) | dependencies | minor | [`8.26.0` -> `8.27.0`](https://renovatebot.com/diffs/npm/@sentry%2fopentelemetry/8.26.0/8.27.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/getsentry/sentry-javascript/badge)](https://securityscorecards.dev/viewer/?uri=github.com/getsentry/sentry-javascript) | | [@sentry/profiling-node](https://togithub.com/getsentry/sentry-javascript/tree/master/packages/profiling-node) ([source](https://togithub.com/getsentry/sentry-javascript)) | dependencies | minor | [`8.26.0` -> `8.27.0`](https://renovatebot.com/diffs/npm/@sentry%2fprofiling-node/8.26.0/8.27.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/getsentry/sentry-javascript/badge)](https://securityscorecards.dev/viewer/?uri=github.com/getsentry/sentry-javascript) | | [@swc/core](https://swc.rs) ([source](https://togithub.com/swc-project/swc)) | devDependencies | patch | [`1.7.14` -> `1.7.18`](https://renovatebot.com/diffs/npm/@swc%2fcore/1.7.14/1.7.18) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/swc-project/swc/badge)](https://securityscorecards.dev/viewer/?uri=github.com/swc-project/swc) | | [@tanstack/react-table](https://tanstack.com/table) ([source](https://togithub.com/TanStack/table/tree/HEAD/packages/react-table)) | peerDependencies | patch | [`8.20.1` -> `8.20.5`](https://renovatebot.com/diffs/npm/@tanstack%2freact-table/8.20.1/8.20.5) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/TanStack/table/badge)](https://securityscorecards.dev/viewer/?uri=github.com/TanStack/table) | | [@tanstack/react-table](https://tanstack.com/table) ([source](https://togithub.com/TanStack/table/tree/HEAD/packages/react-table)) | devDependencies | patch | [`8.20.1` -> `8.20.5`](https://renovatebot.com/diffs/npm/@tanstack%2freact-table/8.20.1/8.20.5) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/TanStack/table/badge)](https://securityscorecards.dev/viewer/?uri=github.com/TanStack/table) | | [@tanstack/react-table](https://tanstack.com/table) ([source](https://togithub.com/TanStack/table/tree/HEAD/packages/react-table)) | dependencies | patch | [`8.20.1` -> `8.20.5`](https://renovatebot.com/diffs/npm/@tanstack%2freact-table/8.20.1/8.20.5) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/TanStack/table/badge)](https://securityscorecards.dev/viewer/?uri=github.com/TanStack/table) | | [@tanstack/react-table-devtools](https://tanstack.com/table) ([source](https://togithub.com/TanStack/table/tree/HEAD/packages/react-table-devtools)) | devDependencies | patch | [`8.20.1` -> `8.20.5`](https://renovatebot.com/diffs/npm/@tanstack%2freact-table-devtools/8.20.1/8.20.5) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/TanStack/table/badge)](https://securityscorecards.dev/viewer/?uri=github.com/TanStack/table) | | [@textea/json-viewer](https://togithub.com/TexteaInc/json-viewer) | dependencies | minor | [`3.4.1` -> `3.5.0`](https://renovatebot.com/diffs/npm/@textea%2fjson-viewer/3.4.1/3.5.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/TexteaInc/json-viewer/badge)](https://securityscorecards.dev/viewer/?uri=github.com/TexteaInc/json-viewer) | | [@total-typescript/ts-reset](https://totaltypescript.com/ts-reset) ([source](https://togithub.com/total-typescript/ts-reset)) | devDependencies | minor | [`0.5.1` -> `0.6.0`](https://renovatebot.com/diffs/npm/@total-typescript%2fts-reset/0.5.1/0.6.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/total-typescript/ts-reset/badge)](https://securityscorecards.dev/viewer/?uri=github.com/total-typescript/ts-reset) | | [@turbo/gen](https://turbo.build/repo) ([source](https://togithub.com/vercel/turborepo/tree/HEAD/packages/turbo-gen)) | devDependencies | minor | [`2.0.14` -> `2.1.0`](https://renovatebot.com/diffs/npm/@turbo%2fgen/2.0.14/2.1.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turborepo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turborepo) | | [@types/eslint](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/eslint) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/eslint)) | devDependencies | patch | [`8.56.11` -> `8.56.12`](https://renovatebot.com/diffs/npm/@types%2feslint/8.56.11/8.56.12) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/DefinitelyTyped/DefinitelyTyped/badge)](https://securityscorecards.dev/viewer/?uri=github.com/DefinitelyTyped/DefinitelyTyped) | | [eslint-import-resolver-typescript](https://togithub.com/import-js/eslint-import-resolver-typescript) | devDependencies | patch | [`3.6.1` -> `3.6.3`](https://renovatebot.com/diffs/npm/eslint-import-resolver-typescript/3.6.1/3.6.3) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/import-js/eslint-import-resolver-typescript/badge)](https://securityscorecards.dev/viewer/?uri=github.com/import-js/eslint-import-resolver-typescript) | | [eslint-plugin-turbo](https://togithub.com/vercel/turborepo) ([source](https://togithub.com/vercel/turborepo/tree/HEAD/packages/eslint-plugin-turbo)) | devDependencies | minor | [`2.0.14` -> `2.1.0`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/2.0.14/2.1.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turborepo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turborepo) | | [knip](https://knip.dev) ([source](https://togithub.com/webpro-nl/knip/tree/HEAD/packages/knip)) | devDependencies | patch | [`5.27.3` -> `5.27.4`](https://renovatebot.com/diffs/npm/knip/5.27.3/5.27.4) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/webpro-nl/knip/badge)](https://securityscorecards.dev/viewer/?uri=github.com/webpro-nl/knip) | | [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | packageManager | minor | [`9.8.0` -> `9.9.0`](https://renovatebot.com/diffs/npm/pnpm/9.8.0/9.9.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/pnpm/pnpm/badge)](https://securityscorecards.dev/viewer/?uri=github.com/pnpm/pnpm) | | [prettier-plugin-packagejson](https://togithub.com/matzkoh/prettier-plugin-packagejson) | devDependencies | patch | [`2.5.1` -> `2.5.2`](https://renovatebot.com/diffs/npm/prettier-plugin-packagejson/2.5.1/2.5.2) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/matzkoh/prettier-plugin-packagejson/badge)](https://securityscorecards.dev/viewer/?uri=github.com/matzkoh/prettier-plugin-packagejson) | | [prisma](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/cli)) | devDependencies | minor | [`5.18.0` -> `5.19.0`](https://renovatebot.com/diffs/npm/prisma/5.18.0/5.19.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/prisma/prisma/badge)](https://securityscorecards.dev/viewer/?uri=github.com/prisma/prisma) | | [react-hook-form](https://www.react-hook-form.com) ([source](https://togithub.com/react-hook-form/react-hook-form)) | peerDependencies | minor | [`7.52.2` -> `7.53.0`](https://renovatebot.com/diffs/npm/react-hook-form/7.52.2/7.53.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/react-hook-form/react-hook-form/badge)](https://securityscorecards.dev/viewer/?uri=github.com/react-hook-form/react-hook-form) | | [react-hook-form](https://www.react-hook-form.com) ([source](https://togithub.com/react-hook-form/react-hook-form)) | devDependencies | minor | [`7.52.2` -> `7.53.0`](https://renovatebot.com/diffs/npm/react-hook-form/7.52.2/7.53.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/react-hook-form/react-hook-form/badge)](https://securityscorecards.dev/viewer/?uri=github.com/react-hook-form/react-hook-form) | | [react-hook-form](https://www.react-hook-form.com) ([source](https://togithub.com/react-hook-form/react-hook-form)) | dependencies | minor | [`7.52.2` -> `7.53.0`](https://renovatebot.com/diffs/npm/react-hook-form/7.52.2/7.53.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/react-hook-form/react-hook-form/badge)](https://securityscorecards.dev/viewer/?uri=github.com/react-hook-form/react-hook-form) | | [tsx](https://tsx.is) ([source](https://togithub.com/privatenumber/tsx)) | devDependencies | minor | [`4.17.0` -> `4.19.0`](https://renovatebot.com/diffs/npm/tsx/4.17.0/4.19.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/privatenumber/tsx/badge)](https://securityscorecards.dev/viewer/?uri=github.com/privatenumber/tsx) | | [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turborepo)) | devDependencies | minor | [`2.0.14` -> `2.1.0`](https://renovatebot.com/diffs/npm/turbo/2.0.14/2.1.0) | [![OpenSSF Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turborepo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turborepo) | --- ### Release Notes <details> <summary>getsentry/sentry-javascript (@​sentry/browser)</summary> ### [`v8.27.0`](https://togithub.com/getsentry/sentry-javascript/releases/tag/8.27.0) [Compare Source](https://togithub.com/getsentry/sentry-javascript/compare/8.26.0...8.27.0) ##### Important Changes - **fix(nestjs): Exception filters in main app module are not being executed ([#​13278](https://togithub.com/getsentry/sentry-javascript/issues/13278))** With this release nestjs error monitoring is no longer automatically set up after adding the `SentryModule` to your application, which led to issues in certain scenarios. You will now have to either add the `SentryGlobalFilter` to your main module providers or decorate the `catch()` method in your existing global exception filters with the newly released `@WithSentry()` decorator. See the [docs](https://docs.sentry.io/platforms/javascript/guides/nestjs/) for more details. ##### Other Changes - feat: Add options for passing nonces to feedback integration ([#​13347](https://togithub.com/getsentry/sentry-javascript/issues/13347)) - feat: Add support for SENTRY_SPOTLIGHT env var in Node ([#​13325](https://togithub.com/getsentry/sentry-javascript/issues/13325)) - feat(deps): bump [@​prisma/instrumentation](https://togithub.com/prisma/instrumentation) from 5.17.0 to 5.18.0 ([#​13327](https://togithub.com/getsentry/sentry-javascript/issues/13327)) - feat(feedback): Improve error message for 403 errors ([#​13441](https://togithub.com/getsentry/sentry-javascript/issues/13441)) - fix(deno): Don't rely on `Deno.permissions.querySync` ([#​13378](https://togithub.com/getsentry/sentry-javascript/issues/13378)) - fix(replay): Ensure we publish replay CDN bundles ([#​13437](https://togithub.com/getsentry/sentry-javascript/issues/13437)) Work in this release was contributed by [@​charpeni](https://togithub.com/charpeni). Thank you for your contribution! </details> <details> <summary>swc-project/swc (@​swc/core)</summary> ### [`v1.7.18`](https://togithub.com/swc-project/swc/compare/v1.7.14...v1.7.18) [Compare Source](https://togithub.com/swc-project/swc/compare/v1.7.14...v1.7.18) </details> <details> <summary>TanStack/table (@​tanstack/react-table)</summary> ### [`v8.20.5`](https://togithub.com/TanStack/table/releases/tag/v8.20.5) [Compare Source](https://togithub.com/TanStack/table/compare/v8.20.1...v8.20.5) Version 8.20.5 - 8/24/24, 11:37 PM #### Changes ##### Fix - table-core: allow searching of numbers ([#​5718](https://togithub.com/TanStack/table/issues/5718)) ([`237b1c4`](https://togithub.com/TanStack/table/commit/237b1c4)) by GaganSingh7 ##### Docs - vue: add information about `shallowRef` for reactive data ([#​5706](https://togithub.com/TanStack/table/issues/5706)) ([`58913b6`](https://togithub.com/TanStack/table/commit/58913b6)) by Ola Alsaker #### Packages - [@​tanstack/table-core](https://togithub.com/tanstack/table-core)[@​8](https://togithub.com/8).20.5 - [@​tanstack/angular-table](https://togithub.com/tanstack/angular-table)[@​8](https://togithub.com/8).20.5 - [@​tanstack/lit-table](https://togithub.com/tanstack/lit-table)[@​8](https://togithub.com/8).20.5 - [@​tanstack/qwik-table](https://togithub.com/tanstack/qwik-table)[@​8](https://togithub.com/8).20.5 - [@​tanstack/react-table](https://togithub.com/tanstack/react-table)[@​8](https://togithub.com/8).20.5 - [@​tanstack/solid-table](https://togithub.com/tanstack/solid-table)[@​8](https://togithub.com/8).20.5 - [@​tanstack/svelte-table](https://togithub.com/tanstack/svelte-table)[@​8](https://togithub.com/8).20.5 - [@​tanstack/vue-table](https://togithub.com/tanstack/vue-table)[@​8](https://togithub.com/8).20.5 - [@​tanstack/react-table-devtools](https://togithub.com/tanstack/react-table-devtools)[@​8](https://togithub.com/8).20.5 </details> <details> <summary>TexteaInc/json-viewer (@​textea/json-viewer)</summary> ### [`v3.5.0`](https://togithub.com/TexteaInc/json-viewer/blob/HEAD/CHANGELOG.md#350-2024-08-26) [Compare Source](https://togithub.com/TexteaInc/json-viewer/compare/8d9759329ce72903f7e09f534eeb4cb1171191b3...400d2423085bee7d373c176f6c2abf341c535730) ##### Features - add `data-key-toggle-*` class name for customization ([c1e605a](https://togithub.com/TexteaInc/json-viewer/commit/c1e605a5647be5821392bf74a396bb5ff95d7e4a)) - add utils `getPathValue` ([194ac43](https://togithub.com/TexteaInc/json-viewer/commit/194ac430170ce2e9ad21ebbc0b83008981054e26)) - hide colon when key is empty ([c1ce6ed](https://togithub.com/TexteaInc/json-viewer/commit/c1ce6ed7ea5b5ce9512a100cd6ad5ef1bf5ee4d1)) - passing `path` to `Editor` for better customizability ([f03ab10](https://togithub.com/TexteaInc/json-viewer/commit/f03ab1051fd1d0320ad6f5c482325f151b6065da)) - support `displayComma` for showing comma ([2c85bdb](https://togithub.com/TexteaInc/json-viewer/commit/2c85bdbccab0e2844d8a0f445f9d0a9f48434e68)) </details> <details> <summary>total-typescript/ts-reset (@​total-typescript/ts-reset)</summary> ### [`v0.6.0`](https://togithub.com/total-typescript/ts-reset/blob/HEAD/CHANGELOG.md#060) ##### Minor Changes - [`6574858`](https://togithub.com/total-typescript/ts-reset/commit/6574858): Added a rule, `/map-constructor`, to default `Map` to `Map<unknown, unknown>` when no arguments are passed to the constructor. Before, you'd get `any` for both key and value types. Now, the result of `Map.get` is `unknown` instead of `any`: ```ts const userMap = new Map(); const value = userMap.get("matt"); // value: unknown ``` This now is part of the recommended rules. - [`5bf3a15`](https://togithub.com/total-typescript/ts-reset/commit/5bf3a15): Added a rule, `/promise-catch`, to change the `catch` method to take `unknown` instead of `any` as an argument. ```ts const promise = Promise.reject("error"); // BEFORE promise.catch((error) => { console.error(error); // error is any! }); // AFTER promise.catch((error) => { console.error(error); // error is unknown! }); ``` ##### Patch Changes - [`53cee4f`](https://togithub.com/total-typescript/ts-reset/commit/53cee4f): author: [@​none23](https://togithub.com/none23) Fixed a bug where running .filter on a union of arrays would not work. </details> <details> <summary>vercel/turborepo (@​turbo/gen)</summary> ### [`v2.1.0`](https://togithub.com/vercel/turborepo/releases/tag/v2.1.0): Turborepo v2.1.0 [Compare Source](https://togithub.com/vercel/turborepo/compare/v2.0.14...v2.1.0) <!-- Release notes generated using configuration in .github/turborepo-release.yml at v2.1.0 --> #### What's Changed ##### Docs - documentation for for `cacheDir`, `daemon`, and `envMode` (config values, and env vars) by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9018](https://togithub.com/vercel/turborepo/pull/9018) - Update using-environment-variables.mdx by [@​robertn702](https://togithub.com/robertn702) in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) - (docs) Fix Node.js subpath import guidance. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9066](https://togithub.com/vercel/turborepo/pull/9066) ##### [@​turbo/codemod](https://togithub.com/turbo/codemod) - separate configs, colocate JSONSchema, remove `globalDotEnv` and `pipeline.dotEnv` from V2 by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9025](https://togithub.com/vercel/turborepo/pull/9025) ##### Examples - Update README.md by [@​Aditya0257](https://togithub.com/Aditya0257) in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - Update basic example to use stable Next.js. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9059](https://togithub.com/vercel/turborepo/pull/9059) ##### Changelog - TypeScript types for `cacheDir`, `daemon`, and `envMode` by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9011](https://togithub.com/vercel/turborepo/pull/9011) - chore: show deprecation info for globalDotEnv and dotEnv by [@​devy-bee](https://togithub.com/devy-bee) in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - fix: lock tui-term version to pass rust type check by [@​wadwings](https://togithub.com/wadwings) in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - feat: color no longer tied to task execution order by [@​Shaharking](https://togithub.com/Shaharking) in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - fix(tui): avoid panic on restarting tasks during watch by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9032](https://togithub.com/vercel/turborepo/pull/9032) - feat(ls): support output format by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turborepo/pull/9031](https://togithub.com/vercel/turborepo/pull/9031) - chore(tui): remove unwraps from tui by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9034](https://togithub.com/vercel/turborepo/pull/9034) - feat: implement a query interface for turborepo by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/8977](https://togithub.com/vercel/turborepo/pull/8977) - feat(tui): allow searching for tasks by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9042](https://togithub.com/vercel/turborepo/pull/9042) - fix(affected): prevent affected from being used with filter by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9049](https://togithub.com/vercel/turborepo/pull/9049) - allow multiple fallbacks for --affected base branch by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9045](https://togithub.com/vercel/turborepo/pull/9045) - fix(affected): don't respect empty scm env vars by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9053](https://togithub.com/vercel/turborepo/pull/9053) - fix(affected): no longer error if `main` does not exist by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9061](https://togithub.com/vercel/turborepo/pull/9061) - fix(cli): avoid use of process exit by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9065](https://togithub.com/vercel/turborepo/pull/9065) - chore: Remove version output on CI by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9068](https://togithub.com/vercel/turborepo/pull/9068) - chore(tui): fix lint warnings in tests by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9062](https://togithub.com/vercel/turborepo/pull/9062) #### New Contributors - [@​Aditya0257](https://togithub.com/Aditya0257) made their first contribution in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - [@​devy-bee](https://togithub.com/devy-bee) made their first contribution in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - [@​wadwings](https://togithub.com/wadwings) made their first contribution in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - [@​Shaharking](https://togithub.com/Shaharking) made their first contribution in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - [@​robertn702](https://togithub.com/robertn702) made their first contribution in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) **Full Changelog**: vercel/turborepo@v2.0.14...v2.1.0 </details> <details> <summary>import-js/eslint-import-resolver-typescript (eslint-import-resolver-typescript)</summary> ### [`v3.6.3`](https://togithub.com/import-js/eslint-import-resolver-typescript/blob/HEAD/CHANGELOG.md#363) [Compare Source](https://togithub.com/import-js/eslint-import-resolver-typescript/compare/v3.6.1...v3.6.3) ##### Patch Changes - [#​305](https://togithub.com/import-js/eslint-import-resolver-typescript/pull/305) [`f8d7b82`](https://togithub.com/import-js/eslint-import-resolver-typescript/commit/f8d7b82d3e1137c9537f3c4bd7d67044b310475d) Thanks [@​SukkaW](https://togithub.com/SukkaW)! - Fix resolve for `node:test`, `node:sea`, and `node:sqlite` without sacrificing installation size - [#​288](https://togithub.com/import-js/eslint-import-resolver-typescript/pull/288) [`a4c6c78`](https://togithub.com/import-js/eslint-import-resolver-typescript/commit/a4c6c78904e8e7123503f6784fdbded3d4a026ed) Thanks [@​SunsetTechuila](https://togithub.com/SunsetTechuila)! - fix: ignore bun built-in modules </details> <details> <summary>webpro-nl/knip (knip)</summary> ### [`v5.27.4`](https://togithub.com/webpro-nl/knip/compare/5.27.3...c28b62d4e62de40feca4d436ae979f8a7ab4be4b) [Compare Source](https://togithub.com/webpro-nl/knip/compare/5.27.3...5.27.4) </details> <details> <summary>pnpm/pnpm (pnpm)</summary> ### [`v9.9.0`](https://togithub.com/pnpm/pnpm/compare/v9.8.0...v9.9.0) [Compare Source](https://togithub.com/pnpm/pnpm/compare/v9.8.0...v9.9.0) </details> <details> <summary>matzkoh/prettier-plugin-packagejson (prettier-plugin-packagejson)</summary> ### [`v2.5.2`](https://togithub.com/matzkoh/prettier-plugin-packagejson/releases/tag/v2.5.2) [Compare Source](https://togithub.com/matzkoh/prettier-plugin-packagejson/compare/v2.5.1...v2.5.2) ##### Bug Fixes - **deps:** update dependency sort-package-json to v2.10.1 ([44fef1d](https://togithub.com/matzkoh/prettier-plugin-packagejson/commit/44fef1dbae4601086d739d1b1021e44c8d716064)) </details> <details> <summary>react-hook-form/react-hook-form (react-hook-form)</summary> ### [`v7.53.0`](https://togithub.com/react-hook-form/react-hook-form/compare/v7.52.2...35e2d7744c250b2844717b753bc48a81c9ac4e56) [Compare Source](https://togithub.com/react-hook-form/react-hook-form/compare/v7.52.2...v7.53.0) </details> <details> <summary>privatenumber/tsx (tsx)</summary> ### [`v4.19.0`](https://togithub.com/privatenumber/tsx/compare/v4.18.0...157c3ec6bcf0b0a5e387080576404c00f7fd662f) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.18.0...v4.19.0) ### [`v4.18.0`](https://togithub.com/privatenumber/tsx/compare/v4.17.1...474ea71ff9c9cbd2d3a5dbe0951f2c2d92f2e26a) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.17.1...v4.18.0) ### [`v4.17.1`](https://togithub.com/privatenumber/tsx/compare/v4.17.0...af370e7af4837cf3db069c3ee1758c90f94f7d32) [Compare Source](https://togithub.com/privatenumber/tsx/compare/v4.17.0...v4.17.1) </details> --- ### 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 is behind base branch, or you tick the rebase/retry checkbox. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/weareinreach/InReach). <!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6ImRldiIsImxhYmVscyI6WyJhdXRvbWVyZ2UiLCJkZXBlbmRlbmNpZXMiLCJrb2RpYWs6IG1lcmdlLm1ldGhvZCA9ICdzcXVhc2gnIl19--> <!-- This is an auto-generated comment: release notes by coderabbit.ai --> ## Summary by CodeRabbit - **New Features** - Updated various dependencies across the application, potentially introducing new features and improvements. - **Bug Fixes** - Incremented versions of multiple packages, which may include bug fixes and performance enhancements. - **Documentation** - Updated type definitions for ESLint, improving type safety and developer experience. - **Chores** - Minor version increments for several dependencies to maintain compatibility and improve functionality. <!-- end of auto-generated comment: release notes by coderabbit.ai --> Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com) This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [eslint-config-turbo](https://togithub.com/vercel/turborepo) ([source](https://togithub.com/vercel/turborepo/tree/HEAD/packages/eslint-config-turbo)) | [`2.0.14` -> `2.1.0`](https://renovatebot.com/diffs/npm/eslint-config-turbo/2.0.14/2.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-turbo/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-turbo/2.0.14/2.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>vercel/turborepo (eslint-config-turbo)</summary> ### [`v2.1.0`](https://togithub.com/vercel/turborepo/releases/tag/v2.1.0): Turborepo v2.1.0 [Compare Source](https://togithub.com/vercel/turborepo/compare/v2.0.14...v2.1.0) #### What's Changed ##### Docs - documentation for for `cacheDir`, `daemon`, and `envMode` (config values, and env vars) by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9018](https://togithub.com/vercel/turborepo/pull/9018) - Update using-environment-variables.mdx by [@​robertn702](https://togithub.com/robertn702) in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) - (docs) Fix Node.js subpath import guidance. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9066](https://togithub.com/vercel/turborepo/pull/9066) ##### [@​turbo/codemod](https://togithub.com/turbo/codemod) - separate configs, colocate JSONSchema, remove `globalDotEnv` and `pipeline.dotEnv` from V2 by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9025](https://togithub.com/vercel/turborepo/pull/9025) ##### Examples - Update README.md by [@​Aditya0257](https://togithub.com/Aditya0257) in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - Update basic example to use stable Next.js. by [@​anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9059](https://togithub.com/vercel/turborepo/pull/9059) ##### Changelog - TypeScript types for `cacheDir`, `daemon`, and `envMode` by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9011](https://togithub.com/vercel/turborepo/pull/9011) - chore: show deprecation info for globalDotEnv and dotEnv by [@​devy-bee](https://togithub.com/devy-bee) in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - fix: lock tui-term version to pass rust type check by [@​wadwings](https://togithub.com/wadwings) in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - feat: color no longer tied to task execution order by [@​Shaharking](https://togithub.com/Shaharking) in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - fix(tui): avoid panic on restarting tasks during watch by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9032](https://togithub.com/vercel/turborepo/pull/9032) - feat(ls): support output format by [@​tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turborepo/pull/9031](https://togithub.com/vercel/turborepo/pull/9031) - chore(tui): remove unwraps from tui by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9034](https://togithub.com/vercel/turborepo/pull/9034) - feat: implement a query interface for turborepo by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/8977](https://togithub.com/vercel/turborepo/pull/8977) - feat(tui): allow searching for tasks by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9042](https://togithub.com/vercel/turborepo/pull/9042) - fix(affected): prevent affected from being used with filter by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9049](https://togithub.com/vercel/turborepo/pull/9049) - allow multiple fallbacks for --affected base branch by [@​dimitropoulos](https://togithub.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9045](https://togithub.com/vercel/turborepo/pull/9045) - fix(affected): don't respect empty scm env vars by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9053](https://togithub.com/vercel/turborepo/pull/9053) - fix(affected): no longer error if `main` does not exist by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9061](https://togithub.com/vercel/turborepo/pull/9061) - fix(cli): avoid use of process exit by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9065](https://togithub.com/vercel/turborepo/pull/9065) - chore: Remove version output on CI by [@​NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9068](https://togithub.com/vercel/turborepo/pull/9068) - chore(tui): fix lint warnings in tests by [@​chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9062](https://togithub.com/vercel/turborepo/pull/9062) #### New Contributors - [@​Aditya0257](https://togithub.com/Aditya0257) made their first contribution in [https://github.com/vercel/turborepo/pull/8979](https://togithub.com/vercel/turborepo/pull/8979) - [@​devy-bee](https://togithub.com/devy-bee) made their first contribution in [https://github.com/vercel/turborepo/pull/8974](https://togithub.com/vercel/turborepo/pull/8974) - [@​wadwings](https://togithub.com/wadwings) made their first contribution in [https://github.com/vercel/turborepo/pull/9022](https://togithub.com/vercel/turborepo/pull/9022) - [@​Shaharking](https://togithub.com/Shaharking) made their first contribution in [https://github.com/vercel/turborepo/pull/9023](https://togithub.com/vercel/turborepo/pull/9023) - [@​robertn702](https://togithub.com/robertn702) made their first contribution in [https://github.com/vercel/turborepo/pull/9040](https://togithub.com/vercel/turborepo/pull/9040) **Full Changelog**: vercel/turborepo@v2.0.14...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - At any time (no schedule defined), Automerge - At any time (no schedule defined). 🚦 **Automerge**: Enabled. ♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the rebase/retry checkbox. 🔕 **Ignore**: Close this PR and you won't be reminded about this update again. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View the [repository job log](https://developer.mend.io/github/technifit/tasker).
This PR contains the following updates: | Package | Change | Age | Adoption | Passing | Confidence | |---|---|---|---|---|---| | [@antfu/install-pkg](https://redirect.github.com/antfu/install-pkg) | [`^0.4.0` -> `^0.4.1`](https://renovatebot.com/diffs/npm/@antfu%2finstall-pkg/0.4.0/0.4.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@antfu%2finstall-pkg/0.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@antfu%2finstall-pkg/0.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@antfu%2finstall-pkg/0.4.0/0.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@antfu%2finstall-pkg/0.4.0/0.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@commitlint/cli](https://commitlint.js.org/) ([source](https://redirect.github.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli)) | [`^19.4.0` -> `^19.4.1`](https://renovatebot.com/diffs/npm/@commitlint%2fcli/19.4.0/19.4.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2fcli/19.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2fcli/19.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2fcli/19.4.0/19.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2fcli/19.4.0/19.4.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@eslint-react/eslint-plugin](https://redirect.github.com/rel1cx/eslint-react) ([source](https://redirect.github.com/Rel1cx/eslint-react/tree/HEAD/packages/plugins/eslint-plugin)) | [`^1.12.1` -> `^1.12.4`](https://renovatebot.com/diffs/npm/@eslint-react%2feslint-plugin/1.12.1/1.12.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@eslint-react%2feslint-plugin/1.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@eslint-react%2feslint-plugin/1.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@eslint-react%2feslint-plugin/1.12.1/1.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@eslint-react%2feslint-plugin/1.12.1/1.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@types/node](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://redirect.github.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`^22.5.0` -> `^22.5.2`](https://renovatebot.com/diffs/npm/@types%2fnode/22.5.0/22.5.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/22.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/22.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/22.5.0/22.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/22.5.0/22.5.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/eslint-plugin](https://typescript-eslint.io/packages/eslint-plugin) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`^8.2.0` -> `^8.4.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/8.2.0/8.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/8.2.0/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/8.2.0/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [@typescript-eslint/parser](https://typescript-eslint.io/packages/parser) ([source](https://redirect.github.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`^8.2.0` -> `^8.4.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/8.2.0/8.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/8.2.0/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/8.2.0/8.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [eslint-config-flat-gitignore](https://redirect.github.com/antfu/eslint-config-flat-gitignore) | [`^0.1.8` -> `^0.3.0`](https://renovatebot.com/diffs/npm/eslint-config-flat-gitignore/0.1.8/0.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-flat-gitignore/0.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-flat-gitignore/0.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-flat-gitignore/0.1.8/0.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-flat-gitignore/0.1.8/0.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [eslint-config-next](https://nextjs.org/docs/app/building-your-application/configuring/eslint#eslint-config) ([source](https://redirect.github.com/vercel/next.js/tree/HEAD/packages/eslint-config-next)) | [`^14.2.6` -> `^14.2.7`](https://renovatebot.com/diffs/npm/eslint-config-next/14.2.6/14.2.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-next/14.2.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-next/14.2.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-next/14.2.6/14.2.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-next/14.2.6/14.2.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [eslint-plugin-antfu](https://redirect.github.com/antfu/eslint-plugin-antfu) | [`^2.3.6` -> `^2.4.0`](https://renovatebot.com/diffs/npm/eslint-plugin-antfu/2.3.6/2.4.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-antfu/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-antfu/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-antfu/2.3.6/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-antfu/2.3.6/2.4.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [eslint-plugin-perfectionist](https://perfectionist.dev) ([source](https://redirect.github.com/azat-io/eslint-plugin-perfectionist)) | [`^3.2.0` -> `^3.3.0`](https://renovatebot.com/diffs/npm/eslint-plugin-perfectionist/3.2.0/3.3.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-perfectionist/3.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-perfectionist/3.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-perfectionist/3.2.0/3.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-perfectionist/3.2.0/3.3.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [lint-staged](https://redirect.github.com/lint-staged/lint-staged) | [`^15.2.9` -> `^15.2.10`](https://renovatebot.com/diffs/npm/lint-staged/15.2.9/15.2.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/lint-staged/15.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/lint-staged/15.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/lint-staged/15.2.9/15.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lint-staged/15.2.9/15.2.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [picocolors](https://redirect.github.com/alexeyraspopov/picocolors) | [`^1.0.1` -> `^1.1.0`](https://renovatebot.com/diffs/npm/picocolors/1.0.1/1.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/picocolors/1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/picocolors/1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/picocolors/1.0.1/1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/picocolors/1.0.1/1.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [pnpm](https://pnpm.io) ([source](https://redirect.github.com/pnpm/pnpm)) | [`9.8.0+sha512.8e4c3550fb500e808dbc30bb0ce4dd1eb614e30b1c55245f211591ec2cdf9c611cabd34e1364b42f564bd54b3945ed0f49d61d1bbf2ec9bd74b866fcdc723276` -> `9.9.0`](https://renovatebot.com/diffs/npm/pnpm/9.8.0/9.9.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/9.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/9.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/9.8.0/9.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/9.8.0/9.9.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [tsx](https://tsx.is) ([source](https://redirect.github.com/privatenumber/tsx)) | [`^4.18.0` -> `^4.19.0`](https://renovatebot.com/diffs/npm/tsx/4.18.0/4.19.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/tsx/4.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/tsx/4.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/tsx/4.18.0/4.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/tsx/4.18.0/4.19.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | | [turbo](https://turbo.build/repo) ([source](https://redirect.github.com/vercel/turborepo)) | [`^2.0.14` -> `^2.1.1`](https://renovatebot.com/diffs/npm/turbo/2.0.14/2.1.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/2.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/2.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/2.0.14/2.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/2.0.14/2.1.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | --- ### Release Notes <details> <summary>antfu/install-pkg (@​antfu/install-pkg)</summary> ### [`v0.4.1`](https://redirect.github.com/antfu-collective/install-pkg/releases/tag/v0.4.1) [Compare Source](https://redirect.github.com/antfu/install-pkg/compare/v0.4.0...v0.4.1) ##### 🐞 Bug Fixes - Upgrade to tinyexec 0.3.0 to restore exception on failed install - by [@​benmccann](https://redirect.github.com/benmccann) in [https://github.com/antfu/install-pkg/issues/15](https://redirect.github.com/antfu/install-pkg/issues/15) [<samp>(02eb8)</samp>](https://redirect.github.com/antfu/install-pkg/commit/02eb8ba) ##### [View changes on GitHub](https://redirect.github.com/antfu/install-pkg/compare/v0.4.0...v0.4.1) </details> <details> <summary>conventional-changelog/commitlint (@​commitlint/cli)</summary> ### [`v19.4.1`](https://redirect.github.com/conventional-changelog/commitlint/blob/HEAD/@​commitlint/cli/CHANGELOG.md#1941-2024-08-28) [Compare Source](https://redirect.github.com/conventional-changelog/commitlint/compare/v19.4.0...v19.4.1) **Note:** Version bump only for package [@​commitlint/cli](https://redirect.github.com/commitlint/cli) </details> <details> <summary>Rel1cx/eslint-react (@​eslint-react/eslint-plugin)</summary> ### [`v1.12.4`](https://redirect.github.com/Rel1cx/eslint-react/blob/HEAD/CHANGELOG.md#v1124-Sat-31-Aug-2024) [Compare Source](https://redirect.github.com/Rel1cx/eslint-react/compare/v1.12.3...v1.12.4) ##### ✨ New - Added `useLayoutEffect` and `useInsertionEffect` support to `hooks-extra/no-direct-set-state-in-use-effect`. ##### 🪄 Improvements - Deprecate rule `hooks-extra/no-direct-set-state-in-use-layout-effect` in favor of `hooks-extra/no-direct-set-state-in-use-effect` (the previous rule will still be available until the next major update to avoid breaking changes). ### [`v1.12.3`](https://redirect.github.com/Rel1cx/eslint-react/blob/HEAD/CHANGELOG.md#v1123-Thu-29-Aug-2024) [Compare Source](https://redirect.github.com/Rel1cx/eslint-react/compare/v1.12.2...v1.12.3) ##### ✨ New - Added support for detecting event listeners removed by abort signal in rule `web-api/no-leaked-event-listener`. ##### 🐞 Fixes - Fixed `no-duplicate-key` rule false positives when the key is an variable. - Fixed `web-api/no-leaked-set-timeout` and `web-api/no-leaked-set-interval` false positives when a timer is assigned to a variable declared by `let` but not initialized. ### [`v1.12.2`](https://redirect.github.com/Rel1cx/eslint-react/blob/HEAD/CHANGELOG.md#v1122-Tue-27-Aug-2024) [Compare Source](https://redirect.github.com/Rel1cx/eslint-react/compare/v1.12.1...v1.12.2) ##### ✨ New - Added type declarations for `react-x` settings to the `@typescript-eslint/utils/ts-eslint` module via the `SharedConfigurationSettings` interface. ##### 🪄 Improvements - Improve the performance of the `no-missing-key` and `no-duplicate-key` rules. - Upgrade `@typescript-eslint`'s packages to `^8.3.0`. </details> <details> <summary>typescript-eslint/typescript-eslint (@​typescript-eslint/eslint-plugin)</summary> ### [`v8.4.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#840-2024-09-02) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.3.0...v8.4.0) This was a version bump only for eslint-plugin to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v8.3.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#830-2024-08-26) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.2.0...v8.3.0) ##### 🚀 Features - **eslint-plugin:** \[no-deprecation] add rule ##### 🩹 Fixes - **eslint-plugin:** \[no-unnecessary-template-expression] add missing parentheses in autofix - **eslint-plugin:** \[no-unnecessary-type-parameters] check mapped alias type arguments - **utils:** add `TSDeclareFunction` to `functionTypeTypes` - **ast-spec:** use `Expression` in argument of `ThrowStatement` ##### ❤️ Thank You - Abraham Guo - Daichi Kamiyama - Josh Goldberg ✨ - Kim Sang Du - Sukka - Vida Xie You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. </details> <details> <summary>typescript-eslint/typescript-eslint (@​typescript-eslint/parser)</summary> ### [`v8.4.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#840-2024-09-02) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.3.0...v8.4.0) This was a version bump only for parser to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. ### [`v8.3.0`](https://redirect.github.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#830-2024-08-26) [Compare Source](https://redirect.github.com/typescript-eslint/typescript-eslint/compare/v8.2.0...v8.3.0) This was a version bump only for parser to align it with other projects, there were no code changes. You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website. </details> <details> <summary>antfu/eslint-config-flat-gitignore (eslint-config-flat-gitignore)</summary> ### [`v0.3.0`](https://redirect.github.com/antfu/eslint-config-flat-gitignore/releases/tag/v0.3.0) [Compare Source](https://redirect.github.com/antfu/eslint-config-flat-gitignore/compare/v0.2.0...v0.3.0) ##### 🚨 Breaking Changes - Requires ESLint v9+ - by [@​antfu](https://redirect.github.com/antfu) [<samp>(5206a)</samp>](https://redirect.github.com/antfu/eslint-config-flat-gitignore/commit/5206a5f) ##### [View changes on GitHub](https://redirect.github.com/antfu/eslint-config-flat-gitignore/compare/v0.2.0...v0.3.0) ### [`v0.2.0`](https://redirect.github.com/antfu/eslint-config-flat-gitignore/releases/tag/v0.2.0) [Compare Source](https://redirect.github.com/antfu/eslint-config-flat-gitignore/compare/v0.1.8...v0.2.0) ##### 🚀 Features - Support gitignores out of cwd with `@eslint/compat` - by [@​Dimava](https://redirect.github.com/Dimava) in [https://github.com/antfu/eslint-config-flat-gitignore/issues/15](https://redirect.github.com/antfu/eslint-config-flat-gitignore/issues/15) [<samp>(f09cf)</samp>](https://redirect.github.com/antfu/eslint-config-flat-gitignore/commit/f09cf89) ##### [View changes on GitHub](https://redirect.github.com/antfu/eslint-config-flat-gitignore/compare/v0.1.8...v0.2.0) </details> <details> <summary>vercel/next.js (eslint-config-next)</summary> ### [`v14.2.7`](https://redirect.github.com/vercel/next.js/compare/v14.2.6...v14.2.7) [Compare Source](https://redirect.github.com/vercel/next.js/compare/v14.2.6...v14.2.7) </details> <details> <summary>antfu/eslint-plugin-antfu (eslint-plugin-antfu)</summary> ### [`v2.4.0`](https://redirect.github.com/antfu/eslint-plugin-antfu/releases/tag/v2.4.0) [Compare Source](https://redirect.github.com/antfu/eslint-plugin-antfu/compare/v2.3.6...v2.4.0) ##### 🚀 Features - New `consistent-chaining` rule - by [@​antfu](https://redirect.github.com/antfu) [<samp>(03ece)</samp>](https://redirect.github.com/antfu/eslint-plugin-antfu/commit/03ecec4) ##### [View changes on GitHub](https://redirect.github.com/antfu/eslint-plugin-antfu/compare/v2.3.6...v2.4.0) </details> <details> <summary>azat-io/eslint-plugin-perfectionist (eslint-plugin-perfectionist)</summary> ### [`v3.3.0`](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/blob/HEAD/changelog.md#v330) [Compare Source](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/compare/v3.2.0...v3.3.0) [compare changes](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/compare/v3.2.0...v3.3.0) ##### 🚀 Features - Improve checking if a member is private in sort-classes rule ([4e19b94](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/commit/4e19b94)) - Add static-block and accessor-property to default groups in sort-classes ([0c724e0](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/commit/0c724e0)) - Don't sort unknown elements if unknown is not referenced in groups ([0086427](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/commit/0086427)) - Add optional modifier in sort-classes rule ([27fa7e8](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/commit/27fa7e8)) ##### 🐞 Bug Fixes - Fix sorting class members with same names ([f1f875e](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/commit/f1f875e)) - Fix use of case named default in sort-switch-case rule ([5583eb0](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/commit/5583eb0)) - Take into account dependencies in sort-enums ([eeb0534](https://redirect.github.com/azat-io/eslint-plugin-perfectionist/commit/eeb0534)) ##### ❤️ Contributors - Hugo ([@​hugop95](http://github.com/hugop95)) </details> <details> <summary>lint-staged/lint-staged (lint-staged)</summary> ### [`v15.2.10`](https://redirect.github.com/lint-staged/lint-staged/blob/HEAD/CHANGELOG.md#15210) [Compare Source](https://redirect.github.com/lint-staged/lint-staged/compare/v15.2.9...v15.2.10) ##### Patch Changes - [#​1471](https://redirect.github.com/lint-staged/lint-staged/pull/1471) [`e3f283b`](https://redirect.github.com/lint-staged/lint-staged/commit/e3f283b250868b7c15ceb54d2a51b2e5fb3a18a9) Thanks [@​iiroj](https://redirect.github.com/iiroj)! - Update minor dependencies, including `micromatch@~4.0.8`. </details> <details> <summary>alexeyraspopov/picocolors (picocolors)</summary> ### [`v1.1.0`](https://redirect.github.com/alexeyraspopov/picocolors/blob/HEAD/CHANGELOG.md#v110) [Compare Source](https://redirect.github.com/alexeyraspopov/picocolors/compare/v1.0.1...v1.1.0) - Added bright color variants ([#​55](https://redirect.github.com/alexeyraspopov/picocolors/pull/55)) </details> <details> <summary>pnpm/pnpm (pnpm)</summary> ### [`v9.9.0`](https://redirect.github.com/pnpm/pnpm/compare/v9.8.0...v9.9.0) [Compare Source](https://redirect.github.com/pnpm/pnpm/compare/v9.8.0...v9.9.0) </details> <details> <summary>privatenumber/tsx (tsx)</summary> ### [`v4.19.0`](https://redirect.github.com/privatenumber/tsx/compare/v4.18.0...157c3ec6bcf0b0a5e387080576404c00f7fd662f) [Compare Source](https://redirect.github.com/privatenumber/tsx/compare/v4.18.0...v4.19.0) </details> <details> <summary>vercel/turborepo (turbo)</summary> ### [`v2.1.1`](https://redirect.github.com/vercel/turborepo/releases/tag/v2.1.1): Turborepo v2.1.1 [Compare Source](https://redirect.github.com/vercel/turborepo/compare/v2.1.0...v2.1.1) #### What's Changed ##### Docs - docs: document --affected flag and env vars by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9046](https://redirect.github.com/vercel/turborepo/pull/9046) - docs: document run displaying available tasks by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9052](https://redirect.github.com/vercel/turborepo/pull/9052) - feat(docs): doc ls by [@​tknickman](https://redirect.github.com/tknickman) in [https://github.com/vercel/turborepo/pull/9063](https://redirect.github.com/vercel/turborepo/pull/9063) - chore(config): add undocummented `remote` types to `turbo.json` schema by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9073](https://redirect.github.com/vercel/turborepo/pull/9073) - docs: Clarifications for `--affected`. by [@​anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9078](https://redirect.github.com/vercel/turborepo/pull/9078) - Update constructing-ci.mdx by [@​eps1lon](https://redirect.github.com/eps1lon) in [https://github.com/vercel/turborepo/pull/9079](https://redirect.github.com/vercel/turborepo/pull/9079) ##### Examples - examples: Fix sourcemapping in kitchen-sink. by [@​anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9086](https://redirect.github.com/vercel/turborepo/pull/9086) ##### Changelog - pipes default values through to json-schema by [@​dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9039](https://redirect.github.com/vercel/turborepo/pull/9039) - fix(zsh): fix completion generation for zsh by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9082](https://redirect.github.com/vercel/turborepo/pull/9082) - fix(daemon): use correct arg group for deciding daemon config by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9088](https://redirect.github.com/vercel/turborepo/pull/9088) #### New Contributors - [@​eps1lon](https://redirect.github.com/eps1lon) made their first contribution in [https://github.com/vercel/turborepo/pull/9079](https://redirect.github.com/vercel/turborepo/pull/9079) **Full Changelog**: vercel/turborepo@v2.1.0...v2.1.1 ### [`v2.1.0`](https://redirect.github.com/vercel/turborepo/releases/tag/v2.1.0): Turborepo v2.1.0 [Compare Source](https://redirect.github.com/vercel/turborepo/compare/v2.0.14...v2.1.0) #### What's Changed ##### Docs - documentation for for `cacheDir`, `daemon`, and `envMode` (config values, and env vars) by [@​dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9018](https://redirect.github.com/vercel/turborepo/pull/9018) - Update using-environment-variables.mdx by [@​robertn702](https://redirect.github.com/robertn702) in [https://github.com/vercel/turborepo/pull/9040](https://redirect.github.com/vercel/turborepo/pull/9040) - (docs) Fix Node.js subpath import guidance. by [@​anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9066](https://redirect.github.com/vercel/turborepo/pull/9066) ##### [@​turbo/codemod](https://redirect.github.com/turbo/codemod) - separate configs, colocate JSONSchema, remove `globalDotEnv` and `pipeline.dotEnv` from V2 by [@​dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9025](https://redirect.github.com/vercel/turborepo/pull/9025) ##### Examples - Update README.md by [@​Aditya0257](https://redirect.github.com/Aditya0257) in [https://github.com/vercel/turborepo/pull/8979](https://redirect.github.com/vercel/turborepo/pull/8979) - Update basic example to use stable Next.js. by [@​anthonyshew](https://redirect.github.com/anthonyshew) in [https://github.com/vercel/turborepo/pull/9059](https://redirect.github.com/vercel/turborepo/pull/9059) ##### Changelog - TypeScript types for `cacheDir`, `daemon`, and `envMode` by [@​dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9011](https://redirect.github.com/vercel/turborepo/pull/9011) - chore: show deprecation info for globalDotEnv and dotEnv by [@​devy-bee](https://redirect.github.com/devy-bee) in [https://github.com/vercel/turborepo/pull/8974](https://redirect.github.com/vercel/turborepo/pull/8974) - fix: lock tui-term version to pass rust type check by [@​wadwings](https://redirect.github.com/wadwings) in [https://github.com/vercel/turborepo/pull/9022](https://redirect.github.com/vercel/turborepo/pull/9022) - feat: color no longer tied to task execution order by [@​Shaharking](https://redirect.github.com/Shaharking) in [https://github.com/vercel/turborepo/pull/9023](https://redirect.github.com/vercel/turborepo/pull/9023) - fix(tui): avoid panic on restarting tasks during watch by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9032](https://redirect.github.com/vercel/turborepo/pull/9032) - feat(ls): support output format by [@​tknickman](https://redirect.github.com/tknickman) in [https://github.com/vercel/turborepo/pull/9031](https://redirect.github.com/vercel/turborepo/pull/9031) - chore(tui): remove unwraps from tui by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9034](https://redirect.github.com/vercel/turborepo/pull/9034) - feat: implement a query interface for turborepo by [@​NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/8977](https://redirect.github.com/vercel/turborepo/pull/8977) - feat(tui): allow searching for tasks by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9042](https://redirect.github.com/vercel/turborepo/pull/9042) - fix(affected): prevent affected from being used with filter by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9049](https://redirect.github.com/vercel/turborepo/pull/9049) - allow multiple fallbacks for --affected base branch by [@​dimitropoulos](https://redirect.github.com/dimitropoulos) in [https://github.com/vercel/turborepo/pull/9045](https://redirect.github.com/vercel/turborepo/pull/9045) - fix(affected): don't respect empty scm env vars by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9053](https://redirect.github.com/vercel/turborepo/pull/9053) - fix(affected): no longer error if `main` does not exist by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9061](https://redirect.github.com/vercel/turborepo/pull/9061) - fix(cli): avoid use of process exit by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9065](https://redirect.github.com/vercel/turborepo/pull/9065) - chore: Remove version output on CI by [@​NicholasLYang](https://redirect.github.com/NicholasLYang) in [https://github.com/vercel/turborepo/pull/9068](https://redirect.github.com/vercel/turborepo/pull/9068) - chore(tui): fix lint warnings in tests by [@​chris-olszewski](https://redirect.github.com/chris-olszewski) in [https://github.com/vercel/turborepo/pull/9062](https://redirect.github.com/vercel/turborepo/pull/9062) #### New Contributors - [@​Aditya0257](https://redirect.github.com/Aditya0257) made their first contribution in [https://github.com/vercel/turborepo/pull/8979](https://redirect.github.com/vercel/turborepo/pull/8979) - [@​devy-bee](https://redirect.github.com/devy-bee) made their first contribution in [https://github.com/vercel/turborepo/pull/8974](https://redirect.github.com/vercel/turborepo/pull/8974) - [@​wadwings](https://redirect.github.com/wadwings) made their first contribution in [https://github.com/vercel/turborepo/pull/9022](https://redirect.github.com/vercel/turborepo/pull/9022) - [@​Shaharking](https://redirect.github.com/Shaharking) made their first contribution in [https://github.com/vercel/turborepo/pull/9023](https://redirect.github.com/vercel/turborepo/pull/9023) - [@​robertn702](https://redirect.github.com/robertn702) made their first contribution in [https://github.com/vercel/turborepo/pull/9040](https://redirect.github.com/vercel/turborepo/pull/9040) **Full Changelog**: vercel/turborepo@v2.0.14...v2.1.0 </details> --- ### Configuration 📅 **Schedule**: Branch creation - "before 4am on Wednesday" 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. 👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://redirect.github.com/renovatebot/renovate/discussions) if that's undesired. --- - [ ] If you want to rebase/retry this PR, check this box --- This PR was generated by [Mend Renovate](https://mend.io/renovate/). View the [repository job log](https://developer.mend.io/github/mheob/config). Co-authored-by: Alex Böhm <3983539+mheob@users.noreply.github.com>
Description
Support output format for
ls
Testing Instructions