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

Turborepo 2.0 #8294

Merged
merged 50 commits into from
Jun 4, 2024
Merged

Turborepo 2.0 #8294

merged 50 commits into from
Jun 4, 2024

Conversation

chris-olszewski
Copy link
Member

Description

TSIA

Testing Instructions

CI

chris-olszewski and others added 30 commits June 4, 2024 09:52
Remove legacy filter flags now that they've been deprecated for quite
awhile.

Existing test suite passes. Updated tests that are still applicable and
removed those that aren't.
### Description

I messed up a resolving a merge conflict and didn't migrate some args
that moved from `ExecutionArgs` to `RunArgs` in #7613

### Testing Instructions

Tests on CI pass

Closes TURBO-2872
### Description

With 2.0 we will now be requiring a `packageManager` field in
`package.json` as this is a best practice and it helps us behave in a
deterministic manner.

The actual code change is very straightforward as we remove our package
manager inference code and return an error if reading package manager
from `package.json` fails.

Most of the PR is updating tests.

### Testing Instructions

Updated unit tests
### Description

Previously we would infer scope for name filters if there was exactly
one matching package.
e.g. `turbo build --filter=ui` would run `@a/ui#build` if there was a
`@a/ui` package in the workspace

This is confusing and can result in accidentally breaking filters when a
conflicting package is added e.g. adding `@b/ui` would cause *no* tasks
to be run along with a zero exit code.

### Testing Instructions

Updated unit test to verify inference no longer works and using the
explicit package name still works.
### Description

We replaced this with an option instead of an arg, but cleaning up here!

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->
### Description

We now will error if we encounter a package with a missing or empty
package name.

This is done in the graph validation step as opposed to construction
since we don't want to impose this restriction on `@turbo/repository`
users.

### Testing Instructions

Added integration test
### Description

This PR changes `--filter` so it now will error on certain malformed
filters:
- Name filters with no globs that don't match any packages e.g.
`--filter=fo` instead of `--filter=foo`
- Directory filters that reference a directory that doesn't exist: e.g.
`--filter='./pakcages/*'`

Each commit of the PR can be reviewed on it's own.

### Testing Instructions

Updated existing unit tests. Added additional ones along with an
integration test.
### Description

Moves the file system cache to `.turbo` as discussed in #842.

### Testing Instructions

Find your favorite Turborepo of choice and run a `turbo` command twice.
You should miss cache on the first run and hit cache on the second.

CLOSES TURBO-3130

---------

Co-authored-by: Chris Olszewski <chris.olszewski@vercel.com>
…on` (#8149)

### Description

Changed `outputMode` to `outputLogs` in `turbo.json` to match the flag
name. Also wrote a code mod to migrate `turbo.json` config
automatically.

### Testing Instructions

Existing tests are migrated. Also wrote tests for code mod
### Description

Change `--only` so it behaves in a more sensible way. It still shouldn't
be widely used, but now it at least does what it says it does.

Previously `--only` would still follow package dependencies resulting
additional tasks getting run that weren't expected.
e.g. for task definition `"test": {"dependsOn": ["build", "^test"]}` and
package `a` depending on `b`, then `turbo test --filter=a --only` would
result in both `a#test` and `b#test` being run. With this PR now only
`a#test` will be run.

I changed the `--only` logic so now it will limit tasks in the graph to
exactly those that are in the product of the packages implied by
`--filter` and the tasks specified in the run args. This should make
`--only` a far more sensible flag.


### Testing Instructions

Added unit tests for testing the trimming of package dependencies and
task id style dependencies e.g. `"dependsOn": ["a#test"]`
### Description

Renaming the `pipeline` key to `tasks` in turbo.json.

We went this key to better express what Turborepo does with the
configuration that is provided in this key. We've seen with users that
the term "pipeline" can be confusing for how `turbo` _really_ executes
the task graph.

In reality, the keys in the `pipeline` object are really the list of
_tasks_ registered to `turbo` - so let's call it that.

### Non-goals

This PR does not include update:
-  The examples in the repo
- JS packages
- `eslint-plugin-turbo`

These updates will be needed in subsequent PRs.

### Testing Instructions

Hopefully CI will do its job here - but, of course, would appreciate a
review of my changes to make sure I'm not missing anything my untrained
eye may be missing.

CLOSES TURBO-3225
### Description

