Skip to content
New issue

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

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

Already on GitHub? Sign in to your account

feat(hashing): support $TURBO_DEFAULT$ in inputs #7113

Merged
merged 3 commits into from Jan 29, 2024
Merged

Conversation

tknickman
Copy link
Member

@tknickman tknickman commented Jan 26, 2024

Description

Adds support for a $TURBO_DEFAULT$ in inputs. This will expand to all files that turbo would normally include (all non-gitignored files in the workspace), but also allow additional globs (negative as well).

For example:

"inputs": ["$TURBO_DEFAULT$", "ignored-file.json", "!./app/layout.tsx"]

This allows all package files to be included, but add an additional git ignored file: ignored-file.json, and exclude a file that is part of $TURBO_DEFAULT$ (!./app/layout.tsx).

This reduces the downsides of using inputs, and makes this key more flexible, and less error-prone.

Closes #6814
Closes TURBO-2161

Copy link

vercel bot commented Jan 26, 2024

The latest updates on your projects. Learn more about Vercel for Git ↗︎

Name Status Preview Comments Updated (UTC)
examples-basic-web 🔄 Building (Inspect) Visit Preview 💬 Add feedback Jan 29, 2024 8:08pm
examples-gatsby-web 🔄 Building (Inspect) Visit Preview 💬 Add feedback Jan 29, 2024 8:08pm
rust-docs ❌ Failed (Inspect) Jan 29, 2024 8:08pm
turbo-site ✅ Ready (Inspect) Visit Preview Jan 29, 2024 8:08pm
7 Ignored Deployments
Name Status Preview Comments Updated (UTC)
examples-designsystem-docs ⬜️ Ignored (Inspect) Visit Preview Jan 29, 2024 8:08pm
examples-kitchensink-blog ⬜️ Ignored (Inspect) Visit Preview Jan 29, 2024 8:08pm
examples-native-web ⬜️ Ignored (Inspect) Visit Preview Jan 29, 2024 8:08pm
examples-nonmonorepo ⬜️ Ignored (Inspect) Visit Preview Jan 29, 2024 8:08pm
examples-svelte-web ⬜️ Ignored (Inspect) Visit Preview Jan 29, 2024 8:08pm
examples-tailwind-web ⬜️ Ignored (Inspect) Visit Preview Jan 29, 2024 8:08pm
examples-vite-web ⬜️ Ignored (Inspect) Visit Preview Jan 29, 2024 8:08pm

Copy link
Contributor

github-actions bot commented Jan 26, 2024

🟢 Turbopack Benchmark CI successful 🟢

Thanks

@anthonyshew
Copy link
Contributor

Amazing! 😍

Docs in a separate PR?

Copy link
Contributor

github-actions bot commented Jan 26, 2024

🟢 CI successful 🟢

Thanks

@tknickman
Copy link
Member Author

@anthonyshew yes! Will need some help there I think, but I'll ping you with the branch.

Copy link
Contributor

@mehulkar mehulkar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Nothing super major in my comments, but left some comments before approval!

crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
Copy link
Contributor

@mehulkar mehulkar left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Another thing here... it looks like the position of $TURBO_DEFAULTS in the inputs array does not matter. That is one potential for confusion that we should call out in docs. I'm not sure if we will have a use case to ever change this behavior.

E.g. could these mean different things to anyone?

["$TURBO_DEFAULT$", "somefile.txt", "!notthis.txt"]
["somefile.txt", "!notthis.txt", "$TURBO_DEFAULT$"]

@tknickman
Copy link
Member Author

tknickman commented Jan 26, 2024

@mehulkar yea good call we can mention that. Order of inputs does not matter.

@tknickman
Copy link
Member Author

tknickman commented Jan 26, 2024

@mehulkar / @gsoltis review addressed - thanks!

crates/turborepo-scm/src/manual.rs Show resolved Hide resolved
crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
@tknickman tknickman changed the title feat(hashing): support $TURBO_DEFAULT in inputs feat(hashing): support $TURBO_DEFAULT$ in inputs Jan 29, 2024
Copy link
Contributor

@chris-olszewski chris-olszewski left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This makes sense to me. I think the unit tests are enough, but it might be nice to have a prysk test that tests this feature with expanded inputs in summarize/dry run.

crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/package_deps.rs Outdated Show resolved Hide resolved
Comment on lines +276 to +286
let mut hashes = default_file_hashes;
hashes.extend(manual_includes_hashes);

// remove the excludes
hashes.retain(|key, _| !manual_excludes_hashes.contains_key(key));
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Future work: I think there's some low hanging perf work to do in future PRs:

  • we can avoid calculating file hashes for all of the paths in manual_excludes_hashes
  • can also defer calculating all file hashes until we have the final list of what files we care about

@tknickman
Copy link
Member Author

Good call @chris-olszewski, I'm getting docs up for this in the next PR and will add a prysk test

@tknickman tknickman merged commit 7145362 into main Jan 29, 2024
62 of 63 checks passed
@tknickman tknickman deleted the inputs-default-key branch January 29, 2024 21:03
chris-olszewski pushed a commit that referenced this pull request Jan 30, 2024
### Description

Docs for #7113


Depends on #7113

