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(examples): add with-nestjs example #8162

Merged
merged 13 commits into from
Jul 12, 2024

Conversation

Neosoulink
Copy link
Contributor

@Neosoulink Neosoulink commented May 16, 2024

Description

Related issue: #8131

I recently created an issue where I explained why it's useful to use Nestjs with Turborepo.
This PR adds a new example integration with nestjs!

I recorded a short video showing how it's working:

turborepo_with-nestjs_commands-test.mov

Testing Instructions

This new example is located at ./examples/with-nestjs/.

It uses a basic turborepo nextjs for apps/web and a customized nestjs app located at apps/api.

To launch all the apps and packages in dev mode, run pnpm run dev.

The apps/api server includes a basic resource (CRUD) example where the apps/web use the apps/api links.findAll API methods to retrieve the displayed links.
They use the same package @repo/api to retrieve the shared entity and dtos.
Even if the @repo/api mainly uses the nestjs configuration, it can be used for Nextjs and/or any other kind of apps.

For more information, I documented it in the root/README

That's it for now. I tried not to put too many things in this example and follow the flow of other examples...
Please let me know if I missed anything. I'll be glad to have your feedback.

cc: @anthonyshew

Will close #8131

@Neosoulink Neosoulink requested review from anthonyshew and a team as code owners May 16, 2024 19:22
@Neosoulink Neosoulink requested a review from paulogdm May 16, 2024 19:22
@turbo-orchestrator turbo-orchestrator bot added area: examples Improvements or additions to examples needs: triage New issues get this label. Remove it after triage owned-by: turborepo labels May 16, 2024
Copy link

vercel bot commented May 16, 2024

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

7 Skipped Deployments
Name Status Preview Comments Updated (UTC)
examples-basic-web ⬜️ Ignored (Inspect) Visit Preview Jul 12, 2024 3:51am
examples-designsystem-docs ⬜️ Ignored (Inspect) Visit Preview Jul 12, 2024 3:51am
examples-kitchensink-blog ⬜️ Ignored (Inspect) Visit Preview Jul 12, 2024 3:51am
examples-native-web ⬜️ Ignored (Inspect) Visit Preview Jul 12, 2024 3:51am
examples-svelte-web ⬜️ Ignored (Inspect) Visit Preview Jul 12, 2024 3:51am
examples-tailwind-web ⬜️ Ignored (Inspect) Visit Preview Jul 12, 2024 3:51am
examples-vite-web ⬜️ Ignored (Inspect) Visit Preview Jul 12, 2024 3:51am

Copy link

vercel bot commented May 16, 2024

@Neosoulink is attempting to deploy a commit to the Vercel Team on Vercel.

A member of the Team first needs to authorize it.

@ijjk
Copy link
Member

ijjk commented May 16, 2024

Allow CI Workflow Run

  • approve CI run for commit: cca8dc4

Note: this should only be enabled once the PR is ready to go and can only be enabled by a maintainer

### Description

- Add the `with-nestjs` example
- Init a basic `web nextjs` app
- Init a basic `api nestjs` app
- use the basic turborepo config
### Description

- Set general `eslint` & `perttier` config into `@repo/eslint-config`
  - Add a base `eslint` config file
- Move common `eslint` & `prettier` support into `@repo/eslint-repo`
- Add a base `prettier` file
- Remove format script from `apps/api` and use root `format` script
### Description

- Mix the root `,gitignore` with the `nestjs` generated `.gitignore`
### Description

- Add a new tsconfig file for `nestjs` into `@repo/typescript-config`.
- Add `@repo/typescript-config` as `apps/api` dev-dependency.
  - Extends `@repo/typescript-config/nestjs.json`
### Description

- Add `@repo/jest-config`  package
  - Configure a base common jest config file
  - Add a `nestjs` config file
  - Add a `nextjs` config file
- Use `playwright` for `NextJs` e2e testing
  - Add a base unit & e2e Nextjs testes
- Sync testes command with turborepo
### Description

- Add a `@repo/api` package
  - Use `nestjs` environment setup
  - Add links `entity` and `dto` examples
- Sync/Use `@repo/api` into `apps/api`
  - Add `Link` resource (CRUD) example
- Sync/Use `@repo/api` into `apps/web`
  - Retrieve links frorm `apps/api`
  - Refactor root page unit-test for async component
### Description

- Update the root `README` documentation
- Update the `apps/api` `README` documentation
- Update the `apps/web` `README` documentation
@Neosoulink Neosoulink requested a review from a team as a code owner June 14, 2024 08:59
@turbo-orchestrator turbo-orchestrator bot added area: ci area: docs Improvements or additions to documentation owned-by: turbopack labels Jun 14, 2024
@Neosoulink
Copy link
Contributor Author

Hey @anthonyshew,

Any update for this PR?

@anthonyshew
Copy link
Contributor

Sorry for the delay! Finally got to make it back here.

I'm still seeing web#build fail. 🤔 Do you know why that is?
CleanShot 2024-07-11 at 13 29 22

@anthonyshew
Copy link
Contributor

I just mis-clicked the branch update button. Sorry for messing up your history!

@Neosoulink
Copy link
Contributor Author

Ahahah it's fine @anthonyshew!

... For the build I switched, pulled the last changes, installed dependencies, and all it built perfectly.
Screenshot 2024-07-11 at 10 00 21 PM

@anthonyshew
Copy link
Contributor

Oh, I see, the api needs to be running while I build the Next.js app. Do you think you could add a note about that in the README? Then we can ship!

@Neosoulink
Copy link
Contributor Author

Neosoulink commented Jul 11, 2024

... Yes, you can't build the web or the api apps without the build of the @repo/api
But the web app can be built without the api app build

Let me update the ReadMe

### Description

  - Add note about build
    - For the `web` app
    - For the `api` app
    - At the project root

Co-Authored-By: Anthony Shew <35677084+anthonyshew@users.noreply.github.com>
@anthonyshew
Copy link
Contributor

I feel like it's more accurate to say "Make sure the api app is running..." instead of "built", no? Because my builds were failing for that exact reason. I was trying to build after building the packages but they weren't actively running.

@Neosoulink
Copy link
Contributor Author

And it's weird because applications can be built without the need of api running in dev.

Yes, I tried several times and didn't face this issue 🤔

(Like in the videos)

@Neosoulink
Copy link
Contributor Author

What's the command you used to run all the scripts?

### Description

- Wrap the Links `fetch` request into a try-catch

Co-Authored-By: Anthony Shew <35677084+anthonyshew@users.noreply.github.com>
@anthonyshew
Copy link
Contributor

Great, thanks! 🥳

@anthonyshew anthonyshew merged commit 2506cad into vercel:main Jul 12, 2024
50 of 57 checks passed
@Neosoulink Neosoulink deleted the feat/with-nestjs branch July 12, 2024 05:33
@Neosoulink
Copy link
Contributor Author

Let's go 🕺🔥