If a user provides a glob that points to a directory e.g. `dist` or
`dist/` then we will add a trailing double star so that the directory
contents get captured instead of just the directory entry itself.

### Testing Instructions

Added unit tests for adding doublestar
Added integration test for verifying that `src/` and `dist` for task
inputs/outputs get treated as `src/**` and `dist/**` respectively.
### Description

#8180 and #8157 ended up landing in a way where `globs.t` will fail due
to using a test fixture that uses the now removed `pipeline` field.

### Testing Instructions

CI
This PR removes `globalDotEnv`/`dotEnv` in favor of `globalDependencies`
and `inputs` which is now fairly ergonomic to use with the addition of
`$TURBO_DEFAULTS$`.

This PR does *not* update the corresponding JS types.

Updated existing integration tests
### Description

Commandeered from #8151

Changes default env mode to strict and remove the "infer" option

### Testing Instructions

Existing test suite

(Currently some Windows integration tests are failing due to a missing
env var, opening for review while I work on this)

---------

Co-authored-by: nicholaslyang <nicholas.yang@vercel.com>
### Description

Handle exclusions in `globalDeps` 

### Testing Instructions

Updated `global-deps.t` to test negative globs.
### Description

TSIA

This does not change Turbopack licensing

### Testing Instructions

👀
### Description

Codemod to add missing name (or fix duplicates)
### Description

Removes the `--ignore` flag as it's interaction with other `--filter`
flags is hard to explain.

If we want to bring it back, then it should be put it into a
configuration file.

I removed the command line flag and how it feeds into the package
filtering, but left the underlying implementation of change detector
as-is. This should make it easy to bring back this behavior via a
configuration file.

### Testing Instructions

Existing tests
### Description

With this PR we will now factor in all root dependency changes. Not just
external packages.

Internal packages are handled by hashing all of the files contained in
the package directory that aren't gitignore'd.

This does have performance implications as we can end up globwalking
these directories multiple times and hashing the files multiple times if
they end up as task inputs. This will be addressed in a future PR.

### Testing Instructions

Added integration test that displays new behavior
Co-authored-by: Turbobot <turbobot@vercel.com>
### Description

Handshake logic works, we just need to bump the daemon version since
it's independent(?) of the client version.

Future work is to keep this constant in lockstep with our client version
to help us avoid forgetting to bump this.

### Testing Instructions

Verify that running binary in a repo with a running 1.x daemon will
result in the daemon getting shut down and a new one being started:
```
2024-05-28T10:17:35.750-0700 [DEBUG] turborepo_lib::daemon::connector: found pid: 6563                                                      
2024-05-28T10:17:35.750-0700 [DEBUG] turborepo_lib::daemon::connector: got daemon with pid: 6563                                                                                                                 
2024-05-28T10:17:35.766-0700 [DEBUG] turborepo_lib::daemon::connector: no pid found, starting daemon                                        
2024-05-28T10:17:35.767-0700 [DEBUG] turborepo_lib::daemon::connector: got daemon with pid: 8593
```
### Description

In #8150 we removed the deprecated
package manager argument in favor of the option, but we didn't remove
the corresponding parameter from the actual main function. This lead to
the options object getting passed as the package manager argument and
then the options object being undefined.

### Testing Instructions

Before
<img width="939" alt="Screenshot 2024-05-28 at 8 43 23 AM"
src="https://github.com/vercel/turbo/assets/4131117/6dcaa4a7-b0e0-4142-9854-95ed597d4eb5">

After
<img width="1171" alt="Screenshot 2024-05-28 at 8 43 01 AM"
src="https://github.com/vercel/turbo/assets/4131117/7ef11479-5895-4cd4-838c-a26dcaa0529a">

---------

Co-authored-by: Mehul Kar <mehul.kar@vercel.com>
Co-authored-by: Thomas Knickman <tom.knickman@vercel.com>
Co-authored-by: Anthony Shew <anthony.shew@vercel.com>
Co-authored-by: Nicholas Yang <nicholas.yang@vercel.com>
Co-authored-by: github-actions[bot] <41898282+github-actions[bot]@users.noreply.github.com>
Co-authored-by: Turbobot <turbobot@vercel.com>
### Description

Made a nicer error message for having a `pipeline` key instead of
`tasks`.

### Testing Instructions

<!--
  Give a quick description of steps to test your changes.