Closes TURBO-2184
fuxingloh pushed a commit to fuxingloh/contented that referenced this pull request Jan 31, 2024
[![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/turbo)) | [`^1.11.3` ->
`^1.12.0`](https://renovatebot.com/diffs/npm/turbo/1.11.3/1.12.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0):
Turborepo v1.12.0

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.0 -->

#### What's Changed

##### Docs

- General CI steps on doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6894
- \[Docs] create-new.mdx - npm double slash typo fix by
[@&#8203;Firfi](https://togithub.com/Firfi) in
[vercel/turbo#6933
- fix(docs): correct option heading by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6973
- Clean up inputs doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6980
- fix(docs): typo in `what-to-cache.mdx` by
[@&#8203;pjlangley](https://togithub.com/pjlangley) in
[vercel/turbo#6960
- fix(docs): update vercel.mdx by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6987
- Doc for running setup tasks prior to development tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6999
- Add Glossary to sidebar. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7011
- fix(docs): remote cache go -> rust by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7082
- Use `exports` in Internal Packages doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7079
- fix: typo in github-actions.mdx by
[@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in
[vercel/turbo#7069
- Document glob spec. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7076
- Document handling of Node.js versions, OS, and arch. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7072
- Add generalized deployment advice for Prisma doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7130
- \[DO NOT MERGE] feat(telemetry): cli reference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6826
- \[DO NOT MERGE] feat(telemetry): feature docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6827
- \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7155

##### create-turbo

- release(turborepo): 1.11.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6891
- release(turborepo): 1.11.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6975
- release(turborepo): 1.11.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6997
- release(turborepo): 1.11.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7157
- release(turborepo): 1.11.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7170

##### Examples

- chore(deps-dev): bump the example-dependencies group in
/examples/with-shell-commands with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[vercel/turbo#6901
- Update dependencies in examples. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6920
- Fix with-svelte-example by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#6986
- fix(examples): fontSize type is number not string by
[@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in
[vercel/turbo#7005
- Fix Svelte package export map by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#7007
- fix(examples): basic generator by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7022
- fix(examples): ui turbo.json no longer needed by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7087
- chore(docs): remove unnecessary spaces by
[@&#8203;GyoHeon](https://togithub.com/GyoHeon) in
[vercel/turbo#7118
- chore: install jest in examples/kitchen-sink by
[@&#8203;llllvvuu](https://togithub.com/llllvvuu) in
[vercel/turbo#7132

##### Changelog

- fix: Make execution state use auth crate by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6880
- fix(telemetry): obfuscate rc endpoint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6925
- fix: treat empty environement variables as unset by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6929
- Error out if dependent flags are provided without their parent by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6780
- fix: make sure that our concurrency check ignore packages without task
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6790
- chore: avoid panic on invalid directory filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6955
- feat(Turborepo): Use a wrapper around the raw strings we pass to
globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6847
- fix: ignore permission errors during globbing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6957
- fix: avoid retry panic by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6926
- add better messaging when running with api flag by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6927
- fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon)
in
[vercel/turbo#6959
- Fix/unrevert daemon discovery by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6712
- feat(telemetry): track prune args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6970
- feat(lockfiles): support Yarn 4 patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6974
- feat(telemetry): track global args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6972
- fix: update Cargo.lock with correct workspace dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6990
- fix: rewrite prefix after carriage return by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6989
- feat(telemetry): track run arguments by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6985
- chore: remove usage of command groups by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6992
- chore: add reason for service being unavailable by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6993
- fix(turbo): validate graph extension by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6995
- chore: Adjusted error message for APIClient errors in cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6996
- fix(integration): update help integration test by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7017
- fix(cache): truncate metadata file when writing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7016
- fix(prune): correctly create symlinks to directories by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6983
- fix: forward fixes for LSP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7023
- fix(daemon): make sure cookie dir exists before writing cookie by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7015
- feat(telemetry): track more daemon errors by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7031
- chore: revert auth json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7026
- chore: prefactor process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7034
- chore(Turborepo): Scope down opts needed by the visitor, remove run
lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7032
- fix: Examples turbo.json outputs key by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#7071
- fix: filter package.json files that are subfolders of other packages
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#7025
- feat: update `@turbo/repository` to use new terminology by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7078
- fix(turbo): sort dependents and dependencies during normalization by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7018
- release: `@turbo/repository@0.0.1-canary.3` by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7090
- chore(daemon): swap fallback logs to debug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7102
- feat: add ability to spawn child process with pty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7077
- chore(Turborepo): Move more CLI stuff out of run code by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7085
- fix(hashing): include gitignored files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7105
- fix(clippy): remove unused import by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7120
- fix(hashing): include default files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7106
- chore: add tracing to pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7127
- fix disable echoctl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7109
- feat(telemetry): enable feature by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7122
- feat: enable pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7128
- feat(hashing): support $TURBO_DEFAULT$ in inputs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7113
- fix: process manager tests tty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7156
- fix(tests): mock telemetry config by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7168
- chore: clean pnpm lockfile by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7171
- fix: tasks with no newline by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7175

#### New Contributors

- [@&#8203;Firfi](https://togithub.com/Firfi) made their first
contribution in
[vercel/turbo#6933
- [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first
contribution in
[vercel/turbo#6960
- [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first
contribution in
[vercel/turbo#6986
- [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their
first contribution in
[vercel/turbo#7005
- [@&#8203;nirban07](https://togithub.com/nirban07) made their first
contribution in
[vercel/turbo#7008
- [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first
contribution in
[vercel/turbo#7078
- [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their
first contribution in
[vercel/turbo#7069
- [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first
contribution in
[vercel/turbo#7118
- [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first
contribution in
[vercel/turbo#7132

**Full Changelog**:
vercel/turbo@v1.11.3...v1.12.0

</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 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/levaintech/contented).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh pushed a commit to fuxingloh/crypto-frontmatter that referenced this pull request Jan 31, 2024
[![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/turbo)) | [`^1.11.3` ->
`^1.12.0`](https://renovatebot.com/diffs/npm/turbo/1.11.3/1.12.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0):
Turborepo v1.12.0

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.0 -->

#### What's Changed

##### Docs

- General CI steps on doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6894
- \[Docs] create-new.mdx - npm double slash typo fix by
[@&#8203;Firfi](https://togithub.com/Firfi) in
[vercel/turbo#6933
- fix(docs): correct option heading by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6973
- Clean up inputs doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6980
- fix(docs): typo in `what-to-cache.mdx` by
[@&#8203;pjlangley](https://togithub.com/pjlangley) in
[vercel/turbo#6960
- fix(docs): update vercel.mdx by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6987
- Doc for running setup tasks prior to development tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6999
- Add Glossary to sidebar. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7011
- fix(docs): remote cache go -> rust by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7082
- Use `exports` in Internal Packages doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7079
- fix: typo in github-actions.mdx by
[@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in
[vercel/turbo#7069
- Document glob spec. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7076
- Document handling of Node.js versions, OS, and arch. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7072
- Add generalized deployment advice for Prisma doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7130
- \[DO NOT MERGE] feat(telemetry): cli reference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6826
- \[DO NOT MERGE] feat(telemetry): feature docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6827
- \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7155

##### create-turbo

- release(turborepo): 1.11.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6891
- release(turborepo): 1.11.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6975
- release(turborepo): 1.11.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6997
- release(turborepo): 1.11.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7157
- release(turborepo): 1.11.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7170

##### Examples

- chore(deps-dev): bump the example-dependencies group in
/examples/with-shell-commands with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[vercel/turbo#6901
- Update dependencies in examples. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6920
- Fix with-svelte-example by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#6986
- fix(examples): fontSize type is number not string by
[@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in
[vercel/turbo#7005
- Fix Svelte package export map by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#7007
- fix(examples): basic generator by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7022
- fix(examples): ui turbo.json no longer needed by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7087
- chore(docs): remove unnecessary spaces by
[@&#8203;GyoHeon](https://togithub.com/GyoHeon) in
[vercel/turbo#7118
- chore: install jest in examples/kitchen-sink by
[@&#8203;llllvvuu](https://togithub.com/llllvvuu) in
[vercel/turbo#7132

##### Changelog

- fix: Make execution state use auth crate by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6880
- fix(telemetry): obfuscate rc endpoint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6925
- fix: treat empty environement variables as unset by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6929
- Error out if dependent flags are provided without their parent by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6780
- fix: make sure that our concurrency check ignore packages without task
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6790
- chore: avoid panic on invalid directory filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6955
- feat(Turborepo): Use a wrapper around the raw strings we pass to
globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6847
- fix: ignore permission errors during globbing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6957
- fix: avoid retry panic by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6926
- add better messaging when running with api flag by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6927
- fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon)
in
[vercel/turbo#6959
- Fix/unrevert daemon discovery by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6712
- feat(telemetry): track prune args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6970
- feat(lockfiles): support Yarn 4 patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6974
- feat(telemetry): track global args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6972
- fix: update Cargo.lock with correct workspace dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6990
- fix: rewrite prefix after carriage return by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6989
- feat(telemetry): track run arguments by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6985
- chore: remove usage of command groups by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6992
- chore: add reason for service being unavailable by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6993
- fix(turbo): validate graph extension by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6995
- chore: Adjusted error message for APIClient errors in cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6996
- fix(integration): update help integration test by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7017
- fix(cache): truncate metadata file when writing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7016
- fix(prune): correctly create symlinks to directories by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6983
- fix: forward fixes for LSP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7023
- fix(daemon): make sure cookie dir exists before writing cookie by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7015
- feat(telemetry): track more daemon errors by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7031
- chore: revert auth json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7026
- chore: prefactor process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7034
- chore(Turborepo): Scope down opts needed by the visitor, remove run
lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7032
- fix: Examples turbo.json outputs key by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#7071
- fix: filter package.json files that are subfolders of other packages
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#7025
- feat: update `@turbo/repository` to use new terminology by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7078
- fix(turbo): sort dependents and dependencies during normalization by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7018
- release: `@turbo/repository@0.0.1-canary.3` by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7090
- chore(daemon): swap fallback logs to debug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7102
- feat: add ability to spawn child process with pty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7077
- chore(Turborepo): Move more CLI stuff out of run code by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7085
- fix(hashing): include gitignored files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7105
- fix(clippy): remove unused import by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7120
- fix(hashing): include default files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7106
- chore: add tracing to pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7127
- fix disable echoctl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7109
- feat(telemetry): enable feature by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7122
- feat: enable pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7128
- feat(hashing): support $TURBO_DEFAULT$ in inputs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7113
- fix: process manager tests tty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7156
- fix(tests): mock telemetry config by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7168
- chore: clean pnpm lockfile by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7171
- fix: tasks with no newline by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7175

#### New Contributors

- [@&#8203;Firfi](https://togithub.com/Firfi) made their first
contribution in
[vercel/turbo#6933
- [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first
contribution in
[vercel/turbo#6960
- [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first
contribution in
[vercel/turbo#6986
- [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their
first contribution in
[vercel/turbo#7005
- [@&#8203;nirban07](https://togithub.com/nirban07) made their first
contribution in
[vercel/turbo#7008
- [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first
contribution in
[vercel/turbo#7078
- [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their
first contribution in
[vercel/turbo#7069
- [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first
contribution in
[vercel/turbo#7118
- [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first
contribution in
[vercel/turbo#7132

**Full Changelog**:
vercel/turbo@v1.11.3...v1.12.0

</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 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/levaintech/frontmatter).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to Asjas/platform that referenced this pull request Jan 31, 2024
[![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/turbo)) | [`1.11.3` ->
`1.12.0`](https://renovatebot.com/diffs/npm/turbo/1.11.3/1.12.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0):
Turborepo v1.12.0

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.0 -->

#### What's Changed

##### Docs

- General CI steps on doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6894
- \[Docs] create-new.mdx - npm double slash typo fix by
[@&#8203;Firfi](https://togithub.com/Firfi) in
[vercel/turbo#6933
- fix(docs): correct option heading by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6973
- Clean up inputs doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6980
- fix(docs): typo in `what-to-cache.mdx` by
[@&#8203;pjlangley](https://togithub.com/pjlangley) in
[vercel/turbo#6960
- fix(docs): update vercel.mdx by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6987
- Doc for running setup tasks prior to development tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6999
- Add Glossary to sidebar. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7011
- fix(docs): remote cache go -> rust by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7082
- Use `exports` in Internal Packages doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7079
- fix: typo in github-actions.mdx by
[@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in
[vercel/turbo#7069
- Document glob spec. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7076
- Document handling of Node.js versions, OS, and arch. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7072
- Add generalized deployment advice for Prisma doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7130
- \[DO NOT MERGE] feat(telemetry): cli reference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6826
- \[DO NOT MERGE] feat(telemetry): feature docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6827
- \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7155

##### create-turbo

- release(turborepo): 1.11.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6891
- release(turborepo): 1.11.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6975
- release(turborepo): 1.11.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6997
- release(turborepo): 1.11.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7157
- release(turborepo): 1.11.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7170

##### Examples

- chore(deps-dev): bump the example-dependencies group in
/examples/with-shell-commands with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[vercel/turbo#6901
- Update dependencies in examples. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6920
- Fix with-svelte-example by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#6986
- fix(examples): fontSize type is number not string by
[@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in
[vercel/turbo#7005
- Fix Svelte package export map by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#7007
- fix(examples): basic generator by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7022
- fix(examples): ui turbo.json no longer needed by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7087
- chore(docs): remove unnecessary spaces by
[@&#8203;GyoHeon](https://togithub.com/GyoHeon) in
[vercel/turbo#7118
- chore: install jest in examples/kitchen-sink by
[@&#8203;llllvvuu](https://togithub.com/llllvvuu) in
[vercel/turbo#7132

##### Changelog

- fix: Make execution state use auth crate by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6880
- fix(telemetry): obfuscate rc endpoint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6925
- fix: treat empty environement variables as unset by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6929
- Error out if dependent flags are provided without their parent by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6780
- fix: make sure that our concurrency check ignore packages without task
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6790
- chore: avoid panic on invalid directory filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6955
- feat(Turborepo): Use a wrapper around the raw strings we pass to
globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6847
- fix: ignore permission errors during globbing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6957
- fix: avoid retry panic by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6926
- add better messaging when running with api flag by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6927
- fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon)
in
[vercel/turbo#6959
- Fix/unrevert daemon discovery by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6712
- feat(telemetry): track prune args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6970
- feat(lockfiles): support Yarn 4 patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6974
- feat(telemetry): track global args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6972
- fix: update Cargo.lock with correct workspace dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6990
- fix: rewrite prefix after carriage return by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6989
- feat(telemetry): track run arguments by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6985
- chore: remove usage of command groups by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6992
- chore: add reason for service being unavailable by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6993
- fix(turbo): validate graph extension by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6995
- chore: Adjusted error message for APIClient errors in cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6996
- fix(integration): update help integration test by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7017
- fix(cache): truncate metadata file when writing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7016
- fix(prune): correctly create symlinks to directories by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6983
- fix: forward fixes for LSP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7023
- fix(daemon): make sure cookie dir exists before writing cookie by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7015
- feat(telemetry): track more daemon errors by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7031
- chore: revert auth json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7026
- chore: prefactor process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7034
- chore(Turborepo): Scope down opts needed by the visitor, remove run
lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7032
- fix: Examples turbo.json outputs key by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#7071
- fix: filter package.json files that are subfolders of other packages
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#7025
- feat: update `@turbo/repository` to use new terminology by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7078
- fix(turbo): sort dependents and dependencies during normalization by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7018
- release: `@turbo/repository@0.0.1-canary.3` by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7090
- chore(daemon): swap fallback logs to debug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7102
- feat: add ability to spawn child process with pty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7077
- chore(Turborepo): Move more CLI stuff out of run code by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7085
- fix(hashing): include gitignored files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7105
- fix(clippy): remove unused import by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7120
- fix(hashing): include default files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7106
- chore: add tracing to pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7127
- fix disable echoctl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7109
- feat(telemetry): enable feature by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7122
- feat: enable pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7128
- feat(hashing): support $TURBO_DEFAULT$ in inputs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7113
- fix: process manager tests tty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7156
- fix(tests): mock telemetry config by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7168
- chore: clean pnpm lockfile by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7171
- fix: tasks with no newline by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7175

#### New Contributors

- [@&#8203;Firfi](https://togithub.com/Firfi) made their first
contribution in
[vercel/turbo#6933
- [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first
contribution in
[vercel/turbo#6960
- [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first
contribution in
[vercel/turbo#6986
- [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their
first contribution in
[vercel/turbo#7005
- [@&#8203;nirban07](https://togithub.com/nirban07) made their first
contribution in
[vercel/turbo#7008
- [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first
contribution in
[vercel/turbo#7078
- [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their
first contribution in
[vercel/turbo#7069
- [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first
contribution in
[vercel/turbo#7118
- [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first
contribution in
[vercel/turbo#7132

**Full Changelog**:
vercel/turbo@v1.11.3...v1.12.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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/Asjas/platform).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to inabagumi/shinju-date that referenced this pull request Jan 31, 2024
[![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/turbo)
([source](https://togithub.com/vercel/turbo/tree/HEAD/packages/eslint-config-turbo))
| [`^1.11.3` ->
`^1.12.0`](https://renovatebot.com/diffs/npm/eslint-config-turbo/1.11.3/1.12.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.11.3` ->
`^1.12.0`](https://renovatebot.com/diffs/npm/turbo/1.11.3/1.12.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.11.3/1.12.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo (eslint-config-turbo)</summary>

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0):
Turborepo v1.12.0

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.0 -->

#### What's Changed

##### Docs

- General CI steps on doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6894
- \[Docs] create-new.mdx - npm double slash typo fix by
[@&#8203;Firfi](https://togithub.com/Firfi) in
[vercel/turbo#6933
- fix(docs): correct option heading by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6973
- Clean up inputs doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6980
- fix(docs): typo in `what-to-cache.mdx` by
[@&#8203;pjlangley](https://togithub.com/pjlangley) in
[vercel/turbo#6960
- fix(docs): update vercel.mdx by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6987
- Doc for running setup tasks prior to development tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6999
- Add Glossary to sidebar. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7011
- fix(docs): remote cache go -> rust by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7082
- Use `exports` in Internal Packages doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7079
- fix: typo in github-actions.mdx by
[@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in
[vercel/turbo#7069
- Document glob spec. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7076
- Document handling of Node.js versions, OS, and arch. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7072
- Add generalized deployment advice for Prisma doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7130
- \[DO NOT MERGE] feat(telemetry): cli reference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6826
- \[DO NOT MERGE] feat(telemetry): feature docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6827
- \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7155

##### create-turbo

- release(turborepo): 1.11.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6891
- release(turborepo): 1.11.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6975
- release(turborepo): 1.11.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6997
- release(turborepo): 1.11.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7157
- release(turborepo): 1.11.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7170

##### Examples

- chore(deps-dev): bump the example-dependencies group in
/examples/with-shell-commands with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[vercel/turbo#6901
- Update dependencies in examples. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6920
- Fix with-svelte-example by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#6986
- fix(examples): fontSize type is number not string by
[@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in
[vercel/turbo#7005
- Fix Svelte package export map by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#7007
- fix(examples): basic generator by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7022
- fix(examples): ui turbo.json no longer needed by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7087
- chore(docs): remove unnecessary spaces by
[@&#8203;GyoHeon](https://togithub.com/GyoHeon) in
[vercel/turbo#7118
- chore: install jest in examples/kitchen-sink by
[@&#8203;llllvvuu](https://togithub.com/llllvvuu) in
[vercel/turbo#7132

##### Changelog

- fix: Make execution state use auth crate by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6880
- fix(telemetry): obfuscate rc endpoint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6925
- fix: treat empty environement variables as unset by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6929
- Error out if dependent flags are provided without their parent by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6780
- fix: make sure that our concurrency check ignore packages without task
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6790
- chore: avoid panic on invalid directory filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6955
- feat(Turborepo): Use a wrapper around the raw strings we pass to
globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6847
- fix: ignore permission errors during globbing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6957
- fix: avoid retry panic by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6926
- add better messaging when running with api flag by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6927
- fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon)
in
[vercel/turbo#6959
- Fix/unrevert daemon discovery by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6712
- feat(telemetry): track prune args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6970
- feat(lockfiles): support Yarn 4 patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6974
- feat(telemetry): track global args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6972
- fix: update Cargo.lock with correct workspace dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6990
- fix: rewrite prefix after carriage return by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6989
- feat(telemetry): track run arguments by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6985
- chore: remove usage of command groups by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6992
- chore: add reason for service being unavailable by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6993
- fix(turbo): validate graph extension by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6995
- chore: Adjusted error message for APIClient errors in cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6996
- fix(integration): update help integration test by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7017
- fix(cache): truncate metadata file when writing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7016
- fix(prune): correctly create symlinks to directories by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6983
- fix: forward fixes for LSP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7023
- fix(daemon): make sure cookie dir exists before writing cookie by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7015
- feat(telemetry): track more daemon errors by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7031
- chore: revert auth json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7026
- chore: prefactor process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7034
- chore(Turborepo): Scope down opts needed by the visitor, remove run
lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7032
- fix: Examples turbo.json outputs key by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#7071
- fix: filter package.json files that are subfolders of other packages
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#7025
- feat: update `@turbo/repository` to use new terminology by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7078
- fix(turbo): sort dependents and dependencies during normalization by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7018
- release: `@turbo/repository@0.0.1-canary.3` by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7090
- chore(daemon): swap fallback logs to debug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7102
- feat: add ability to spawn child process with pty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7077
- chore(Turborepo): Move more CLI stuff out of run code by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7085
- fix(hashing): include gitignored files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7105
- fix(clippy): remove unused import by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7120
- fix(hashing): include default files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7106
- chore: add tracing to pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7127
- fix disable echoctl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7109
- feat(telemetry): enable feature by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7122
- feat: enable pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7128
- feat(hashing): support $TURBO_DEFAULT$ in inputs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7113
- fix: process manager tests tty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7156
- fix(tests): mock telemetry config by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7168
- chore: clean pnpm lockfile by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7171
- fix: tasks with no newline by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7175

#### New Contributors

- [@&#8203;Firfi](https://togithub.com/Firfi) made their first
contribution in
[vercel/turbo#6933
- [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first
contribution in
[vercel/turbo#6960
- [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first
contribution in
[vercel/turbo#6986
- [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their
first contribution in
[vercel/turbo#7005
- [@&#8203;nirban07](https://togithub.com/nirban07) made their first
contribution in
[vercel/turbo#7008
- [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first
contribution in
[vercel/turbo#7078
- [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their
first contribution in
[vercel/turbo#7069
- [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first
contribution in
[vercel/turbo#7118
- [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first
contribution in
[vercel/turbo#7132

**Full Changelog**:
vercel/turbo@v1.11.3...v1.12.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 these
updates again.

---

- [ ] <!-- rebase-check -->If you want to rebase/retry this PR, check
this box

---

This PR has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/inabagumi/shinju-date).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE1My4yIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Feb 4, 2024
[![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/turbo)) | [`1.11.3` -> `1.12.2`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.12.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.2`](https://togithub.com/vercel/turbo/releases/tag/v1.12.2): Turborepo v1.12.2

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.1...v1.12.2)



#### What's Changed

##### create-turbo

-   release(turborepo): 1.12.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7193](https://togithub.com/vercel/turbo/pull/7193)

##### Changelog

-   feat(lockfile): traverse lockfile in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7178](https://togithub.com/vercel/turbo/pull/7178)
-   perf: remove duplicate git construction by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7194](https://togithub.com/vercel/turbo/pull/7194)
-   Make clippy happy by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7195](https://togithub.com/vercel/turbo/pull/7195)
-   fix: keep stdin open for persistent tasks by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7196](https://togithub.com/vercel/turbo/pull/7196)
-   add vc config dir by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7173](https://togithub.com/vercel/turbo/pull/7173)
-   fix(Turborepo): Handle spaces in path names in git status by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7197](https://togithub.com/vercel/turbo/pull/7197)
-   feat: enable vt processing on windows by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7158](https://togithub.com/vercel/turbo/pull/7158)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.1...v1.12.2

### [`v1.12.1`](https://togithub.com/vercel/turbo/releases/tag/v1.12.1): Turborepo v1.12.1

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.0...v1.12.1)



#### What's Changed

##### Docs

-   docs: fix link in telemetry by [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) in [https://github.com/vercel/turbo/pull/7190](https://togithub.com/vercel/turbo/pull/7190)

##### create-turbo

-   release(turborepo): 1.12.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7177](https://togithub.com/vercel/turbo/pull/7177)

##### Changelog

-   Print telemetry warning on stderr by [@&#8203;laat](https://togithub.com/laat) in [https://github.com/vercel/turbo/pull/7189](https://togithub.com/vercel/turbo/pull/7189)
-   chore(integration): remove \_helpers & fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7172](https://togithub.com/vercel/turbo/pull/7172)

#### New Contributors

-   [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) made their first contribution in [https://github.com/vercel/turbo/pull/7190](https://togithub.com/vercel/turbo/pull/7190)
-   [@&#8203;laat](https://togithub.com/laat) made their first contribution in [https://github.com/vercel/turbo/pull/7189](https://togithub.com/vercel/turbo/pull/7189)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.0...v1.12.1

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0): Turborepo v1.12.0

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)



#### What's Changed

##### Docs

-   General CI steps on doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6894](https://togithub.com/vercel/turbo/pull/6894)
-   \[Docs] create-new.mdx - npm double slash typo fix by [@&#8203;Firfi](https://togithub.com/Firfi) in [https://github.com/vercel/turbo/pull/6933](https://togithub.com/vercel/turbo/pull/6933)
-   fix(docs): correct option heading by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6973](https://togithub.com/vercel/turbo/pull/6973)
-   Clean up inputs doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6980](https://togithub.com/vercel/turbo/pull/6980)
-   fix(docs): typo in `what-to-cache.mdx` by [@&#8203;pjlangley](https://togithub.com/pjlangley) in [https://github.com/vercel/turbo/pull/6960](https://togithub.com/vercel/turbo/pull/6960)
-   fix(docs): update vercel.mdx by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6987](https://togithub.com/vercel/turbo/pull/6987)
-   Doc for running setup tasks prior to development tasks. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6999](https://togithub.com/vercel/turbo/pull/6999)
-   Add Glossary to sidebar. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7011](https://togithub.com/vercel/turbo/pull/7011)
-   fix(docs): remote cache go -> rust by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7082](https://togithub.com/vercel/turbo/pull/7082)
-   Use `exports`  in Internal Packages doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7079](https://togithub.com/vercel/turbo/pull/7079)
-   fix: typo in github-actions.mdx by [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in [https://github.com/vercel/turbo/pull/7069](https://togithub.com/vercel/turbo/pull/7069)
-   Document glob spec. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7076](https://togithub.com/vercel/turbo/pull/7076)
-   Document handling of Node.js versions, OS, and arch. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7072](https://togithub.com/vercel/turbo/pull/7072)
-   Add generalized deployment advice for Prisma doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7130](https://togithub.com/vercel/turbo/pull/7130)
-   \[DO NOT MERGE] feat(telemetry): cli reference by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6826](https://togithub.com/vercel/turbo/pull/6826)
-   \[DO NOT MERGE] feat(telemetry): feature docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6827](https://togithub.com/vercel/turbo/pull/6827)
-   \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7155](https://togithub.com/vercel/turbo/pull/7155)

##### create-turbo

-   release(turborepo): 1.11.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6891](https://togithub.com/vercel/turbo/pull/6891)
-   release(turborepo): 1.11.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6975](https://togithub.com/vercel/turbo/pull/6975)
-   release(turborepo): 1.11.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6997](https://togithub.com/vercel/turbo/pull/6997)
-   release(turborepo): 1.11.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7157](https://togithub.com/vercel/turbo/pull/7157)
-   release(turborepo): 1.11.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7170](https://togithub.com/vercel/turbo/pull/7170)

##### Examples

-   chore(deps-dev): bump the example-dependencies group in /examples/with-shell-commands with 1 update by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/vercel/turbo/pull/6901](https://togithub.com/vercel/turbo/pull/6901)
-   Update dependencies in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6920](https://togithub.com/vercel/turbo/pull/6920)
-   Fix with-svelte-example by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [https://github.com/vercel/turbo/pull/6986](https://togithub.com/vercel/turbo/pull/6986)
-   fix(examples): fontSize type is number not string by [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in [https://github.com/vercel/turbo/pull/7005](https://togithub.com/vercel/turbo/pull/7005)
-   Fix Svelte package export map by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [https://github.com/vercel/turbo/pull/7007](https://togithub.com/vercel/turbo/pull/7007)
-   fix(examples): basic generator by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7022](https://togithub.com/vercel/turbo/pull/7022)
-   fix(examples): ui turbo.json no longer needed by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7087](https://togithub.com/vercel/turbo/pull/7087)
-   chore(docs): remove unnecessary spaces by [@&#8203;GyoHeon](https://togithub.com/GyoHeon) in [https://github.com/vercel/turbo/pull/7118](https://togithub.com/vercel/turbo/pull/7118)
-   chore: install jest in examples/kitchen-sink by [@&#8203;llllvvuu](https://togithub.com/llllvvuu) in [https://github.com/vercel/turbo/pull/7132](https://togithub.com/vercel/turbo/pull/7132)

##### Changelog

-   fix: Make execution state use auth crate by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6880](https://togithub.com/vercel/turbo/pull/6880)
-   fix(telemetry): obfuscate rc endpoint by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6925](https://togithub.com/vercel/turbo/pull/6925)
-   fix: treat empty environement variables as unset by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6929](https://togithub.com/vercel/turbo/pull/6929)
-   Error out if dependent flags are provided without their parent by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6780](https://togithub.com/vercel/turbo/pull/6780)
-   fix: make sure that our concurrency check ignore packages without task by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6790](https://togithub.com/vercel/turbo/pull/6790)
-   chore: avoid panic on invalid directory filters by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6955](https://togithub.com/vercel/turbo/pull/6955)
-   feat(Turborepo): Use a wrapper around the raw strings we pass to globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6847](https://togithub.com/vercel/turbo/pull/6847)
-   fix: ignore permission errors during globbing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6957](https://togithub.com/vercel/turbo/pull/6957)
-   fix: avoid retry panic by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6926](https://togithub.com/vercel/turbo/pull/6926)
-   add better messaging when running with api flag by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6927](https://togithub.com/vercel/turbo/pull/6927)
-   fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6959](https://togithub.com/vercel/turbo/pull/6959)
-   Fix/unrevert daemon discovery by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6712](https://togithub.com/vercel/turbo/pull/6712)
-   feat(telemetry): track prune args by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6970](https://togithub.com/vercel/turbo/pull/6970)
-   feat(lockfiles): support Yarn 4 patches by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6974](https://togithub.com/vercel/turbo/pull/6974)
-   feat(telemetry): track global args by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6972](https://togithub.com/vercel/turbo/pull/6972)
-   fix: update Cargo.lock with correct workspace dependencies by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6990](https://togithub.com/vercel/turbo/pull/6990)
-   fix: rewrite prefix after carriage return by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6989](https://togithub.com/vercel/turbo/pull/6989)
-   feat(telemetry): track run arguments by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6985](https://togithub.com/vercel/turbo/pull/6985)
-   chore: remove usage of command groups by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6992](https://togithub.com/vercel/turbo/pull/6992)
-   chore: add reason for service being unavailable by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6993](https://togithub.com/vercel/turbo/pull/6993)
-   fix(turbo): validate graph extension by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6995](https://togithub.com/vercel/turbo/pull/6995)
-   chore: Adjusted error message for APIClient errors in cache by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6996](https://togithub.com/vercel/turbo/pull/6996)
-   fix(integration): update help integration test by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7017](https://togithub.com/vercel/turbo/pull/7017)
-   fix(cache): truncate metadata file when writing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7016](https://togithub.com/vercel/turbo/pull/7016)
-   fix(prune): correctly create symlinks to directories  by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6983](https://togithub.com/vercel/turbo/pull/6983)
-   fix: forward fixes for LSP by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7023](https://togithub.com/vercel/turbo/pull/7023)
-   fix(daemon): make sure cookie dir exists before writing cookie by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7015](https://togithub.com/vercel/turbo/pull/7015)
-   feat(telemetry): track more daemon errors by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7031](https://togithub.com/vercel/turbo/pull/7031)
-   chore: revert auth json by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7026](https://togithub.com/vercel/turbo/pull/7026)
-   chore: prefactor process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7034](https://togithub.com/vercel/turbo/pull/7034)
-   chore(Turborepo): Scope down opts needed by the visitor, remove run lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7032](https://togithub.com/vercel/turbo/pull/7032)
-   fix: Examples turbo.json outputs key by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7071](https://togithub.com/vercel/turbo/pull/7071)
-   fix: filter package.json files that are subfolders of other packages by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7025](https://togithub.com/vercel/turbo/pull/7025)
-   feat: update `@turbo/repository` to use new terminology by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7078](https://togithub.com/vercel/turbo/pull/7078)
-   fix(turbo): sort dependents and dependencies during normalization by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7018](https://togithub.com/vercel/turbo/pull/7018)
-   release: `@turbo/repository@0.0.1-canary.3` by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7090](https://togithub.com/vercel/turbo/pull/7090)
-   chore(daemon): swap fallback logs to debug by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7102](https://togithub.com/vercel/turbo/pull/7102)
-   feat: add ability to spawn child process with pty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7077](https://togithub.com/vercel/turbo/pull/7077)
-   chore(Turborepo): Move more CLI stuff out of run code by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7085](https://togithub.com/vercel/turbo/pull/7085)
-   fix(hashing): include gitignored files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7105](https://togithub.com/vercel/turbo/pull/7105)
-   fix(clippy): remove unused import by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7120](https://togithub.com/vercel/turbo/pull/7120)
-   fix(hashing): include default files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7106](https://togithub.com/vercel/turbo/pull/7106)
-   chore: add tracing to pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7127](https://togithub.com/vercel/turbo/pull/7127)
-   fix disable echoctl by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7109](https://togithub.com/vercel/turbo/pull/7109)
-   feat(telemetry): enable feature by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7122](https://togithub.com/vercel/turbo/pull/7122)
-   feat: enable pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7128](https://togithub.com/vercel/turbo/pull/7128)
-   feat(hashing): support $TURBO_DEFAULT$ in inputs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7113](https://togithub.com/vercel/turbo/pull/7113)
-   fix: process manager tests tty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7156](https://togithub.com/vercel/turbo/pull/7156)
-   fix(tests): mock telemetry config by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7168](https://togithub.com/vercel/turbo/pull/7168)
-   chore: clean pnpm lockfile by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7171](https://togithub.com/vercel/turbo/pull/7171)
-   fix: tasks with no newline by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7175](https://togithub.com/vercel/turbo/pull/7175)

#### New Contributors

-   [@&#8203;Firfi](https://togithub.com/Firfi) made their first contribution in [https://github.com/vercel/turbo/pull/6933](https://togithub.com/vercel/turbo/pull/6933)
-   [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first contribution in [https://github.com/vercel/turbo/pull/6960](https://togithub.com/vercel/turbo/pull/6960)
-   [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first contribution in [https://github.com/vercel/turbo/pull/6986](https://togithub.com/vercel/turbo/pull/6986)
-   [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their first contribution in [https://github.com/vercel/turbo/pull/7005](https://togithub.com/vercel/turbo/pull/7005)
-   [@&#8203;nirban07](https://togithub.com/nirban07) made their first contribution in [https://github.com/vercel/turbo/pull/7008](https://togithub.com/vercel/turbo/pull/7008)
-   [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first contribution in [https://github.com/vercel/turbo/pull/7078](https://togithub.com/vercel/turbo/pull/7078)
-   [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their first contribution in [https://github.com/vercel/turbo/pull/7069](https://togithub.com/vercel/turbo/pull/7069)
-   [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first contribution in [https://github.com/vercel/turbo/pull/7118](https://togithub.com/vercel/turbo/pull/7118)
-   [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first contribution in [https://github.com/vercel/turbo/pull/7132](https://togithub.com/vercel/turbo/pull/7132)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.3...v1.12.0

### [`v1.11.3`](https://togithub.com/vercel/turbo/releases/tag/v1.11.3): Turborepo v1.11.3

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.2...v1.11.3)



#### What's Changed

##### Docs

-   Updated outdated Docs "Getting Started" > "Create a New Monorepo" by [@&#8203;Gogoro](https://togithub.com/Gogoro) in [https://github.com/vercel/turbo/pull/6786](https://togithub.com/vercel/turbo/pull/6786)
-   docs: fix typo under getting started by [@&#8203;denniscampos](https://togithub.com/denniscampos) in [https://github.com/vercel/turbo/pull/6817](https://togithub.com/vercel/turbo/pull/6817)

##### create-turbo

-   release(turborepo): 1.11.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6776](https://togithub.com/vercel/turbo/pull/6776)
-   release(turborepo): 1.11.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6791](https://togithub.com/vercel/turbo/pull/6791)
-   release(turborepo): 1.11.3-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6835](https://togithub.com/vercel/turbo/pull/6835)
-   release(turborepo): 1.11.3-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6890](https://togithub.com/vercel/turbo/pull/6890)

##### Examples

-   Bump turbo in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6766](https://togithub.com/vercel/turbo/pull/6766)
-   fix button prop appName from docs app by [@&#8203;Yunfei1982](https://togithub.com/Yunfei1982) in [https://github.com/vercel/turbo/pull/6794](https://togithub.com/vercel/turbo/pull/6794)
-   Ignore dist in shell commands example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6851](https://togithub.com/vercel/turbo/pull/6851)
-   fix(examples): Typo correction on design-system package.json by [@&#8203;GGalupo](https://togithub.com/GGalupo) in [https://github.com/vercel/turbo/pull/6859](https://togithub.com/vercel/turbo/pull/6859)

##### Changelog

-   chore: remove verbosity filter from chrome profile by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6779](https://togithub.com/vercel/turbo/pull/6779)
-   feat: add anon-profile flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6781](https://togithub.com/vercel/turbo/pull/6781)
-   chore: remove verbosity flag when running benchmark by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6782](https://togithub.com/vercel/turbo/pull/6782)
-   feat(gen): pass the command cwd through by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6795](https://togithub.com/vercel/turbo/pull/6795)
-   perf(yarn3): eagerly construct map from workspace paths to locators by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6797](https://togithub.com/vercel/turbo/pull/6797)
-   fix: add missing dependency to cargo lockfile by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6807](https://togithub.com/vercel/turbo/pull/6807)
-   refactor: Remove bookkeeping abstraction from turbo config by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6809](https://togithub.com/vercel/turbo/pull/6809)
-   chore: include response body if not valid JSON by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6796](https://togithub.com/vercel/turbo/pull/6796)
-   chore: add tracing to primary lockfile functions by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6800](https://togithub.com/vercel/turbo/pull/6800)
-   feat(turbo): telemetry client by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6743](https://togithub.com/vercel/turbo/pull/6743)
-   fix(telemetry): don’t track hash by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6828](https://togithub.com/vercel/turbo/pull/6828)
-   feat(telemetry): add README disabled note by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6829](https://togithub.com/vercel/turbo/pull/6829)
-   feat(telemetry): generic parent to child event by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6830](https://togithub.com/vercel/turbo/pull/6830)
-   Create wrapper for `dirs_next::config_dir()` by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6837](https://togithub.com/vercel/turbo/pull/6837)
-   fix: Allow for long symlinks by using append_link by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6838](https://togithub.com/vercel/turbo/pull/6838)
-   Use the sso team instead of the string 'sso' by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6867](https://togithub.com/vercel/turbo/pull/6867)
-   feat(telemetry): track client system info by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6868](https://togithub.com/vercel/turbo/pull/6868)
-   fix(yarn4): avoid overwriting non-npm protocols by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6723](https://togithub.com/vercel/turbo/pull/6723)
-   fix: avoid deleting cached package discovery data by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6872](https://togithub.com/vercel/turbo/pull/6872)
-   Make link command use auth crate instead of config token by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6870](https://togithub.com/vercel/turbo/pull/6870)
-   fix support bracket filepaths by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6877](https://togithub.com/vercel/turbo/pull/6877)
-   fix clippy 'errors' by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6881](https://togithub.com/vercel/turbo/pull/6881)
-   feat(telemetry): add run and repo events by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6876](https://togithub.com/vercel/turbo/pull/6876)
-   add base url getter to APIClient by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6888](https://togithub.com/vercel/turbo/pull/6888)
-   chore: tracing overhaul by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6869](https://togithub.com/vercel/turbo/pull/6869)

#### New Contributors

-   [@&#8203;Yunfei1982](https://togithub.com/Yunfei1982) made their first contribution in [https://github.com/vercel/turbo/pull/6794](https://togithub.com/vercel/turbo/pull/6794)
-   [@&#8203;Gogoro](https://togithub.com/Gogoro) made their first contribution in [https://github.com/vercel/turbo/pull/6786](https://togithub.com/vercel/turbo/pull/6786)
-   [@&#8203;denniscampos](https://togithub.com/denniscampos) made their first contribution in [https://github.com/vercel/turbo/pull/6817](https://togithub.com/vercel/turbo/pull/6817)
-   [@&#8203;jupapios](https://togithub.com/jupapios) made their first contribution in [https://github.com/vercel/turbo/pull/6849](https://togithub.com/vercel/turbo/pull/6849)
-   [@&#8203;GGalupo](https://togithub.com/GGalupo) made their first contribution in [https://github.com/vercel/turbo/pull/6859](https://togithub.com/vercel/turbo/pull/6859)
-   [@&#8203;bb8dd](https://togithub.com/bb8dd) made their first contribution in [https://github.com/vercel/turbo/pull/6862](https://togithub.com/vercel/turbo/pull/6862)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.2...v1.11.3

### [`v1.11.2`](https://togithub.com/vercel/turbo/releases/tag/v1.11.2): Turborepo v1.11.2

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.1...v1.11.2)



#### What's Changed

##### Docs

-   Update yarn support policy. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6757](https://togithub.com/vercel/turbo/pull/6757)

##### create-turbo

-   release(turborepo): 1.11.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6742](https://togithub.com/vercel/turbo/pull/6742)
-   release(turborepo): 1.11.2-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6771](https://togithub.com/vercel/turbo/pull/6771)

##### Examples

-   Add transpilePackages to `with-tailwind` example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6746](https://togithub.com/vercel/turbo/pull/6746)
-   Update README for with-tailwind. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6755](https://togithub.com/vercel/turbo/pull/6755)
-   Remove source key from with-docker example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6759](https://togithub.com/vercel/turbo/pull/6759)
-   Use `"strict": true`  for TypeScript in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6762](https://togithub.com/vercel/turbo/pull/6762)

##### Changelog

-   chore: avoid panics in berry lockfile by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6725](https://togithub.com/vercel/turbo/pull/6725)
-   fix: remove placeholder duration from cache metadata by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6756](https://togithub.com/vercel/turbo/pull/6756)
-   chore: Remove hash comparison code by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6758](https://togithub.com/vercel/turbo/pull/6758)
-   fix: ignore exit codes when child killed by manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6767](https://togithub.com/vercel/turbo/pull/6767)
-   fix: make assertion assert something by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6768](https://togithub.com/vercel/turbo/pull/6768)
-   Allow forcing use of daemon by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6764](https://togithub.com/vercel/turbo/pull/6764)
-   fix: avoid double slash if glob ends with slash by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6772](https://togithub.com/vercel/turbo/pull/6772)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.1...v1.11.2

### [`v1.11.1`](https://togithub.com/vercel/turbo/releases/tag/v1.11.1): Turborepo v1.11.1

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.0...v1.11.1)



#### What's Changed

##### create-turbo

-   release(turborepo): 1.11.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6706](https://togithub.com/vercel/turbo/pull/6706)
-   release(turborepo): 1.11.1-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6741](https://togithub.com/vercel/turbo/pull/6741)

##### Examples

-   Example with only shell commands. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6688](https://togithub.com/vercel/turbo/pull/6688)
-   Update with-tailwind example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6575](https://togithub.com/vercel/turbo/pull/6575)
-   Mix of server and client components in basic example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6682](https://togithub.com/vercel/turbo/pull/6682)

##### Changelog

-   chore(tests): cleanup setup scripts by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6700](https://togithub.com/vercel/turbo/pull/6700)
-   fix: limit the amount of logs we send to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6691](https://togithub.com/vercel/turbo/pull/6691)
-   chore(Turborepo): Bump npm rust package version by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6721](https://togithub.com/vercel/turbo/pull/6721)
-   fix: properly catch sigterm sent from global by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6724](https://togithub.com/vercel/turbo/pull/6724)
-   chore(ignore): exclude rustc-ice files by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6733](https://togithub.com/vercel/turbo/pull/6733)
-   Fix behaviour when discovering files for global hashing by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6738](https://togithub.com/vercel/turbo/pull/6738)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.0...v1.11.1

### [`v1.11.0`](https://togithub.com/vercel/turbo/releases/tag/v1.11.0): Turborepo v1.11.0

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.16...v1.11.0)



#### What's Changed

##### Docs

-   feat(docs): document support policy by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6277](https://togithub.com/vercel/turbo/pull/6277)
-   fix(docs): correct support typo by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6313](https://togithub.com/vercel/turbo/pull/6313)
-   fix(docs): Add full stop punctuation and add inifinitive marker to verb by [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) in [https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
-   docs: Added nested workspaces under troubleshooting by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6342](https://togithub.com/vercel/turbo/pull/6342)
-   docs: document --profile flag by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6371](https://togithub.com/vercel/turbo/pull/6371)
-   fix(docs): clarify output mode for Dockerfile by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6385](https://togithub.com/vercel/turbo/pull/6385)
-   docs: add github actions/cache example to github ci docs by [@&#8203;austinwoon](https://togithub.com/austinwoon) in [https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
-   docs: Fix typo 'specifing -> specifying' by [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) in [https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
-   Improved TSConfigs in examples by [@&#8203;mattpocock](https://togithub.com/mattpocock) in [https://github.com/vercel/turbo/pull/6396](https://togithub.com/vercel/turbo/pull/6396)
-   docs: update formatting on --graph option by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6487](https://togithub.com/vercel/turbo/pull/6487)
-   Capitalization. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6561](https://togithub.com/vercel/turbo/pull/6561)
-   chore(docs): remove backticks from title/desc meta tags on CLI reference pages by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6580](https://togithub.com/vercel/turbo/pull/6580)
-   feat(docs): add node version compatibility for examples by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6581](https://togithub.com/vercel/turbo/pull/6581)
-   fix(docs): update inconsistent CLI headings by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6591](https://togithub.com/vercel/turbo/pull/6591)
-   feat(docs): add FAQ entry for non-JS workspaces in the codebase by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6612](https://togithub.com/vercel/turbo/pull/6612)
-   chore(docs): tweak getting started docs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6597](https://togithub.com/vercel/turbo/pull/6597)
-   docs: Added root internal dependencies explanation by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6622](https://togithub.com/vercel/turbo/pull/6622)
-   Capitalize the Tools category in sidebar. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6697](https://togithub.com/vercel/turbo/pull/6697)
-   Add yarn v2+ caveat for installing Internal Packages. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6696](https://togithub.com/vercel/turbo/pull/6696)
-   Update command-line-reference.mdx for --log-prefix CLI option by [@&#8203;marcneubauer](https://togithub.com/marcneubauer) in [https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

##### create-turbo

-   release(turborepo): 1.10.16 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6221](https://togithub.com/vercel/turbo/pull/6221)
-   release(turborepo): 1.10.17-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6329](https://togithub.com/vercel/turbo/pull/6329)
-   chore(turbo-utils): Remove tsup build by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6301](https://togithub.com/vercel/turbo/pull/6301)
-   release(turborepo): 1.10.17-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6448](https://togithub.com/vercel/turbo/pull/6448)
-   release(turborepo): 1.10.17-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6454](https://togithub.com/vercel/turbo/pull/6454)
-   release(turborepo): 1.10.17-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6502](https://togithub.com/vercel/turbo/pull/6502)
-   Re-up create-turbo. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6439](https://togithub.com/vercel/turbo/pull/6439)
-   release(turborepo): 1.10.17-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6521](https://togithub.com/vercel/turbo/pull/6521)
-   release(turborepo): 1.10.17-canary.5 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6549](https://togithub.com/vercel/turbo/pull/6549)
-   release(turborepo): 1.10.17-canary.6 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6610](https://togithub.com/vercel/turbo/pull/6610)
-   release(turborepo): 1.10.17-canary.7 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6629](https://togithub.com/vercel/turbo/pull/6629)
-   release(turborepo): 1.10.17-canary.8 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6630](https://togithub.com/vercel/turbo/pull/6630)
-   release(turborepo): 1.10.17-canary.9 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6667](https://togithub.com/vercel/turbo/pull/6667)
-   release(turborepo): 1.10.17-canary.10 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6698](https://togithub.com/vercel/turbo/pull/6698)

##### turbo-ignore

-   fix(turbo-ignore): better error for invalid commit by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6330](https://togithub.com/vercel/turbo/pull/6330)
-   Add \[vercel only <workspace>] by [@&#8203;m1heng](https://togithub.com/m1heng) in [https://github.com/vercel/turbo/pull/6579](https://togithub.com/vercel/turbo/pull/6579)

##### eslint

-   feat(Turborepo): Check env var indexing by literals by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6254](https://togithub.com/vercel/turbo/pull/6254)

##### Examples

-   chore(examples/with-svelte): regenerate apps with sveltekit by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6214](https://togithub.com/vercel/turbo/pull/6214)
-   feat(examples): update non-monorepo to pnpm by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6337](https://togithub.com/vercel/turbo/pull/6337)
-   fix(examples): updated with-docker devDependencies for successful build by [@&#8203;fa-901](https://togithub.com/fa-901) in [https://github.com/vercel/turbo/pull/5444](https://togithub.com/vercel/turbo/pull/5444)
-   feat(examples): upgrade ts by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6338](https://togithub.com/vercel/turbo/pull/6338)
-   feature(vue-nuxt): vue & nuxt example addition by [@&#8203;Neosoulink](https://togithub.com/Neosoulink) in [https://github.com/vercel/turbo/pull/6425](https://togithub.com/vercel/turbo/pull/6425)
-   Add Vue/Nuxt example to geting started. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6488](https://togithub.com/vercel/turbo/pull/6488)
-   Bump Next.js in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6533](https://togithub.com/vercel/turbo/pull/6533)
-   Set engine on create-turbo. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6568](https://togithub.com/vercel/turbo/pull/6568)
-   Remove create-react-app example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6556](https://togithub.com/vercel/turbo/pull/6556)
-   Update design-system example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6555](https://togithub.com/vercel/turbo/pull/6555)
-   Update with-docker example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6547](https://togithub.com/vercel/turbo/pull/6547)
-   Update with-rollup example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6573](https://togithub.com/vercel/turbo/pull/6573)
-   Update with-vite example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6574](https://togithub.com/vercel/turbo/pull/6574)
-   Package bumps for non-monorepo example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6553](https://togithub.com/vercel/turbo/pull/6553)
-   Update with-npm example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6558](https://togithub.com/vercel/turbo/pull/6558)
-   Update with-gatsby example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6570](https://togithub.com/vercel/turbo/pull/6570)
-   Update with-berry example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6550](https://togithub.com/vercel/turbo/pull/6550)
-   Update with-prisma example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6571](https://togithub.com/vercel/turbo/pull/6571)
-   fix(examples): with-berry readme update by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6607](https://togithub.com/vercel/turbo/pull/6607)
-   Update with-changesets. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6548](https://togithub.com/vercel/turbo/pull/6548)
-   Update with-react-native-web example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6572](https://togithub.com/vercel/turbo/pull/6572)
-   Update kitchen-sink example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6577](https://togithub.com/vercel/turbo/pull/6577)
-   Update with-yarn example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6557](https://togithub.com/vercel/turbo/pull/6557)
-   Update with-svelte-example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6576](https://togithub.com/vercel/turbo/pull/6576)

##### Changelog

-   feat(turborepo): Spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
-   fix: bias towards graph walk cancel over continue by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
-   feat: hook up task execution tracking by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
-   docs: Add the enabled config to turbo.json schema by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
-   chore: fix example test setup so output matches by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
-   fix: Respect color config for runcache output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
-   refactor(auth): Removed closure in login functions by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
-   chore(test): validate that pruning carries remoteCache fields correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
-   chore: Removed run stub feature by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
-   fix(Turborepo): Drop incorrect deprecation notice by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
-   chore(test): Add test to ensure env var changes task hash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
-   chore: run summary prefactor by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
-   refactor: Removed closure from logout by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
-   chore: Added panic handler to turborepo by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
-   refactor: Moving from anyhow to thiserror part 1 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
-   Clearer cache spinner message. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
-   fix: use cprintln instead of warn when no tasks are run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
-   fix: don't escape html when serializing dry runs by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
-   fix(Turborepo): Ensure process manager stays closed by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
-   fix(Turborepo): escape colons in log filenames by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6300](https://togithub.com/vercel/turbo/pull/6300)
-   feat: Hook up Run summary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6282](https://togithub.com/vercel/turbo/pull/6282)
-   port(Turborepo): Port escaping globs sent via rust daemon client by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6295](https://togithub.com/vercel/turbo/pull/6295)
-   feat(Turborepo): Validation checks for task names by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6293](https://togithub.com/vercel/turbo/pull/6293)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6303](https://togithub.com/vercel/turbo/pull/6303)
-   fix(lockfiles) trailing zero yaml parse by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6296](https://togithub.com/vercel/turbo/pull/6296)
-   Chore/update teamname by [@&#8203;padmaia](https://togithub.com/padmaia) in [https://github.com/vercel/turbo/pull/6317](https://togithub.com/vercel/turbo/pull/6317)
-   build(cargo): skip external build script with rust-analyzer by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6325](https://togithub.com/vercel/turbo/pull/6325)
-   fix: global hash divergence for empty version strings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6319](https://togithub.com/vercel/turbo/pull/6319)
-   fix: explicitly set turbo command name by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6332](https://togithub.com/vercel/turbo/pull/6332)
-   fix: task definition serialization by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6306](https://togithub.com/vercel/turbo/pull/6306)
-   fix: Empty command returns help text and not error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6340](https://togithub.com/vercel/turbo/pull/6340)
-   feat: add support for --parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6339](https://togithub.com/vercel/turbo/pull/6339)
-   fix(Turborepo): Drop root from calculation of in-scope workspaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6328](https://togithub.com/vercel/turbo/pull/6328)
-   feat(turbopack-ecmascript): calculate import.meta.url as an absolute path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6318](https://togithub.com/vercel/turbo/pull/6318)
-   feat(Turborepo): Add more detail to a cookie error variant by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6349](https://togithub.com/vercel/turbo/pull/6349)
-   fix(Turborepo): Bump x/net, go mod tidy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6355](https://togithub.com/vercel/turbo/pull/6355)
-   fix(turbo-utils): correct typo on package.json on types field by [@&#8203;stefanofa](https://togithub.com/stefanofa) in [https://github.com/vercel/turbo/pull/6360](https://togithub.com/vercel/turbo/pull/6360)
-   Triple chunk size heuristic by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6305](https://togithub.com/vercel/turbo/pull/6305)
-   improve resolving performance by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6304](https://togithub.com/vercel/turbo/pull/6304)
-   Devlow: refactor browser.ts by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [https://github.com/vercel/turbo/pull/6286](https://togithub.com/vercel/turbo/pull/6286)
-   make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6367](https://togithub.com/vercel/turbo/pull/6367)
-   Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by [@&#8203;jridgewell](https://togithub.com/jridgewell) in [https://github.com/vercel/turbo/pull/6354](https://togithub.com/vercel/turbo/pull/6354)
-   port(turborepo): Fixing API Client config tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6356](https://togithub.com/vercel/turbo/pull/6356)
-   fix: use which for package manager binary discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6370](https://togithub.com/vercel/turbo/pull/6370)
-   chore(tests): delete a mostly copy-pasted fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6366](https://togithub.com/vercel/turbo/pull/6366)
-   refactor: Moving to thiserror part 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6273](https://togithub.com/vercel/turbo/pull/6273)
-   refactor(turborepo): Changed cache misses to be a non-error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6369](https://togithub.com/vercel/turbo/pull/6369)
-   fix: use correct command for package managers by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6372](https://togithub.com/vercel/turbo/pull/6372)
-   chore(test): combine two fixtures for single package testing by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6374](https://togithub.com/vercel/turbo/pull/6374)
-   build: Update `swc

</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 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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
kodiakhq bot added a commit to weareinreach/TransMascFutures that referenced this pull request Feb 5, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@prisma/adapter-neon](https://togithub.com/prisma/prisma) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/adapter-neon)) | [`5.8.1` -> `5.9.1`](https://renovatebot.com/diffs/npm/@prisma%2fadapter-neon/5.8.1/5.9.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2fadapter-neon/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@prisma%2fadapter-neon/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2fadapter-neon/5.8.1/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2fadapter-neon/5.8.1/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@prisma/client](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/client)) | [`5.8.1` -> `5.9.1`](https://renovatebot.com/diffs/npm/@prisma%2fclient/5.8.1/5.9.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2fclient/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@prisma%2fclient/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2fclient/5.8.1/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2fclient/5.8.1/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-a11y](https://togithub.com/storybookjs/storybook/tree/next/code/addons/a11y) ([source](https://togithub.com/storybookjs/storybook/tree/HEAD/code/addons/a11y)) | [`7.6.10` -> `7.6.12`](https://renovatebot.com/diffs/npm/@storybook%2faddon-a11y/7.6.10/7.6.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-a11y/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-a11y/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-a11y/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-a11y/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-essentials](https://togithub.com/storybookjs/storybook/tree/next/code/addons/essentials) ([source](https://togithub.com/storybookjs/storybook/tree/HEAD/code/addons/essentials)) | [`7.6.10` -> `7.6.12`](https://renovatebot.com/diffs/npm/@storybook%2faddon-essentials/7.6.10/7.6.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-essentials/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-essentials/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-essentials/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-essentials/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-interactions](https://togithub.com/storybookjs/storybook/tree/next/code/addons/interactions) ([source](https://togithub.com/storybookjs/storybook/tree/HEAD/code/addons/interactions)) | [`7.6.10` -> `7.6.12`](https://renovatebot.com/diffs/npm/@storybook%2faddon-interactions/7.6.10/7.6.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-interactions/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-interactions/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-interactions/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-interactions/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-links](https://togithub.com/storybookjs/storybook/tree/next/code/addons/links) ([source](https://togithub.com/storybookjs/storybook/tree/HEAD/code/addons/links)) | [`7.6.10` -> `7.6.12`](https://renovatebot.com/diffs/npm/@storybook%2faddon-links/7.6.10/7.6.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-links/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-links/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-links/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-links/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/addon-viewport](https://togithub.com/storybookjs/storybook/tree/next/code/addons/viewport) ([source](https://togithub.com/storybookjs/storybook/tree/HEAD/code/addons/viewport)) | [`7.6.10` -> `7.6.12`](https://renovatebot.com/diffs/npm/@storybook%2faddon-viewport/7.6.10/7.6.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2faddon-viewport/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2faddon-viewport/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2faddon-viewport/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2faddon-viewport/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/blocks](https://togithub.com/storybookjs/storybook/tree/next/code/ui/blocks) ([source](https://togithub.com/storybookjs/storybook/tree/HEAD/code/ui/blocks)) | [`7.6.10` -> `7.6.12`](https://renovatebot.com/diffs/npm/@storybook%2fblocks/7.6.10/7.6.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fblocks/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fblocks/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fblocks/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fblocks/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/nextjs](https://togithub.com/storybookjs/storybook/tree/next/code/frameworks/nextjs) ([source](https://togithub.com/storybookjs/storybook/tree/HEAD/code/frameworks/nextjs)) | [`7.6.10` -> `7.6.12`](https://renovatebot.com/diffs/npm/@storybook%2fnextjs/7.6.10/7.6.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2fnextjs/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2fnextjs/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2fnextjs/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2fnextjs/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@storybook/react](https://togithub.com/storybookjs/storybook/tree/next/code/renderers/react) ([source](https://togithub.com/storybookjs/storybook/tree/HEAD/code/renderers/react)) | [`7.6.10` -> `7.6.12`](https://renovatebot.com/diffs/npm/@storybook%2freact/7.6.10/7.6.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@storybook%2freact/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@storybook%2freact/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@storybook%2freact/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@storybook%2freact/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@tabler/icons-react](https://tabler-icons.io) ([source](https://togithub.com/tabler/tabler-icons/tree/HEAD/packages/icons-react)) | [`2.46.0` -> `2.47.0`](https://renovatebot.com/diffs/npm/@tabler%2ficons-react/2.46.0/2.47.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@tabler%2ficons-react/2.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@tabler%2ficons-react/2.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@tabler%2ficons-react/2.46.0/2.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@tabler%2ficons-react/2.46.0/2.47.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`20.11.10` -> `20.11.16`](https://renovatebot.com/diffs/npm/@types%2fnode/20.11.10/20.11.16) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.11.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.11.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.11.10/20.11.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.11.10/20.11.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | [`18.2.48` -> `18.2.53`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.48/18.2.53) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.53?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.53?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.48/18.2.53?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.48/18.2.53?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@vercel/speed-insights](https://togithub.com/vercel/speed-insights) ([source](https://togithub.com/vercel/speed-insights/tree/HEAD/packages/web)) | [`1.0.8` -> `1.0.9`](https://renovatebot.com/diffs/npm/@vercel%2fspeed-insights/1.0.8/1.0.9) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@vercel%2fspeed-insights/1.0.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@vercel%2fspeed-insights/1.0.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@vercel%2fspeed-insights/1.0.8/1.0.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@vercel%2fspeed-insights/1.0.8/1.0.9?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [chromatic](https://www.chromatic.com) ([source](https://togithub.com/chromaui/chromatic-cli)) | [`10.6.1` -> `10.7.1`](https://renovatebot.com/diffs/npm/chromatic/10.6.1/10.7.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/chromatic/10.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/chromatic/10.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/chromatic/10.6.1/10.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/chromatic/10.6.1/10.7.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) ([source](https://togithub.com/vercel/turbo/tree/HEAD/packages/eslint-plugin-turbo)) | [`1.11.3` -> `1.12.2`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.11.3/1.12.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-turbo/1.11.3/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-turbo/1.11.3/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [husky](https://togithub.com/typicode/husky) | [`9.0.7` -> `9.0.10`](https://renovatebot.com/diffs/npm/husky/9.0.7/9.0.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/husky/9.0.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/husky/9.0.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/husky/9.0.7/9.0.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/husky/9.0.7/9.0.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [i18next](https://www.i18next.com) ([source](https://togithub.com/i18next/i18next)) | [`23.8.1` -> `23.8.2`](https://renovatebot.com/diffs/npm/i18next/23.8.1/23.8.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/i18next/23.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/i18next/23.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/i18next/23.8.1/23.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/i18next/23.8.1/23.8.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [i18next-http-backend](https://togithub.com/i18next/i18next-http-backend) | [`2.4.2` -> `2.4.3`](https://renovatebot.com/diffs/npm/i18next-http-backend/2.4.2/2.4.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/i18next-http-backend/2.4.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/i18next-http-backend/2.4.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/i18next-http-backend/2.4.2/2.4.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/i18next-http-backend/2.4.2/2.4.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [lint-staged](https://togithub.com/okonet/lint-staged) | [`15.2.0` -> `15.2.2`](https://renovatebot.com/diffs/npm/lint-staged/15.2.0/15.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/lint-staged/15.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/lint-staged/15.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/lint-staged/15.2.0/15.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lint-staged/15.2.0/15.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [nanoid](https://togithub.com/ai/nanoid) | [`5.0.4` -> `5.0.5`](https://renovatebot.com/diffs/npm/nanoid/5.0.4/5.0.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/nanoid/5.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/nanoid/5.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/nanoid/5.0.4/5.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/nanoid/5.0.4/5.0.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [pnpm](https://pnpm.io) ([source](https://togithub.com/pnpm/pnpm)) | [`8.15.0` -> `8.15.1`](https://renovatebot.com/diffs/npm/pnpm/8.15.0/8.15.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/pnpm/8.15.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/pnpm/8.15.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/pnpm/8.15.0/8.15.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/pnpm/8.15.0/8.15.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prettier](https://prettier.io) ([source](https://togithub.com/prettier/prettier)) | [`3.2.4` -> `3.2.5`](https://renovatebot.com/diffs/npm/prettier/3.2.4/3.2.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier/3.2.4/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier/3.2.4/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prettier-plugin-packagejson](https://togithub.com/matzkoh/prettier-plugin-packagejson) | [`2.4.9` -> `2.4.10`](https://renovatebot.com/diffs/npm/prettier-plugin-packagejson/2.4.9/2.4.10) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier-plugin-packagejson/2.4.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier-plugin-packagejson/2.4.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier-plugin-packagejson/2.4.9/2.4.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier-plugin-packagejson/2.4.9/2.4.10?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prisma](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/cli)) | [`5.8.1` -> `5.9.1`](https://renovatebot.com/diffs/npm/prisma/5.8.1/5.9.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prisma/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prisma/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prisma/5.8.1/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prisma/5.8.1/5.9.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [react-i18next](https://togithub.com/i18next/react-i18next) | [`14.0.1` -> `14.0.3`](https://renovatebot.com/diffs/npm/react-i18next/14.0.1/14.0.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/react-i18next/14.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/react-i18next/14.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/react-i18next/14.0.1/14.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/react-i18next/14.0.1/14.0.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [storybook](https://togithub.com/storybookjs/storybook/tree/next/code/lib/cli) ([source](https://togithub.com/storybookjs/storybook/tree/HEAD/code/lib/cli)) | [`7.6.10` -> `7.6.12`](https://renovatebot.com/diffs/npm/storybook/7.6.10/7.6.12) | [![age](https://developer.mend.io/api/mc/badges/age/npm/storybook/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/storybook/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/storybook/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/storybook/7.6.10/7.6.12?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.11.3` -> `1.12.2`](https://renovatebot.com/diffs/npm/turbo/1.11.3/1.12.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.11.3/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.11.3/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [type-fest](https://togithub.com/sindresorhus/type-fest) | [`4.10.1` -> `4.10.2`](https://renovatebot.com/diffs/npm/type-fest/4.10.1/4.10.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/type-fest/4.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/type-fest/4.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/type-fest/4.10.1/4.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/type-fest/4.10.1/4.10.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>prisma/prisma (@&#8203;prisma/adapter-neon)</summary>

### [`v5.9.1`](https://togithub.com/prisma/prisma/releases/tag/5.9.1)

[Compare Source](https://togithub.com/prisma/prisma/compare/5.9.0...5.9.1)

Today, we are issuing the `5.9.1` patch release.

#### Fixes in Prisma Client

In `5.9.0` we have changed our conditional exports in `@prisma/client`. This resulted in broken types for TypesScript users using certain combinations of `module`/`moduleResolution` settings. Additionally, it also caused a regression for Next.js users which have encountered invalid error messages from our side.

You can now try out `5.9.1` and let us know if you find a bug at https://pris.ly/prisma-prisma-bug-report

-   [\[5.9.0\] Getting strange types after generating #&#8203;22903](https://togithub.com/prisma/prisma/issues/22903)
-   [v5.9.0 / Don't generate type. And the error from the previous version is still there #&#8203;22896](https://togithub.com/prisma/prisma/issues/22896)
-   [\[5.9.0\] Error: Prisma Client is unable to run in an edge runtime. As an alternative, try Accelerate: https://pris.ly/d/accelerate. #&#8203;22893](https://togithub.com/prisma/prisma/issues/22893)
-   [`Error: Prisma Client is unable to run in an edge runtime. As an alternative, try Accelerate: https://pris.ly/d/accelerate.` #&#8203;22889](https://togithub.com/prisma/prisma/issues/22889)
-   [\[5.9.0\] All queries result in any type #&#8203;22888](https://togithub.com/prisma/prisma/issues/22888)
-   [Prisma edge runtime error #&#8203;22886](https://togithub.com/prisma/prisma/issues/22886)
-   [please how i cant fix this message issues #&#8203;22885](https://togithub.com/prisma/prisma/issues/22885)
-   [\[v5.9.0\] $extends always return any #&#8203;22884](https://togithub.com/prisma/prisma/issues/22884)
-   [\[5.9.0\] @&#8203;prisma/client in Next.js middleware #&#8203;22877](https://togithub.com/prisma/prisma/issues/22877)
-   [Error after Upgrading from 5.8.1 to 5.9.0 #&#8203;22875](https://togithub.com/prisma/prisma/issues/22875)
-   [\[5.9.0 Bug\] Prisma.TransactionClient appears to be missing types #&#8203;22870](https://togithub.com/prisma/prisma/issues/22870)

Note: many issues are duplicates.

### [`v5.9.0`](https://togithub.com/prisma/prisma/releases/tag/5.9.0)

[Compare Source](https://togithub.com/prisma/prisma/compare/5.8.1...5.9.0)

Today, we are excited to share the `5.9.0` stable release 🎉 

🌟 **Help us spread the word about Prisma by starring the repo ☝️ or [posting on X](https://twitter.com/intent/tweet?text=Check) about the release.**

This release brings a number of small improvements as we continue our work on larger features which you will hear more about in the coming weeks:

-   Improve the performance of relation queries by introducing JOINs (see [last release](https://togithub.com/prisma/prisma/releases/tag/5.8.0)).
-   Support deployment to edge functions (already available in Early Access, you can apply for trying it out by taking our [survey](https://pris.ly/survey/edge-functions-release-notes-5-9-0)).

#### Highlights

##### Optimized result sets for more efficient queries

We continue our efforts of the performance of Prisma Client queries. In [`5.1.0`](https://togithub.com/prisma/prisma/releases/tag/5.1.0), we introduced the `RETURNING` keyword for several queries on PostrgeSQL and CockroachDB. We now expanded the use of `RETURNING` to SQLite and a broader range of queries for existing databases (e.g. `delete` on PostgreSQL and MongoDB). You can learn more about the optimizations of the result sets in these PRs:

-   [feat(qe): avoid extra select on delete queries](https://togithub.com/prisma/prisma-engines/pull/4595)
-   [feat(qe): enable queries with returning for sqlite](https://togithub.com/prisma/prisma-engines/pull/46)

##### SQL Server: Return proper error for unreachable database

When trying migrate/introspect a SQL server instance that’s unreachable, Prisma ORM now returns the correct `P1001` error instead of failing without an error. Learn more in this PR: [SQL Server: Migrate/Introspection engine doesn't return P1001 error for unreachable url](https://togithub.com/prisma/prisma/issues/11407).

#### Fixes and improvements

##### Prisma Client

-   [Skip unnecessary `select` queries on create/update/delete](https://togithub.com/prisma/prisma/issues/8069)
-   [.prisma/client: Name can't start with a dot](https://togithub.com/prisma/prisma/issues/17685)
-   [Nested json is transformed to string when used “$type” key in object](https://togithub.com/prisma/prisma/issues/21454)
-   [Parallel execution with Promise.all causes P2024 error in version 5.8.0 due to connection limit](https://togithub.com/prisma/prisma/issues/22610)

##### Prisma Migrate

-   [SQL Server: Migrate/Introspection engine doesn't return P1001 error for unreachable url](https://togithub.com/prisma/prisma/issues/11407)
-   [Prisma errors fetching table 'CHECK_CONSTRAINTS' (which only exists in MySQL 8.0.16+) in MySQL 8.0.14](https://togithub.com/prisma/prisma/issues/19775)
-   [`ERROR: column "..." being dropped, try again later` when applying migrations with CRDB 23.1](https://togithub.com/prisma/prisma/issues/20851)

##### Language tools (e.g. VS Code)

-   [Extension wrongfully suggests Json as a valid type completion on Sqlite](https://togithub.com/prisma/language-tools/issues/1638)

#### Company news

##### Test edge functions support in Early Access

Today, the only way how to use Prisma ORM in edge functions (e.g. Cloudflare Workers or Vercel Edge Functions) is by using [Prisma Accelerate](https://www.prisma.io/data-platform/accelerate). However, we are actively working on making Prisma ORM compatible with edge functions natively as well. If you want to become an early tester, you can apply for the private Early Accessing program by taking this [survey](https://pris.ly/survey/edge-functions-release-notes-5-9-0).

##### We Transitioned Prisma Accelerate to IPv6 Without Anyone Noticing

Last year, AWS announced the decision to begin charging for IPv4 addresses beginning in February 2024. This move had a major impact on Prisma Accelerate, prompting us to go all-in on IPv6. [Learn more in this technical deep dive](https://www.prisma.io/blog/accelerate-ipv6-first) into how we approached our IPv6 migration, lessons learned, and the outcome for users of Prisma Accelerate.

#### Credits

Huge thanks to [@&#8203;laplab](https://togithub.com/laplab), [@&#8203;Druue](https://togithub.com/Druue), [@&#8203;anuraaga](https://togithub.com/anuraaga), [@&#8203;onichandame](https://togithub.com/onichandame), [@&#8203;LucianBuzzo](https://togithub.com/LucianBuzzo), [@&#8203;RobertCraigie](https://togithub.com/RobertCraigie), [@&#8203;almeidx](https://togithub.com/almeidx), [@&#8203;victorgdb](https://togithub.com/victorgdb), [@&#8203;tinola](https://togithub.com/tinola), [@&#8203;sampolahtinen](https://togithub.com/sampolahtinen), [@&#8203;AikoRamalho](https://togithub.com/AikoRamalho), [@&#8203;petradonka](https://togithub.com/petradonka) for helping!

</details>

<details>
<summary>storybookjs/storybook (@&#8203;storybook/addon-a11y)</summary>

### [`v7.6.12`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#7612)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.6.11...v7.6.12)

-   CLI: Fix `upgrade` detecting the wrong version of existing Storybooks - [#&#8203;25752](https://togithub.com/storybookjs/storybook/pull/25752), thanks [@&#8203;JReinhold](https://togithub.com/JReinhold)!

### [`v7.6.11`](https://togithub.com/storybookjs/storybook/blob/HEAD/CHANGELOG.md#7611)

[Compare Source](https://togithub.com/storybookjs/storybook/compare/v7.6.10...v7.6.11)

-   CLI: Update init for react native v7 - [#&#8203;25780](https://togithub.com/storybookjs/storybook/pull/25780), thanks [@&#8203;dannyhw](https://togithub.com/dannyhw)!
-   Codemods: Add support for multiple file extensions in runCodemod function - [#&#8203;25708](https://togithub.com/storybookjs/storybook/pull/25708), thanks [@&#8203;valentinpalkovic](https://togithub.com/valentinpalkovic)!

</details>

<details>
<summary>tabler/tabler-icons (@&#8203;tabler/icons-react)</summary>

### [`v2.47.0`](https://togithub.com/tabler/tabler-icons/releases/tag/v2.47.0): Release 2.47.0

[Compare Source](https://togithub.com/tabler/tabler-icons/compare/v2.46.0...v2.47.0)

<img src="https://github.com/tabler/tabler-icons/assets/1282324/d4de3bc6-95ed-4e1e-abf5-4c089f8838e0" width="584" alt="" />

##### 18 new icons:

-   `border-corner-ios`
-   `brightness-auto`
-   `clipboard-smile`
-   `database-smile`
-   `glass-champagne`
-   `glass-cocktail`
-   `glass-gin`
-   `image-in-picture`
-   `math-max-min`
-   `prong`
-   `shopping-bag-heart`
-   `temperature-snow`
-   `temperature-sun`
-   `transform-point-bottom-left`
-   `transform-point-bottom-right`
-   `transform-point-top-left`
-   `transform-point-top-right`
-   `transform-point`

Fixed icons: `brand-linktree`, `glass-off`, `glass`, `math-max`, `math-min`

</details>

<details>
<summary>vercel/speed-insights (@&#8203;vercel/speed-insights)</summary>

### [`v1.0.9`](https://togithub.com/vercel/speed-insights/releases/tag/1.0.9)

[Compare Source](https://togithub.com/vercel/speed-insights/compare/1.0.8...1.0.9)

Improved `route` support for Next.js pages router

</details>

<details>
<summary>chromaui/chromatic-cli (chromatic)</summary>

### [`v10.7.1`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1071-Fri-Feb-02-2024)

[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.7.0...v10.7.1)

##### 🐛 Bug Fix

-   Add Fallback getGitInfo if we cannot find the origin URL [#&#8203;910](https://togithub.com/chromaui/chromatic-cli/pull/910) ([@&#8203;thafryer](https://togithub.com/thafryer))

##### Authors: 1

-   Jarel Fryer ([@&#8203;thafryer](https://togithub.com/thafryer))

***

### [`v10.7.0`](https://togithub.com/chromaui/chromatic-cli/blob/HEAD/CHANGELOG.md#v1070-Fri-Feb-02-2024)

[Compare Source](https://togithub.com/chromaui/chromatic-cli/compare/v10.6.1...v10.7.0)

##### 🚀 Enhancement

-   Rename E2E peer dependencies [#&#8203;909](https://togithub.com/chromaui/chromatic-cli/pull/909) ([@&#8203;tevanoff](https://togithub.com/tevanoff))

##### Authors: 1

-   Todd Evanoff ([@&#8203;tevanoff](https://togithub.com/tevanoff))

***

</details>

<details>
<summary>vercel/turbo (eslint-plugin-turbo)</summary>

### [`v1.12.2`](https://togithub.com/vercel/turbo/releases/tag/v1.12.2): Turborepo v1.12.2

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.1...v1.12.2)



#### What's Changed

##### create-turbo

-   release(turborepo): 1.12.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7193](https://togithub.com/vercel/turbo/pull/7193)

##### Changelog

-   feat(lockfile): traverse lockfile in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7178](https://togithub.com/vercel/turbo/pull/7178)
-   perf: remove duplicate git construction by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7194](https://togithub.com/vercel/turbo/pull/7194)
-   Make clippy happy by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7195](https://togithub.com/vercel/turbo/pull/7195)
-   fix: keep stdin open for persistent tasks by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7196](https://togithub.com/vercel/turbo/pull/7196)
-   add vc config dir by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7173](https://togithub.com/vercel/turbo/pull/7173)
-   fix(Turborepo): Handle spaces in path names in git status by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7197](https://togithub.com/vercel/turbo/pull/7197)
-   feat: enable vt processing on windows by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7158](https://togithub.com/vercel/turbo/pull/7158)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.1...v1.12.2

### [`v1.12.1`](https://togithub.com/vercel/turbo/releases/tag/v1.12.1): Turborepo v1.12.1

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.0...v1.12.1)



#### What's Changed

##### Docs

-   docs: fix link in telemetry by [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) in [https://github.com/vercel/turbo/pull/7190](https://togithub.com/vercel/turbo/pull/7190)

##### create-turbo

-   release(turborepo): 1.12.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7177](https://togithub.com/vercel/turbo/pull/7177)

##### Changelog

-   Print telemetry warning on stderr by [@&#8203;laat](https://togithub.com/laat) in [https://github.com/vercel/turbo/pull/7189](https://togithub.com/vercel/turbo/pull/7189)
-   chore(integration): remove \_helpers & fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7172](https://togithub.com/vercel/turbo/pull/7172)

#### New Contributors

-   [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) made their first contribution in [https://github.com/vercel/turbo/pull/7190](https://togithub.com/vercel/turbo/pull/7190)
-   [@&#8203;laat](https://togithub.com/laat) made their first contribution in [https://github.com/vercel/turbo/pull/7189](https://togithub.com/vercel/turbo/pull/7189)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.0...v1.12.1

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0): Turborepo v1.12.0

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)



#### What's Changed

##### Docs

-   General CI steps on doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6894](https://togithub.com/vercel/turbo/pull/6894)
-   \[Docs] create-new.mdx - npm double slash typo fix by [@&#8203;Firfi](https://togithub.com/Firfi) in [https://github.com/vercel/turbo/pull/6933](https://togithub.com/vercel/turbo/pull/6933)
-   fix(docs): correct option heading by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6973](https://togithub.com/vercel/turbo/pull/6973)
-   Clean up inputs doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6980](https://togithub.com/vercel/turbo/pull/6980)
-   fix(docs): typo in `what-to-cache.mdx` by [@&#8203;pjlangley](https://togithub.com/pjlangley) in [https://github.com/vercel/turbo/pull/6960](https://togithub.com/vercel/turbo/pull/6960)
-   fix(docs): update vercel.mdx by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6987](https://togithub.com/vercel/turbo/pull/6987)
-   Doc for running setup tasks prior to development tasks. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6999](https://togithub.com/vercel/turbo/pull/6999)
-   Add Glossary to sidebar. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7011](https://togithub.com/vercel/turbo/pull/7011)
-   fix(docs): remote cache go -> rust by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7082](https://togithub.com/vercel/turbo/pull/7082)
-   Use `exports`  in Internal Packages doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7079](https://togithub.com/vercel/turbo/pull/7079)
-   fix: typo in github-actions.mdx by [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in [https://github.com/vercel/turbo/pull/7069](https://togithub.com/vercel/turbo/pull/7069)
-   Document glob spec. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7076](https://togithub.com/vercel/turbo/pull/7076)
-   Document handling of Node.js versions, OS, and arch. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7072](https://togithub.com/vercel/turbo/pull/7072)
-   Add generalized deployment advice for Prisma doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7130](https://togithub.com/vercel/turbo/pull/7130)
-   \[DO NOT MERGE] feat(telemetry): cli reference by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6826](https://togithub.com/vercel/turbo/pull/6826)
-   \[DO NOT MERGE] feat(telemetry): feature docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6827](https://togithub.com/vercel/turbo/pull/6827)
-   \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7155](https://togithub.com/vercel/turbo/pull/7155)

##### create-turbo

-   release(turborepo): 1.11.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6891](https://togithub.com/vercel/turbo/pull/6891)
-   release(turborepo): 1.11.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6975](https://togithub.com/vercel/turbo/pull/6975)
-   release(turborepo): 1.11.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6997](https://togithub.com/vercel/turbo/pull/6997)
-   release(turborepo): 1.11.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7157](https://togithub.com/vercel/turbo/pull/7157)
-   release(turborepo): 1.11.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7170](https://togithub.com/vercel/turbo/pull/7170)

##### Examples

-   chore(deps-dev): bump the example-dependencies group in /examples/with-shell-commands with 1 update by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/vercel/turbo/pull/6901](https://togithub.com/vercel/turbo/pull/6901)
-   Update dependencies in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6920](https://togithub.com/vercel/turbo/pull/6920)
-   Fix with-svelte-example by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [https://github.com/vercel/turbo/pull/6986](https://togithub.com/vercel/turbo/pull/6986)
-   fix(examples): fontSize type is number not string by [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in [https://github.com/vercel/turbo/pull/7005](https://togithub.com/vercel/turbo/pull/7005)
-   Fix Svelte package export map by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [https://github.com/vercel/turbo/pull/7007](https://togithub.com/vercel/turbo/pull/7007)
-   fix(examples): basic generator by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7022](https://togithub.com/vercel/turbo/pull/7022)
-   fix(examples): ui turbo.json no longer needed by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7087](https://togithub.com/vercel/turbo/pull/7087)
-   chore(docs): remove unnecessary spaces by [@&#8203;GyoHeon](https://togithub.com/GyoHeon) in [https://github.com/vercel/turbo/pull/7118](https://togithub.com/vercel/turbo/pull/7118)
-   chore: install jest in examples/kitchen-sink by [@&#8203;llllvvuu](https://togithub.com/llllvvuu) in [https://github.com/vercel/turbo/pull/7132](https://togithub.com/vercel/turbo/pull/7132)

##### Changelog

-   fix: Make execution state use auth crate by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6880](https://togithub.com/vercel/turbo/pull/6880)
-   fix(telemetry): obfuscate rc endpoint by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6925](https://togithub.com/vercel/turbo/pull/6925)
-   fix: treat empty environement variables as unset by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6929](https://togithub.com/vercel/turbo/pull/6929)
-   Error out if dependent flags are provided without their parent by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6780](https://togithub.com/vercel/turbo/pull/6780)
-   fix: make sure that our concurrency check ignore packages without task by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6790](https://togithub.com/vercel/turbo/pull/6790)
-   chore: avoid panic on invalid directory filters by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6955](https://togithub.com/vercel/turbo/pull/6955)
-   feat(Turborepo): Use a wrapper around the raw strings we pass to globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6847](https://togithub.com/vercel/turbo/pull/6847)
-   fix: ignore permission errors during globbing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6957](https://togithub.com/vercel/turbo/pull/6957)
-   fix: avoid retry panic by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6926](https://togithub.com/vercel/turbo/pull/6926)
-   add better messaging when running with api flag by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6927](https://togithub.com/vercel/turbo/pull/6927)
-   fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6959](https://togithub.com/vercel/turbo/pull/6959)
-   Fix/unrevert daemon discovery by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6712](https://togithub.com/vercel/turbo/pull/6712)
-   feat(telemetry): track prune args by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6970](https://togithub.com/vercel/turbo/pull/6970)
-   feat(lockfiles): support Yarn 4 patches by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6974](https://togithub.com/vercel/turbo/pull/6974)
-   feat(telemetry): track global args by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6972](https://togithub.com/vercel/turbo/pull/6972)
-   fix: update Cargo.lock with correct workspace dependencies by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6990](https://togithub.com/vercel/turbo/pull/6990)
-   fix: rewrite prefix after carriage return by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6989](https://togithub.com/vercel/turbo/pull/6989)
-   feat(telemetry): track run arguments by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6985](https://togithub.com/vercel/turbo/pull/6985)
-   chore: remove usage of command groups by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6992](https://togithub.com/vercel/turbo/pull/6992)
-   chore: add reason for service being unavailable by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6993](https://togithub.com/vercel/turbo/pull/6993)
-   fix(turbo): validate graph extension by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6995](https://togithub.com/vercel/turbo/pull/6995)
-   chore: Adjusted error message for APIClient errors in cache by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6996](https://togithub.com/vercel/turbo/pull/6996)
-   fix(integration): update help integration test by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7017](https://togithub.com/vercel/turbo/pull/7017)
-   fix(cache): truncate metadata file when writing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7016](https://togithub.com/vercel/turbo/pull/7016)
-   fix(prune): correctly create symlinks to directories  by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6983](https://togithub.com/vercel/turbo/pull/6983)
-   fix: forward fixes for LSP by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7023](https://togithub.com/vercel/turbo/pull/7023)
-   fix(daemon): make sure cookie dir exists before writing cookie by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7015](https://togithub.com/vercel/turbo/pull/7015)
-   feat(telemetry): track more daemon errors by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7031](https://togithub.com/vercel/turbo/pull/7031)
-   chore: revert auth json by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7026](https://togithub.com/vercel/turbo/pull/7026)
-   chore: prefactor process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7034](https://togithub.com/vercel/turbo/pull/7034)
-   chore(Turborepo): Scope down opts needed by the visitor, remove run lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7032](https://togithub.com/vercel/turbo/pull/7032)
-   fix: Examples turbo.json outputs key by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7071](https://togithub.com/vercel/turbo/pull/7071)
-   fix: filter package.json files that are subfolders of other packages by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7025](https://togithub.com/vercel/turbo/pull/7025)
-   feat: update `@turbo/repository` to use new terminology by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7078](https://togithub.com/vercel/turbo/pull/7078)
-   fix(turbo): sort dependents and dependencies during normalization by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7018](https://togithub.com/vercel/turbo/pull/7018)
-   release: `@turbo/repository@0.0.1-canary.3` by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7090](https://togithub.com/vercel/turbo/pull/7090)
-   chore(daemon): swap fallback logs to debug by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7102](https://togithub.com/vercel/turbo/pull/7102)
-   feat: add ability to spawn child process with pty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7077](https://togithub.com/vercel/turbo/pull/7077)
-   chore(Turborepo): Move more CLI stuff out of run code by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7085](https://togithub.com/vercel/turbo/pull/7085)
-   fix(hashing): include gitignored files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7105](https://togithub.com/vercel/turbo/pull/7105)
-   fix(clippy): remove unused import by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7120](https://togithub.com/vercel/turbo/pull/7120)
-   fix(hashing): include default files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7106](https://togithub.com/vercel/turbo/pull/7106)
-   chore: add tracing to pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7127](https://togithub.com/vercel/turbo/pull/7127)
-   fix disable echoctl by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7109](https://togithub.com/vercel/turbo/pull/7109)
-   feat(telemetry): enable feature by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7122](https://togithub.com/vercel/turbo/pull/7122)
-   feat: enable pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7128](https://togithub.com/vercel/turbo/pull/7128)
-   feat(hashing): support $TURBO_DEFAULT$ in inputs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7113](https://togithub.com/vercel/turbo/pull/7113)
-   fix: process manager tests tty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7156](https://togithub.com/vercel/turbo/pull/7156)
-   fix(tests): mock telemetry config by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7168](https://togithub.com/vercel/turbo/pull/7168)
-   chore: clean pnpm lockfile by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7171](https://togithub.com/vercel/turbo/pull/7171)
-   fix: tasks with no newline by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7175](https://togithub.com/vercel/turbo/pull/7175)

#### New Contributors

-   [@&#8203;Firfi](https://togithub.com/Firfi) made their first contribution in [https://github.com/vercel/turbo/pull/6933](https://togithub.com/vercel/turbo/pull/6933)
-   [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first contribution in [https://github.com/vercel/turbo/pull/6960](https://togithub.com/vercel/turbo/pull/6960)
-   [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first contribution in [https://github.com/vercel/turbo/pull/6986](https://togithub.com/vercel/turbo/pull/6986)
-   [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their first contribution in [https://github.com/vercel/turbo/pull/7005](https://togithub.com/vercel/turbo/pull/7005)
-   [@&#8203;nirban07](https://togithub.com/nirban07) made their first contribution in [https://github.com/vercel/turbo/pull/7008](https://togithub.com/vercel/turbo/pull/7008)
-   [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first contribution in [https://github.com/vercel/turbo/pull/7078](https://togithub.com/vercel/turbo/pull/7078)
-   [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their first contribution in [https://github.com/vercel/turbo/pull/7069](https://togithub.com/vercel/turbo/pull/7069)
-   [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first contribution in [https://github.com/vercel/turbo/pull/7118](https://togithub.com/vercel/turbo/pull/7118)
-   [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first contribution in [https://github.com/vercel/turbo/pull/7132](https://togithub.com/vercel/turbo/pull/7132)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.3...v1.12.0

</details>

<details>
<summary>typicode/husky (husky)</summary>

### [`v9.0.10`](https://togithub.com/typicode/husky/releases/tag/v9.0.10)

[Compare Source](https://togithub.com/typicode/husky/compare/v9.0.9...v9.0.10)

-   fix: rename index.d.ts to index.d.mts by [@&#8203;mrkjdy](https://togithub.com/mrkjdy) in [https://github.com/typicode/husky/pull/1379](https://togithub.com/typicode/husky/pull/1379)

### [`v9.0.9`](https://togithub.com/typicode/husky/releases/tag/v9.0.9)

[Compare Source](https://togithub.com/typicode/husky/compare/v9.0.8...v9.0.9)

-   refactor: rename files by [@&#8203;typicode](https://togithub.com/typicode) in [https://github.com/typicode/husky/pull/1378](https://togithub.com/typicode/husky/pull/1378)

### [`v9.0.8`](https://togithub.com/typicode/husky/releases/tag/v9.0.8)

[Compare Source](https://togithub.com/typicode/husky/compare/v9.0.7...v9.0.8)

-   docs: update index.md by [@&#8203;khaledYS](https://togithub.com/khaledYS) in [https://github.com/typicode/husky/pull/1369](https://togithub.com/typicode/husky/pull/1369)
-   Fix tab detection on install command by [@&#8203;glensc](https://togithub.com/glensc) in [https://github.com/typicode/husky/pull/1376](https://togithub.com/typicode/husky/pull/1376)
-   refactor: reduce file size by [@&#8203;typicode](https://togithub.com/typicode) in [https://github.com/typicode/husky/pull/1377](https://togithub.com/typicode/husky/pull/1377)

</details>

<details>
<summary>i18next/i18next (i18next)</summary>

### [`v23.8.2`](https://togithub.com/i18next/i18next/blob/HEAD/CHANGELOG.md#2382)

[Compare Source](https://togithub.com/i18next/i18next/compare/v23.8.1...v23.8.2)

-   optimize `addResources` to address [2130](https://togithub.com/i18next/i18next/issues/2130)

</details>

<details>
<summary>i18next/i18next-http-backend (i18next-http-backend)</summary>

### [`v2.4.3`](https://togithub.com/i18next/i18next-http-backend/blob/HEAD/CHANGELOG.md#243)

[Compare Source](https://togithub.com/i18next/i18next-http-backend/compare/v2.4.2...v2.4.3)

-   fix: overriding options

</details>

<details>
<summary>okonet/lint-staged (lint-staged)</summary>

### [`v15.2.2`](https://togithub.com/okonet/lint-staged/blob/HEAD/CHANGELOG.md#1522)

[Compare Source](https://togithub.com/okonet/lint-staged/compare/v15.2.1...v15.2.2)

##### Patch Changes

-   [#&#8203;1391](https://togithub.com/lint-staged/lint-staged/pull/1391) [`fdcdad4`](https://togithub.com/lint-stage

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday,before 4am on Thursday" (UTC), Automerge - At any time (no schedule defined).

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

♻ **Rebasing**: Whenever PR is behind base branch, or you tick the rebase/retry checkbox.

👻 **Immortal**: This PR will be recreated if closed unmerged. Get [config help](https://togithub.com/renovatebot/renovate/discussions) if that's undesired.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/weareinreach/GLAAD).



PR-URL: https://github.com/weareinreach/GLAAD/pull/328
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
davydkov pushed a commit to likec4/likec4 that referenced this pull request Feb 6, 2024
[![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/turbo)) | [`^1.11.2` ->
`^1.12.2`](https://renovatebot.com/diffs/npm/turbo/1.11.2/1.12.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.11.2/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.11.2/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.2`](https://togithub.com/vercel/turbo/releases/tag/v1.12.2):
Turborepo v1.12.2

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.12.1...v1.12.2)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.2 -->

#### What's Changed

##### create-turbo

- release(turborepo): 1.12.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7193

##### Changelog

- feat(lockfile): traverse lockfile in parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7178
- perf: remove duplicate git construction by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7194
- Make clippy happy by [@&#8203;Zertsov](https://togithub.com/Zertsov)
in
[vercel/turbo#7195
- fix: keep stdin open for persistent tasks by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7196
- add vc config dir by [@&#8203;Zertsov](https://togithub.com/Zertsov)
in
[vercel/turbo#7173
- fix(Turborepo): Handle spaces in path names in git status by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7197
- feat: enable vt processing on windows by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7158

**Full Changelog**:
vercel/turbo@v1.12.1...v1.12.2

### [`v1.12.1`](https://togithub.com/vercel/turbo/releases/tag/v1.12.1):
Turborepo v1.12.1

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.12.0...v1.12.1)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.1 -->

#### What's Changed

##### Docs

- docs: fix link in telemetry by
[@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) in
[vercel/turbo#7190

##### create-turbo

- release(turborepo): 1.12.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7177

##### Changelog

- Print telemetry warning on stderr by
[@&#8203;laat](https://togithub.com/laat) in
[vercel/turbo#7189
- chore(integration): remove \_helpers & fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7172

#### New Contributors

- [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) made
their first contribution in
[vercel/turbo#7190
- [@&#8203;laat](https://togithub.com/laat) made their first
contribution in
[vercel/turbo#7189

**Full Changelog**:
vercel/turbo@v1.12.0...v1.12.1

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0):
Turborepo v1.12.0

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.0 -->

#### What's Changed

##### Docs

- General CI steps on doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6894
- \[Docs] create-new.mdx - npm double slash typo fix by
[@&#8203;Firfi](https://togithub.com/Firfi) in
[vercel/turbo#6933
- fix(docs): correct option heading by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6973
- Clean up inputs doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6980
- fix(docs): typo in `what-to-cache.mdx` by
[@&#8203;pjlangley](https://togithub.com/pjlangley) in
[vercel/turbo#6960
- fix(docs): update vercel.mdx by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6987
- Doc for running setup tasks prior to development tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6999
- Add Glossary to sidebar. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7011
- fix(docs): remote cache go -> rust by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7082
- Use `exports` in Internal Packages doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7079
- fix: typo in github-actions.mdx by
[@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in
[vercel/turbo#7069
- Document glob spec. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7076
- Document handling of Node.js versions, OS, and arch. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7072
- Add generalized deployment advice for Prisma doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7130
- \[DO NOT MERGE] feat(telemetry): cli reference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6826
- \[DO NOT MERGE] feat(telemetry): feature docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6827
- \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7155

##### create-turbo

- release(turborepo): 1.11.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6891
- release(turborepo): 1.11.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6975
- release(turborepo): 1.11.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6997
- release(turborepo): 1.11.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7157
- release(turborepo): 1.11.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7170

##### Examples

- chore(deps-dev): bump the example-dependencies group in
/examples/with-shell-commands with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[vercel/turbo#6901
- Update dependencies in examples. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6920
- Fix with-svelte-example by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#6986
- fix(examples): fontSize type is number not string by
[@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in
[vercel/turbo#7005
- Fix Svelte package export map by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#7007
- fix(examples): basic generator by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7022
- fix(examples): ui turbo.json no longer needed by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7087
- chore(docs): remove unnecessary spaces by
[@&#8203;GyoHeon](https://togithub.com/GyoHeon) in
[vercel/turbo#7118
- chore: install jest in examples/kitchen-sink by
[@&#8203;llllvvuu](https://togithub.com/llllvvuu) in
[vercel/turbo#7132

##### Changelog

- fix: Make execution state use auth crate by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6880
- fix(telemetry): obfuscate rc endpoint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6925
- fix: treat empty environement variables as unset by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6929
- Error out if dependent flags are provided without their parent by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6780
- fix: make sure that our concurrency check ignore packages without task
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6790
- chore: avoid panic on invalid directory filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6955
- feat(Turborepo): Use a wrapper around the raw strings we pass to
globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6847
- fix: ignore permission errors during globbing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6957
- fix: avoid retry panic by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6926
- add better messaging when running with api flag by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6927
- fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon)
in
[vercel/turbo#6959
- Fix/unrevert daemon discovery by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6712
- feat(telemetry): track prune args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6970
- feat(lockfiles): support Yarn 4 patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6974
- feat(telemetry): track global args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6972
- fix: update Cargo.lock with correct workspace dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6990
- fix: rewrite prefix after carriage return by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6989
- feat(telemetry): track run arguments by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6985
- chore: remove usage of command groups by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6992
- chore: add reason for service being unavailable by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6993
- fix(turbo): validate graph extension by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6995
- chore: Adjusted error message for APIClient errors in cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6996
- fix(integration): update help integration test by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7017
- fix(cache): truncate metadata file when writing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7016
- fix(prune): correctly create symlinks to directories by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6983
- fix: forward fixes for LSP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7023
- fix(daemon): make sure cookie dir exists before writing cookie by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7015
- feat(telemetry): track more daemon errors by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7031
- chore: revert auth json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7026
- chore: prefactor process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7034
- chore(Turborepo): Scope down opts needed by the visitor, remove run
lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7032
- fix: Examples turbo.json outputs key by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#7071
- fix: filter package.json files that are subfolders of other packages
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#7025
- feat: update `@turbo/repository` to use new terminology by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7078
- fix(turbo): sort dependents and dependencies during normalization by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7018
- release: `@turbo/repository@0.0.1-canary.3` by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7090
- chore(daemon): swap fallback logs to debug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7102
- feat: add ability to spawn child process with pty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7077
- chore(Turborepo): Move more CLI stuff out of run code by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7085
- fix(hashing): include gitignored files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7105
- fix(clippy): remove unused import by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7120
- fix(hashing): include default files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7106
- chore: add tracing to pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7127
- fix disable echoctl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7109
- feat(telemetry): enable feature by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7122
- feat: enable pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7128
- feat(hashing): support $TURBO_DEFAULT$ in inputs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7113
- fix: process manager tests tty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7156
- fix(tests): mock telemetry config by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7168
- chore: clean pnpm lockfile by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7171
- fix: tasks with no newline by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7175

#### New Contributors

- [@&#8203;Firfi](https://togithub.com/Firfi) made their first
contribution in
[vercel/turbo#6933
- [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first
contribution in
[vercel/turbo#6960
- [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first
contribution in
[vercel/turbo#6986
- [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their
first contribution in
[vercel/turbo#7005
- [@&#8203;nirban07](https://togithub.com/nirban07) made their first
contribution in
[vercel/turbo#7008
- [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first
contribution in
[vercel/turbo#7078
- [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their
first contribution in
[vercel/turbo#7069
- [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first
contribution in
[vercel/turbo#7118
- [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first
contribution in
[vercel/turbo#7132

**Full Changelog**:
vercel/turbo@v1.11.3...v1.12.0

### [`v1.11.3`](https://togithub.com/vercel/turbo/releases/tag/v1.11.3):
Turborepo v1.11.3

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.11.2...v1.11.3)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.11.3 -->

#### What's Changed

##### Docs

- Updated outdated Docs "Getting Started" > "Create a New Monorepo" by
[@&#8203;Gogoro](https://togithub.com/Gogoro) in
[vercel/turbo#6786
- docs: fix typo under getting started by
[@&#8203;denniscampos](https://togithub.com/denniscampos) in
[vercel/turbo#6817

##### create-turbo

- release(turborepo): 1.11.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6776
- release(turborepo): 1.11.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6791
- release(turborepo): 1.11.3-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6835
- release(turborepo): 1.11.3-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6890

##### Examples

- Bump turbo in examples. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6766
- fix button prop appName from docs app by
[@&#8203;Yunfei1982](https://togithub.com/Yunfei1982) in
[vercel/turbo#6794
- Ignore dist in shell commands example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6851
- fix(examples): Typo correction on design-system package.json by
[@&#8203;GGalupo](https://togithub.com/GGalupo) in
[vercel/turbo#6859

##### Changelog

- chore: remove verbosity filter from chrome profile by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6779
- feat: add anon-profile flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6781
- chore: remove verbosity flag when running benchmark by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6782
- feat(gen): pass the command cwd through by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6795
- perf(yarn3): eagerly construct map from workspace paths to locators by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6797
- fix: add missing dependency to cargo lockfile by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6807
- refactor: Remove bookkeeping abstraction from turbo config by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6809
- chore: include response body if not valid JSON by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6796
- chore: add tracing to primary lockfile functions by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6800
- feat(turbo): telemetry client by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6743
- fix(telemetry): don’t track hash by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6828
- feat(telemetry): add README disabled note by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6829
- feat(telemetry): generic parent to child event by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6830
- Create wrapper for `dirs_next::config_dir()` by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6837
- fix: Allow for long symlinks by using append_link by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6838
- Use the sso team instead of the string 'sso' by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6867
- feat(telemetry): track client system info by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6868
- fix(yarn4): avoid overwriting non-npm protocols by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6723
- fix: avoid deleting cached package discovery data by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6872
- Make link command use auth crate instead of config token by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6870
- fix support bracket filepaths by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6877
- fix clippy 'errors' by [@&#8203;Zertsov](https://togithub.com/Zertsov)
in
[vercel/turbo#6881
- feat(telemetry): add run and repo events by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6876
- add base url getter to APIClient by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6888
- chore: tracing overhaul by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6869

#### New Contributors

- [@&#8203;Yunfei1982](https://togithub.com/Yunfei1982) made their first
contribution in
[vercel/turbo#6794
- [@&#8203;Gogoro](https://togithub.com/Gogoro) made their first
contribution in
[vercel/turbo#6786
- [@&#8203;denniscampos](https://togithub.com/denniscampos) made their
first contribution in
[vercel/turbo#6817
- [@&#8203;jupapios](https://togithub.com/jupapios) made their first
contribution in
[vercel/turbo#6849
- [@&#8203;GGalupo](https://togithub.com/GGalupo) made their first
contribution in
[vercel/turbo#6859
- [@&#8203;bb8dd](https://togithub.com/bb8dd) made their first
contribution in
[vercel/turbo#6862

**Full Changelog**:
vercel/turbo@v1.11.2...v1.11.3

</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 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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/likec4/likec4).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNzMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Feb 7, 2024
[![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/turbo)) | [`1.12.2` -> `1.12.3`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.12.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.12.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.12.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.3`](https://togithub.com/vercel/turbo/releases/tag/v1.12.3): Turborepo v1.12.3

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.2...v1.12.3)



#### What's Changed

##### Docs

-   Add "System environment variables" page. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7223](https://togithub.com/vercel/turbo/pull/7223)
-   Remote Cache API doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7236](https://togithub.com/vercel/turbo/pull/7236)
-   Inputs clarity. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7246](https://togithub.com/vercel/turbo/pull/7246)
-   docs(turborepo): fix typo in task dependencies by [@&#8203;flextremedev](https://togithub.com/flextremedev) in [https://github.com/vercel/turbo/pull/7271](https://togithub.com/vercel/turbo/pull/7271)
-   feat(docs): document building turbo from source by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7276](https://togithub.com/vercel/turbo/pull/7276)
-   Fix a typo in docs page for github actions by [@&#8203;noahsark769](https://togithub.com/noahsark769) in [https://github.com/vercel/turbo/pull/7249](https://togithub.com/vercel/turbo/pull/7249)

##### create-turbo

-   release(turborepo): 1.12.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7200](https://togithub.com/vercel/turbo/pull/7200)
-   release(turborepo): 1.12.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7215](https://togithub.com/vercel/turbo/pull/7215)

##### Examples

-   Bumping examples to 1.12 by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7053](https://togithub.com/vercel/turbo/pull/7053)
-   Fix trailing comma in exapmle react-library.json by [@&#8203;Fl0h0](https://togithub.com/Fl0h0) in [https://github.com/vercel/turbo/pull/7273](https://togithub.com/vercel/turbo/pull/7273)
-   fix: avoid expensive globwalk in examples by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7238](https://togithub.com/vercel/turbo/pull/7238)

##### Changelog

-   backport wax 0.6 fixes to turborepo-wax by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7089](https://togithub.com/vercel/turbo/pull/7089)
-   chore: allow unused for variables that don't get used on windows by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7212](https://togithub.com/vercel/turbo/pull/7212)
-   rust is no longer experimental by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7214](https://togithub.com/vercel/turbo/pull/7214)
-   fix: declare version.txt as input by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7221](https://togithub.com/vercel/turbo/pull/7221)
-   refactor: Clean up error printing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7169](https://togithub.com/vercel/turbo/pull/7169)
-   fix: correctly parse pnpm lockfile settings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7198](https://togithub.com/vercel/turbo/pull/7198)
-   refactor(turborepo): Change Detector by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7222](https://togithub.com/vercel/turbo/pull/7222)
-   chore: move scripts to build and benchmark demos to new package by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7217](https://togithub.com/vercel/turbo/pull/7217)
-   feat(turbo-repository): return additional workspace data by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7187](https://togithub.com/vercel/turbo/pull/7187)
-   Fix/filter unnamed packages by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7280](https://togithub.com/vercel/turbo/pull/7280)
-   fix: Daemon Restarting by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7288](https://togithub.com/vercel/turbo/pull/7288)
-   chore(turborepo-lib): use compile error for feature validation by [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in [https://github.com/vercel/turbo/pull/4235](https://togithub.com/vercel/turbo/pull/4235)
-   fix([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): update types to latest signature by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7289](https://togithub.com/vercel/turbo/pull/7289)
-   fix(Turborepo): Flag off daemon for package discovery by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7290](https://togithub.com/vercel/turbo/pull/7290)

#### New Contributors

-   [@&#8203;flextremedev](https://togithub.com/flextremedev) made their first contribution in [https://github.com/vercel/turbo/pull/7271](https://togithub.com/vercel/turbo/pull/7271)
-   [@&#8203;Fl0h0](https://togithub.com/Fl0h0) made their first contribution in [https://github.com/vercel/turbo/pull/7273](https://togithub.com/vercel/turbo/pull/7273)
-   [@&#8203;noahsark769](https://togithub.com/noahsark769) made their first contribution in [https://github.com/vercel/turbo/pull/7249](https://togithub.com/vercel/turbo/pull/7249)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.2...v1.12.3

### [`v1.12.2`](https://togithub.com/vercel/turbo/releases/tag/v1.12.2): Turborepo v1.12.2

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.1...v1.12.2)



#### What's Changed

##### create-turbo

-   release(turborepo): 1.12.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7193](https://togithub.com/vercel/turbo/pull/7193)

##### Changelog

-   feat(lockfile): traverse lockfile in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7178](https://togithub.com/vercel/turbo/pull/7178)
-   perf: remove duplicate git construction by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7194](https://togithub.com/vercel/turbo/pull/7194)
-   Make clippy happy by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7195](https://togithub.com/vercel/turbo/pull/7195)
-   fix: keep stdin open for persistent tasks by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7196](https://togithub.com/vercel/turbo/pull/7196)
-   add vc config dir by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7173](https://togithub.com/vercel/turbo/pull/7173)
-   fix(Turborepo): Handle spaces in path names in git status by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7197](https://togithub.com/vercel/turbo/pull/7197)
-   feat: enable vt processing on windows by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7158](https://togithub.com/vercel/turbo/pull/7158)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.1...v1.12.2

### [`v1.12.1`](https://togithub.com/vercel/turbo/releases/tag/v1.12.1): Turborepo v1.12.1

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.0...v1.12.1)



#### What's Changed

##### Docs

-   docs: fix link in telemetry by [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) in [https://github.com/vercel/turbo/pull/7190](https://togithub.com/vercel/turbo/pull/7190)

##### create-turbo

-   release(turborepo): 1.12.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7177](https://togithub.com/vercel/turbo/pull/7177)

##### Changelog

-   Print telemetry warning on stderr by [@&#8203;laat](https://togithub.com/laat) in [https://github.com/vercel/turbo/pull/7189](https://togithub.com/vercel/turbo/pull/7189)
-   chore(integration): remove \_helpers & fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7172](https://togithub.com/vercel/turbo/pull/7172)

#### New Contributors

-   [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) made their first contribution in [https://github.com/vercel/turbo/pull/7190](https://togithub.com/vercel/turbo/pull/7190)
-   [@&#8203;laat](https://togithub.com/laat) made their first contribution in [https://github.com/vercel/turbo/pull/7189](https://togithub.com/vercel/turbo/pull/7189)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.0...v1.12.1

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0): Turborepo v1.12.0

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)



#### What's Changed

##### Docs

-   General CI steps on doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6894](https://togithub.com/vercel/turbo/pull/6894)
-   \[Docs] create-new.mdx - npm double slash typo fix by [@&#8203;Firfi](https://togithub.com/Firfi) in [https://github.com/vercel/turbo/pull/6933](https://togithub.com/vercel/turbo/pull/6933)
-   fix(docs): correct option heading by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6973](https://togithub.com/vercel/turbo/pull/6973)
-   Clean up inputs doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6980](https://togithub.com/vercel/turbo/pull/6980)
-   fix(docs): typo in `what-to-cache.mdx` by [@&#8203;pjlangley](https://togithub.com/pjlangley) in [https://github.com/vercel/turbo/pull/6960](https://togithub.com/vercel/turbo/pull/6960)
-   fix(docs): update vercel.mdx by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6987](https://togithub.com/vercel/turbo/pull/6987)
-   Doc for running setup tasks prior to development tasks. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6999](https://togithub.com/vercel/turbo/pull/6999)
-   Add Glossary to sidebar. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7011](https://togithub.com/vercel/turbo/pull/7011)
-   fix(docs): remote cache go -> rust by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7082](https://togithub.com/vercel/turbo/pull/7082)
-   Use `exports`  in Internal Packages doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7079](https://togithub.com/vercel/turbo/pull/7079)
-   fix: typo in github-actions.mdx by [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in [https://github.com/vercel/turbo/pull/7069](https://togithub.com/vercel/turbo/pull/7069)
-   Document glob spec. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7076](https://togithub.com/vercel/turbo/pull/7076)
-   Document handling of Node.js versions, OS, and arch. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7072](https://togithub.com/vercel/turbo/pull/7072)
-   Add generalized deployment advice for Prisma doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7130](https://togithub.com/vercel/turbo/pull/7130)
-   \[DO NOT MERGE] feat(telemetry): cli reference by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6826](https://togithub.com/vercel/turbo/pull/6826)
-   \[DO NOT MERGE] feat(telemetry): feature docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6827](https://togithub.com/vercel/turbo/pull/6827)
-   \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7155](https://togithub.com/vercel/turbo/pull/7155)

##### create-turbo

-   release(turborepo): 1.11.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6891](https://togithub.com/vercel/turbo/pull/6891)
-   release(turborepo): 1.11.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6975](https://togithub.com/vercel/turbo/pull/6975)
-   release(turborepo): 1.11.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6997](https://togithub.com/vercel/turbo/pull/6997)
-   release(turborepo): 1.11.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7157](https://togithub.com/vercel/turbo/pull/7157)
-   release(turborepo): 1.11.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7170](https://togithub.com/vercel/turbo/pull/7170)

##### Examples

-   chore(deps-dev): bump the example-dependencies group in /examples/with-shell-commands with 1 update by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/vercel/turbo/pull/6901](https://togithub.com/vercel/turbo/pull/6901)
-   Update dependencies in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6920](https://togithub.com/vercel/turbo/pull/6920)
-   Fix with-svelte-example by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [https://github.com/vercel/turbo/pull/6986](https://togithub.com/vercel/turbo/pull/6986)
-   fix(examples): fontSize type is number not string by [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in [https://github.com/vercel/turbo/pull/7005](https://togithub.com/vercel/turbo/pull/7005)
-   Fix Svelte package export map by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [https://github.com/vercel/turbo/pull/7007](https://togithub.com/vercel/turbo/pull/7007)
-   fix(examples): basic generator by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7022](https://togithub.com/vercel/turbo/pull/7022)
-   fix(examples): ui turbo.json no longer needed by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7087](https://togithub.com/vercel/turbo/pull/7087)
-   chore(docs): remove unnecessary spaces by [@&#8203;GyoHeon](https://togithub.com/GyoHeon) in [https://github.com/vercel/turbo/pull/7118](https://togithub.com/vercel/turbo/pull/7118)
-   chore: install jest in examples/kitchen-sink by [@&#8203;llllvvuu](https://togithub.com/llllvvuu) in [https://github.com/vercel/turbo/pull/7132](https://togithub.com/vercel/turbo/pull/7132)

##### Changelog

-   fix: Make execution state use auth crate by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6880](https://togithub.com/vercel/turbo/pull/6880)
-   fix(telemetry): obfuscate rc endpoint by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6925](https://togithub.com/vercel/turbo/pull/6925)
-   fix: treat empty environement variables as unset by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6929](https://togithub.com/vercel/turbo/pull/6929)
-   Error out if dependent flags are provided without their parent by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6780](https://togithub.com/vercel/turbo/pull/6780)
-   fix: make sure that our concurrency check ignore packages without task by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6790](https://togithub.com/vercel/turbo/pull/6790)
-   chore: avoid panic on invalid directory filters by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6955](https://togithub.com/vercel/turbo/pull/6955)
-   feat(Turborepo): Use a wrapper around the raw strings we pass to globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6847](https://togithub.com/vercel/turbo/pull/6847)
-   fix: ignore permission errors during globbing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6957](https://togithub.com/vercel/turbo/pull/6957)
-   fix: avoid retry panic by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6926](https://togithub.com/vercel/turbo/pull/6926)
-   add better messaging when running with api flag by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6927](https://togithub.com/vercel/turbo/pull/6927)
-   fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6959](https://togithub.com/vercel/turbo/pull/6959)
-   Fix/unrevert daemon discovery by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6712](https://togithub.com/vercel/turbo/pull/6712)
-   feat(telemetry): track prune args by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6970](https://togithub.com/vercel/turbo/pull/6970)
-   feat(lockfiles): support Yarn 4 patches by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6974](https://togithub.com/vercel/turbo/pull/6974)
-   feat(telemetry): track global args by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6972](https://togithub.com/vercel/turbo/pull/6972)
-   fix: update Cargo.lock with correct workspace dependencies by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6990](https://togithub.com/vercel/turbo/pull/6990)
-   fix: rewrite prefix after carriage return by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6989](https://togithub.com/vercel/turbo/pull/6989)
-   feat(telemetry): track run arguments by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6985](https://togithub.com/vercel/turbo/pull/6985)
-   chore: remove usage of command groups by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6992](https://togithub.com/vercel/turbo/pull/6992)
-   chore: add reason for service being unavailable by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6993](https://togithub.com/vercel/turbo/pull/6993)
-   fix(turbo): validate graph extension by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6995](https://togithub.com/vercel/turbo/pull/6995)
-   chore: Adjusted error message for APIClient errors in cache by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6996](https://togithub.com/vercel/turbo/pull/6996)
-   fix(integration): update help integration test by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7017](https://togithub.com/vercel/turbo/pull/7017)
-   fix(cache): truncate metadata file when writing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7016](https://togithub.com/vercel/turbo/pull/7016)
-   fix(prune): correctly create symlinks to directories  by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6983](https://togithub.com/vercel/turbo/pull/6983)
-   fix: forward fixes for LSP by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7023](https://togithub.com/vercel/turbo/pull/7023)
-   fix(daemon): make sure cookie dir exists before writing cookie by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7015](https://togithub.com/vercel/turbo/pull/7015)
-   feat(telemetry): track more daemon errors by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7031](https://togithub.com/vercel/turbo/pull/7031)
-   chore: revert auth json by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7026](https://togithub.com/vercel/turbo/pull/7026)
-   chore: prefactor process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7034](https://togithub.com/vercel/turbo/pull/7034)
-   chore(Turborepo): Scope down opts needed by the visitor, remove run lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7032](https://togithub.com/vercel/turbo/pull/7032)
-   fix: Examples turbo.json outputs key by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7071](https://togithub.com/vercel/turbo/pull/7071)
-   fix: filter package.json files that are subfolders of other packages by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7025](https://togithub.com/vercel/turbo/pull/7025)
-   feat: update `@turbo/repository` to use new terminology by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7078](https://togithub.com/vercel/turbo/pull/7078)
-   fix(turbo): sort dependents and dependencies during normalization by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7018](https://togithub.com/vercel/turbo/pull/7018)
-   release: `@turbo/repository@0.0.1-canary.3` by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7090](https://togithub.com/vercel/turbo/pull/7090)
-   chore(daemon): swap fallback logs to debug by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7102](https://togithub.com/vercel/turbo/pull/7102)
-   feat: add ability to spawn child process with pty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7077](https://togithub.com/vercel/turbo/pull/7077)
-   chore(Turborepo): Move more CLI stuff out of run code by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7085](https://togithub.com/vercel/turbo/pull/7085)
-   fix(hashing): include gitignored files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7105](https://togithub.com/vercel/turbo/pull/7105)
-   fix(clippy): remove unused import by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7120](https://togithub.com/vercel/turbo/pull/7120)
-   fix(hashing): include default files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7106](https://togithub.com/vercel/turbo/pull/7106)
-   chore: add tracing to pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7127](https://togithub.com/vercel/turbo/pull/7127)
-   fix disable echoctl by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7109](https://togithub.com/vercel/turbo/pull/7109)
-   feat(telemetry): enable feature by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7122](https://togithub.com/vercel/turbo/pull/7122)
-   feat: enable pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7128](https://togithub.com/vercel/turbo/pull/7128)
-   feat(hashing): support $TURBO_DEFAULT$ in inputs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7113](https://togithub.com/vercel/turbo/pull/7113)
-   fix: process manager tests tty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7156](https://togithub.com/vercel/turbo/pull/7156)
-   fix(tests): mock telemetry config by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7168](https://togithub.com/vercel/turbo/pull/7168)
-   chore: clean pnpm lockfile by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7171](https://togithub.com/vercel/turbo/pull/7171)
-   fix: tasks with no newline by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7175](https://togithub.com/vercel/turbo/pull/7175)

#### New Contributors

-   [@&#8203;Firfi](https://togithub.com/Firfi) made their first contribution in [https://github.com/vercel/turbo/pull/6933](https://togithub.com/vercel/turbo/pull/6933)
-   [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first contribution in [https://github.com/vercel/turbo/pull/6960](https://togithub.com/vercel/turbo/pull/6960)
-   [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first contribution in [https://github.com/vercel/turbo/pull/6986](https://togithub.com/vercel/turbo/pull/6986)
-   [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their first contribution in [https://github.com/vercel/turbo/pull/7005](https://togithub.com/vercel/turbo/pull/7005)
-   [@&#8203;nirban07](https://togithub.com/nirban07) made their first contribution in [https://github.com/vercel/turbo/pull/7008](https://togithub.com/vercel/turbo/pull/7008)
-   [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first contribution in [https://github.com/vercel/turbo/pull/7078](https://togithub.com/vercel/turbo/pull/7078)
-   [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their first contribution in [https://github.com/vercel/turbo/pull/7069](https://togithub.com/vercel/turbo/pull/7069)
-   [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first contribution in [https://github.com/vercel/turbo/pull/7118](https://togithub.com/vercel/turbo/pull/7118)
-   [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first contribution in [https://github.com/vercel/turbo/pull/7132](https://togithub.com/vercel/turbo/pull/7132)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.3...v1.12.0

### [`v1.11.3`](https://togithub.com/vercel/turbo/releases/tag/v1.11.3): Turborepo v1.11.3

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.2...v1.11.3)



#### What's Changed

##### Docs

-   Updated outdated Docs "Getting Started" > "Create a New Monorepo" by [@&#8203;Gogoro](https://togithub.com/Gogoro) in [https://github.com/vercel/turbo/pull/6786](https://togithub.com/vercel/turbo/pull/6786)
-   docs: fix typo under getting started by [@&#8203;denniscampos](https://togithub.com/denniscampos) in [https://github.com/vercel/turbo/pull/6817](https://togithub.com/vercel/turbo/pull/6817)

##### create-turbo

-   release(turborepo): 1.11.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6776](https://togithub.com/vercel/turbo/pull/6776)
-   release(turborepo): 1.11.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6791](https://togithub.com/vercel/turbo/pull/6791)
-   release(turborepo): 1.11.3-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6835](https://togithub.com/vercel/turbo/pull/6835)
-   release(turborepo): 1.11.3-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6890](https://togithub.com/vercel/turbo/pull/6890)

##### Examples

-   Bump turbo in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6766](https://togithub.com/vercel/turbo/pull/6766)
-   fix button prop appName from docs app by [@&#8203;Yunfei1982](https://togithub.com/Yunfei1982) in [https://github.com/vercel/turbo/pull/6794](https://togithub.com/vercel/turbo/pull/6794)
-   Ignore dist in shell commands example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6851](https://togithub.com/vercel/turbo/pull/6851)
-   fix(examples): Typo correction on design-system package.json by [@&#8203;GGalupo](https://togithub.com/GGalupo) in [https://github.com/vercel/turbo/pull/6859](https://togithub.com/vercel/turbo/pull/6859)

##### Changelog

-   chore: remove verbosity filter from chrome profile by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6779](https://togithub.com/vercel/turbo/pull/6779)
-   feat: add anon-profile flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6781](https://togithub.com/vercel/turbo/pull/6781)
-   chore: remove verbosity flag when running benchmark by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6782](https://togithub.com/vercel/turbo/pull/6782)
-   feat(gen): pass the command cwd through by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6795](https://togithub.com/vercel/turbo/pull/6795)
-   perf(yarn3): eagerly construct map from workspace paths to locators by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6797](https://togithub.com/vercel/turbo/pull/6797)
-   fix: add missing dependency to cargo lockfile by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6807](https://togithub.com/vercel/turbo/pull/6807)
-   refactor: Remove bookkeeping abstraction from turbo config by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6809](https://togithub.com/vercel/turbo/pull/6809)
-   chore: include response body if not valid JSON by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6796](https://togithub.com/vercel/turbo/pull/6796)
-   chore: add tracing to primary lockfile functions by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6800](https://togithub.com/vercel/turbo/pull/6800)
-   feat(turbo): telemetry client by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6743](https://togithub.com/vercel/turbo/pull/6743)
-   fix(telemetry): don’t track hash by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6828](https://togithub.com/vercel/turbo/pull/6828)
-   feat(telemetry): add README disabled note by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6829](https://togithub.com/vercel/turbo/pull/6829)
-   feat(telemetry): generic parent to child event by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6830](https://togithub.com/vercel/turbo/pull/6830)
-   Create wrapper for `dirs_next::config_dir()` by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6837](https://togithub.com/vercel/turbo/pull/6837)
-   fix: Allow for long symlinks by using append_link by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6838](https://togithub.com/vercel/turbo/pull/6838)
-   Use the sso team instead of the string 'sso' by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6867](https://togithub.com/vercel/turbo/pull/6867)
-   feat(telemetry): track client system info by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6868](https://togithub.com/vercel/turbo/pull/6868)
-   fix(yarn4): avoid overwriting non-npm protocols by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6723](https://togithub.com/vercel/turbo/pull/6723)
-   fix: avoid deleting cached package discovery data by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6872](https://togithub.com/vercel/turbo/pull/6872)
-   Make link command use auth crate instead of config token by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6870](https://togithub.com/vercel/turbo/pull/6870)
-   fix support bracket filepaths by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6877](https://togithub.com/vercel/turbo/pull/6877)
-   fix clippy 'errors' by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6881](https://togithub.com/vercel/turbo/pull/6881)
-   feat(telemetry): add run and repo events by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6876](https://togithub.com/vercel/turbo/pull/6876)
-   add base url getter to APIClient by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6888](https://togithub.com/vercel/turbo/pull/6888)
-   chore: tracing overhaul by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6869](https://togithub.com/vercel/turbo/pull/6869)

#### New Contributors

-   [@&#8203;Yunfei1982](https://togithub.com/Yunfei1982) made their first contribution in [https://github.com/vercel/turbo/pull/6794](https://togithub.com/vercel/turbo/pull/6794)
-   [@&#8203;Gogoro](https://togithub.com/Gogoro) made their first contribution in [https://github.com/vercel/turbo/pull/6786](https://togithub.com/vercel/turbo/pull/6786)
-   [@&#8203;denniscampos](https://togithub.com/denniscampos) made their first contribution in [https://github.com/vercel/turbo/pull/6817](https://togithub.com/vercel/turbo/pull/6817)
-   [@&#8203;jupapios](https://togithub.com/jupapios) made their first contribution in [https://github.com/vercel/turbo/pull/6849](https://togithub.com/vercel/turbo/pull/6849)
-   [@&#8203;GGalupo](https://togithub.com/GGalupo) made their first contribution in [https://github.com/vercel/turbo/pull/6859](https://togithub.com/vercel/turbo/pull/6859)
-   [@&#8203;bb8dd](https://togithub.com/bb8dd) made their first contribution in [https://github.com/vercel/turbo/pull/6862](https://togithub.com/vercel/turbo/pull/6862)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.2...v1.11.3

### [`v1.11.2`](https://togithub.com/vercel/turbo/releases/tag/v1.11.2): Turborepo v1.11.2

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.1...v1.11.2)



#### What's Changed

##### Docs

-   Update yarn support policy. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6757](https://togithub.com/vercel/turbo/pull/6757)

##### create-turbo

-   release(turborepo): 1.11.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6742](https://togithub.com/vercel/turbo/pull/6742)
-   release(turborepo): 1.11.2-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6771](https://togithub.com/vercel/turbo/pull/6771)

##### Examples

-   Add transpilePackages to `with-tailwind` example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6746](https://togithub.com/vercel/turbo/pull/6746)
-   Update README for with-tailwind. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6755](https://togithub.com/vercel/turbo/pull/6755)
-   Remove source key from with-docker example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6759](https://togithub.com/vercel/turbo/pull/6759)
-   Use `"strict": true`  for TypeScript in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6762](https://togithub.com/vercel/turbo/pull/6762)

##### Changelog

-   chore: avoid panics in berry lockfile by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6725](https://togithub.com/vercel/turbo/pull/6725)
-   fix: remove placeholder duration from cache metadata by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6756](https://togithub.com/vercel/turbo/pull/6756)
-   chore: Remove hash comparison code by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6758](https://togithub.com/vercel/turbo/pull/6758)
-   fix: ignore exit codes when child killed by manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6767](https://togithub.com/vercel/turbo/pull/6767)
-   fix: make assertion assert something by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6768](https://togithub.com/vercel/turbo/pull/6768)
-   Allow forcing use of daemon by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6764](https://togithub.com/vercel/turbo/pull/6764)
-   fix: avoid double slash if glob ends with slash by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6772](https://togithub.com/vercel/turbo/pull/6772)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.1...v1.11.2

### [`v1.11.1`](https://togithub.com/vercel/turbo/releases/tag/v1.11.1): Turborepo v1.11.1

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.0...v1.11.1)



#### What's Changed

##### create-turbo

-   release(turborepo): 1.11.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6706](https://togithub.com/vercel/turbo/pull/6706)
-   release(turborepo): 1.11.1-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6741](https://togithub.com/vercel/turbo/pull/6741)

##### Examples

-   Example with only shell commands. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6688](https://togithub.com/vercel/turbo/pull/6688)
-   Update with-tailwind example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6575](https://togithub.com/vercel/turbo/pull/6575)
-   Mix of server and client components in basic example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6682](https://togithub.com/vercel/turbo/pull/6682)

##### Changelog

-   chore(tests): cleanup setup scripts by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6700](https://togithub.com/vercel/turbo/pull/6700)
-   fix: limit the amount of logs we send to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6691](https://togithub.com/vercel/turbo/pull/6691)
-   chore(Turborepo): Bump npm rust package version by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6721](https://togithub.com/vercel/turbo/pull/6721)
-   fix: properly catch sigterm sent from global by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6724](https://togithub.com/vercel/turbo/pull/6724)
-   chore(ignore): exclude rustc-ice files by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6733](https://togithub.com/vercel/turbo/pull/6733)
-   Fix behaviour when discovering files for global hashing by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6738](https://togithub.com/vercel/turbo/pull/6738)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.0...v1.11.1

### [`v1.11.0`](https://togithub.com/vercel/turbo/releases/tag/v1.11.0): Turborepo v1.11.0

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.16...v1.11.0)



#### What's Changed

##### Docs

-   feat(docs): document support policy by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6277](https://togithub.com/vercel/turbo/pull/6277)
-   fix(docs): correct support typo by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6313](https://togithub.com/vercel/turbo/pull/6313)
-   fix(docs): Add full stop punctuation and add inifinitive marker to verb by [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) in [https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
-   docs: Added nested workspaces under troubleshooting by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6342](https://togithub.com/vercel/turbo/pull/6342)
-   docs: document --profile flag by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6371](https://togithub.com/vercel/turbo/pull/6371)
-   fix(docs): clarify output mode for Dockerfile by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6385](https://togithub.com/vercel/turbo/pull/6385)
-   docs: add github actions/cache example to github ci docs by [@&#8203;austinwoon](https://togithub.com/austinwoon) in [https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
-   docs: Fix typo 'specifing -> specifying' by [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) in [https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
-   Improved TSConfigs in examples by [@&#8203;mattpocock](https://togithub.com/mattpocock) in [https://github.com/vercel/turbo/pull/6396](https://togithub.com/vercel/turbo/pull/6396)
-   docs: update formatting on --graph option by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6487](https://togithub.com/vercel/turbo/pull/6487)
-   Capitalization. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6561](https://togithub.com/vercel/turbo/pull/6561)
-   chore(docs): remove backticks from title/desc meta tags on CLI reference pages by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6580](https://togithub.com/vercel/turbo/pull/6580)
-   feat(docs): add node version compatibility for examples by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6581](https://togithub.com/vercel/turbo/pull/6581)
-   fix(docs): update inconsistent CLI headings by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6591](https://togithub.com/vercel/turbo/pull/6591)
-   feat(docs): add FAQ entry for non-JS workspaces in the codebase by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6612](https://togithub.com/vercel/turbo/pull/6612)
-   chore(docs): tweak getting started docs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6597](https://togithub.com/vercel/turbo/pull/6597)
-   docs: Added root internal dependencies explanation by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6622](https://togithub.com/vercel/turbo/pull/6622)
-   Capitalize the Tools category in sidebar. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6697](https://togithub.com/vercel/turbo/pull/6697)
-   Add yarn v2+ caveat for installing Internal Packages. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6696](https://togithub.com/vercel/turbo/pull/6696)
-   Update command-line-reference.mdx for --log-prefix CLI option by [@&#8203;marcneubauer](https://togithub.com/marcneubauer) in [https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

##### create-turbo

-   release(turborepo): 1.10.16 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6221](https://togithub.com/vercel/turbo/pull/6221)
-   release(turborepo): 1.10.17-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6329](https://togithub.com/vercel/turbo/pull/6329)
-   chore(turbo-utils): Remove tsup build by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6301](https://togithub.com/vercel/turbo/pull/6301)
-   release(turborepo): 1.10.17-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6448](https://togithub.com/vercel/turbo/pull/6448)
-   release(turborepo): 1.10.17-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6454](https://togithub.com/vercel/turbo/pull/6454)
-   release(turborepo): 1.10.17-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6502](https://togithub.com/vercel/turbo/pull/6502)
-   Re-up create-turbo. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6439](https://togithub.com/vercel/turbo/pull/6439)
-   release(turborepo): 1.10.17-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6521](https://togithub.com/vercel/turbo/pull/6521)
-   release(turborepo): 1.10.17-canary.5 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6549](https://togithub.com/vercel/turbo/pull/6549)
-   release(turborepo): 1.10.17-canary.6 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6610](https://togithub.com/vercel/turbo/pull/6610)
-   release(turborepo): 1.10.17-canary.7 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6629](https://togithub.com/vercel/turbo/pull/6629)
-   release(turborepo): 1.10.17-canary.8 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6630](https://togithub.com/vercel/turbo/pull/6630)
-   release(turborepo): 1.10.17-canary.9 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6667](https://togithub.com/vercel/turbo/pull/6667)
-   release(turborepo): 1.10.17-canary.10 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6698](https://togithub.com/vercel/turbo/pull/6698)

##### turbo-ignore

-   fix(turbo-ignore): better error for invalid commit by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6330](https://togithub.com/vercel/turbo/pull/6330)
-   Add \[vercel only <workspace>] by [@&#8203;m1heng](https://togithub.com/m1heng) in [https://github.com/vercel/turbo/pull/6579](https://togithub.com/vercel/turbo/pull/6579)

##### eslint

-   feat(Turborepo): Check env var indexing by literals by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6254](https://togithub.com/vercel/turbo/pull/6254)

##### Examples

-   chore(examples/with-svelte): regenerate apps with sveltekit by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6214](https://togithub.com/vercel/turbo/pull/6214)
-   feat(examples): update non-monorepo to pnpm by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6337](https://togithub.com/vercel/turbo/pull/6337)
-   fix(examples): updated with-docker devDependencies for successful build by [@&#8203;fa-901](https://togithub.com/fa-901) in [https://github.com/vercel/turbo/pull/5444](https://togithub.com/vercel/turbo/pull/5444)
-   feat(examples): upgrade ts by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6338](https://togithub.com/vercel/turbo/pull/6338)
-   feature(vue-nuxt): vue & nuxt example addition by [@&#8203;Neosoulink](https://togithub.com/Neosoulink) in [https://github.com/vercel/turbo/pull/6425](https://togithub.com/vercel/turbo/pull/6425)
-   Add Vue/Nuxt example to geting started. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6488](https://togithub.com/vercel/turbo/pull/6488)
-   Bump Next.js in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6533](https://togithub.com/vercel/turbo/pull/6533)
-   Set engine on create-turbo. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6568](https://togithub.com/vercel/turbo/pull/6568)
-   Remove create-react-app example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6556](https://togithub.com/vercel/turbo/pull/6556)
-   Update design-system example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6555](https://togithub.com/vercel/turbo/pull/6555)
-   Update with-docker example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6547](https://togithub.com/vercel/turbo/pull/6547)
-   Update with-rollup example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6573](https://togithub.com/vercel/turbo/pull/6573)
-   Update with-vite example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6574](https://togithub.com/vercel/turbo/pull/6574)
-   Package bumps for non-monorepo example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6553](https://togithub.com/vercel/turbo/pull/6553)
-   Update with-npm example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6558](https://togithub.com/vercel/turbo/pull/6558)
-   Update with-gatsby example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6570](https://togithub.com/vercel/turbo/pull/6570)
-   Update with-berry example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6550](https://togithub.com/vercel/turbo/pull/6550)
-   Update with-prisma example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6571](https://togithub.com/vercel/turbo/pull/6571)
-   fix(examples): with-berry readme update by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6607](https://togithub.com/vercel/turbo/pull/6607)
-   Update with-changesets. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6548](https://togithub.com/vercel/turbo/pull/6548)
-   Update with-react-native-web example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6572](https://togithub.com/vercel/turbo/pull/6572)
-   Update kitchen-sink example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6577](https://togithub.com/vercel/turbo/pull/6577)
-   Update with-yarn example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6557](https://togithub.com/vercel/turbo/pull/6557)
-   Update with-svelte-example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6576](https://togithub.com/vercel/turbo/pull/6576)

##### Changelog

-   feat(turborepo): Spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
-   fix: bias towards graph walk cancel over continue by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
-   feat: hook up task execution tracking by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
-   docs: Add the enabled config to turbo.json schema by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
-   chore: fix example test setup so output matches by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
-   fix: Respect color config for runcache output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
-   refactor(auth): Removed closure in login functions by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
-   chore(test): validate that pruning carries remoteCache fields correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
-   chore: Removed run stub feature by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
-   fix(Turborepo): Drop incorrect deprecation notice by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
-   chore(test): Add test to ensure env var changes task hash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
-   chore: run summary prefactor by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
-   refactor: Removed closure from logout by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
-   chore: Added panic handler to turborepo by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
-   refactor: Moving from anyhow to thiserror part 1 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
-   Clearer cache spinner message. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
-   fix: use cprintln instead of warn when no tasks are run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
-   fix: don't escape html when serializing dry runs by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
-   fix(Turborepo): Ensure process manager stays closed by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
-   fix(Turborepo): escape colons in log filenames by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
-   chore(test): fix gitignore in fixture by [@&#8203;mehul

</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 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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
kodiakhq bot pushed a commit to mheob/config that referenced this pull request Feb 9, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@commitlint/cli](https://commitlint.js.org/) ([source](https://togithub.com/conventional-changelog/commitlint/tree/HEAD/@commitlint/cli)) | [`^18.4.4` -> `^18.6.0`](https://renovatebot.com/diffs/npm/@commitlint%2fcli/18.4.4/18.6.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@commitlint%2fcli/18.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@commitlint%2fcli/18.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@commitlint%2fcli/18.4.4/18.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@commitlint%2fcli/18.4.4/18.6.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node)) | [`^20.11.3` -> `^20.11.16`](https://renovatebot.com/diffs/npm/@types%2fnode/20.11.5/20.11.16) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fnode/20.11.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fnode/20.11.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fnode/20.11.5/20.11.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fnode/20.11.5/20.11.16?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`^6.19.0` -> `^6.21.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.19.0/6.21.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/6.19.0/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/6.19.0/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`^6.19.0` -> `^6.21.0`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.19.0/6.21.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/6.19.0/6.21.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/6.19.0/6.21.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://togithub.com/vercel/next.js/tree/HEAD/packages/eslint-config-next)) | [`^14.0.4` -> `^14.1.0`](https://renovatebot.com/diffs/npm/eslint-config-next/14.0.4/14.1.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-next/14.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-next/14.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-next/14.0.4/14.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-next/14.0.4/14.1.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [lint-staged](https://togithub.com/okonet/lint-staged) | [`^15.2.0` -> `^15.2.2`](https://renovatebot.com/diffs/npm/lint-staged/15.2.0/15.2.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/lint-staged/15.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/lint-staged/15.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/lint-staged/15.2.0/15.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/lint-staged/15.2.0/15.2.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prettier](https://prettier.io) ([source](https://togithub.com/prettier/prettier)) | [`^3.2.2` -> `^3.2.5`](https://renovatebot.com/diffs/npm/prettier/3.2.2/3.2.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier/3.2.2/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier/3.2.2/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prettier](https://prettier.io) ([source](https://togithub.com/prettier/prettier)) | [`^3.2.2` -> `^3.2.5`](https://renovatebot.com/diffs/npm/prettier/3.2.4/3.2.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prettier/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prettier/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prettier/3.2.4/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prettier/3.2.4/3.2.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`^1.11.3` -> `^1.12.2`](https://renovatebot.com/diffs/npm/turbo/1.11.3/1.12.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.11.3/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.11.3/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>conventional-changelog/commitlint (@&#8203;commitlint/cli)</summary>

### [`v18.6.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#1860-2024-01-25)

[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.5.0...v18.6.0)

**Note:** Version bump only for package [@&#8203;commitlint/cli](https://togithub.com/commitlint/cli)

### [`v18.5.0`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#1850-2024-01-22)

[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.4...v18.5.0)

##### Features

-   **cli:** print-config now can be configured to print a json in stdout ([#&#8203;3863](https://togithub.com/conventional-changelog/commitlint/issues/3863)) ([6381a2d](https://togithub.com/conventional-changelog/commitlint/commit/6381a2daa0d5d89ab2195998d63a9690a533d3f2)), closes [#&#8203;3819](https://togithub.com/conventional-changelog/commitlint/issues/3819)

#### [18.4.4](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.3...v18.4.4) (2024-01-04)

**Note:** Version bump only for package [@&#8203;commitlint/cli](https://togithub.com/commitlint/cli)

#### [18.4.3](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.2...v18.4.3) (2023-11-21)

**Note:** Version bump only for package [@&#8203;commitlint/cli](https://togithub.com/commitlint/cli)

#### [18.4.2](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.1...v18.4.2) (2023-11-16)

**Note:** Version bump only for package [@&#8203;commitlint/cli](https://togithub.com/commitlint/cli)

#### [18.4.1](https://togithub.com/conventional-changelog/commitlint/compare/v18.4.0...v18.4.1) (2023-11-12)

**Note:** Version bump only for package [@&#8203;commitlint/cli](https://togithub.com/commitlint/cli)

</details>

<details>
<summary>typescript-eslint/typescript-eslint (@&#8203;typescript-eslint/eslint-plugin)</summary>

### [`v6.21.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6210-2024-02-05)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.20.0...v6.21.0)

##### 🚀 Features

-   export plugin metadata

-   allow `parserOptions.project: false`

-   **eslint-plugin:** add rule prefer-find

##### 🩹 Fixes

-   **eslint-plugin:** \[no-unused-vars] don't report on types referenced in export assignment expression

-   **eslint-plugin:** \[switch-exhaustiveness-check] better support for intersections, infinite types, non-union values

-   **eslint-plugin:** \[consistent-type-imports] dont report on types used in export assignment expressions

-   **eslint-plugin:** \[no-unnecessary-condition] handle left-hand optional with exactOptionalPropertyTypes option

-   **eslint-plugin:** \[class-literal-property-style] allow getter when same key setter exists

-   **eslint-plugin:** \[no-unnecessary-type-assertion] provide valid fixes for assertions with extra tokens before `as` keyword

##### ❤️  Thank You

-   auvred
-   Brad Zacher
-   Kirk Waiblinger
-   Pete Gonzalez
-   YeonJuan

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.

### [`v6.20.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6200-2024-01-29)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.1...v6.20.0)

##### 🚀 Features

-   **eslint-plugin:** \[member-ordering] allow easy reuse of the default ordering

##### 🩹 Fixes

-   **eslint-plugin:** \[no-useless-template-literals] incorrect bigint autofix result

-   **eslint-plugin:** \[prefer-nullish-coalescing] treat any/unknown as non-nullable

-   **eslint-plugin:** \[no-useless-template-literals] report Infinity & NaN

-   **eslint-plugin:** \[prefer-readonly] disable checking accessors

##### ❤️  Thank You

-   Alex Parloti
-   auvred
-   James Browning
-   StyleShit
-   YeonJuan

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.

### [`v6.19.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6191-2024-01-22)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.0...v6.19.1)

##### 🩹 Fixes

-   **type-utils:** preventing isUnsafeAssignment infinite recursive calls

-   **eslint-plugin:** \[no-unnecessary-condition] fix false positive for type variable

##### ❤️  Thank You

-   YeonJuan

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 (@&#8203;typescript-eslint/parser)</summary>

### [`v6.21.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6210-2024-02-05)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.20.0...v6.21.0)

##### 🚀 Features

-   allow `parserOptions.project: false`

##### ❤️  Thank You

-   auvred
-   Brad Zacher
-   Kirk Waiblinger
-   Pete Gonzalez
-   YeonJuan

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.

### [`v6.20.0`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6200-2024-01-29)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.1...v6.20.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.

### [`v6.19.1`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6191-2024-01-22)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v6.19.0...v6.19.1)

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>vercel/next.js (eslint-config-next)</summary>

### [`v14.1.0`](https://togithub.com/vercel/next.js/compare/v14.0.4...v14.1.0)

[Compare Source](https://togithub.com/vercel/next.js/compare/v14.0.4...v14.1.0)

</details>

<details>
<summary>okonet/lint-staged (lint-staged)</summary>

### [`v15.2.2`](https://togithub.com/okonet/lint-staged/blob/HEAD/CHANGELOG.md#1522)

[Compare Source](https://togithub.com/okonet/lint-staged/compare/v15.2.1...v15.2.2)

##### Patch Changes

-   [#&#8203;1391](https://togithub.com/lint-staged/lint-staged/pull/1391) [`fdcdad4`](https://togithub.com/lint-staged/lint-staged/commit/fdcdad42ff96fea3c05598e378d3c44ad4a51bde) Thanks [@&#8203;iiroj](https://togithub.com/iiroj)! - *Lint-staged* no longer tries to load configuration from files that are not checked out. This might happen when using sparse-checkout.

### [`v15.2.1`](https://togithub.com/okonet/lint-staged/blob/HEAD/CHANGELOG.md#1521)

[Compare Source](https://togithub.com/okonet/lint-staged/compare/v15.2.0...v15.2.1)

##### Patch Changes

-   [#&#8203;1387](https://togithub.com/lint-staged/lint-staged/pull/1387) [`e4023f6`](https://togithub.com/lint-staged/lint-staged/commit/e4023f687616dcf4816545b8eefbcce50e255c9c) Thanks [@&#8203;iiroj](https://togithub.com/iiroj)! - Ignore stdin of spawned commands so that they don't get stuck waiting. Until now, *lint-staged* has used the default settings to spawn linter commands. This means the `stdin` of the spawned commands has accepted input, and essentially gotten stuck waiting. Now the `stdin` is ignored and commands will no longer get stuck. If you relied on this behavior, please open a new issue and describe how; the behavior has not been intended.

</details>

<details>
<summary>prettier/prettier (prettier)</summary>

### [`v3.2.5`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#325)

[Compare Source](https://togithub.com/prettier/prettier/compare/3.2.4...3.2.5)

[diff](https://togithub.com/prettier/prettier/compare/3.2.4...3.2.5)

##### Support Angular inline styles as single template literal ([#&#8203;15968](https://togithub.com/prettier/prettier/pull/15968) by [@&#8203;sosukesuzuki](https://togithub.com/sosukesuzuki))

[Angular v17](https://blog.angular.io/introducing-angular-v17-4d7033312e4b) supports single string inline styles.



```ts
// Input
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.4
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `h1 { color: blue; }`,
})
export class AppComponent {}

// Prettier 3.2.5
@&#8203;Component({
  template: `<div>...</div>`,
  styles: `
    h1 {
      color: blue;
    }
  `,
})
export class AppComponent {}

```

##### Unexpected embedded formatting for Angular template ([#&#8203;15969](https://togithub.com/prettier/prettier/pull/15969) by [@&#8203;JounQin](https://togithub.com/JounQin))

Computed template should not be considered as Angular component template



```ts
// Input
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.4
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{ hello }}</h1>`,
})
export class AppComponent {}

// Prettier 3.2.5
const template = "foobar";

@&#8203;Component({
  [template]: `<h1>{{       hello }}</h1>`,
})
export class AppComponent {}
```

##### Use `"json"` parser for `tsconfig.json` by default ([#&#8203;16012](https://togithub.com/prettier/prettier/pull/16012) by [@&#8203;sosukesuzuki](https://togithub.com/sosukesuzuki))

In [v2.3.0](https://prettier.io/blog/2024/01/12/3.2.0#new-jsonc-parser-added-15831httpsgithubcomprettierprettierpull15831-by-fiskerhttpsgithubcomfisker), we introduced `"jsonc"` parser which adds trialing comma **by default**.

When adding a new parser we also define how it will be used based on the [`linguist-languages`](https://www.npmjs.com/package/linguist-languages) data.

`tsconfig.json` is a special file used by [TypeScript](https://www.typescriptlang.org/docs/handbook/tsconfig-json.html#using-tsconfigjson-or-jsconfigjson), it uses `.json` file extension, but it actually uses the [JSON with Comments](https://code.visualstudio.com/docs/languages/json#\_json-with-comments) syntax. However, we found that there are many third-party tools not recognize it correctly because of the confusing `.json` file extension.

We decide to treat it as a JSON file for now to avoid the extra configuration step.

To keep using the `"jsonc"` parser for your `tsconfig.json` files, add the following to your `.pretterrc` file

```json
{
  "overrides": [
    {
      "files": ["tsconfig.json", "jsconfig.json"],
      "options": {
        "parser": "jsonc"
      }
    }
  ]
}
```



```
```

### [`v3.2.4`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#324)

[Compare Source](https://togithub.com/prettier/prettier/compare/3.2.3...3.2.4)

[diff](https://togithub.com/prettier/prettier/compare/3.2.3...3.2.4)

##### Fix incorrect parser inference ([#&#8203;15947](https://togithub.com/prettier/prettier/pull/15947) by [@&#8203;fisker](https://togithub.com/fisker))

Files like `.eslintrc.json` were incorrectly formatted as JSONC files.



```jsx
// Input
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "jsonc" }

// Prettier 3.2.4
prettier --file-info .eslintrc.json
{ "ignored": false, "inferredParser": "json" }
```

### [`v3.2.3`](https://togithub.com/prettier/prettier/blob/HEAD/CHANGELOG.md#323)

[Compare Source](https://togithub.com/prettier/prettier/compare/3.2.2...3.2.3)

[diff](https://togithub.com/prettier/prettier/compare/3.2.2...3.2.3)

##### Throw errors for invalid code ([#&#8203;15881](https://togithub.com/prettier/prettier/pull/15881) by [@&#8203;fisker](https://togithub.com/fisker), [@&#8203;Josh-Cena](https://togithub.com/Josh-Cena), [@&#8203;auvred](https://togithub.com/auvred))



```ts
// Input
1++;

// Prettier 3.2.2
1++;

// Prettier 3.2.3
SyntaxError: Invalid left-hand side expression in unary operation (1:1)
> 1 | 1++;
    | ^
```



```ts
// Input
try {} catch (error = 1){}

// Prettier 3.2.2
try {
} catch (error) {}

// Prettier 3.2.3
SyntaxError: Catch clause variable cannot have an initializer. (1:23)
> 1 | try {} catch (error = 1){}
    |                       ^
```

##### Fix parser inference ([#&#8203;15927](https://togithub.com/prettier/prettier/pull/15927) by [@&#8203;fisker](https://togithub.com/fisker))



```console
// Prettier 3.2.2
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "json" }

// Prettier 3.2.3
prettier --file-info tsconfig.json
{ "ignored": false, "inferredParser": "jsonc" }
```

</details>

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.2`](https://togithub.com/vercel/turbo/releases/tag/v1.12.2): Turborepo v1.12.2

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.1...v1.12.2)



#### What's Changed

##### create-turbo

-   release(turborepo): 1.12.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7193

##### Changelog

-   feat(lockfile): traverse lockfile in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7178
-   perf: remove duplicate git construction by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7194
-   Make clippy happy by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#7195
-   fix: keep stdin open for persistent tasks by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7196
-   add vc config dir by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#7173
-   fix(Turborepo): Handle spaces in path names in git status by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7197
-   feat: enable vt processing on windows by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7158

**Full Changelog**: vercel/turbo@v1.12.1...v1.12.2

### [`v1.12.1`](https://togithub.com/vercel/turbo/releases/tag/v1.12.1): Turborepo v1.12.1

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.0...v1.12.1)



#### What's Changed

##### Docs

-   docs: fix link in telemetry by [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) in [vercel/turbo#7190

##### create-turbo

-   release(turborepo): 1.12.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7177

##### Changelog

-   Print telemetry warning on stderr by [@&#8203;laat](https://togithub.com/laat) in [vercel/turbo#7189
-   chore(integration): remove \_helpers & fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7172

#### New Contributors

-   [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) made their first contribution in [vercel/turbo#7190
-   [@&#8203;laat](https://togithub.com/laat) made their first contribution in [vercel/turbo#7189

**Full Changelog**: vercel/turbo@v1.12.0...v1.12.1

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0): Turborepo v1.12.0

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)



#### What's Changed

##### Docs

-   General CI steps on doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6894
-   \[Docs] create-new.mdx - npm double slash typo fix by [@&#8203;Firfi](https://togithub.com/Firfi) in [vercel/turbo#6933
-   fix(docs): correct option heading by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6973
-   Clean up inputs doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6980
-   fix(docs): typo in `what-to-cache.mdx` by [@&#8203;pjlangley](https://togithub.com/pjlangley) in [vercel/turbo#6960
-   fix(docs): update vercel.mdx by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6987
-   Doc for running setup tasks prior to development tasks. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6999
-   Add Glossary to sidebar. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7011
-   fix(docs): remote cache go -> rust by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7082
-   Use `exports`  in Internal Packages doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7079
-   fix: typo in github-actions.mdx by [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in [vercel/turbo#7069
-   Document glob spec. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7076
-   Document handling of Node.js versions, OS, and arch. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7072
-   Add generalized deployment advice for Prisma doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7130
-   \[DO NOT MERGE] feat(telemetry): cli reference by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6826
-   \[DO NOT MERGE] feat(telemetry): feature docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6827
-   \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7155

##### create-turbo

-   release(turborepo): 1.11.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6891
-   release(turborepo): 1.11.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6975
-   release(turborepo): 1.11.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6997
-   release(turborepo): 1.11.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7157
-   release(turborepo): 1.11.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7170

##### Examples

-   chore(deps-dev): bump the example-dependencies group in /examples/with-shell-commands with 1 update by [@&#8203;dependabot](https://togithub.com/dependabot) in [vercel/turbo#6901
-   Update dependencies in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6920
-   Fix with-svelte-example by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [vercel/turbo#6986
-   fix(examples): fontSize type is number not string by [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in [vercel/turbo#7005
-   Fix Svelte package export map by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [vercel/turbo#7007
-   fix(examples): basic generator by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7022
-   fix(examples): ui turbo.json no longer needed by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7087
-   chore(docs): remove unnecessary spaces by [@&#8203;GyoHeon](https://togithub.com/GyoHeon) in [vercel/turbo#7118
-   chore: install jest in examples/kitchen-sink by [@&#8203;llllvvuu](https://togithub.com/llllvvuu) in [vercel/turbo#7132

##### Changelog

-   fix: Make execution state use auth crate by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#6880
-   fix(telemetry): obfuscate rc endpoint by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6925
-   fix: treat empty environement variables as unset by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6929
-   Error out if dependent flags are provided without their parent by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6780
-   fix: make sure that our concurrency check ignore packages without task by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6790
-   chore: avoid panic on invalid directory filters by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6955
-   feat(Turborepo): Use a wrapper around the raw strings we pass to globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6847
-   fix: ignore permission errors during globbing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6957
-   fix: avoid retry panic by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6926
-   add better messaging when running with api flag by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#6927
-   fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6959
-   Fix/unrevert daemon discovery by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6712
-   feat(telemetry): track prune args by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6970
-   feat(lockfiles): support Yarn 4 patches by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6974
-   feat(telemetry): track global args by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6972
-   fix: update Cargo.lock with correct workspace dependencies by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6990
-   fix: rewrite prefix after carriage return by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6989
-   feat(telemetry): track run arguments by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6985
-   chore: remove usage of command groups by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6992
-   chore: add reason for service being unavailable by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6993
-   fix(turbo): validate graph extension by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6995
-   chore: Adjusted error message for APIClient errors in cache by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6996
-   fix(integration): update help integration test by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7017
-   fix(cache): truncate metadata file when writing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7016
-   fix(prune): correctly create symlinks to directories  by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6983
-   fix: forward fixes for LSP by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7023
-   fix(daemon): make sure cookie dir exists before writing cookie by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7015
-   feat(telemetry): track more daemon errors by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7031
-   chore: revert auth json by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7026
-   chore: prefactor process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7034
-   chore(Turborepo): Scope down opts needed by the visitor, remove run lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7032
-   fix: Examples turbo.json outputs key by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#7071
-   fix: filter package.json files that are subfolders of other packages by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#7025
-   feat: update `@turbo/repository` to use new terminology by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [vercel/turbo#7078
-   fix(turbo): sort dependents and dependencies during normalization by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7018
-   release: `@turbo/repository@0.0.1-canary.3` by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [vercel/turbo#7090
-   chore(daemon): swap fallback logs to debug by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7102
-   feat: add ability to spawn child process with pty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7077
-   chore(Turborepo): Move more CLI stuff out of run code by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7085
-   fix(hashing): include gitignored files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7105
-   fix(clippy): remove unused import by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7120
-   fix(hashing): include default files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7106
-   chore: add tracing to pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7127
-   fix disable echoctl by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7109
-   feat(telemetry): enable feature by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7122
-   feat: enable pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7128
-   feat(hashing): support $TURBO_DEFAULT$ in inputs by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7113
-   fix: process manager tests tty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7156
-   fix(tests): mock telemetry config by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7168
-   chore: clean pnpm lockfile by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7171
-   fix: tasks with no newline by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7175

#### New Contributors

-   [@&#8203;Firfi](https://togithub.com/Firfi) made their first contribution in [vercel/turbo#6933
-   [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first contribution in [vercel/turbo#6960
-   [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first contribution in [vercel/turbo#6986
-   [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their first contribution in [vercel/turbo#7005
-   [@&#8203;nirban07](https://togithub.com/nirban07) made their first contribution in [vercel/turbo#7008
-   [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first contribution in [vercel/turbo#7078
-   [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their first contribution in [vercel/turbo#7069
-   [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first contribution in [vercel/turbo#7118
-   [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first contribution in [vercel/turbo#7132

**Full Changelog**: vercel/turbo@v1.11.3...v1.12.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 becomes conflicted, 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.

---

 - [ ] If you want to rebase/retry this PR, check this box

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/mheob/config).



Co-authored-by: Alex Böhm <3983539+mheob@users.noreply.github.com>
renovate bot added a commit to fwouts/previewjs that referenced this pull request Feb 12, 2024
[![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/turbo)) | [`^1.11.3` ->
`^1.12.3`](https://renovatebot.com/diffs/npm/turbo/1.11.3/1.12.3) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.11.3/1.12.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.11.3/1.12.3?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.3`](https://togithub.com/vercel/turbo/releases/tag/v1.12.3):
Turborepo v1.12.3

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.12.2...v1.12.3)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.3 -->

#### What's Changed

##### Docs

- Add "System environment variables" page. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7223
- Remote Cache API doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7236
- Inputs clarity. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7246
- docs(turborepo): fix typo in task dependencies by
[@&#8203;flextremedev](https://togithub.com/flextremedev) in
[vercel/turbo#7271
- feat(docs): document building turbo from source by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7276
- Fix a typo in docs page for github actions by
[@&#8203;noahsark769](https://togithub.com/noahsark769) in
[vercel/turbo#7249

##### create-turbo

- release(turborepo): 1.12.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7200
- release(turborepo): 1.12.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7215

##### Examples

- Bumping examples to 1.12 by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7053
- Fix trailing comma in exapmle react-library.json by
[@&#8203;Fl0h0](https://togithub.com/Fl0h0) in
[vercel/turbo#7273
- fix: avoid expensive globwalk in examples by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7238

##### Changelog

- backport wax 0.6 fixes to turborepo-wax by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#7089
- chore: allow unused for variables that don't get used on windows by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7212
- rust is no longer experimental by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#7214
- fix: declare version.txt as input by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7221
- refactor: Clean up error printing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#7169
- fix: correctly parse pnpm lockfile settings by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7198
- refactor(turborepo): Change Detector by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#7222
- chore: move scripts to build and benchmark demos to new package by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7217
- feat(turbo-repository): return additional workspace data by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7187
- Fix/filter unnamed packages by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#7280
- fix: Daemon Restarting by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#7288
- chore(turborepo-lib): use compile error for feature validation by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[vercel/turbo#4235
-
fix([@&#8203;turbo/repository](https://togithub.com/turbo/repository)):
update types to latest signature by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7289
- fix(Turborepo): Flag off daemon for package discovery by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7290

#### New Contributors

- [@&#8203;flextremedev](https://togithub.com/flextremedev) made their
first contribution in
[vercel/turbo#7271
- [@&#8203;Fl0h0](https://togithub.com/Fl0h0) made their first
contribution in
[vercel/turbo#7273
- [@&#8203;noahsark769](https://togithub.com/noahsark769) made their
first contribution in
[vercel/turbo#7249

**Full Changelog**:
vercel/turbo@v1.12.2...v1.12.3

### [`v1.12.2`](https://togithub.com/vercel/turbo/releases/tag/v1.12.2):
Turborepo v1.12.2

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.12.1...v1.12.2)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.2 -->

#### What's Changed

##### create-turbo

- release(turborepo): 1.12.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7193

##### Changelog

- feat(lockfile): traverse lockfile in parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7178
- perf: remove duplicate git construction by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7194
- Make clippy happy by [@&#8203;Zertsov](https://togithub.com/Zertsov)
in
[vercel/turbo#7195
- fix: keep stdin open for persistent tasks by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7196
- add vc config dir by [@&#8203;Zertsov](https://togithub.com/Zertsov)
in
[vercel/turbo#7173
- fix(Turborepo): Handle spaces in path names in git status by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7197
- feat: enable vt processing on windows by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7158

**Full Changelog**:
vercel/turbo@v1.12.1...v1.12.2

### [`v1.12.1`](https://togithub.com/vercel/turbo/releases/tag/v1.12.1):
Turborepo v1.12.1

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.12.0...v1.12.1)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.1 -->

#### What's Changed

##### Docs

- docs: fix link in telemetry by
[@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) in
[vercel/turbo#7190

##### create-turbo

- release(turborepo): 1.12.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7177

##### Changelog

- Print telemetry warning on stderr by
[@&#8203;laat](https://togithub.com/laat) in
[vercel/turbo#7189
- chore(integration): remove \_helpers & fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7172

#### New Contributors

- [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) made
their first contribution in
[vercel/turbo#7190
- [@&#8203;laat](https://togithub.com/laat) made their first
contribution in
[vercel/turbo#7189

**Full Changelog**:
vercel/turbo@v1.12.0...v1.12.1

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0):
Turborepo v1.12.0

[Compare
Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)

<!-- Release notes generated using configuration in
.github/turborepo-release.yml at v1.12.0 -->

#### What's Changed

##### Docs

- General CI steps on doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6894
- \[Docs] create-new.mdx - npm double slash typo fix by
[@&#8203;Firfi](https://togithub.com/Firfi) in
[vercel/turbo#6933
- fix(docs): correct option heading by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6973
- Clean up inputs doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6980
- fix(docs): typo in `what-to-cache.mdx` by
[@&#8203;pjlangley](https://togithub.com/pjlangley) in
[vercel/turbo#6960
- fix(docs): update vercel.mdx by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6987
- Doc for running setup tasks prior to development tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6999
- Add Glossary to sidebar. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7011
- fix(docs): remote cache go -> rust by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7082
- Use `exports` in Internal Packages doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7079
- fix: typo in github-actions.mdx by
[@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in
[vercel/turbo#7069
- Document glob spec. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7076
- Document handling of Node.js versions, OS, and arch. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7072
- Add generalized deployment advice for Prisma doc. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#7130
- \[DO NOT MERGE] feat(telemetry): cli reference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6826
- \[DO NOT MERGE] feat(telemetry): feature docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6827
- \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7155

##### create-turbo

- release(turborepo): 1.11.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6891
- release(turborepo): 1.11.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6975
- release(turborepo): 1.11.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#6997
- release(turborepo): 1.11.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7157
- release(turborepo): 1.11.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#7170

##### Examples

- chore(deps-dev): bump the example-dependencies group in
/examples/with-shell-commands with 1 update by
[@&#8203;dependabot](https://togithub.com/dependabot) in
[vercel/turbo#6901
- Update dependencies in examples. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6920
- Fix with-svelte-example by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#6986
- fix(examples): fontSize type is number not string by
[@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in
[vercel/turbo#7005
- Fix Svelte package export map by
[@&#8203;dummdidumm](https://togithub.com/dummdidumm) in
[vercel/turbo#7007
- fix(examples): basic generator by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7022
- fix(examples): ui turbo.json no longer needed by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7087
- chore(docs): remove unnecessary spaces by
[@&#8203;GyoHeon](https://togithub.com/GyoHeon) in
[vercel/turbo#7118
- chore: install jest in examples/kitchen-sink by
[@&#8203;llllvvuu](https://togithub.com/llllvvuu) in
[vercel/turbo#7132

##### Changelog

- fix: Make execution state use auth crate by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6880
- fix(telemetry): obfuscate rc endpoint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6925
- fix: treat empty environement variables as unset by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6929
- Error out if dependent flags are provided without their parent by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6780
- fix: make sure that our concurrency check ignore packages without task
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6790
- chore: avoid panic on invalid directory filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6955
- feat(Turborepo): Use a wrapper around the raw strings we pass to
globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6847
- fix: ignore permission errors during globbing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6957
- fix: avoid retry panic by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6926
- add better messaging when running with api flag by
[@&#8203;Zertsov](https://togithub.com/Zertsov) in
[vercel/turbo#6927
- fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon)
in
[vercel/turbo#6959
- Fix/unrevert daemon discovery by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6712
- feat(telemetry): track prune args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6970
- feat(lockfiles): support Yarn 4 patches by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6974
- feat(telemetry): track global args by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6972
- fix: update Cargo.lock with correct workspace dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6990
- fix: rewrite prefix after carriage return by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6989
- feat(telemetry): track run arguments by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6985
- chore: remove usage of command groups by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6992
- chore: add reason for service being unavailable by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6993
- fix(turbo): validate graph extension by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6995
- chore: Adjusted error message for APIClient errors in cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6996
- fix(integration): update help integration test by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7017
- fix(cache): truncate metadata file when writing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7016
- fix(prune): correctly create symlinks to directories by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6983
- fix: forward fixes for LSP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7023
- fix(daemon): make sure cookie dir exists before writing cookie by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7015
- feat(telemetry): track more daemon errors by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7031
- chore: revert auth json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7026
- chore: prefactor process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7034
- chore(Turborepo): Scope down opts needed by the visitor, remove run
lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7032
- fix: Examples turbo.json outputs key by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#7071
- fix: filter package.json files that are subfolders of other packages
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#7025
- feat: update `@turbo/repository` to use new terminology by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7078
- fix(turbo): sort dependents and dependencies during normalization by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7018
- release: `@turbo/repository@0.0.1-canary.3` by
[@&#8203;mrmckeb](https://togithub.com/mrmckeb) in
[vercel/turbo#7090
- chore(daemon): swap fallback logs to debug by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7102
- feat: add ability to spawn child process with pty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7077
- chore(Turborepo): Move more CLI stuff out of run code by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#7085
- fix(hashing): include gitignored files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7105
- fix(clippy): remove unused import by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7120
- fix(hashing): include default files in fallback by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7106
- chore: add tracing to pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7127
- fix disable echoctl by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7109
- feat(telemetry): enable feature by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7122
- feat: enable pty usage by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7128
- feat(hashing): support $TURBO_DEFAULT$ in inputs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7113
- fix: process manager tests tty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7156
- fix(tests): mock telemetry config by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#7168
- chore: clean pnpm lockfile by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#7171
- fix: tasks with no newline by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#7175

#### New Contributors

- [@&#8203;Firfi](https://togithub.com/Firfi) made their first
contribution in
[vercel/turbo#6933
- [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first
contribution in
[vercel/turbo#6960
- [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first
contribution in
[vercel/turbo#6986
- [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their
first contribution in
[vercel/turbo#7005
- [@&#8203;nirban07](https://togithub.com/nirban07) made their first
contribution in
[vercel/turbo#7008
- [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first
contribution in
[vercel/turbo#7078
- [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their
first contribution in
[vercel/turbo#7069
- [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first
contribution in
[vercel/turbo#7118
- [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first
contribution in
[vercel/turbo#7132

**Full Changelog**:
vercel/turbo@v1.11.3...v1.12.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 has been generated by [Mend
Renovate](https://www.mend.io/free-developer-tools/renovate/). View
repository job log
[here](https://developer.mend.io/github/fwouts/previewjs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xNTMuMiIsInVwZGF0ZWRJblZlciI6IjM3LjE3My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Feb 18, 2024
[![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/turbo)) | [`1.12.3` -> `1.12.4`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.12.4) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.12.4?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.4`](https://togithub.com/vercel/turbo/releases/tag/v1.12.4): Turborepo v1.12.4

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.3...v1.12.4)



#### What's Changed

##### Docs

-   feat(cache): bump default timeout and add docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7304](https://togithub.com/vercel/turbo/pull/7304)

##### create-turbo

-   release(turborepo): 1.12.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7296](https://togithub.com/vercel/turbo/pull/7296)
-   chore(create-turbo): update chalk to v4 by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7300](https://togithub.com/vercel/turbo/pull/7300)
-   release(turborepo): 1.12.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7338](https://togithub.com/vercel/turbo/pull/7338)
-   release(turborepo): 1.12.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7369](https://togithub.com/vercel/turbo/pull/7369)

##### [@&#8203;turbo/repository](https://togithub.com/turbo/repository) - ⚠️  **Alpha - Expect Breaking Changes**

-   fix([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): fix breaking API changes from turbo core by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7373](https://togithub.com/vercel/turbo/pull/7373)
-   chore(turbo): rename workspace -> package in PackageGraph module by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7372](https://togithub.com/vercel/turbo/pull/7372)

##### Changelog

-   chore(Turborepo): Delete or feature-gate imports by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7295](https://togithub.com/vercel/turbo/pull/7295)
-   fix(Turborepo): Route through existing wait_for_filewatching call by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7237](https://togithub.com/vercel/turbo/pull/7237)
-   feat(async_cache): support cloning by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7293](https://togithub.com/vercel/turbo/pull/7293)
-   refactor: Error on absolute paths in turbo.json by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7292](https://togithub.com/vercel/turbo/pull/7292)
-   implement vercel auth token for SSO by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7192](https://togithub.com/vercel/turbo/pull/7192)
-   feat([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): add method to return package dependents by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7242](https://togithub.com/vercel/turbo/pull/7242)
-   chore([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): bump version to 0.0.1-canary.5 by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7312](https://togithub.com/vercel/turbo/pull/7312)
-   fix(Turborepo): Don't block forever if we have already gotten a parse error by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7203](https://togithub.com/vercel/turbo/pull/7203)
-   chore(Turborepo): Remove ExecutionState, we don't need it anymore by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7281](https://togithub.com/vercel/turbo/pull/7281)
-   feat(turbo): task access trace & cached configs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7074](https://togithub.com/vercel/turbo/pull/7074)
-   chore: fix clippy lints in [@&#8203;turbo/repository](https://togithub.com/turbo/repository) by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7310](https://togithub.com/vercel/turbo/pull/7310)
-   chore: Clean up log files, add `daemon log` subcommand by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7305](https://togithub.com/vercel/turbo/pull/7305)
-   chore: add shutdown method for async cache by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7309](https://togithub.com/vercel/turbo/pull/7309)
-   feat: vendor CI log groups by [@&#8203;cymruu](https://togithub.com/cymruu) in [https://github.com/vercel/turbo/pull/6314](https://togithub.com/vercel/turbo/pull/6314)
-   feat(turborepo): daemon UX improvements by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7307](https://togithub.com/vercel/turbo/pull/7307)
-   chore(turborepo): Ensure fresh builds by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7321](https://togithub.com/vercel/turbo/pull/7321)
-   chore: don't print debug info on successful login by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7323](https://togithub.com/vercel/turbo/pull/7323)
-   fix: check vercel token is still valid by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7325](https://togithub.com/vercel/turbo/pull/7325)
-   fix(Turborepo): Start moving cookie watching to downstream services by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7283](https://togithub.com/vercel/turbo/pull/7283)
-   chore([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): add inline jsdocs for findPackagesAndDependents method by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7331](https://togithub.com/vercel/turbo/pull/7331)
-   chore: modularize vercel api crate by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7329](https://togithub.com/vercel/turbo/pull/7329)
-   fix(Turborepo): Pass validated globs to daemon for watching by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7327](https://togithub.com/vercel/turbo/pull/7327)
-   feat(Turborepo): Add spaces_id to layered config by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7330](https://togithub.com/vercel/turbo/pull/7330)
-   feat(gitignore): break out gitignore util by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7319](https://togithub.com/vercel/turbo/pull/7319)
-   feat(turbo): update changemapper to return name and path of packages by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7336](https://togithub.com/vercel/turbo/pull/7336)
-   chore(turbo): rename WorkspaceNode to PackageNode by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7351](https://togithub.com/vercel/turbo/pull/7351)
-   chore(turbo): rename WorkspaceInfo struct to PackageInfo by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7353](https://togithub.com/vercel/turbo/pull/7353)
-   chore(Turborepo): Move daemon paths off of CommandBase by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7339](https://togithub.com/vercel/turbo/pull/7339)
-   fix: use system certs for tls by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7357](https://togithub.com/vercel/turbo/pull/7357)
-   chore(Turborepo): Remote CommandBase from Run by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7360](https://togithub.com/vercel/turbo/pull/7360)
-   feat([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): add affectedPackages API by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7326](https://togithub.com/vercel/turbo/pull/7326)
-   feat([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): bump for release by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7361](https://togithub.com/vercel/turbo/pull/7361)
-   chore(turbo): rename WorkspaceName to PackageName by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7355](https://togithub.com/vercel/turbo/pull/7355)
-   chore(turbo): delete unused fixture in cli directory by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7376](https://togithub.com/vercel/turbo/pull/7376)
-   fix: avoid grouping logs from tasks which ended in error by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7335](https://togithub.com/vercel/turbo/pull/7335)

#### New Contributors

-   [@&#8203;cymruu](https://togithub.com/cymruu) made their first contribution in [https://github.com/vercel/turbo/pull/6314](https://togithub.com/vercel/turbo/pull/6314)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.3...v1.12.4

### [`v1.12.3`](https://togithub.com/vercel/turbo/releases/tag/v1.12.3): Turborepo v1.12.3

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.2...v1.12.3)



#### What's Changed

##### Docs

-   Add "System environment variables" page. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7223](https://togithub.com/vercel/turbo/pull/7223)
-   Remote Cache API doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7236](https://togithub.com/vercel/turbo/pull/7236)
-   Inputs clarity. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7246](https://togithub.com/vercel/turbo/pull/7246)
-   docs(turborepo): fix typo in task dependencies by [@&#8203;flextremedev](https://togithub.com/flextremedev) in [https://github.com/vercel/turbo/pull/7271](https://togithub.com/vercel/turbo/pull/7271)
-   feat(docs): document building turbo from source by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7276](https://togithub.com/vercel/turbo/pull/7276)
-   Fix a typo in docs page for github actions by [@&#8203;noahsark769](https://togithub.com/noahsark769) in [https://github.com/vercel/turbo/pull/7249](https://togithub.com/vercel/turbo/pull/7249)

##### create-turbo

-   release(turborepo): 1.12.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7200](https://togithub.com/vercel/turbo/pull/7200)
-   release(turborepo): 1.12.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7215](https://togithub.com/vercel/turbo/pull/7215)

##### Examples

-   Bumping examples to 1.12 by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7053](https://togithub.com/vercel/turbo/pull/7053)
-   Fix trailing comma in exapmle react-library.json by [@&#8203;Fl0h0](https://togithub.com/Fl0h0) in [https://github.com/vercel/turbo/pull/7273](https://togithub.com/vercel/turbo/pull/7273)
-   fix: avoid expensive globwalk in examples by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7238](https://togithub.com/vercel/turbo/pull/7238)

##### Changelog

-   backport wax 0.6 fixes to turborepo-wax by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7089](https://togithub.com/vercel/turbo/pull/7089)
-   chore: allow unused for variables that don't get used on windows by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7212](https://togithub.com/vercel/turbo/pull/7212)
-   rust is no longer experimental by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7214](https://togithub.com/vercel/turbo/pull/7214)
-   fix: declare version.txt as input by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7221](https://togithub.com/vercel/turbo/pull/7221)
-   refactor: Clean up error printing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7169](https://togithub.com/vercel/turbo/pull/7169)
-   fix: correctly parse pnpm lockfile settings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7198](https://togithub.com/vercel/turbo/pull/7198)
-   refactor(turborepo): Change Detector by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7222](https://togithub.com/vercel/turbo/pull/7222)
-   chore: move scripts to build and benchmark demos to new package by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7217](https://togithub.com/vercel/turbo/pull/7217)
-   feat(turbo-repository): return additional workspace data by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7187](https://togithub.com/vercel/turbo/pull/7187)
-   Fix/filter unnamed packages by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7280](https://togithub.com/vercel/turbo/pull/7280)
-   fix: Daemon Restarting by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7288](https://togithub.com/vercel/turbo/pull/7288)
-   chore(turborepo-lib): use compile error for feature validation by [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in [https://github.com/vercel/turbo/pull/4235](https://togithub.com/vercel/turbo/pull/4235)
-   fix([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): update types to latest signature by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7289](https://togithub.com/vercel/turbo/pull/7289)
-   fix(Turborepo): Flag off daemon for package discovery by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7290](https://togithub.com/vercel/turbo/pull/7290)

#### New Contributors

-   [@&#8203;flextremedev](https://togithub.com/flextremedev) made their first contribution in [https://github.com/vercel/turbo/pull/7271](https://togithub.com/vercel/turbo/pull/7271)
-   [@&#8203;Fl0h0](https://togithub.com/Fl0h0) made their first contribution in [https://github.com/vercel/turbo/pull/7273](https://togithub.com/vercel/turbo/pull/7273)
-   [@&#8203;noahsark769](https://togithub.com/noahsark769) made their first contribution in [https://github.com/vercel/turbo/pull/7249](https://togithub.com/vercel/turbo/pull/7249)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.2...v1.12.3

### [`v1.12.2`](https://togithub.com/vercel/turbo/releases/tag/v1.12.2): Turborepo v1.12.2

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.1...v1.12.2)



#### What's Changed

##### create-turbo

-   release(turborepo): 1.12.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7193](https://togithub.com/vercel/turbo/pull/7193)

##### Changelog

-   feat(lockfile): traverse lockfile in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7178](https://togithub.com/vercel/turbo/pull/7178)
-   perf: remove duplicate git construction by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7194](https://togithub.com/vercel/turbo/pull/7194)
-   Make clippy happy by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7195](https://togithub.com/vercel/turbo/pull/7195)
-   fix: keep stdin open for persistent tasks by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7196](https://togithub.com/vercel/turbo/pull/7196)
-   add vc config dir by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/7173](https://togithub.com/vercel/turbo/pull/7173)
-   fix(Turborepo): Handle spaces in path names in git status by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7197](https://togithub.com/vercel/turbo/pull/7197)
-   feat: enable vt processing on windows by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7158](https://togithub.com/vercel/turbo/pull/7158)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.1...v1.12.2

### [`v1.12.1`](https://togithub.com/vercel/turbo/releases/tag/v1.12.1): Turborepo v1.12.1

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.0...v1.12.1)



#### What's Changed

##### Docs

-   docs: fix link in telemetry by [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) in [https://github.com/vercel/turbo/pull/7190](https://togithub.com/vercel/turbo/pull/7190)

##### create-turbo

-   release(turborepo): 1.12.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7177](https://togithub.com/vercel/turbo/pull/7177)

##### Changelog

-   Print telemetry warning on stderr by [@&#8203;laat](https://togithub.com/laat) in [https://github.com/vercel/turbo/pull/7189](https://togithub.com/vercel/turbo/pull/7189)
-   chore(integration): remove \_helpers & fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7172](https://togithub.com/vercel/turbo/pull/7172)

#### New Contributors

-   [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) made their first contribution in [https://github.com/vercel/turbo/pull/7190](https://togithub.com/vercel/turbo/pull/7190)
-   [@&#8203;laat](https://togithub.com/laat) made their first contribution in [https://github.com/vercel/turbo/pull/7189](https://togithub.com/vercel/turbo/pull/7189)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.12.0...v1.12.1

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0): Turborepo v1.12.0

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)



#### What's Changed

##### Docs

-   General CI steps on doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6894](https://togithub.com/vercel/turbo/pull/6894)
-   \[Docs] create-new.mdx - npm double slash typo fix by [@&#8203;Firfi](https://togithub.com/Firfi) in [https://github.com/vercel/turbo/pull/6933](https://togithub.com/vercel/turbo/pull/6933)
-   fix(docs): correct option heading by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6973](https://togithub.com/vercel/turbo/pull/6973)
-   Clean up inputs doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6980](https://togithub.com/vercel/turbo/pull/6980)
-   fix(docs): typo in `what-to-cache.mdx` by [@&#8203;pjlangley](https://togithub.com/pjlangley) in [https://github.com/vercel/turbo/pull/6960](https://togithub.com/vercel/turbo/pull/6960)
-   fix(docs): update vercel.mdx by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6987](https://togithub.com/vercel/turbo/pull/6987)
-   Doc for running setup tasks prior to development tasks. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6999](https://togithub.com/vercel/turbo/pull/6999)
-   Add Glossary to sidebar. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7011](https://togithub.com/vercel/turbo/pull/7011)
-   fix(docs): remote cache go -> rust by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7082](https://togithub.com/vercel/turbo/pull/7082)
-   Use `exports`  in Internal Packages doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7079](https://togithub.com/vercel/turbo/pull/7079)
-   fix: typo in github-actions.mdx by [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in [https://github.com/vercel/turbo/pull/7069](https://togithub.com/vercel/turbo/pull/7069)
-   Document glob spec. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7076](https://togithub.com/vercel/turbo/pull/7076)
-   Document handling of Node.js versions, OS, and arch. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7072](https://togithub.com/vercel/turbo/pull/7072)
-   Add generalized deployment advice for Prisma doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/7130](https://togithub.com/vercel/turbo/pull/7130)
-   \[DO NOT MERGE] feat(telemetry): cli reference by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6826](https://togithub.com/vercel/turbo/pull/6826)
-   \[DO NOT MERGE] feat(telemetry): feature docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6827](https://togithub.com/vercel/turbo/pull/6827)
-   \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7155](https://togithub.com/vercel/turbo/pull/7155)

##### create-turbo

-   release(turborepo): 1.11.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6891](https://togithub.com/vercel/turbo/pull/6891)
-   release(turborepo): 1.11.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6975](https://togithub.com/vercel/turbo/pull/6975)
-   release(turborepo): 1.11.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6997](https://togithub.com/vercel/turbo/pull/6997)
-   release(turborepo): 1.11.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7157](https://togithub.com/vercel/turbo/pull/7157)
-   release(turborepo): 1.11.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/7170](https://togithub.com/vercel/turbo/pull/7170)

##### Examples

-   chore(deps-dev): bump the example-dependencies group in /examples/with-shell-commands with 1 update by [@&#8203;dependabot](https://togithub.com/dependabot) in [https://github.com/vercel/turbo/pull/6901](https://togithub.com/vercel/turbo/pull/6901)
-   Update dependencies in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6920](https://togithub.com/vercel/turbo/pull/6920)
-   Fix with-svelte-example by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [https://github.com/vercel/turbo/pull/6986](https://togithub.com/vercel/turbo/pull/6986)
-   fix(examples): fontSize type is number not string by [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in [https://github.com/vercel/turbo/pull/7005](https://togithub.com/vercel/turbo/pull/7005)
-   Fix Svelte package export map by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [https://github.com/vercel/turbo/pull/7007](https://togithub.com/vercel/turbo/pull/7007)
-   fix(examples): basic generator by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7022](https://togithub.com/vercel/turbo/pull/7022)
-   fix(examples): ui turbo.json no longer needed by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7087](https://togithub.com/vercel/turbo/pull/7087)
-   chore(docs): remove unnecessary spaces by [@&#8203;GyoHeon](https://togithub.com/GyoHeon) in [https://github.com/vercel/turbo/pull/7118](https://togithub.com/vercel/turbo/pull/7118)
-   chore: install jest in examples/kitchen-sink by [@&#8203;llllvvuu](https://togithub.com/llllvvuu) in [https://github.com/vercel/turbo/pull/7132](https://togithub.com/vercel/turbo/pull/7132)

##### Changelog

-   fix: Make execution state use auth crate by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6880](https://togithub.com/vercel/turbo/pull/6880)
-   fix(telemetry): obfuscate rc endpoint by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6925](https://togithub.com/vercel/turbo/pull/6925)
-   fix: treat empty environement variables as unset by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6929](https://togithub.com/vercel/turbo/pull/6929)
-   Error out if dependent flags are provided without their parent by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6780](https://togithub.com/vercel/turbo/pull/6780)
-   fix: make sure that our concurrency check ignore packages without task by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6790](https://togithub.com/vercel/turbo/pull/6790)
-   chore: avoid panic on invalid directory filters by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6955](https://togithub.com/vercel/turbo/pull/6955)
-   feat(Turborepo): Use a wrapper around the raw strings we pass to globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6847](https://togithub.com/vercel/turbo/pull/6847)
-   fix: ignore permission errors during globbing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6957](https://togithub.com/vercel/turbo/pull/6957)
-   fix: avoid retry panic by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6926](https://togithub.com/vercel/turbo/pull/6926)
-   add better messaging when running with api flag by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6927](https://togithub.com/vercel/turbo/pull/6927)
-   fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6959](https://togithub.com/vercel/turbo/pull/6959)
-   Fix/unrevert daemon discovery by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6712](https://togithub.com/vercel/turbo/pull/6712)
-   feat(telemetry): track prune args by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6970](https://togithub.com/vercel/turbo/pull/6970)
-   feat(lockfiles): support Yarn 4 patches by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6974](https://togithub.com/vercel/turbo/pull/6974)
-   feat(telemetry): track global args by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6972](https://togithub.com/vercel/turbo/pull/6972)
-   fix: update Cargo.lock with correct workspace dependencies by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6990](https://togithub.com/vercel/turbo/pull/6990)
-   fix: rewrite prefix after carriage return by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6989](https://togithub.com/vercel/turbo/pull/6989)
-   feat(telemetry): track run arguments by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6985](https://togithub.com/vercel/turbo/pull/6985)
-   chore: remove usage of command groups by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6992](https://togithub.com/vercel/turbo/pull/6992)
-   chore: add reason for service being unavailable by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6993](https://togithub.com/vercel/turbo/pull/6993)
-   fix(turbo): validate graph extension by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6995](https://togithub.com/vercel/turbo/pull/6995)
-   chore: Adjusted error message for APIClient errors in cache by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6996](https://togithub.com/vercel/turbo/pull/6996)
-   fix(integration): update help integration test by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7017](https://togithub.com/vercel/turbo/pull/7017)
-   fix(cache): truncate metadata file when writing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7016](https://togithub.com/vercel/turbo/pull/7016)
-   fix(prune): correctly create symlinks to directories  by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6983](https://togithub.com/vercel/turbo/pull/6983)
-   fix: forward fixes for LSP by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7023](https://togithub.com/vercel/turbo/pull/7023)
-   fix(daemon): make sure cookie dir exists before writing cookie by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7015](https://togithub.com/vercel/turbo/pull/7015)
-   feat(telemetry): track more daemon errors by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7031](https://togithub.com/vercel/turbo/pull/7031)
-   chore: revert auth json by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7026](https://togithub.com/vercel/turbo/pull/7026)
-   chore: prefactor process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7034](https://togithub.com/vercel/turbo/pull/7034)
-   chore(Turborepo): Scope down opts needed by the visitor, remove run lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7032](https://togithub.com/vercel/turbo/pull/7032)
-   fix: Examples turbo.json outputs key by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/7071](https://togithub.com/vercel/turbo/pull/7071)
-   fix: filter package.json files that are subfolders of other packages by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/7025](https://togithub.com/vercel/turbo/pull/7025)
-   feat: update `@turbo/repository` to use new terminology by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7078](https://togithub.com/vercel/turbo/pull/7078)
-   fix(turbo): sort dependents and dependencies during normalization by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7018](https://togithub.com/vercel/turbo/pull/7018)
-   release: `@turbo/repository@0.0.1-canary.3` by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [https://github.com/vercel/turbo/pull/7090](https://togithub.com/vercel/turbo/pull/7090)
-   chore(daemon): swap fallback logs to debug by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7102](https://togithub.com/vercel/turbo/pull/7102)
-   feat: add ability to spawn child process with pty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7077](https://togithub.com/vercel/turbo/pull/7077)
-   chore(Turborepo): Move more CLI stuff out of run code by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/7085](https://togithub.com/vercel/turbo/pull/7085)
-   fix(hashing): include gitignored files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7105](https://togithub.com/vercel/turbo/pull/7105)
-   fix(clippy): remove unused import by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7120](https://togithub.com/vercel/turbo/pull/7120)
-   fix(hashing): include default files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7106](https://togithub.com/vercel/turbo/pull/7106)
-   chore: add tracing to pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7127](https://togithub.com/vercel/turbo/pull/7127)
-   fix disable echoctl by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7109](https://togithub.com/vercel/turbo/pull/7109)
-   feat(telemetry): enable feature by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7122](https://togithub.com/vercel/turbo/pull/7122)
-   feat: enable pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7128](https://togithub.com/vercel/turbo/pull/7128)
-   feat(hashing): support $TURBO_DEFAULT$ in inputs by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7113](https://togithub.com/vercel/turbo/pull/7113)
-   fix: process manager tests tty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7156](https://togithub.com/vercel/turbo/pull/7156)
-   fix(tests): mock telemetry config by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/7168](https://togithub.com/vercel/turbo/pull/7168)
-   chore: clean pnpm lockfile by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/7171](https://togithub.com/vercel/turbo/pull/7171)
-   fix: tasks with no newline by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/7175](https://togithub.com/vercel/turbo/pull/7175)

#### New Contributors

-   [@&#8203;Firfi](https://togithub.com/Firfi) made their first contribution in [https://github.com/vercel/turbo/pull/6933](https://togithub.com/vercel/turbo/pull/6933)
-   [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first contribution in [https://github.com/vercel/turbo/pull/6960](https://togithub.com/vercel/turbo/pull/6960)
-   [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first contribution in [https://github.com/vercel/turbo/pull/6986](https://togithub.com/vercel/turbo/pull/6986)
-   [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their first contribution in [https://github.com/vercel/turbo/pull/7005](https://togithub.com/vercel/turbo/pull/7005)
-   [@&#8203;nirban07](https://togithub.com/nirban07) made their first contribution in [https://github.com/vercel/turbo/pull/7008](https://togithub.com/vercel/turbo/pull/7008)
-   [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first contribution in [https://github.com/vercel/turbo/pull/7078](https://togithub.com/vercel/turbo/pull/7078)
-   [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their first contribution in [https://github.com/vercel/turbo/pull/7069](https://togithub.com/vercel/turbo/pull/7069)
-   [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first contribution in [https://github.com/vercel/turbo/pull/7118](https://togithub.com/vercel/turbo/pull/7118)
-   [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first contribution in [https://github.com/vercel/turbo/pull/7132](https://togithub.com/vercel/turbo/pull/7132)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.3...v1.12.0

### [`v1.11.3`](https://togithub.com/vercel/turbo/releases/tag/v1.11.3): Turborepo v1.11.3

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.2...v1.11.3)



#### What's Changed

##### Docs

-   Updated outdated Docs "Getting Started" > "Create a New Monorepo" by [@&#8203;Gogoro](https://togithub.com/Gogoro) in [https://github.com/vercel/turbo/pull/6786](https://togithub.com/vercel/turbo/pull/6786)
-   docs: fix typo under getting started by [@&#8203;denniscampos](https://togithub.com/denniscampos) in [https://github.com/vercel/turbo/pull/6817](https://togithub.com/vercel/turbo/pull/6817)

##### create-turbo

-   release(turborepo): 1.11.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6776](https://togithub.com/vercel/turbo/pull/6776)
-   release(turborepo): 1.11.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6791](https://togithub.com/vercel/turbo/pull/6791)
-   release(turborepo): 1.11.3-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6835](https://togithub.com/vercel/turbo/pull/6835)
-   release(turborepo): 1.11.3-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6890](https://togithub.com/vercel/turbo/pull/6890)

##### Examples

-   Bump turbo in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6766](https://togithub.com/vercel/turbo/pull/6766)
-   fix button prop appName from docs app by [@&#8203;Yunfei1982](https://togithub.com/Yunfei1982) in [https://github.com/vercel/turbo/pull/6794](https://togithub.com/vercel/turbo/pull/6794)
-   Ignore dist in shell commands example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6851](https://togithub.com/vercel/turbo/pull/6851)
-   fix(examples): Typo correction on design-system package.json by [@&#8203;GGalupo](https://togithub.com/GGalupo) in [https://github.com/vercel/turbo/pull/6859](https://togithub.com/vercel/turbo/pull/6859)

##### Changelog

-   chore: remove verbosity filter from chrome profile by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6779](https://togithub.com/vercel/turbo/pull/6779)
-   feat: add anon-profile flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6781](https://togithub.com/vercel/turbo/pull/6781)
-   chore: remove verbosity flag when running benchmark by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6782](https://togithub.com/vercel/turbo/pull/6782)
-   feat(gen): pass the command cwd through by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6795](https://togithub.com/vercel/turbo/pull/6795)
-   perf(yarn3): eagerly construct map from workspace paths to locators by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6797](https://togithub.com/vercel/turbo/pull/6797)
-   fix: add missing dependency to cargo lockfile by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6807](https://togithub.com/vercel/turbo/pull/6807)
-   refactor: Remove bookkeeping abstraction from turbo config by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6809](https://togithub.com/vercel/turbo/pull/6809)
-   chore: include response body if not valid JSON by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6796](https://togithub.com/vercel/turbo/pull/6796)
-   chore: add tracing to primary lockfile functions by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6800](https://togithub.com/vercel/turbo/pull/6800)
-   feat(turbo): telemetry client by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6743](https://togithub.com/vercel/turbo/pull/6743)
-   fix(telemetry): don’t track hash by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6828](https://togithub.com/vercel/turbo/pull/6828)
-   feat(telemetry): add README disabled note by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6829](https://togithub.com/vercel/turbo/pull/6829)
-   feat(telemetry): generic parent to child event by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6830](https://togithub.com/vercel/turbo/pull/6830)
-   Create wrapper for `dirs_next::config_dir()` by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6837](https://togithub.com/vercel/turbo/pull/6837)
-   fix: Allow for long symlinks by using append_link by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6838](https://togithub.com/vercel/turbo/pull/6838)
-   Use the sso team instead of the string 'sso' by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6867](https://togithub.com/vercel/turbo/pull/6867)
-   feat(telemetry): track client system info by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6868](https://togithub.com/vercel/turbo/pull/6868)
-   fix(yarn4): avoid overwriting non-npm protocols by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6723](https://togithub.com/vercel/turbo/pull/6723)
-   fix: avoid deleting cached package discovery data by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6872](https://togithub.com/vercel/turbo/pull/6872)
-   Make link command use auth crate instead of config token by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6870](https://togithub.com/vercel/turbo/pull/6870)
-   fix support bracket filepaths by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6877](https://togithub.com/vercel/turbo/pull/6877)
-   fix clippy 'errors' by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6881](https://togithub.com/vercel/turbo/pull/6881)
-   feat(telemetry): add run and repo events by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6876](https://togithub.com/vercel/turbo/pull/6876)
-   add base url getter to APIClient by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [https://github.com/vercel/turbo/pull/6888](https://togithub.com/vercel/turbo/pull/6888)
-   chore: tracing overhaul by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6869](https://togithub.com/vercel/turbo/pull/6869)

#### New Contributors

-   [@&#8203;Yunfei1982](https://togithub.com/Yunfei1982) made their first contribution in [https://github.com/vercel/turbo/pull/6794](https://togithub.com/vercel/turbo/pull/6794)
-   [@&#8203;Gogoro](https://togithub.com/Gogoro) made their first contribution in [https://github.com/vercel/turbo/pull/6786](https://togithub.com/vercel/turbo/pull/6786)
-   [@&#8203;denniscampos](https://togithub.com/denniscampos) made their first contribution in [https://github.com/vercel/turbo/pull/6817](https://togithub.com/vercel/turbo/pull/6817)
-   [@&#8203;jupapios](https://togithub.com/jupapios) made their first contribution in [https://github.com/vercel/turbo/pull/6849](https://togithub.com/vercel/turbo/pull/6849)
-   [@&#8203;GGalupo](https://togithub.com/GGalupo) made their first contribution in [https://github.com/vercel/turbo/pull/6859](https://togithub.com/vercel/turbo/pull/6859)
-   [@&#8203;bb8dd](https://togithub.com/bb8dd) made their first contribution in [https://github.com/vercel/turbo/pull/6862](https://togithub.com/vercel/turbo/pull/6862)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.2...v1.11.3

### [`v1.11.2`](https://togithub.com/vercel/turbo/releases/tag/v1.11.2): Turborepo v1.11.2

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.1...v1.11.2)



#### What's Changed

##### Docs

-   Update yarn support policy. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6757](https://togithub.com/vercel/turbo/pull/6757)

##### create-turbo

-   release(turborepo): 1.11.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6742](https://togithub.com/vercel/turbo/pull/6742)
-   release(turborepo): 1.11.2-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6771](https://togithub.com/vercel/turbo/pull/6771)

##### Examples

-   Add transpilePackages to `with-tailwind` example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6746](https://togithub.com/vercel/turbo/pull/6746)
-   Update README for with-tailwind. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6755](https://togithub.com/vercel/turbo/pull/6755)
-   Remove source key from with-docker example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6759](https://togithub.com/vercel/turbo/pull/6759)
-   Use `"strict": true`  for TypeScript in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6762](https://togithub.com/vercel/turbo/pull/6762)

##### Changelog

-   chore: avoid panics in berry lockfile by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6725](https://togithub.com/vercel/turbo/pull/6725)
-   fix: remove placeholder duration from cache metadata by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6756](https://togithub.com/vercel/turbo/pull/6756)
-   chore: Remove hash comparison code by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6758](https://togithub.com/vercel/turbo/pull/6758)
-   fix: ignore exit codes when child killed by manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6767](https://togithub.com/vercel/turbo/pull/6767)
-   fix: make assertion assert something by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6768](https://togithub.com/vercel/turbo/pull/6768)
-   Allow forcing use of daemon by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6764](https://togithub.com/vercel/turbo/pull/6764)
-   fix: avoid double slash if glob ends with slash by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6772](https://togithub.com/vercel/turbo/pull/6772)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.1...v1.11.2

### [`v1.11.1`](https://togithub.com/vercel/turbo/releases/tag/v1.11.1): Turborepo v1.11.1

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.0...v1.11.1)



#### What's Changed

##### create-turbo

-   release(turborepo): 1.11.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6706](https://togithub.com/vercel/turbo/pull/6706)
-   release(turborepo): 1.11.1-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6741](https://togithub.com/vercel/turbo/pull/6741)

##### Examples

-   Example with only shell commands. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6688](https://togithub.com/vercel/turbo/pull/6688)
-   Update with-tailwind example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6575](https://togithub.com/vercel/turbo/pull/6575)
-   Mix of server and client components in basic example. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6682](https://togithub.com/vercel/turbo/pull/6682)

##### Changelog

-   chore(tests): cleanup setup scripts by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6700](https://togithub.com/vercel/turbo/pull/6700)
-   fix: limit the amount of logs we send to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6691](https://togithub.com/vercel/turbo/pull/6691)
-   chore(Turborepo): Bump npm rust package version by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6721](https://togithub.com/vercel/turbo/pull/6721)
-   fix: properly catch sigterm sent from global by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6724](https://togithub.com/vercel/turbo/pull/6724)
-   chore(ignore): exclude rustc-ice files by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6733](https://togithub.com/vercel/turbo/pull/6733)
-   Fix behaviour when discovering files for global hashing by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6738](https://togithub.com/vercel/turbo/pull/6738)

**Full Changelog**: https://github.com/vercel/turbo/compare/v1.11.0...v1.11.1

### [`v1.11.0`](https://togithub.com/vercel/turbo/releases/tag/v1.11.0): Turborepo v1.11.0

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.10.16...v1.11.0)



#### What's Changed

##### Docs

-   feat(docs): document support policy by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6277](https://togithub.com/vercel/turbo/pull/6277)
-   fix(docs): correct support typo by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6313](https://togithub.com/vercel/turbo/pull/6313)
-   fix(docs): Add full stop punctuation and add inifinitive marker to verb by [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) in [https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
-   docs: Added nested workspaces under troubleshooting by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6342](https://togithub.com/vercel/turbo/pull/6342)
-   docs: document --profile flag by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6371](https://togithub.com/vercel/turbo/pull/6371)
-   fix(docs): clarify output mode for Dockerfile by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6385](https://togithub.com/vercel/turbo/pull/6385)
-   docs: add github actions/cache example to github ci docs by [@&#8203;austinwoon](https://togithub.com/austinwoon) in [https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
-   docs: Fix typo 'specifing -> specifying' by [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) in [https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
-   Improved TSConfigs in examples by [@&#8203;mattpocock](https://togithub.com/mattpocock) in [https://github.com/vercel/turbo/pull/6396](https://togithub.com/vercel/turbo/pull/6396)
-   docs: update formatting on --graph option by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6487](https://togithub.com/vercel/turbo/pull/6487)
-   Capitalization. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6561](https://togithub.com/vercel/turbo/pull/6561)
-   chore(docs): remove backticks from title/desc meta tags on CLI reference pages by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6580](https://togithub.com/vercel/turbo/pull/6580)
-   feat(docs): add node version compatibility for examples by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6581](https://togithub.com/vercel/turbo/pull/6581)
-   fix(docs): update inconsistent CLI headings by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6591](https://togithub.com/vercel/turbo/pull/6591)
-   feat(docs): add FAQ entry for non-JS workspaces in the codebase by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6612](https://togithub.com/vercel/turbo/pull/6612)
-   chore(docs): tweak getting started docs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6597](https://togithub.com/vercel/turbo/pull/6597)
-   docs: Added root internal dependencies explanation by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6622](https://togithub.com/vercel/turbo/pull/6622)
-   Capitalize the Tools category in sidebar. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6697](https://togithub.com/vercel/turbo/pull/6697)
-   Add yarn v2+ caveat for installing Internal Packages. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6696](https://togithub.com/vercel/turbo/pull/6696)
-   Update command-line-reference.mdx for --log-prefix CLI option by [@&#8203;marcneubauer](https://togithub.com/marcneubauer) in [https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

##### create-turbo

-   release(turborepo): 1.10.16 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6221](https://togithub.com/vercel/turbo/pull/6221)
-   release(turborepo): 1.10.17-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6329](https://togithub.com/vercel/turbo/pull/6329)
-   chore(turbo-utils): Remove tsup build by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6301](https://togithub.com/vercel/turbo/pull/6301)
-   release(turborepo): 1.10.17-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6448](https://togithub.com/vercel/turbo/pull/6448)
-   release(turborepo): 1.10.17-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6454](https://togithub.com/vercel/turbo/pull/6454)
-   release(turborepo): 1.10.17-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6502](https://togithub.com/vercel/turbo/pull/6502)
-   Re-up create-turbo. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6439](https://togithub.com/vercel/turbo/pull/6439)
-   release(turborepo): 1.10.17-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6521](https://togithub.com/vercel/turbo/pull/6521)
-   release(turborepo): 1.10.17-canary.5 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6549](https://togithub.com/vercel/turbo/pull/6549)
-   release(turborepo): 1.10.17-canary.6 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6610](https://togithub.com/vercel/turbo/pull/6610)
-   release(turborepo): 1.10.17-canary.7 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6629](https://togithub.com/vercel/turbo/pull/6629)
-   release(turborepo): 1.10.17-canary.8 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https://github.com/vercel/turbo/pull/6630](https://togithub.com/vercel/turbo/pull/6630)
-   release(turborepo): 1.10.17-canary.9 by [@&#8203;github-actions](https://togithub.com/github-actions) in [https:

</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 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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
mergify bot pushed a commit to kinguru-io/kinguru-monorepo that referenced this pull request Mar 6, 2024
[![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/turbo)) | [`1.11.3` -> `1.12.5`](https://renovatebot.com/diffs/npm/turbo/1.11.3/1.12.5) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.11.3/1.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.11.3/1.12.5?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>vercel/turbo (turbo)</summary>

### [`v1.12.5`](https://togithub.com/vercel/turbo/compare/v1.12.4...v1.12.5)

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.4...v1.12.5)

### [`v1.12.4`](https://togithub.com/vercel/turbo/releases/tag/v1.12.4): Turborepo v1.12.4

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.3...v1.12.4)



#### What's Changed

##### Docs

-   feat(cache): bump default timeout and add docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7304

##### create-turbo

-   release(turborepo): 1.12.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7296
-   chore(create-turbo): update chalk to v4 by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7300
-   release(turborepo): 1.12.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7338
-   release(turborepo): 1.12.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7369

##### [@&#8203;turbo/repository](https://togithub.com/turbo/repository) - ⚠️  **Alpha - Expect Breaking Changes**

-   fix([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): fix breaking API changes from turbo core by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7373
-   chore(turbo): rename workspace -> package in PackageGraph module by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7372

##### Changelog

-   chore(Turborepo): Delete or feature-gate imports by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7295
-   fix(Turborepo): Route through existing wait_for_filewatching call by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7237
-   feat(async_cache): support cloning by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7293
-   refactor: Error on absolute paths in turbo.json by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#7292
-   implement vercel auth token for SSO by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#7192
-   feat([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): add method to return package dependents by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7242
-   chore([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): bump version to 0.0.1-canary.5 by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7312
-   fix(Turborepo): Don't block forever if we have already gotten a parse error by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7203
-   chore(Turborepo): Remove ExecutionState, we don't need it anymore by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7281
-   feat(turbo): task access trace & cached configs by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7074
-   chore: fix clippy lints in [@&#8203;turbo/repository](https://togithub.com/turbo/repository) by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7310
-   chore: Clean up log files, add `daemon log` subcommand by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#7305
-   chore: add shutdown method for async cache by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7309
-   feat: vendor CI log groups by [@&#8203;cymruu](https://togithub.com/cymruu) in [vercel/turbo#6314
-   feat(turborepo): daemon UX improvements by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#7307
-   chore(turborepo): Ensure fresh builds by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#7321
-   chore: don't print debug info on successful login by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#7323
-   fix: check vercel token is still valid by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#7325
-   fix(Turborepo): Start moving cookie watching to downstream services by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7283
-   chore([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): add inline jsdocs for findPackagesAndDependents method by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7331
-   chore: modularize vercel api crate by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#7329
-   fix(Turborepo): Pass validated globs to daemon for watching by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7327
-   feat(Turborepo): Add spaces_id to layered config by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7330
-   feat(gitignore): break out gitignore util by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7319
-   feat(turbo): update changemapper to return name and path of packages by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7336
-   chore(turbo): rename WorkspaceNode to PackageNode by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7351
-   chore(turbo): rename WorkspaceInfo struct to PackageInfo by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7353
-   chore(Turborepo): Move daemon paths off of CommandBase by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7339
-   fix: use system certs for tls by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7357
-   chore(Turborepo): Remote CommandBase from Run by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7360
-   feat([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): add affectedPackages API by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7326
-   feat([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): bump for release by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7361
-   chore(turbo): rename WorkspaceName to PackageName by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7355
-   chore(turbo): delete unused fixture in cli directory by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7376
-   fix: avoid grouping logs from tasks which ended in error by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7335

#### New Contributors

-   [@&#8203;cymruu](https://togithub.com/cymruu) made their first contribution in [vercel/turbo#6314

**Full Changelog**: vercel/turbo@v1.12.3...v1.12.4

### [`v1.12.3`](https://togithub.com/vercel/turbo/releases/tag/v1.12.3): Turborepo v1.12.3

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.2...v1.12.3)



#### What's Changed

##### Docs

-   Add "System environment variables" page. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7223
-   Remote Cache API doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7236
-   Inputs clarity. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7246
-   docs(turborepo): fix typo in task dependencies by [@&#8203;flextremedev](https://togithub.com/flextremedev) in [vercel/turbo#7271
-   feat(docs): document building turbo from source by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7276
-   Fix a typo in docs page for github actions by [@&#8203;noahsark769](https://togithub.com/noahsark769) in [vercel/turbo#7249

##### create-turbo

-   release(turborepo): 1.12.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7200
-   release(turborepo): 1.12.3-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7215

##### Examples

-   Bumping examples to 1.12 by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7053
-   Fix trailing comma in exapmle react-library.json by [@&#8203;Fl0h0](https://togithub.com/Fl0h0) in [vercel/turbo#7273
-   fix: avoid expensive globwalk in examples by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7238

##### Changelog

-   backport wax 0.6 fixes to turborepo-wax by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#7089
-   chore: allow unused for variables that don't get used on windows by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7212
-   rust is no longer experimental by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#7214
-   fix: declare version.txt as input by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7221
-   refactor: Clean up error printing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#7169
-   fix: correctly parse pnpm lockfile settings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7198
-   refactor(turborepo): Change Detector by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#7222
-   chore: move scripts to build and benchmark demos to new package by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7217
-   feat(turbo-repository): return additional workspace data by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [vercel/turbo#7187
-   Fix/filter unnamed packages by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#7280
-   fix: Daemon Restarting by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#7288
-   chore(turborepo-lib): use compile error for feature validation by [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in [vercel/turbo#4235
-   fix([@&#8203;turbo/repository](https://togithub.com/turbo/repository)): update types to latest signature by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7289
-   fix(Turborepo): Flag off daemon for package discovery by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7290

#### New Contributors

-   [@&#8203;flextremedev](https://togithub.com/flextremedev) made their first contribution in [vercel/turbo#7271
-   [@&#8203;Fl0h0](https://togithub.com/Fl0h0) made their first contribution in [vercel/turbo#7273
-   [@&#8203;noahsark769](https://togithub.com/noahsark769) made their first contribution in [vercel/turbo#7249

**Full Changelog**: vercel/turbo@v1.12.2...v1.12.3

### [`v1.12.2`](https://togithub.com/vercel/turbo/releases/tag/v1.12.2): Turborepo v1.12.2

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.1...v1.12.2)



#### What's Changed

##### create-turbo

-   release(turborepo): 1.12.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7193

##### Changelog

-   feat(lockfile): traverse lockfile in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7178
-   perf: remove duplicate git construction by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7194
-   Make clippy happy by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#7195
-   fix: keep stdin open for persistent tasks by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7196
-   add vc config dir by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#7173
-   fix(Turborepo): Handle spaces in path names in git status by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7197
-   feat: enable vt processing on windows by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7158

**Full Changelog**: vercel/turbo@v1.12.1...v1.12.2

### [`v1.12.1`](https://togithub.com/vercel/turbo/releases/tag/v1.12.1): Turborepo v1.12.1

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.12.0...v1.12.1)



#### What's Changed

##### Docs

-   docs: fix link in telemetry by [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) in [vercel/turbo#7190

##### create-turbo

-   release(turborepo): 1.12.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7177

##### Changelog

-   Print telemetry warning on stderr by [@&#8203;laat](https://togithub.com/laat) in [vercel/turbo#7189
-   chore(integration): remove \_helpers & fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7172

#### New Contributors

-   [@&#8203;A7med3bdulBaset](https://togithub.com/A7med3bdulBaset) made their first contribution in [vercel/turbo#7190
-   [@&#8203;laat](https://togithub.com/laat) made their first contribution in [vercel/turbo#7189

**Full Changelog**: vercel/turbo@v1.12.0...v1.12.1

### [`v1.12.0`](https://togithub.com/vercel/turbo/releases/tag/v1.12.0): Turborepo v1.12.0

[Compare Source](https://togithub.com/vercel/turbo/compare/v1.11.3...v1.12.0)



#### What's Changed

##### Docs

-   General CI steps on doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6894
-   \[Docs] create-new.mdx - npm double slash typo fix by [@&#8203;Firfi](https://togithub.com/Firfi) in [vercel/turbo#6933
-   fix(docs): correct option heading by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6973
-   Clean up inputs doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6980
-   fix(docs): typo in `what-to-cache.mdx` by [@&#8203;pjlangley](https://togithub.com/pjlangley) in [vercel/turbo#6960
-   fix(docs): update vercel.mdx by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6987
-   Doc for running setup tasks prior to development tasks. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6999
-   Add Glossary to sidebar. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7011
-   fix(docs): remote cache go -> rust by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7082
-   Use `exports`  in Internal Packages doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7079
-   fix: typo in github-actions.mdx by [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) in [vercel/turbo#7069
-   Document glob spec. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7076
-   Document handling of Node.js versions, OS, and arch. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7072
-   Add generalized deployment advice for Prisma doc. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#7130
-   \[DO NOT MERGE] feat(telemetry): cli reference by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6826
-   \[DO NOT MERGE] feat(telemetry): feature docs by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6827
-   \[DO NOT MERGE] feat(docs): $TURBO_DEFAULT$ by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7155

##### create-turbo

-   release(turborepo): 1.11.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6891
-   release(turborepo): 1.11.4-canary.0 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6975
-   release(turborepo): 1.11.4-canary.1 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#6997
-   release(turborepo): 1.11.4-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7157
-   release(turborepo): 1.11.4-canary.4 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#7170

##### Examples

-   chore(deps-dev): bump the example-dependencies group in /examples/with-shell-commands with 1 update by [@&#8203;dependabot](https://togithub.com/dependabot) in [vercel/turbo#6901
-   Update dependencies in examples. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6920
-   Fix with-svelte-example by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [vercel/turbo#6986
-   fix(examples): fontSize type is number not string by [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) in [vercel/turbo#7005
-   Fix Svelte package export map by [@&#8203;dummdidumm](https://togithub.com/dummdidumm) in [vercel/turbo#7007
-   fix(examples): basic generator by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7022
-   fix(examples): ui turbo.json no longer needed by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7087
-   chore(docs): remove unnecessary spaces by [@&#8203;GyoHeon](https://togithub.com/GyoHeon) in [vercel/turbo#7118
-   chore: install jest in examples/kitchen-sink by [@&#8203;llllvvuu](https://togithub.com/llllvvuu) in [vercel/turbo#7132

##### Changelog

-   fix: Make execution state use auth crate by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#6880
-   fix(telemetry): obfuscate rc endpoint by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6925
-   fix: treat empty environement variables as unset by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6929
-   Error out if dependent flags are provided without their parent by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6780
-   fix: make sure that our concurrency check ignore packages without task by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6790
-   chore: avoid panic on invalid directory filters by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6955
-   feat(Turborepo): Use a wrapper around the raw strings we pass to globwalk by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6847
-   fix: ignore permission errors during globbing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6957
-   fix: avoid retry panic by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6926
-   add better messaging when running with api flag by [@&#8203;Zertsov](https://togithub.com/Zertsov) in [vercel/turbo#6927
-   fix some clippy lints by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6959
-   Fix/unrevert daemon discovery by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6712
-   feat(telemetry): track prune args by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6970
-   feat(lockfiles): support Yarn 4 patches by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6974
-   feat(telemetry): track global args by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6972
-   fix: update Cargo.lock with correct workspace dependencies by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6990
-   fix: rewrite prefix after carriage return by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6989
-   feat(telemetry): track run arguments by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6985
-   chore: remove usage of command groups by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6992
-   chore: add reason for service being unavailable by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6993
-   fix(turbo): validate graph extension by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6995
-   chore: Adjusted error message for APIClient errors in cache by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6996
-   fix(integration): update help integration test by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7017
-   fix(cache): truncate metadata file when writing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7016
-   fix(prune): correctly create symlinks to directories  by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6983
-   fix: forward fixes for LSP by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7023
-   fix(daemon): make sure cookie dir exists before writing cookie by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7015
-   feat(telemetry): track more daemon errors by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7031
-   chore: revert auth json by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7026
-   chore: prefactor process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7034
-   chore(Turborepo): Scope down opts needed by the visitor, remove run lifetime by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7032
-   fix: Examples turbo.json outputs key by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#7071
-   fix: filter package.json files that are subfolders of other packages by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#7025
-   feat: update `@turbo/repository` to use new terminology by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [vercel/turbo#7078
-   fix(turbo): sort dependents and dependencies during normalization by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7018
-   release: `@turbo/repository@0.0.1-canary.3` by [@&#8203;mrmckeb](https://togithub.com/mrmckeb) in [vercel/turbo#7090
-   chore(daemon): swap fallback logs to debug by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7102
-   feat: add ability to spawn child process with pty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7077
-   chore(Turborepo): Move more CLI stuff out of run code by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#7085
-   fix(hashing): include gitignored files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7105
-   fix(clippy): remove unused import by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7120
-   fix(hashing): include default files in fallback by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7106
-   chore: add tracing to pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7127
-   fix disable echoctl by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7109
-   feat(telemetry): enable feature by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7122
-   feat: enable pty usage by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7128
-   feat(hashing): support $TURBO_DEFAULT$ in inputs by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7113
-   fix: process manager tests tty by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7156
-   fix(tests): mock telemetry config by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#7168
-   chore: clean pnpm lockfile by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#7171
-   fix: tasks with no newline by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#7175

#### New Contributors

-   [@&#8203;Firfi](https://togithub.com/Firfi) made their first contribution in [vercel/turbo#6933
-   [@&#8203;pjlangley](https://togithub.com/pjlangley) made their first contribution in [vercel/turbo#6960
-   [@&#8203;dummdidumm](https://togithub.com/dummdidumm) made their first contribution in [vercel/turbo#6986
-   [@&#8203;devjiwonchoi](https://togithub.com/devjiwonchoi) made their first contribution in [vercel/turbo#7005
-   [@&#8203;nirban07](https://togithub.com/nirban07) made their first contribution in [vercel/turbo#7008
-   [@&#8203;mrmckeb](https://togithub.com/mrmckeb) made their first contribution in [vercel/turbo#7078
-   [@&#8203;mattiadevivo](https://togithub.com/mattiadevivo) made their first contribution in [vercel/turbo#7069
-   [@&#8203;GyoHeon](https://togithub.com/GyoHeon) made their first contribution in [vercel/turbo#7118
-   [@&#8203;llllvvuu](https://togithub.com/llllvvuu) made their first contribution in [vercel/turbo#7132

**Full Changelog**: vercel/turbo@v1.11.3...v1.12.0

</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 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 has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/kinguru-io/kinguru-monorepo).
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

"File Inputs": Add extraInput & exclude
5 participants