kodiakhq bot pushed a commit to technifit/tasker that referenced this pull request Jul 16, 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)) | [`2.0.6` -> `2.0.7`](https://renovatebot.com/diffs/npm/eslint-config-turbo/2.0.6/2.0.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-turbo/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-turbo/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-turbo/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-turbo/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`2.0.6` -> `2.0.7`](https://renovatebot.com/diffs/npm/turbo/2.0.6/2.0.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

[Compare Source](https://togithub.com/vercel/turbo/compare/v2.0.6...v2.0.7)



##### What's Changed

##### Examples

-   Fix lockfile in kitchen-sink. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turborepo#8666
-   fix(examples): correct next.config extension in tsconfig by [@&#8203;moolcoov](https://togithub.com/moolcoov) in [vercel/turborepo#8638
-   feat(examples): add `with-nestjs` example by [@&#8203;Neosoulink](https://togithub.com/Neosoulink) in [vercel/turborepo#8162

##### Changelog

-   (refactor)ui: Refactoring/simplifying TUI state by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turborepo#8650
-   fix: add more windows vars to default pass through env by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turborepo#8615
-   Add Docker to default passthroughs list. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turborepo#8690
-   Add VSCode's debugger variables to default passthroughs. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turborepo#8689
-   update env_wildcards for SvelteKit by [@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) in [vercel/turborepo#8685
-   fix constant width for checkmark by [@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in [vercel/turborepo#8702
-   fix(ui): respect `--output-logs` and `outputLogs` for persisting logs after TUI exits by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turborepo#8612
-   fix(ui): only start ui if there are tasks to run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turborepo#8703
-   chore(ui): add tracing to all tui operations by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turborepo#8704
-   adds CLI flag for controlling tui/stream by [@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in [vercel/turborepo#8714
-   feat: allow opting out of required package manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turborepo#8738
-   upgrade deps to avoid conflict with next.js by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turborepo#8750
-   refactor(turborepo): derive `Opts` from `Config` by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turborepo#8759

##### New Contributors

-   [@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) made their first contribution in [vercel/turborepo#8674
-   [@&#8203;pathliving](https://togithub.com/pathliving) made their first contribution in [vercel/turborepo#8675
-   [@&#8203;UNRULYEON](https://togithub.com/UNRULYEON) made their first contribution in [vercel/turborepo#8679
-   [@&#8203;LaPulgaaa](https://togithub.com/LaPulgaaa) made their first contribution in [vercel/turborepo#8683
-   [@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) made their first contribution in [vercel/turborepo#8685
-   [@&#8203;ony3000](https://togithub.com/ony3000) made their first contribution in [vercel/turborepo#8642
-   [@&#8203;moolcoov](https://togithub.com/moolcoov) made their first contribution in [vercel/turborepo#8638
-   [@&#8203;pkellner](https://togithub.com/pkellner) made their first contribution in [vercel/turborepo#8669
-   [@&#8203;vinnymac](https://togithub.com/vinnymac) made their first contribution in [vercel/turborepo#8637
-   [@&#8203;torresgol10](https://togithub.com/torresgol10) made their first contribution in [vercel/turborepo#8719
-   [@&#8203;baileywickham](https://togithub.com/baileywickham) made their first contribution in [vercel/turborepo#8692
-   [@&#8203;LioRael](https://togithub.com/LioRael) made their first contribution in [vercel/turborepo#8741
-   [@&#8203;mischnic](https://togithub.com/mischnic) made their first contribution in [vercel/turborepo#8767

**Full Changelog**: vercel/turborepo@v2.0.6...v2.0.7

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

---

 - [ ] 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/technifit/tasker).
renovate bot added a commit to inabagumi/shinju-date that referenced this pull request Jul 16, 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))
| [`^2.0.6` ->
`^2.0.7`](https://renovatebot.com/diffs/npm/eslint-config-turbo/2.0.6/2.0.7)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-turbo/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-turbo/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-turbo/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-turbo/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^2.0.6` ->
`^2.0.7`](https://renovatebot.com/diffs/npm/turbo/2.0.6/2.0.7) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/2.0.6/2.0.7?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

[Compare
Source](https://togithub.com/vercel/turbo/compare/v2.0.6...v2.0.7)

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

##### What's Changed

##### Examples

- Fix lockfile in kitchen-sink. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8666
- fix(examples): correct next.config extension in tsconfig by
[@&#8203;moolcoov](https://togithub.com/moolcoov) in
[vercel/turborepo#8638
- feat(examples): add `with-nestjs` example by
[@&#8203;Neosoulink](https://togithub.com/Neosoulink) in
[vercel/turborepo#8162

##### Changelog

- (refactor)ui: Refactoring/simplifying TUI state by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8650
- fix: add more windows vars to default pass through env by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8615
- Add Docker to default passthroughs list. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8690
- Add VSCode's debugger variables to default passthroughs. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8689
- update env_wildcards for SvelteKit by
[@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) in
[vercel/turborepo#8685
- fix constant width for checkmark by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[vercel/turborepo#8702
- fix(ui): respect `--output-logs` and `outputLogs` for persisting logs
after TUI exits by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8612
- fix(ui): only start ui if there are tasks to run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8703
- chore(ui): add tracing to all tui operations by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8704
- adds CLI flag for controlling tui/stream by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[vercel/turborepo#8714
- feat: allow opting out of required package manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8738
- upgrade deps to avoid conflict with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turborepo#8750
- refactor(turborepo): derive `Opts` from `Config` by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turborepo#8759

##### New Contributors

- [@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) made their
first contribution in
[vercel/turborepo#8674
- [@&#8203;pathliving](https://togithub.com/pathliving) made their first
contribution in
[vercel/turborepo#8675
- [@&#8203;UNRULYEON](https://togithub.com/UNRULYEON) made their first
contribution in
[vercel/turborepo#8679
- [@&#8203;LaPulgaaa](https://togithub.com/LaPulgaaa) made their first
contribution in
[vercel/turborepo#8683
- [@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) made their
first contribution in
[vercel/turborepo#8685
- [@&#8203;ony3000](https://togithub.com/ony3000) made their first
contribution in
[vercel/turborepo#8642
- [@&#8203;moolcoov](https://togithub.com/moolcoov) made their first
contribution in
[vercel/turborepo#8638
- [@&#8203;pkellner](https://togithub.com/pkellner) made their first
contribution in
[vercel/turborepo#8669
- [@&#8203;vinnymac](https://togithub.com/vinnymac) made their first
contribution in
[vercel/turborepo#8637
- [@&#8203;torresgol10](https://togithub.com/torresgol10) made their
first contribution in
[vercel/turborepo#8719
- [@&#8203;baileywickham](https://togithub.com/baileywickham) made their
first contribution in
[vercel/turborepo#8692
- [@&#8203;LioRael](https://togithub.com/LioRael) made their first
contribution in
[vercel/turborepo#8741
- [@&#8203;mischnic](https://togithub.com/mischnic) made their first
contribution in
[vercel/turborepo#8767

**Full Changelog**:
vercel/turborepo@v2.0.6...v2.0.7

</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:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6WyJkZXBlbmRlbmNpZXMiXX0=-->

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

---

### Release Notes

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

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

[Compare
Source](https://togithub.com/vercel/turbo/compare/v2.0.6...v2.0.7)

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

#### What's Changed

##### Examples

- Fix lockfile in kitchen-sink. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8666
- fix(examples): correct next.config extension in tsconfig by
[@&#8203;moolcoov](https://togithub.com/moolcoov) in
[vercel/turborepo#8638
- feat(examples): add `with-nestjs` example by
[@&#8203;Neosoulink](https://togithub.com/Neosoulink) in
[vercel/turborepo#8162

##### Changelog

- (refactor)ui: Refactoring/simplifying TUI state by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8650
- fix: add more windows vars to default pass through env by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8615
- Add Docker to default passthroughs list. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8690
- Add VSCode's debugger variables to default passthroughs. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8689
- update env_wildcards for SvelteKit by
[@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) in
[vercel/turborepo#8685
- fix constant width for checkmark by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[vercel/turborepo#8702
- fix(ui): respect `--output-logs` and `outputLogs` for persisting logs
after TUI exits by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8612
- fix(ui): only start ui if there are tasks to run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8703
- chore(ui): add tracing to all tui operations by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8704
- adds CLI flag for controlling tui/stream by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[vercel/turborepo#8714
- feat: allow opting out of required package manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8738
- upgrade deps to avoid conflict with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turborepo#8750
- refactor(turborepo): derive `Opts` from `Config` by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turborepo#8759

#### New Contributors

- [@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) made their
first contribution in
[vercel/turborepo#8674
- [@&#8203;pathliving](https://togithub.com/pathliving) made their first
contribution in
[vercel/turborepo#8675
- [@&#8203;UNRULYEON](https://togithub.com/UNRULYEON) made their first
contribution in
[vercel/turborepo#8679
- [@&#8203;LaPulgaaa](https://togithub.com/LaPulgaaa) made their first
contribution in
[vercel/turborepo#8683
- [@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) made their
first contribution in
[vercel/turborepo#8685
- [@&#8203;ony3000](https://togithub.com/ony3000) made their first
contribution in
[vercel/turborepo#8642
- [@&#8203;moolcoov](https://togithub.com/moolcoov) made their first
contribution in
[vercel/turborepo#8638
- [@&#8203;pkellner](https://togithub.com/pkellner) made their first
contribution in
[vercel/turborepo#8669
- [@&#8203;vinnymac](https://togithub.com/vinnymac) made their first
contribution in
[vercel/turborepo#8637
- [@&#8203;torresgol10](https://togithub.com/torresgol10) made their
first contribution in
[vercel/turborepo#8719
- [@&#8203;baileywickham](https://togithub.com/baileywickham) made their
first contribution in
[vercel/turborepo#8692
- [@&#8203;LioRael](https://togithub.com/LioRael) made their first
contribution in
[vercel/turborepo#8741
- [@&#8203;mischnic](https://togithub.com/mischnic) made their first
contribution in
[vercel/turborepo#8767

**Full Changelog**:
vercel/turborepo@v2.0.6...v2.0.7

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

[Compare
Source](https://togithub.com/vercel/turbo/compare/v2.0.5...v2.0.6)

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

#### What's Changed

##### Examples

- More fix-ups for `kitchen-sink`. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8590
- c2aa1 by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8592
- More kitchen-sink. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8593
- Fixing kitchen-sink example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8600
- fix(turborepo): update package.json typo by
[@&#8203;JannatinNaimXIII](https://togithub.com/JannatinNaimXIII) in
[vercel/turborepo#8621

##### Changelog

- fix(pnpm): enable npmrc parsing for pnpm 9 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8591
- chore(turbo): add debug logs for changes files when using a git range
filter by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turborepo#8608
- chore(ui): disable tui as the default by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8631
- fix(ui): Use double arrow instead of spinner for active tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8632

#### New Contributors

- [@&#8203;kettei-sproutty](https://togithub.com/kettei-sproutty) made
their first contribution in
[vercel/turborepo#8596
- [@&#8203;JannatinNaimXIII](https://togithub.com/JannatinNaimXIII) made
their first contribution in
[vercel/turborepo#8613
- [@&#8203;NamesMT](https://togithub.com/NamesMT) made their first
contribution in
[vercel/turborepo#8616

**Full Changelog**:
vercel/turborepo@v2.0.5...v2.0.6

###
[`v2.0.5`](https://togithub.com/vercel/turbo/compare/v2.0.4...v2.0.5)

[Compare
Source](https://togithub.com/vercel/turbo/compare/v2.0.4...v2.0.5)

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

[Compare
Source](https://togithub.com/vercel/turbo/compare/v2.0.3...v2.0.4)

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

#### What's Changed

##### create-turbo

- Update `create-turbo` to use carat versions. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8448

##### [@&#8203;turbo/codemod](https://togithub.com/turbo/codemod)

- chore: bump timeout for migration by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8463
- fix([@&#8203;turbo/codemode](https://togithub.com/turbo/codemode)):
no-op when turbo.json already contains tasks key by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turborepo#8471

##### Examples

- Give examples carat versions. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8382
- Fix apk order in example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8392
- Fix `eslint-config-turbo` configuration in examples. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8405
- Remove root eslintrc from basic example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8423
- Consistent Node.js version in Changesets action. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8441
- Remove global dep from basic example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8442

##### Changelog

- fix(filter): account for root internal dependencies in git based
filter by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8364
- Warn instead of print when no locally installed version. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8384
- Add CI to default passthroughs. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8393
- feat(shim): invoke local turbo version via npx if not installed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8385
- docs: update links to logs in turbo types by
[@&#8203;boyum](https://togithub.com/boyum) in
[vercel/turborepo#8403
- fix: added `LD_LIBRARY_PATH` to default forwarded env vars by
[@&#8203;GauBen](https://togithub.com/GauBen) in
[vercel/turborepo#8412
- chore(turborepo): remove unused code by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turborepo#8428
- fix: disable panic handler in ci by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8436
- fix: remove inferring turbo version from package.json or turbo.json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8437
- fix(turborepo): avoid starting ui on too small terminals by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turborepo#8457
- chore(shim): make dynamic downloads opt in by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8458
- fix(shim): avoid panic if user has malformed lockfile by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8461
- fix(ui): pass through terminal env vars to appease chalk by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8468

#### New Contributors

- [@&#8203;boyum](https://togithub.com/boyum) made their first
contribution in
[vercel/turborepo#8403
- [@&#8203;GauBen](https://togithub.com/GauBen) made their first
contribution in
[vercel/turborepo#8412
- [@&#8203;sethidden](https://togithub.com/sethidden) made their first
contribution in
[vercel/turborepo#8450

**Full Changelog**:
vercel/turborepo@v2.0.3...v2.0.4

</details>

---

### Configuration

📅 **Schedule**: Branch creation - At any time (no schedule defined),
Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **Rebasing**: Whenever PR is behind base branch, 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/GSTJ/react-native-magic-modal).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMS40IiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to weareinreach/InReach that referenced this pull request Jul 17, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [@prisma/client](https://www.prisma.io)
([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/client))
| dependencies | minor | [`5.16.2` ->
`5.17.0`](https://renovatebot.com/diffs/npm/@prisma%2fclient/5.16.2/5.17.0)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/prisma/prisma/badge)](https://securityscorecards.dev/viewer/?uri=github.com/prisma/prisma)
|
| [@prisma/instrumentation](https://www.prisma.io)
([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/instrumentation))
| dependencies | minor | [`5.16.2` ->
`5.17.0`](https://renovatebot.com/diffs/npm/@prisma%2finstrumentation/5.16.2/5.17.0)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/prisma/prisma/badge)](https://securityscorecards.dev/viewer/?uri=github.com/prisma/prisma)
|
| [@prisma/nextjs-monorepo-workaround-plugin](https://www.prisma.io)
([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/nextjs-monorepo-workaround-plugin))
| devDependencies | minor | [`5.16.2` ->
`5.17.0`](https://renovatebot.com/diffs/npm/@prisma%2fnextjs-monorepo-workaround-plugin/5.16.2/5.17.0)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/prisma/prisma/badge)](https://securityscorecards.dev/viewer/?uri=github.com/prisma/prisma)
|
| [@turbo/gen](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo/tree/HEAD/packages/turbo-gen))
| devDependencies | patch | [`2.0.6` ->
`2.0.7`](https://renovatebot.com/diffs/npm/@turbo%2fgen/2.0.6/2.0.7) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turbo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turbo)
|
|
[@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node)
([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/node))
| devDependencies | patch | [`20.14.10` ->
`20.14.11`](https://renovatebot.com/diffs/npm/@types%2fnode/20.14.10/20.14.11)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/DefinitelyTyped/DefinitelyTyped/badge)](https://securityscorecards.dev/viewer/?uri=github.com/DefinitelyTyped/DefinitelyTyped)
|
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo)
([source](https://togithub.com/vercel/turbo/tree/HEAD/packages/eslint-plugin-turbo))
| devDependencies | patch | [`2.0.6` ->
`2.0.7`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/2.0.6/2.0.7)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turbo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turbo)
|
| [husky](https://togithub.com/typicode/husky) | devDependencies | minor
| [`9.0.11` ->
`9.1.0`](https://renovatebot.com/diffs/npm/husky/9.0.11/9.1.0) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/typicode/husky/badge)](https://securityscorecards.dev/viewer/?uri=github.com/typicode/husky)
|
| [prisma](https://www.prisma.io)
([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/cli)) |
devDependencies | minor | [`5.16.2` ->
`5.17.0`](https://renovatebot.com/diffs/npm/prisma/5.16.2/5.17.0) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/prisma/prisma/badge)](https://securityscorecards.dev/viewer/?uri=github.com/prisma/prisma)
|
| [remeda](https://remedajs.com/)
([source](https://togithub.com/remeda/remeda)) | dependencies | minor |
[`2.5.0` ->
`2.6.0`](https://renovatebot.com/diffs/npm/remeda/2.5.0/2.6.0) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/remeda/remeda/badge)](https://securityscorecards.dev/viewer/?uri=github.com/remeda/remeda)
|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | devDependencies | patch
| [`2.0.6` ->
`2.0.7`](https://renovatebot.com/diffs/npm/turbo/2.0.6/2.0.7) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turbo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turbo)
|
| [type-fest](https://togithub.com/sindresorhus/type-fest) |
devDependencies | minor | [`4.21.0` ->
`4.22.0`](https://renovatebot.com/diffs/npm/type-fest/4.21.0/4.22.0) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/sindresorhus/type-fest/badge)](https://securityscorecards.dev/viewer/?uri=github.com/sindresorhus/type-fest)
|

---

### Release Notes

<details>
<summary>prisma/prisma (@&#8203;prisma/client)</summary>

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

[Compare
Source](https://togithub.com/prisma/prisma/compare/5.16.2...5.17.0)

🌟 **Help us spread the word about Prisma by starring the repo or
[tweeting](https://twitter.com/intent/tweet?text=Check%20out%20the%20latest%20@&#8203;prisma%20release%20v5.17.0%20%F0%9F%9A%80%0D%0A%0D%0Ahttps://github.com/prisma/prisma/releases/tag/5.17.0)
about the release.** 🌟

##### Highlights

##### VSCode extension improvements

We’re happy to introduce some cool new features that will make your
experience with the Prisma VSCode extension even better!

**Find references across schema files**

The ability to hop between references of a given symbol is really useful
in application code and now with the introduction of multi-file schema,
we think it’s the perfect time to bring this feature to the VSCode
extension!

With the 5.17.0 release, you’ll now have the ability to use the native
“find references” feature to find any usage of a given symbol


![references](https://togithub.com/user-attachments/assets/b7d82584-2be7-4db6-bfd9-4dbe46f9e865)

**Added context on hover**

When hovering over a symbol that references a view, type, enum, or any
other block with multiple values, you’ll now see a handy pop out that
shows what is in that block at a glance.


![image](https://togithub.com/user-attachments/assets/b0dbc818-374b-4b6d-bda5-974d66efca65)

**Additional quick fixes**

We’ve taken some fixes made by the `prisma format` cli command and made
them quick fixes available to the VSCode Extension. Now, when you have
forget a back relation or relation scalar field, you’ll now see in real
time what is wrong and have the option to fix it via the extension.

![image
(1)](https://togithub.com/user-attachments/assets/931e8dff-2b1e-4da7-bd17-5b844d12804e)

##### QueryRaw performance improvements

We’ve changed the response format of `queryRaw` to decrease its average
size which reduces serialization CPU overhead.

When querying large data sets, we expect you to see improved memory
usage and up to 2x performance improvements.

##### Fixes and improvements

##### Prisma Client

- [Remove or change `This is the 10th instance of Prisma Client being
started. Make sure this is intentional.`
warning](https://togithub.com/prisma/prisma/issues/23736)

##### Prisma

- [Prisma generate option --allow-no-models doesn't
work.](https://togithub.com/prisma/prisma/issues/24737)

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

- [LSP Rename incorrectly maps field name and appends
character](https://togithub.com/prisma/language-tools/issues/1771)

##### Credits

Huge thanks to [@&#8203;key-moon](https://togithub.com/key-moon),
[@&#8203;pranayat](https://togithub.com/pranayat),
[@&#8203;yubrot](https://togithub.com/yubrot),
[@&#8203;skyzh](https://togithub.com/skyzh) for helping!

</details>

<details>
<summary>vercel/turbo (@&#8203;turbo/gen)</summary>

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

[Compare
Source](https://togithub.com/vercel/turbo/compare/v2.0.6...v2.0.7)

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

##### What's Changed

##### Examples

- Fix lockfile in kitchen-sink. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8666
- fix(examples): correct next.config extension in tsconfig by
[@&#8203;moolcoov](https://togithub.com/moolcoov) in
[vercel/turborepo#8638
- feat(examples): add `with-nestjs` example by
[@&#8203;Neosoulink](https://togithub.com/Neosoulink) in
[vercel/turborepo#8162

##### Changelog

- (refactor)ui: Refactoring/simplifying TUI state by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8650
- fix: add more windows vars to default pass through env by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8615
- Add Docker to default passthroughs list. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8690
- Add VSCode's debugger variables to default passthroughs. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turborepo#8689
- update env_wildcards for SvelteKit by
[@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) in
[vercel/turborepo#8685
- fix constant width for checkmark by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[vercel/turborepo#8702
- fix(ui): respect `--output-logs` and `outputLogs` for persisting logs
after TUI exits by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8612
- fix(ui): only start ui if there are tasks to run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8703
- chore(ui): add tracing to all tui operations by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8704
- adds CLI flag for controlling tui/stream by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[vercel/turborepo#8714
- feat: allow opting out of required package manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turborepo#8738
- upgrade deps to avoid conflict with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turborepo#8750
- refactor(turborepo): derive `Opts` from `Config` by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turborepo#8759

##### New Contributors

- [@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) made their
first contribution in
[vercel/turborepo#8674
- [@&#8203;pathliving](https://togithub.com/pathliving) made their first
contribution in
[vercel/turborepo#8675
- [@&#8203;UNRULYEON](https://togithub.com/UNRULYEON) made their first
contribution in
[vercel/turborepo#8679
- [@&#8203;LaPulgaaa](https://togithub.com/LaPulgaaa) made their first
contribution in
[vercel/turborepo#8683
- [@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) made their
first contribution in
[vercel/turborepo#8685
- [@&#8203;ony3000](https://togithub.com/ony3000) made their first
contribution in
[vercel/turborepo#8642
- [@&#8203;moolcoov](https://togithub.com/moolcoov) made their first
contribution in
[vercel/turborepo#8638
- [@&#8203;pkellner](https://togithub.com/pkellner) made their first
contribution in
[vercel/turborepo#8669
- [@&#8203;vinnymac](https://togithub.com/vinnymac) made their first
contribution in
[vercel/turborepo#8637
- [@&#8203;torresgol10](https://togithub.com/torresgol10) made their
first contribution in
[vercel/turborepo#8719
- [@&#8203;baileywickham](https://togithub.com/baileywickham) made their
first contribution in
[vercel/turborepo#8692
- [@&#8203;LioRael](https://togithub.com/LioRael) made their first
contribution in
[vercel/turborepo#8741
- [@&#8203;mischnic](https://togithub.com/mischnic) made their first
contribution in
[vercel/turborepo#8767

**Full Changelog**:
vercel/turborepo@v2.0.6...v2.0.7

</details>

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

###
[`v9.1.0`](https://togithub.com/typicode/husky/compare/v9.0.11...9cef99b8213ac42656c16c059346b5c095a274ac)

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

</details>

<details>
<summary>remeda/remeda (remeda)</summary>

### [`v2.6.0`](https://togithub.com/remeda/remeda/releases/tag/v2.6.0)

[Compare
Source](https://togithub.com/remeda/remeda/compare/v2.5.0...v2.6.0)

##### Features

- **shuffle:** Maintain input shape
([#&#8203;781](https://togithub.com/remeda/remeda/issues/781))
([fde46e0](https://togithub.com/remeda/remeda/commit/fde46e0a755cc2e0c3b6c0c95c437295ec172501))

</details>

<details>
<summary>sindresorhus/type-fest (type-fest)</summary>

###
[`v4.22.0`](https://togithub.com/sindresorhus/type-fest/compare/v4.21.0...e8d6dfefc6433254fb8ce5bcbcf5f124f6a236d9)

[Compare
Source](https://togithub.com/sindresorhus/type-fest/compare/v4.21.0...v4.22.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 is behind base branch, or you tick the
rebase/retry checkbox.

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

---

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

---

This PR 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/InReach).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy40MzEuNCIsInVwZGF0ZWRJblZlciI6IjM3LjQzMS40IiwidGFyZ2V0QnJhbmNoIjoiZGV2IiwibGFiZWxzIjpbImF1dG9tZXJnZSIsImRlcGVuZGVuY2llcyIsImtvZGlhazogbWVyZ2UubWV0aG9kID0gJ3NxdWFzaCciXX0=-->

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
github-merge-queue bot pushed a commit to dotkom/monoweb that referenced this pull request Aug 20, 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-ignore](https://turbo.build/repo)
([source](https://togithub.com/vercel/turborepo/tree/HEAD/packages/turbo-ignore))
| [`^1.10.16` ->
`^2.0.0`](https://renovatebot.com/diffs/npm/turbo-ignore/1.11.3/2.0.14)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo-ignore/2.0.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo-ignore/2.0.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo-ignore/1.11.3/2.0.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo-ignore/1.11.3/2.0.14?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turborepo (turbo-ignore)</summary>

###
[`v2.0.14`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.14):
Turborepo v2.0.14

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.13...v2.0.14)

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

#### What's Changed

##### Changelog

- feat(tui): resize terminal pane by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/8996](https://togithub.com/vercel/turborepo/pull/8996)
- makes [@&#8203;defaultValue](https://togithub.com/defaultValue) usages
consistent (and correct) by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turborepo/pull/9012](https://togithub.com/vercel/turborepo/pull/9012)
- fix(create-turbo): correct path usage by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turborepo/pull/9014](https://togithub.com/vercel/turborepo/pull/9014)

**Full Changelog**:
https://github.com/vercel/turborepo/compare/v2.0.13...v2.0.14

###
[`v2.0.13`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.13):
Turborepo v2.0.13

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.12...v2.0.13)

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

#### What's Changed

##### Docs

- (docs): Improve clarity for watch. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8957](https://togithub.com/vercel/turbo/pull/8957)
- Migrate to Storybook 8.2.6 by
[@&#8203;joeblas](https://togithub.com/joeblas) in
[https://github.com/vercel/turbo/pull/8835](https://togithub.com/vercel/turbo/pull/8835)
- chore(repo): update readme and links by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8965](https://togithub.com/vercel/turbo/pull/8965)
- docs: add release flag to cargo build by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8992](https://togithub.com/vercel/turbo/pull/8992)

##### Changelog

- chore: improve error message for package graph construction by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8966](https://togithub.com/vercel/turbo/pull/8966)
- Log changed package names instead of full struct by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/8971](https://togithub.com/vercel/turbo/pull/8971)
- refactor: renamed UI to ColorConfig by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8962](https://togithub.com/vercel/turbo/pull/8962)
- fix(watch): display which tasks will be rerun by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8960](https://togithub.com/vercel/turbo/pull/8960)
- fix: print application errors to stderr instead of stdout by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8969](https://togithub.com/vercel/turbo/pull/8969)
- feat: add `--affected` to `turbo ls` by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8970](https://togithub.com/vercel/turbo/pull/8970)
- chore(change_mapper): add debug log explaining why package is root dep
by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8976](https://togithub.com/vercel/turbo/pull/8976)
- chore: remove aliases by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8980](https://togithub.com/vercel/turbo/pull/8980)
- enables test_gh\_8599 test by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turbo/pull/8984](https://togithub.com/vercel/turbo/pull/8984)
- removes GOROOT from globalPassThroughEnv for local dev by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turbo/pull/8981](https://togithub.com/vercel/turbo/pull/8981)
- simplify Prysk commands by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turbo/pull/8982](https://togithub.com/vercel/turbo/pull/8982)
- fix(create-turbo): support renamed repositories by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8993](https://togithub.com/vercel/turbo/pull/8993)
- cacheDir for env, config, and flag by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turbo/pull/8947](https://togithub.com/vercel/turbo/pull/8947)
- Update Socket config by
[@&#8203;jackwilson323](https://togithub.com/jackwilson323) in
[https://github.com/vercel/turbo/pull/9005](https://togithub.com/vercel/turbo/pull/9005)

#### New Contributors

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

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.12...v2.0.13

###
[`v2.0.12`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.12):
Turborepo v2.0.12

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.11...v2.0.12)

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

#### What's Changed

##### Docs

- docs: Re-mention passthroughs in CI compatibility section. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8939](https://togithub.com/vercel/turbo/pull/8939)
- docs: Correct json comma syntax in sample code by
[@&#8203;huyb1991](https://togithub.com/huyb1991) in
[https://github.com/vercel/turbo/pull/8949](https://togithub.com/vercel/turbo/pull/8949)

##### [@&#8203;turbo/repository](https://togithub.com/turbo/repository)

- feat(turborepo): log reason why all packages were considered changed
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/8872](https://togithub.com/vercel/turbo/pull/8872)

##### Changelog

- fix(watch): properly shut down persistent tasks by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8854](https://togithub.com/vercel/turbo/pull/8854)
- add envMode to `turbo.json` by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turbo/pull/8757](https://togithub.com/vercel/turbo/pull/8757)
- chore(codeowners): remove turbopack by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8930](https://togithub.com/vercel/turbo/pull/8930)
- chore(turbo): simplify contributing by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8931](https://togithub.com/vercel/turbo/pull/8931)
- removes nextest config related to turbopack by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turbo/pull/8925](https://togithub.com/vercel/turbo/pull/8925)
- chore: improve -vv logging by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/8910](https://togithub.com/vercel/turbo/pull/8910)
- refactor(turborepo): change the ui config to use an enum by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8919](https://togithub.com/vercel/turbo/pull/8919)
- remove / move unused or test crates by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/8929](https://togithub.com/vercel/turbo/pull/8929)
- fix(tui): allow for TUI use when hooked up to tty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8942](https://togithub.com/vercel/turbo/pull/8942)
- feat(telemetry): reduce data volume by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8944](https://togithub.com/vercel/turbo/pull/8944)
- feat(owners): remove telem special case by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8945](https://togithub.com/vercel/turbo/pull/8945)
- feat(turborepo): implement --affected flag by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8884](https://togithub.com/vercel/turbo/pull/8884)

#### New Contributors

- [@&#8203;Marukome0743](https://togithub.com/Marukome0743) made their
first contribution in
[https://github.com/vercel/turbo/pull/8928](https://togithub.com/vercel/turbo/pull/8928)
- [@&#8203;fredericobreno](https://togithub.com/fredericobreno) made
their first contribution in
[https://github.com/vercel/turbo/pull/8911](https://togithub.com/vercel/turbo/pull/8911)
- [@&#8203;huyb1991](https://togithub.com/huyb1991) made their first
contribution in
[https://github.com/vercel/turbo/pull/8949](https://togithub.com/vercel/turbo/pull/8949)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.11...v2.0.12

###
[`v2.0.11`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.11):
Turborepo v2.0.11

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.10...v2.0.11)

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

#### What's Changed

##### Changelog

- fix(pty): disable echoctl for child processes by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8892](https://togithub.com/vercel/turbo/pull/8892)

#### New Contributors

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

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.10...v2.0.11

###
[`v2.0.10`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.10):
Turborepo v2.0.10

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.9...v2.0.10)

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

#### What's Changed

##### Examples

- chore: dedupe link component in kitchen sink by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8813](https://togithub.com/vercel/turbo/pull/8813)
- feat(examples): add example-with-typeorm by
[@&#8203;cgoinglove](https://togithub.com/cgoinglove) in
[https://github.com/vercel/turbo/pull/8143](https://togithub.com/vercel/turbo/pull/8143)

##### Changelog

- feat(turbo): add TMP and TEMP variables to pass through by
[@&#8203;cahilfoley](https://togithub.com/cahilfoley) in
[https://github.com/vercel/turbo/pull/8803](https://togithub.com/vercel/turbo/pull/8803)
- chore: add trace level logging to process management by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8822](https://togithub.com/vercel/turbo/pull/8822)
- chore(infer): add test for current behavior by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8825](https://togithub.com/vercel/turbo/pull/8825)
- fix: close stdin for non-interactive tasks by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8838](https://togithub.com/vercel/turbo/pull/8838)
- chore(turborepo): print the turbo version on start up by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8841](https://togithub.com/vercel/turbo/pull/8841)
- chore(auth): catch forbidden cache access error by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8853](https://togithub.com/vercel/turbo/pull/8853)
- chore(telemetry): remove unused codepath field by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/8855](https://togithub.com/vercel/turbo/pull/8855)
- chore(schema): update schema with
dangerouslyDisablePackageManagerCheck by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8856](https://togithub.com/vercel/turbo/pull/8856)
- fix(turborepo): task table width bug by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8868](https://togithub.com/vercel/turbo/pull/8868)
- feat(turborepo): added specific symbol for cache hit by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8869](https://togithub.com/vercel/turbo/pull/8869)
- feat(tui): terminal pane mouse copying by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8713](https://togithub.com/vercel/turbo/pull/8713)
- chore(filter): add additional logs for scm based filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8850](https://togithub.com/vercel/turbo/pull/8850)
- chore:(logging): improve debug logs with -vv by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/8867](https://togithub.com/vercel/turbo/pull/8867)
- (chore): Make FS error more clear. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8881](https://togithub.com/vercel/turbo/pull/8881)
- adds daemon flag for env var and turbo.json by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turbo/pull/8728](https://togithub.com/vercel/turbo/pull/8728)
- fix(windows): keep stdin open for conpty processes by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8885](https://togithub.com/vercel/turbo/pull/8885)

#### New Contributors

- [@&#8203;cahilfoley](https://togithub.com/cahilfoley) made their first
contribution in
[https://github.com/vercel/turbo/pull/8803](https://togithub.com/vercel/turbo/pull/8803)
- [@&#8203;busybox11](https://togithub.com/busybox11) made their first
contribution in
[https://github.com/vercel/turbo/pull/8799](https://togithub.com/vercel/turbo/pull/8799)
- [@&#8203;samydoesit](https://togithub.com/samydoesit) made their first
contribution in
[https://github.com/vercel/turbo/pull/8725](https://togithub.com/vercel/turbo/pull/8725)
- [@&#8203;gdarchen](https://togithub.com/gdarchen) made their first
contribution in
[https://github.com/vercel/turbo/pull/8830](https://togithub.com/vercel/turbo/pull/8830)
- [@&#8203;cgoinglove](https://togithub.com/cgoinglove) made their first
contribution in
[https://github.com/vercel/turbo/pull/8143](https://togithub.com/vercel/turbo/pull/8143)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.9...v2.0.10

###
[`v2.0.9`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.9):
Turborepo v2.0.9

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.8...v2.0.9)

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

#### What's Changed

##### Examples

- feat(examples): bump turbo for svelte by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8796](https://togithub.com/vercel/turbo/pull/8796)

##### Changelog

- feature(turborepo): fancy package.json errors by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8299](https://togithub.com/vercel/turbo/pull/8299)
- feat(turborepo): turbo ls with filter by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8779](https://togithub.com/vercel/turbo/pull/8779)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.8...v2.0.9

###
[`v2.0.8`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.8):
Turborepo v2.0.8

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.7...v2.0.8)

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

#### What's Changed

##### Examples

- Update basic example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8784](https://togithub.com/vercel/turbo/pull/8784)

##### Changelog

- chore(turborepo): refine package.json parse error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8753](https://togithub.com/vercel/turbo/pull/8753)
- feat(turbo): add VERCEL to pass through by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8794](https://togithub.com/vercel/turbo/pull/8794)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.7...v2.0.8

###
[`v2.0.7`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.7):
Turborepo v2.0.7

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.6...v2.0.7)

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

#### What's Changed

##### Examples

- Fix lockfile in kitchen-sink. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8666](https://togithub.com/vercel/turbo/pull/8666)
- fix(examples): correct next.config extension in tsconfig by
[@&#8203;moolcoov](https://togithub.com/moolcoov) in
[https://github.com/vercel/turbo/pull/8638](https://togithub.com/vercel/turbo/pull/8638)
- feat(examples): add `with-nestjs` example by
[@&#8203;Neosoulink](https://togithub.com/Neosoulink) in
[https://github.com/vercel/turbo/pull/8162](https://togithub.com/vercel/turbo/pull/8162)

##### Changelog

- (refactor)ui: Refactoring/simplifying TUI state by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8650](https://togithub.com/vercel/turbo/pull/8650)
- fix: add more windows vars to default pass through env by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8615](https://togithub.com/vercel/turbo/pull/8615)
- Add Docker to default passthroughs list. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8690](https://togithub.com/vercel/turbo/pull/8690)
- Add VSCode's debugger variables to default passthroughs. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8689](https://togithub.com/vercel/turbo/pull/8689)
- update env_wildcards for SvelteKit by
[@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) in
[https://github.com/vercel/turbo/pull/8685](https://togithub.com/vercel/turbo/pull/8685)
- fix constant width for checkmark by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turbo/pull/8702](https://togithub.com/vercel/turbo/pull/8702)
- fix(ui): respect `--output-logs` and `outputLogs` for persisting logs
after TUI exits by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8612](https://togithub.com/vercel/turbo/pull/8612)
- fix(ui): only start ui if there are tasks to run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8703](https://togithub.com/vercel/turbo/pull/8703)
- chore(ui): add tracing to all tui operations by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8704](https://togithub.com/vercel/turbo/pull/8704)
- adds CLI flag for controlling tui/stream by
[@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) in
[https://github.com/vercel/turbo/pull/8714](https://togithub.com/vercel/turbo/pull/8714)
- feat: allow opting out of required package manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8738](https://togithub.com/vercel/turbo/pull/8738)
- upgrade deps to avoid conflict with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/8750](https://togithub.com/vercel/turbo/pull/8750)
- refactor(turborepo): derive `Opts` from `Config` by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8759](https://togithub.com/vercel/turbo/pull/8759)

#### New Contributors

- [@&#8203;dimitropoulos](https://togithub.com/dimitropoulos) made their
first contribution in
[https://github.com/vercel/turbo/pull/8674](https://togithub.com/vercel/turbo/pull/8674)
- [@&#8203;pathliving](https://togithub.com/pathliving) made their first
contribution in
[https://github.com/vercel/turbo/pull/8675](https://togithub.com/vercel/turbo/pull/8675)
- [@&#8203;UNRULYEON](https://togithub.com/UNRULYEON) made their first
contribution in
[https://github.com/vercel/turbo/pull/8679](https://togithub.com/vercel/turbo/pull/8679)
- [@&#8203;LaPulgaaa](https://togithub.com/LaPulgaaa) made their first
contribution in
[https://github.com/vercel/turbo/pull/8683](https://togithub.com/vercel/turbo/pull/8683)
- [@&#8203;jacksteamdev](https://togithub.com/jacksteamdev) made their
first contribution in
[https://github.com/vercel/turbo/pull/8685](https://togithub.com/vercel/turbo/pull/8685)
- [@&#8203;ony3000](https://togithub.com/ony3000) made their first
contribution in
[https://github.com/vercel/turbo/pull/8642](https://togithub.com/vercel/turbo/pull/8642)
- [@&#8203;moolcoov](https://togithub.com/moolcoov) made their first
contribution in
[https://github.com/vercel/turbo/pull/8638](https://togithub.com/vercel/turbo/pull/8638)
- [@&#8203;pkellner](https://togithub.com/pkellner) made their first
contribution in
[https://github.com/vercel/turbo/pull/8669](https://togithub.com/vercel/turbo/pull/8669)
- [@&#8203;vinnymac](https://togithub.com/vinnymac) made their first
contribution in
[https://github.com/vercel/turbo/pull/8637](https://togithub.com/vercel/turbo/pull/8637)
- [@&#8203;torresgol10](https://togithub.com/torresgol10) made their
first contribution in
[https://github.com/vercel/turbo/pull/8719](https://togithub.com/vercel/turbo/pull/8719)
- [@&#8203;baileywickham](https://togithub.com/baileywickham) made their
first contribution in
[https://github.com/vercel/turbo/pull/8692](https://togithub.com/vercel/turbo/pull/8692)
- [@&#8203;LioRael](https://togithub.com/LioRael) made their first
contribution in
[https://github.com/vercel/turbo/pull/8741](https://togithub.com/vercel/turbo/pull/8741)
- [@&#8203;mischnic](https://togithub.com/mischnic) made their first
contribution in
[https://github.com/vercel/turbo/pull/8767](https://togithub.com/vercel/turbo/pull/8767)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.6...v2.0.7

###
[`v2.0.6`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.6):
Turborepo v2.0.6

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.5...v2.0.6)

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

#### What's Changed

##### Examples

- More fix-ups for `kitchen-sink`. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8590](https://togithub.com/vercel/turbo/pull/8590)
- c2aa1 by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8592](https://togithub.com/vercel/turbo/pull/8592)
- More kitchen-sink. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8593](https://togithub.com/vercel/turbo/pull/8593)
- Fixing kitchen-sink example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8600](https://togithub.com/vercel/turbo/pull/8600)
- fix(turborepo): update package.json typo by
[@&#8203;JannatinNaimXIII](https://togithub.com/JannatinNaimXIII) in
[https://github.com/vercel/turbo/pull/8621](https://togithub.com/vercel/turbo/pull/8621)

##### Changelog

- fix(pnpm): enable npmrc parsing for pnpm 9 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8591](https://togithub.com/vercel/turbo/pull/8591)
- chore(turbo): add debug logs for changes files when using a git range
filter by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/8608](https://togithub.com/vercel/turbo/pull/8608)
- chore(ui): disable tui as the default by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8631](https://togithub.com/vercel/turbo/pull/8631)
- fix(ui): Use double arrow instead of spinner for active tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8632](https://togithub.com/vercel/turbo/pull/8632)

#### New Contributors

- [@&#8203;kettei-sproutty](https://togithub.com/kettei-sproutty) made
their first contribution in
[https://github.com/vercel/turbo/pull/8596](https://togithub.com/vercel/turbo/pull/8596)
- [@&#8203;JannatinNaimXIII](https://togithub.com/JannatinNaimXIII) made
their first contribution in
[https://github.com/vercel/turbo/pull/8613](https://togithub.com/vercel/turbo/pull/8613)
- [@&#8203;NamesMT](https://togithub.com/NamesMT) made their first
contribution in
[https://github.com/vercel/turbo/pull/8616](https://togithub.com/vercel/turbo/pull/8616)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.5...v2.0.6

###
[`v2.0.5`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.5):
Turborepo v2.0.5

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.4...v2.0.5)

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

#### What's Changed

##### create-turbo

- Clean up create-turbo logs. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8516](https://togithub.com/vercel/turbo/pull/8516)

##### [@&#8203;turbo/codemod](https://togithub.com/turbo/codemod)

- chore([@&#8203;turbo/types](https://togithub.com/turbo/types)): remove
deprecated fields by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8531](https://togithub.com/vercel/turbo/pull/8531)
- fix(codemod): avoid overwriting existing packageManager field by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8551](https://togithub.com/vercel/turbo/pull/8551)

##### Examples

- chore(packages/ui turbo gen config.ts): Preventing the format of pack…
by [@&#8203;moeyashi](https://togithub.com/moeyashi) in
[https://github.com/vercel/turbo/pull/8033](https://togithub.com/vercel/turbo/pull/8033)
- chore(examples): remove deprecated prettierrc option by
[@&#8203;fucksophie](https://togithub.com/fucksophie) in
[https://github.com/vercel/turbo/pull/8092](https://togithub.com/vercel/turbo/pull/8092)
- Removed redundant
[@&#8203;storybook/addon-docs](https://togithub.com/storybook/addon-docs)
dev dependency by [@&#8203;NickE27](https://togithub.com/NickE27) in
[https://github.com/vercel/turbo/pull/8184](https://togithub.com/vercel/turbo/pull/8184)
- Remove Tailwind from basic. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8515](https://togithub.com/vercel/turbo/pull/8515)
- fix: package name has wrong spelling by
[@&#8203;sacrosanctic](https://togithub.com/sacrosanctic) in
[https://github.com/vercel/turbo/pull/8517](https://togithub.com/vercel/turbo/pull/8517)
- chore: move react, react-dom from devDependency to dependency in
several examples by
[@&#8203;ghdtjgus76](https://togithub.com/ghdtjgus76) in
[https://github.com/vercel/turbo/pull/8192](https://togithub.com/vercel/turbo/pull/8192)
- Examples polish. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8511](https://togithub.com/vercel/turbo/pull/8511)
- Update lockfile for kitchen-sink. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8579](https://togithub.com/vercel/turbo/pull/8579)

##### Changelog

- fix: factor in root dependencies into ... filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8465](https://togithub.com/vercel/turbo/pull/8465)
- Spruce up Remote Cache linking message. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8494](https://togithub.com/vercel/turbo/pull/8494)
- Fix outdated user listing. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8526](https://togithub.com/vercel/turbo/pull/8526)
- feat: GitLab VendorBehavior by
[@&#8203;cymruu](https://togithub.com/cymruu) in
[https://github.com/vercel/turbo/pull/8300](https://togithub.com/vercel/turbo/pull/8300)
- Jetbrains passthroughs. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8560](https://togithub.com/vercel/turbo/pull/8560)
- fix(turborepo): benchmarks by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8569](https://togithub.com/vercel/turbo/pull/8569)
- Light refactoring of TUI pane and instructions. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8499](https://togithub.com/vercel/turbo/pull/8499)
- feat(tui): output tasks with errors last by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8570](https://togithub.com/vercel/turbo/pull/8570)
- fix(ui): wait until task output is fully rendered on stop by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8588](https://togithub.com/vercel/turbo/pull/8588)

#### New Contributors

- [@&#8203;moeyashi](https://togithub.com/moeyashi) made their first
contribution in
[https://github.com/vercel/turbo/pull/8033](https://togithub.com/vercel/turbo/pull/8033)
- [@&#8203;fucksophie](https://togithub.com/fucksophie) made their first
contribution in
[https://github.com/vercel/turbo/pull/8092](https://togithub.com/vercel/turbo/pull/8092)
- [@&#8203;NickE27](https://togithub.com/NickE27) made their first
contribution in
[https://github.com/vercel/turbo/pull/8184](https://togithub.com/vercel/turbo/pull/8184)
- [@&#8203;dcodesdev](https://togithub.com/dcodesdev) made their first
contribution in
[https://github.com/vercel/turbo/pull/8315](https://togithub.com/vercel/turbo/pull/8315)
- [@&#8203;sacrosanctic](https://togithub.com/sacrosanctic) made their
first contribution in
[https://github.com/vercel/turbo/pull/8517](https://togithub.com/vercel/turbo/pull/8517)
- [@&#8203;iojcde](https://togithub.com/iojcde) made their first
contribution in
[https://github.com/vercel/turbo/pull/5328](https://togithub.com/vercel/turbo/pull/5328)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.4...v2.0.5

###
[`v2.0.4`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.4):
Turborepo v2.0.4

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.3...v2.0.4)

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

#### What's Changed

##### create-turbo

- Update `create-turbo` to use carat versions. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8448](https://togithub.com/vercel/turbo/pull/8448)

##### [@&#8203;turbo/codemod](https://togithub.com/turbo/codemod)

- chore: bump timeout for migration by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8463](https://togithub.com/vercel/turbo/pull/8463)
- fix([@&#8203;turbo/codemode](https://togithub.com/turbo/codemode)):
no-op when turbo.json already contains tasks key by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/8471](https://togithub.com/vercel/turbo/pull/8471)

##### Examples

- Give examples carat versions. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8382](https://togithub.com/vercel/turbo/pull/8382)
- Fix apk order in example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8392](https://togithub.com/vercel/turbo/pull/8392)
- Fix `eslint-config-turbo` configuration in examples. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8405](https://togithub.com/vercel/turbo/pull/8405)
- Remove root eslintrc from basic example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8423](https://togithub.com/vercel/turbo/pull/8423)
- Consistent Node.js version in Changesets action. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8441](https://togithub.com/vercel/turbo/pull/8441)
- Remove global dep from basic example. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8442](https://togithub.com/vercel/turbo/pull/8442)

##### Changelog

- fix(filter): account for root internal dependencies in git based
filter by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8364](https://togithub.com/vercel/turbo/pull/8364)
- Warn instead of print when no locally installed version. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8384](https://togithub.com/vercel/turbo/pull/8384)
- Add CI to default passthroughs. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8393](https://togithub.com/vercel/turbo/pull/8393)
- feat(shim): invoke local turbo version via npx if not installed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8385](https://togithub.com/vercel/turbo/pull/8385)
- docs: update links to logs in turbo types by
[@&#8203;boyum](https://togithub.com/boyum) in
[https://github.com/vercel/turbo/pull/8403](https://togithub.com/vercel/turbo/pull/8403)
- fix: added `LD_LIBRARY_PATH` to default forwarded env vars by
[@&#8203;GauBen](https://togithub.com/GauBen) in
[https://github.com/vercel/turbo/pull/8412](https://togithub.com/vercel/turbo/pull/8412)
- chore(turborepo): remove unused code by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8428](https://togithub.com/vercel/turbo/pull/8428)
- fix: disable panic handler in ci by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8436](https://togithub.com/vercel/turbo/pull/8436)
- fix: remove inferring turbo version from package.json or turbo.json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8437](https://togithub.com/vercel/turbo/pull/8437)
- fix(turborepo): avoid starting ui on too small terminals by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8457](https://togithub.com/vercel/turbo/pull/8457)
- chore(shim): make dynamic downloads opt in by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8458](https://togithub.com/vercel/turbo/pull/8458)
- fix(shim): avoid panic if user has malformed lockfile by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8461](https://togithub.com/vercel/turbo/pull/8461)
- fix(ui): pass through terminal env vars to appease chalk by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8468](https://togithub.com/vercel/turbo/pull/8468)

#### New Contributors

- [@&#8203;boyum](https://togithub.com/boyum) made their first
contribution in
[https://github.com/vercel/turbo/pull/8403](https://togithub.com/vercel/turbo/pull/8403)
- [@&#8203;GauBen](https://togithub.com/GauBen) made their first
contribution in
[https://github.com/vercel/turbo/pull/8412](https://togithub.com/vercel/turbo/pull/8412)
- [@&#8203;sethidden](https://togithub.com/sethidden) made their first
contribution in
[https://github.com/vercel/turbo/pull/8450](https://togithub.com/vercel/turbo/pull/8450)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.3...v2.0.4

###
[`v2.0.3`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.3):
Turborepo v2.0.3

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.2...v2.0.3)

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

#### What's Changed

##### turbo-ignore

- fix(turbo-ignore): infer correct version of turbo for project by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8363](https://togithub.com/vercel/turbo/pull/8363)

##### Changelog

- feat: warn when no local turbo found by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8356](https://togithub.com/vercel/turbo/pull/8356)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.2...v2.0.3

###
[`v2.0.2`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.2):
Turborepo v2.0.2

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.1...v2.0.2)

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

#### What's Changed

##### [@&#8203;turbo/codemod](https://togithub.com/turbo/codemod)

- fix(turborepo): factor in negated globs for workspace detection in
codemods by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang)
in
[https://github.com/vercel/turbo/pull/8331](https://togithub.com/vercel/turbo/pull/8331)

##### Examples

- Bump examples to 2.0.0. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8284](https://togithub.com/vercel/turbo/pull/8284)

##### Changelog

- feat(ui): respect CI and NO_COLOR as overrides for TUI by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8335](https://togithub.com/vercel/turbo/pull/8335)
- fix(ui): no longer attempt to read from stdin if non-tty by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8333](https://togithub.com/vercel/turbo/pull/8333)
- fix: correctly serialize ui values by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8338](https://togithub.com/vercel/turbo/pull/8338)
- fix: add NODE_OPTIONS to default pass through env vars by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8353](https://togithub.com/vercel/turbo/pull/8353)
- chore: add additional env vars to default pass through by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8359](https://togithub.com/vercel/turbo/pull/8359)
- fix(ui): disable TUI if log order is specified by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8343](https://togithub.com/vercel/turbo/pull/8343)

#### New Contributors

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

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.1...v2.0.2

###
[`v2.0.1`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.1):
Turborepo v2.0.1

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v2.0.0...v2.0.1)

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

**Full Changelog**:
https://github.com/vercel/turbo/compare/v2.0.0...v2.0.1

###
[`v2.0.0`](https://togithub.com/vercel/turborepo/releases/tag/v2.0.0):
Turborepo v2.0.0

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.13.4...v2.0.0)

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

#### What's Changed

Upgrade guide:
https://turbo.build/repo/docs/crafting-your-repository/upgrading

##### [@&#8203;turbo/codemod](https://togithub.com/turbo/codemod)

- feat(codemod): add logic for major version bump by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8260](https://togithub.com/vercel/turbo/pull/8260)
- feat(codemod): place tasks last in turbo.json rewrites by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8268](https://togithub.com/vercel/turbo/pull/8268)
- fix(codemod): support jsonc when parsing root turbo.json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8279](https://togithub.com/vercel/turbo/pull/8279)
- fix(codemod): respect --dry flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8280](https://togithub.com/vercel/turbo/pull/8280)
- feat: change values of "ui" in turbo.json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8289](https://togithub.com/vercel/turbo/pull/8289)
- fix(codemod): support jsonc when parsing root turbo.json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8279](https://togithub.com/vercel/turbo/pull/8279)
- feat(codemod): place tasks last in turbo.json rewrites by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8268](https://togithub.com/vercel/turbo/pull/8268)
- feat(codemod): add logic for major version bump by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8260](https://togithub.com/vercel/turbo/pull/8260)
- feat(codemod): add missing package names by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8186](https://togithub.com/vercel/turbo/pull/8186)

##### Changelog

##### Breaking

- chore: remove legacy filter flags by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8294](https://togithub.com/vercel/turbo/pull/8294)/
- chore(turborepo): adjust error message for pipeline by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8264](https://togithub.com/vercel/turbo/pull/8264)
- chore(turbo)!: remove check for legacy turbo config in package.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/8023](https://togithub.com/vercel/turbo/pull/8023)
- chore(turbo)! hard error on env vars in task and global dependencies
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[#&#8203;8026](https://togithub.com/vercel/turborepo/issues/8026)
- feat: require packageManager in package.json by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8017](https://togithub.com/vercel/turborepo/issues/8017)
- feat(filter): no longer infer scope in filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8137](https://togithub.com/vercel/turborepo/issues/8137)
- chore!(create-turbo): remove old pm arg by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[#&#8203;8150](https://togithub.com/vercel/turborepo/issues/8150)
- feat: error on empty package name by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski)
[#&#8203;8152](https://togithub.com/vercel/turborepo/issues/8152)
- feat(filter): error on invalid filters by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski)
[#&#8203;8142](https://togithub.com/vercel/turborepo/issues/8142)
- Move fs cache location. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[#&#8203;8126](https://togithub.com/vercel/turborepo/issues/8126)
- refactor(turborepo): Rename outputMode to outputLogs in turbo.json by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[#&#8203;8149](https://togithub.com/vercel/turborepo/issues/8149)
- feat: --only now applies to package dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8163](https://togithub.com/vercel/turborepo/issues/8163)
- Rename pipeline to tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[#&#8203;8157](https://togithub.com/vercel/turborepo/issues/8157)
- feat: add doublestar to exact dir paths by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8180](https://togithub.com/vercel/turborepo/issues/8180)
- chore: remove globalDotEnv and dotEnv fields by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8181](https://togithub.com/vercel/turborepo/issues/8181)
- chore: make env mode strict by default by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8182](https://togithub.com/vercel/turborepo/issues/8182)

##### Other

- feat: allow for negative globs in globalDeps by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8190](https://togithub.com/vercel/turborepo/issues/8190)
- chore: change turborepo licenses to MIT by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8197](https://togithub.com/vercel/turborepo/issues/8197)
- feat: all dependencies of root package contribute to global hash by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8202](https://togithub.com/vercel/turborepo/issues/8202)
- fix(turborepo): non-determinism with root internal deps hash. by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8277](https://togithub.com/vercel/turbo/pull/8277)
- fix: update integration test to expect correct output by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8285](https://togithub.com/vercel/turbo/pull/8285)
- chore: remove cpuprofile flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8282](https://togithub.com/vercel/turbo/pull/8282)
- fix(ui): disable UI on all dry runs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8269](https://togithub.com/vercel/turbo/pull/8269)
- fix(turborepo): stderr log by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8267](https://togithub.com/vercel/turbo/pull/8267)
- chore(turborepo): adjust error message for pipeline by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8264](https://togithub.com/vercel/turbo/pull/8264)
- fix(ui): ensure prelude gets printed before ui starts by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8265](https://togithub.com/vercel/turbo/pull/8265)
-
chore([@&#8203;turbo/benchmark](https://togithub.com/turbo/benchmark)):
fix lint warnings by [@&#8203;mehulkar](https://togithub.com/mehulkar)
in
[https://github.com/vercel/turbo/pull/8233](https://togithub.com/vercel/turbo/pull/8233)
- chore(turborepo): Feature flagged off file hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8229](https://togithub.com/vercel/turbo/pull/8229)
- chore: downgrade curl to fix Windows rust tests by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8242](https://togithub.com/vercel/turbo/pull/8242)
- fix(turborepo): Remove optional git locks by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8244](https://togithub.com/vercel/turbo/pull/8244)
- fix(turborepo): Optional lock with env var by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8247](https://togithub.com/vercel/turbo/pull/8247)
- add two retry strategies to allow requests to timeout gracefully by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/8080](https://togithub.com/vercel/turbo/pull/8080)
- add support for upload speed / remaining in the cache upload step by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/8081](https://togithub.com/vercel/turbo/pull/8081)
- chore: remove --ignore flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8201](https://togithub.com/vercel/turbo/pull/8201)
- feat: factor engines into global cache key by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[#&#8203;8173](https://togithub.com/vercel/turborepo/issues/8173)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.13.4...v2.0.0

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

[Compare
Source](https://togithub.com/vercel/turborepo/compare/v1.13.3...v1.13.4)

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

#### What's Changed

##### Docs

- Update eslint-config package name. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8069](https://togithub.com/vercel/turbo/pull/8069)
- chore(docs): add missing words by
[@&#8203;jeremyadavis](https://togithub.com/jeremyadavis) in
[https://github.com/vercel/turbo/pull/8067](https://togithub.com/vercel/turbo/pull/8067)
- Fix typo in Turborepo task-graph documentation by
[@&#8203;danisal](https://togithub.com/danisal) in
[https://github.com/vercel/turbo/pull/8212](https://togithub.com/vercel/turbo/pull/8212)

##### turbo-ignore

- feat(turbo-ignore): don’t fail on single package repos by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8177](https://togithub.com/vercel/turbo/pull/8177)

##### [@&#8203;turbo/repository](https://togithub.com/turbo/repository)

- chore: differentiate rust changes from building turbo by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8001](https://togithub.com/vercel/turbo/pull/8001)

##### Examples

- fix(examples): lint docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/8049](https://togithub.com/vercel/turbo/pull/8049)
- fix(example): Fix Prisma example by
[@&#8203;caaatisgood](https://togithub.com/caaatisgood) in
[https://github.com/vercel/turbo/pull/8046](https://togithub.com/vercel/turbo/pull/8046)
- chore: move react from devDependency to dependency in design system
starter template by
[@&#8203;ghdtjgus76](https://togithub.com/ghdtjgus76) in
[https://github.com/vercel/turbo/pull/8159](https://togithub.com/vercel/turbo/pull/8159)

##### Changelog

- feat(Turborepo): Be explicit about which binary we failed to find by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/8050](https://togithub.com/vercel/turbo/pull/8050)
- fix(ui): add carraige return after cache log messages by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8015](https://togithub.com/vercel/turbo/pull/8015)
- fix(turborepo): Watch mode not responding to changes by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8057](https://togithub.com/vercel/turbo/pull/8057)
- fix(Turborepo): Make package discovery async, and apply a debouncer by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/8058](https://togithub.com/vercel/turbo/pull/8058)
- fix(Turborepo): Disable inputs support by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/8074](https://togithub.com/vercel/turbo/pull/8074)
- feat(Turborepo): Add support for $TURBO_DEFAULT$ to file hash watcher
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/8086](https://togithub.com/vercel/turbo/pull/8086)
- Remove async-trait from a few crates by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/8077](https://togithub.com/vercel/turbo/pull/8077)
- feat(turborepo): Using file hashing for package watching by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8104](https://togithub.com/vercel/turbo/pull/8104)
- add support for cache_timeout as well as timeout by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/8078](https://togithub.com/vercel/turbo/pull/8078)
- yield a different warning when the cache upload times out by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/8079](https://togithub.com/vercel/turbo/pull/8079)
- fix lockfile by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/8110](https://togithub.com/vercel/turbo/pull/8110)
- fix(gen): isolate generator to `commonjs` by
[@&#8203;wesleycoder](https://togithub.com/wesleycoder) in
[https://github.com/vercel/turbo/pull/8109](https://togithub.com/vercel/turbo/pull/8109)
- fix: properly propigate internal errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8113](https://togithub.com/vercel/turbo/pull/8113)
- feat(ui): render ui to alternative screen by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8084](https://togithub.com/vercel/turbo/pull/8084)
- fix(turborepo): Persistent tasks in watch mode by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8107](https://togithub.com/vercel/turbo/pull/8107)
- fix(Turborepo): Fix as_inputs to include ! by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/8119](https://togithub.com/vercel/turbo/pull/8119)
- fix(Turborepo): Handle new packages in lockfile comparisons by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/8127](https://togithub.com/vercel/turbo/pull/8127)
- fix(ui): minor formatting by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8136](https://togithub.com/vercel/turbo/pull/8136)
- feat(turborepo): new ui + watch mode by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/7962](https://togithub.com/vercel/turbo/pull/7962)
- fix(turborepo): use transitive closure of filtered packages in watch
mode by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8161](https://togithub.com/vercel/turbo/pull/8161)
- add two retry strategies to allow requests to timeout gracefully by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/8080](https://togithub.com/vercel/turbo/pull/8080)
- add support for upload speed / remaining in the cache upload step by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/8081](https://togithub.com/vercel/turbo/pull/8081)
-
chore([@&#8203;turbo/benchmark](https://togithub.com/turbo/benchmark)):
fix lint warnings by [@&#8203;mehulkar](https://togithub.com/mehulkar)
in
[https://github.com/vercel/turbo/pull/8233](https://togithub.com/vercel/turbo/pull/8233)
- chore(turborepo): Feature flagged off file hashing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8229](https://togithub.com/vercel/turbo/pull/8229)
- chore: downgrade curl to fix Windows rust tests by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8242](https://togithub.com/vercel/turbo/pull/8242)
- fix(turborepo): Remove optional git locks by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8244](https://togithub.com/vercel/turbo/pull/8244)
- fix(turborepo): Optional lock with env var by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/8247](https://togithub.com/vercel/turbo/pull/8247)

#### New Contributors

- [@&#8203;caaatisgood](https://togithub.com/caaatisgood) made their
first contribution in
[https://github.com/vercel/turbo/pull/8046](https://togithub.com/vercel/turbo/pull/8046)
- [@&#8203;jeremyadavis](https://togithub.com/jeremyadavis) made their
first contribution in
[https://github.com/vercel/turbo/pull/8067](https://togit

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzOC4yNi4xIiwidXBkYXRlZEluVmVyIjoiMzguMjYuMSIsInRhcmdldEJyYW5jaCI6Im1haW4iLCJsYWJlbHMiOltdfQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
This pull request was closed.
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
area: examples Improvements or additions to examples needs: triage New issues get this label. Remove it after triage owned-by: turborepo
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Examples: with-nestjs example implementation
3 participants