-->

---------

Co-authored-by: Anthony Shew <anthony.shew@vercel.com>
### Description

TSIA

### Testing Instructions

~~Unit test update shows that default is now true~~ I forgot that these
tests don't run in a TTY so they still won't have the UI enabled.

Manual test that a fresh repo with no `experimentalUI` key in
`turbo.json` will use the UI.
### Description

Changing the `engines` field in the root `package.json` can affect the
execution of tasks so it should affect the global cache.

This PR adds the `engines` struct to the global cache key.

### Testing Instructions

Added new integration test verifying that changing `engines` results in
a cache miss.
### Description

Updates various JS packages with the new `turbo.json` schema without
breaking existing functionality.

We introduce `SchemaV1` which has the old `pipeline` key. This is the
type that the existing codemods target while future codemods will target
`Schema`. `LegacySchema` is a compatibility type for codemods that
support both.

### Testing Instructions

Existing test suite passes.

Added tests for `pipeline` -> `tasks` codemod
Copy link

vercel bot commented Jun 4, 2024

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

Name Status Preview Comments Updated (UTC)
examples-basic-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 4, 2024 5:08pm
examples-designsystem-docs ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 4, 2024 5:08pm
examples-gatsby-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 4, 2024 5:08pm
examples-kitchensink-blog ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 4, 2024 5:08pm
examples-native-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 4, 2024 5:08pm
examples-nonmonorepo ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 4, 2024 5:08pm
examples-svelte-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 4, 2024 5:08pm
examples-tailwind-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 4, 2024 5:08pm
examples-vite-web ✅ Ready (Inspect) Visit Preview 💬 Add feedback Jun 4, 2024 5:08pm
1 Ignored Deployment
Name Status Preview Comments Updated (UTC)
rust-docs ⬜️ Ignored (Inspect) Jun 4, 2024 5:08pm

Copy link
Contributor

github-actions bot commented Jun 4, 2024

🟢 Turbopack Benchmark CI successful 🟢

Thanks

Copy link
Contributor

github-actions bot commented Jun 4, 2024

✅ This change can build next-swc

@anthonyshew anthonyshew changed the title Turborepo 2 Turborepo 2.0 Jun 4, 2024
Copy link
Contributor

@anthonyshew anthonyshew left a comment

Choose a reason for hiding this comment

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

🥳

@chris-olszewski chris-olszewski enabled auto-merge (squash) June 4, 2024 17:25
Copy link
Contributor

@Zertsov Zertsov left a comment

Choose a reason for hiding this comment

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

LGTM 🥳

@chris-olszewski chris-olszewski merged commit 12acb89 into main Jun 4, 2024
58 of 60 checks passed
Copy link
Contributor

github-actions bot commented Jun 4, 2024

⚠️ CI failed ⚠️

The following steps have failed in CI:

  • Turbopack Rust tests (linux)
  • Turbopack Rust tests (mac/win, non-blocking)

See workflow summary for details

kodiakhq bot pushed a commit to weareinreach/InReach that referenced this pull request Jun 14, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Type | Update | Change | OpenSSF |
|---|---|---|---|---|
| [@turbo/gen](https://turbo.build/repo)
([source](https://github.com/vercel/turbo/tree/HEAD/packages/turbo-gen))
| devDependencies | major | [`1.13.4` ->
`2.0.3`](https://renovatebot.com/diffs/npm/@turbo%2fgen/1.13.4/2.0.3) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turbo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turbo)
|
| [eslint-plugin-turbo](https://github.com/vercel/turbo)
([source](https://github.com/vercel/turbo/tree/HEAD/packages/eslint-plugin-turbo))
| devDependencies | major | [`1.13.4` ->
`2.0.3`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.13.4/2.0.3)
| [![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turbo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turbo)
|
| [turbo](https://turbo.build/repo)
([source](https://github.com/vercel/turbo)) | devDependencies | major
| [`1.13.4` ->
`2.0.3`](https://renovatebot.com/diffs/npm/turbo/1.13.4/2.0.3) |
[![OpenSSF
Scorecard](https://api.securityscorecards.dev/projects/github.com/vercel/turbo/badge)](https://securityscorecards.dev/viewer/?uri=github.com/vercel/turbo)
|

---

### Release Notes

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

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

[Compare
Source](https://github.com/vercel/turbo/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://github.com/chris-olszewski) in
[vercel/turborepo#8363

##### Changelog

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

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

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

[Compare
Source](https://github.com/vercel/turbo/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://github.com/turbo/codemod)

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

##### Examples

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

##### Changelog

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

#### New Contributors

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

**Full Changelog**:
vercel/turborepo@v2.0.1...v2.0.2

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

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

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

**Full Changelog**:
vercel/turborepo@v2.0.0...v2.0.1

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

[Compare
Source](https://github.com/vercel/turbo/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://github.com/turbo/codemod)

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

##### Changelog

##### Breaking

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

##### Other

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

**Full Changelog**:
vercel/turborepo@v1.13.4...v2.0.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.

🔕 **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/weareinreach/InReach).

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

---------

Signed-off-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: Joe Karow <58997957+JoeKarow@users.noreply.github.com>
fwouts added a commit to fwouts/previewjs that referenced this pull request Jun 21, 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://github.com/vercel/turbo)) | [`^1.13.4` ->
`^2.0.4`](https://renovatebot.com/diffs/npm/turbo/1.13.4/2.0.4) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/2.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/2.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.13.4/2.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.13.4/2.0.4?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

[Compare
Source](https://github.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://github.com/anthonyshew) in
[vercel/turborepo#8448

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

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

##### Examples

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

##### Changelog

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

#### New Contributors

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

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

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

[Compare
Source](https://github.com/vercel/turbo/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://github.com/chris-olszewski) in
[vercel/turborepo#8363

##### Changelog

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

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

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

[Compare
Source](https://github.com/vercel/turbo/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://github.com/turbo/codemod)

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

##### Examples

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

##### Changelog

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

#### New Contributors

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

**Full Changelog**:
vercel/turborepo@v2.0.1...v2.0.2

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

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

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

**Full Changelog**:
vercel/turborepo@v2.0.0...v2.0.1

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

[Compare
Source](https://github.com/vercel/turbo/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://github.com/turbo/codemod)

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

##### Changelog

##### Breaking

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

##### Other

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

**Full Changelog**:
vercel/turborepo@v1.13.4...v2.0.0

</details>

---

### Configuration

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

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

♻ **Rebasing**: Whenever PR becomes conflicted, or you tick the
rebase/retry checkbox.

🔕 **Ignore**: Close this PR and you won't be reminded about this update
again.

---

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

---

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

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4zOTMuMCIsInVwZGF0ZWRJblZlciI6IjM3LjM5My4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiIsImxhYmVscyI6W119-->

---------

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: François Wouts <f@zenc.io>
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://github.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://github.com/vercel/turborepo/releases/tag/v2.0.14):
Turborepo v2.0.14

[Compare
Source](https://github.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://github.com/chris-olszewski) in
[https://github.com/vercel/turborepo/pull/8996](https://github.com/vercel/turborepo/pull/8996)
- makes [@&#8203;defaultValue](https://github.com/defaultValue) usages
consistent (and correct) by
[@&#8203;dimitropoulos](https://github.com/dimitropoulos) in
[https://github.com/vercel/turborepo/pull/9012](https://github.com/vercel/turborepo/pull/9012)
- fix(create-turbo): correct path usage by
[@&#8203;tknickman](https://github.com/tknickman) in
[https://github.com/vercel/turborepo/pull/9014](https://github.com/vercel/turborepo/pull/9014)

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

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

[Compare
Source](https://github.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://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8957](https://github.com/vercel/turbo/pull/8957)
- Migrate to Storybook 8.2.6 by
[@&#8203;joeblas](https://github.com/joeblas) in
[https://github.com/vercel/turbo/pull/8835](https://github.com/vercel/turbo/pull/8835)
- chore(repo): update readme and links by
[@&#8203;tknickman](https://github.com/tknickman) in
[https://github.com/vercel/turbo/pull/8965](https://github.com/vercel/turbo/pull/8965)
- docs: add release flag to cargo build by
[@&#8203;chris-olszewski](https://github.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8992](https://github.com/vercel/turbo/pull/8992)

##### Changelog

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

#### New Contributors

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

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

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

[Compare
Source](https://github.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://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8939](https://github.com/vercel/turbo/pull/8939)
- docs: Correct json comma syntax in sample code by
[@&#8203;huyb1991](https://github.com/huyb1991) in
[https://github.com/vercel/turbo/pull/8949](https://github.com/vercel/turbo/pull/8949)

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

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

##### Changelog

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

#### New Contributors

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

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

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

[Compare
Source](https://github.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://github.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8892](https://github.com/vercel/turbo/pull/8892)

#### New Contributors

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

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

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

[Compare
Source](https://github.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://github.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8813](https://github.com/vercel/turbo/pull/8813)
- feat(examples): add example-with-typeorm by
[@&#8203;cgoinglove](https://github.com/cgoinglove) in
[https://github.com/vercel/turbo/pull/8143](https://github.com/vercel/turbo/pull/8143)

##### Changelog

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

#### New Contributors

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

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

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

[Compare
Source](https://github.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://github.com/tknickman) in
[https://github.com/vercel/turbo/pull/8796](https://github.com/vercel/turbo/pull/8796)

##### Changelog

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

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

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

[Compare
Source](https://github.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://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8784](https://github.com/vercel/turbo/pull/8784)

##### Changelog

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

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

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

[Compare
Source](https://github.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://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8666](https://github.com/vercel/turbo/pull/8666)
- fix(examples): correct next.config extension in tsconfig by
[@&#8203;moolcoov](https://github.com/moolcoov) in
[https://github.com/vercel/turbo/pull/8638](https://github.com/vercel/turbo/pull/8638)
- feat(examples): add `with-nestjs` example by
[@&#8203;Neosoulink](https://github.com/Neosoulink) in
[https://github.com/vercel/turbo/pull/8162](https://github.com/vercel/turbo/pull/8162)

##### Changelog

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

#### New Contributors

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

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

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

[Compare
Source](https://github.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://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8590](https://github.com/vercel/turbo/pull/8590)
- c2aa1 by [@&#8203;anthonyshew](https://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8592](https://github.com/vercel/turbo/pull/8592)
- More kitchen-sink. by
[@&#8203;anthonyshew](https://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8593](https://github.com/vercel/turbo/pull/8593)
- Fixing kitchen-sink example. by
[@&#8203;anthonyshew](https://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8600](https://github.com/vercel/turbo/pull/8600)
- fix(turborepo): update package.json typo by
[@&#8203;JannatinNaimXIII](https://github.com/JannatinNaimXIII) in
[https://github.com/vercel/turbo/pull/8621](https://github.com/vercel/turbo/pull/8621)

##### Changelog

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

#### New Contributors

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

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

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

[Compare
Source](https://github.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://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8516](https://github.com/vercel/turbo/pull/8516)

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

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

##### Examples

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

##### Changelog

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

#### New Contributors

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

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

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

[Compare
Source](https://github.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://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8448](https://github.com/vercel/turbo/pull/8448)

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

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

##### Examples

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

##### Changelog

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

#### New Contributors

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

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

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

[Compare
Source](https://github.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://github.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/8363](https://github.com/vercel/turbo/pull/8363)

##### Changelog

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

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

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

[Compare
Source](https://github.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://github.com/turbo/codemod)

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

##### Examples

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

##### Changelog

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

#### New Contributors

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

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

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

[Compare
Source](https://github.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://github.com/vercel/turborepo/releases/tag/v2.0.0):
Turborepo v2.0.0

[Compare
Source](https://github.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://github.com/turbo/codemod)

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

##### Changelog

##### Breaking

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

##### Other

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

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

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

[Compare
Source](https://github.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://github.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/8069](https://github.com/vercel/turbo/pull/8069)
- chore(docs): add missing words by
[@&#8203;jeremyadavis](https://github.com/jeremyadavis) in
[https://github.com/vercel/turbo/pull/8067](https://github.com/vercel/turbo/pull/8067)
- Fix typo in Turborepo task-graph documentation by
[@&#8203;danisal](https://github.com/danisal) in
[https://github.com/vercel/turbo/pull/8212](https://github.com/vercel/turbo/pull/8212)

##### turbo-ignore

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

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

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

##### Examples

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

##### Changelog

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

#### New Contributors

- [@&#8203;caaatisgood](https://github.com/caaatisgood) made their
first contribution in
[https://github.com/vercel/turbo/pull/8046](https://github.com/vercel/turbo/pull/8046)
- [@&#8203;jeremyadavis](https://github.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>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

Successfully merging this pull request may close these issues.

6 participants