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

fix(lockfiles) trailing zero yaml parse #6296

Merged
merged 3 commits into from Oct 30, 2023

Conversation

chris-olszewski
Copy link
Contributor

@chris-olszewski chris-olszewski commented Oct 26, 2023

Description

Fixes #6232

This PR allows us to properly deserialize semver versions from YAML in yarn.lock. Previously we would fail at parsing ranges with trailing zeros e.g. (0.10f32).to_string() == "0.1".

The approach taken in this PR is due to some outstanding quirks in serde_yaml:

As a minor thing, I removed all unused Serialize/Deserialize implementations to make it clear which codepaths actually get used.

Testing Instructions

Existing unit tests pass.

I changed out the old unit tests for SemverString to be captured by the new berry_semver.lock test fixture which covers the same cases. We do this because even if parsing versions works when invoked directly, adding #[serde(flatten)]/#[serde(untagged)] to any containing structure changes the behavior.

Closes TURBO-1540

@vercel
Copy link

vercel bot commented Oct 26, 2023

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

11 Ignored Deployments
Name Status Preview Updated (UTC)
examples-basic-web ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
examples-cra-web ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
examples-designsystem-docs ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
examples-gatsby-web ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
examples-kitchensink-blog ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
examples-native-web ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
examples-nonmonorepo ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
examples-svelte-web ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
examples-tailwind-web ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
examples-vite-web ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm
turbo-site ⬜️ Ignored (Inspect) Oct 26, 2023 9:38pm

@chris-olszewski chris-olszewski marked this pull request as ready for review October 26, 2023 21:39
@chris-olszewski chris-olszewski requested a review from a team as a code owner October 26, 2023 21:39
@@ -14,7 +14,7 @@ regex = "1"
semver = "1.0.17"
serde = { version = "1.0.126", features = ["derive", "rc"] }
serde_json = "1.0.86"
serde_yaml = "0.9"
serde_yaml = "0.9.27"
Copy link
Contributor Author

Choose a reason for hiding this comment

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

Pinning this to an exact serde_yaml version since we are now aware that we depend on x: String handles input like x: 2 which can get affected by serde container attributes. I'm not sure which behavior is intended/buggy so we might be depending on broken behavior. (Unit tests would catch if an upgrade broke us, but just in case let's pin it)

@@ -55,45 +55,42 @@ pub struct BerryLockfile {

// This is the direct representation of the lockfile as it appears on disk.
// More internal tracking is required for effectively altering the lockfile
#[derive(Debug, Clone, Deserialize, Serialize)]
#[derive(Debug, Clone, Deserialize)]
#[serde(try_from = "Map<String, Entry>")]
Copy link
Contributor Author

Choose a reason for hiding this comment

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

struct Metadata {
version: u64,
version: String,
Copy link
Contributor Author

Choose a reason for hiding this comment

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

This will always be an integer, but now that we're avoiding the use of #[serde(flatten)] we can parse it as a String and it gets to share the same type as version in BerryPackage which makes our union type easier to work with.

@github-actions
Copy link
Contributor

Linux Benchmark for 61d298c

Test Base PR % Significant %
bench_startup/Turbopack CSR/1000 modules 1077.61ms ± 4.57ms 1058.84ms ± 4.45ms -1.74% -0.07%
Click to view full benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 74.04ms ± 5.16ms 74.11ms ± 5.59ms +0.10%
bench_hmr_to_eval/Turbopack CSR/1000 modules 72.67ms ± 5.63ms 73.12ms ± 4.74ms +0.61%
bench_startup/Turbopack CSR/1000 modules 1077.61ms ± 4.57ms 1058.84ms ± 4.45ms -1.74% -0.07%

@github-actions
Copy link
Contributor

🟢 Turbopack Benchmark CI successful 🟢

Thanks

@github-actions
Copy link
Contributor

github-actions bot commented Oct 26, 2023

🟢 CI successful 🟢

Thanks

Copy link
Contributor

@arlyon arlyon left a comment

Choose a reason for hiding this comment

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

Unfortunate workaround but much better than rolling / forking our own parser. Glad we found something that works.

@chris-olszewski chris-olszewski merged commit 8af1b94 into main Oct 30, 2023
61 of 62 checks passed
@chris-olszewski chris-olszewski deleted the olszewski/fix_trailing_zero_yaml_parse branch October 30, 2023 18:18
renovate bot added a commit to inabagumi/shinju-date that referenced this pull request Dec 5, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [eslint-config-turbo](https://togithub.com/vercel/turbo)
([source](https://togithub.com/vercel/turbo/tree/HEAD/packages/eslint-config-turbo))
| [`^1.10.16` ->
`^1.11.0`](https://renovatebot.com/diffs/npm/eslint-config-turbo/1.10.16/1.11.0)
|
[![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-config-turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-config-turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-config-turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-config-turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.10.16` ->
`^1.11.0`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

</details>

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

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

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

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

#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

- feat(turborepo): Spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6109
- fix: bias towards graph walk cancel over continue by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6210
- feat: hook up task execution tracking by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6222
- docs: Add the enabled config to turbo.json schema by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6224
- chore: fix example test setup so output matches by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6225
- fix: Respect color config for runcache output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6217
- refactor(auth): Removed closure in login functions by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6235
- chore(test): validate that pruning carries remoteCache fields
correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6226
- chore: Removed run stub feature by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6236
- fix(Turborepo): Drop incorrect deprecation notice by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6239
- chore(test): Add test to ensure env var changes task hash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6238
- chore: run summary prefactor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6240
- refactor: Removed closure from logout by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6251
- chore: Added panic handler to turborepo by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6253
- refactor: Moving from anyhow to thiserror part 1 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6250
- Clearer cache spinner message. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6278
- fix: use cprintln instead of warn when no tasks are run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6285
- fix: don't escape html when serializing dry runs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6284
- fix(Turborepo): Ensure process manager stays closed by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6258
- fix(Turborepo): escape colons in log filenames by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6267
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6300
- feat: Hook up Run summary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6282
- port(Turborepo): Port escaping globs sent via rust daemon client by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6295
- feat(Turborepo): Validation checks for task names by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6293
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6303
- fix(lockfiles) trailing zero yaml parse by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6296
- Chore/update teamname by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#6317
- build(cargo): skip external build script with rust-analyzer by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#6325
- fix: global hash divergence for empty version strings by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6319
- fix: explicitly set turbo command name by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6332
- fix: task definition serialization by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6306
- fix: Empty command returns help text and not error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6340
- feat: add support for --parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6339
- fix(Turborepo): Drop root from calculation of in-scope workspaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6328
- feat(turbopack-ecmascript): calculate import.meta.url as an absolute
path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#6318
- feat(Turborepo): Add more detail to a cookie error variant by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6349
- fix(Turborepo): Bump x/net, go mod tidy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6355
- fix(turbo-utils): correct typo on package.json on types field by
[@&#8203;stefanofa](https://togithub.com/stefanofa) in
[vercel/turbo#6360
- Triple chunk size heuristic by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6305
- improve resolving performance by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6304
- Devlow: refactor browser.ts by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6286
- make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6367
- Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[vercel/turbo#6354
- port(turborepo): Fixing API Client config tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6356
- fix: use which for package manager binary discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6370
- chore(tests): delete a mostly copy-pasted fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6366
- refactor: Moving to thiserror part 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6273
- refactor(turborepo): Changed cache misses to be a non-error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6369
- fix: use correct command for package managers by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6372
- chore(test): combine two fixtures for single package testing by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6374
- build: Update `swc_core` to `v0.86.40` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[vercel/turbo#6343
- feat: forward signals to process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6357
- fix: Move package manager tests to turbo info by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6373
- port(turborepo): Analytics Client by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6315
- fix(updater): specify latest for codemod by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6381
- refactor(Turborepo): Move package graph to repository crate by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6375
- fix: Dry Run Text Output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6380
- feat(turbopack): support url rewrite behavior options by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#6376
- chore: fix clippy lints in tests by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6384
- feat(turbopack-ecmascript): support relative url asset ref by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#6386
- chore(tests): replace fixture with a fixture config by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6391
- refactor and fix CssEmbed for url() by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6382
- chore: update `update-informer` to 1.1 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[vercel/turbo#5400
- fix: kill process group instead of children by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6387
- Update turbopack related labels by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#6399
- chore: prefactor for sending task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6383
- improve count hash set edge case handling, fix negative bottom
connection counting by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6393
- fix: add newline to graph output by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6397
- fix(Turborepo): Sort env vars, include framework inference in task
summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6402
- chore(tests): make test output assertions simpler by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6400
- fix(Turborepo): Add suppressing logs line for new-only output mode by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6406
- port: Fixing and refactoring integration tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6398
- chore: Fix compilation warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6418
- Port(Turborepo): Synthesize command for spaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6417
- fix: Dry run output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6416
- fix: unbreak main by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6423
- port(Turborepo): Pass through args by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6422
- fix(Turborepo): Fix error stutter, update tests to match on relevent
error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6421
- port: Fixing run summary json output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6431
- feat: send task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6419
- chore: output absolute path warnings to stderr by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6434
- port(Turborepo): Add summary error to match Go by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6438
- port(Turborepo): Fix task dependencies integration tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6440
- fix: match dependency ordering between rust/go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6443
- fix: `--no-cache` flag was not working by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6444
- Ensure daemon connection errors are non-fatal by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6445
- fix: Cleaning up duration printing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6447
- fix: displaying stdout/stderr with errors-only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6446
- port(Turborepo): Migrate inference tests to grep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6437
- fix: rust spaces auth requirements by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6453
- chore: add test for turbo bin by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6451
- adjust tracing for run finalization by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6410
- chore(test): Remove single/double quotes in npm scripts in fixtures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6459
- chore: simplify inference test grep commands by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6455
- feat(Turborepo): Send logging to stderr by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6462
- chore(test): Remove more single/double quotes in npm script fixtures
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6464
- fix(Turborepo): Update missing-tasks.t to pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6467
- fix(Turborepo): Make verbosity test pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6465
- chore(ci): launch prysk tests with JS instead of bash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6463
- chore(test): remove another single quoted echo arg by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6468
- fix: Check cache on dry run by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6466
- fix(Turborepo): Fix dry-json/monorepo.t by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6470
- fix: dry run missing tasks with no script by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6473
- port(Turborepo): Add github prefixing in Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6471
- fix: forward powershell style env casing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6485
- fix: fixup unit tests that use the basic example by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6517
- fix: Deadlock with closing process manager by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6516
- chore(tests): delete e2e tests for turbo prune by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6515
- chore: clean up run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6519
- feat: make rust codepath opt-out by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6420
- fix: run summary tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6532
- fix: make spaces requests in parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6536
- refactor: switch daemon version to be independent of turbo version by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6528
- fix: analytics closing when all senders drop by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6542
- feat: add a go fallback flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6540
- chore(ci): delete e2e tests covering monorepo root in subdir by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6565
- fix: treat missing and empty scripts the same by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6552
- test(gen): add generator command tests by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6569
- chore(tests): fix daemon verbosity test on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6582
- chore(tests): fix absolute path warnings test on windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6564
- chore: hyphenate filenames isntead of underscore by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6595
- fix: ensure cache is done writing before exit by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6603
- feat(releases): update turborepo-release.yml by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6611
- chore(tests): remove hardcoded packageManager when running examples
tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6615
- fix: Hard error on spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6596
- fix(Turborepo): Handle windows absolute paths in global dependencies
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6608
- fix(tests): account for .cmd extension on npm binary in Rust codepath
tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6604
- fix(release): correct excludes label by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6623
- fix: second granularity by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6606
- feat: add read only remote cache by
[@&#8203;maschwenk](https://togithub.com/maschwenk) in
[vercel/turbo#6624
- fix: look for unix based project paths by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6609
- fix(tests): account for cmd extensions in more tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6628
- Drop nonsensical(?) tests? by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6632
- fix(turborepo): make linked installs test pass on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6477
- chore: update lockfile after workspace deletion by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6637
- fix(Turborepo): Remove unused globwalk code, fix multiple doublestars
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6633
- feat: add package discovery trait and a few discovery strategies by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6275
- chore: use parent() method instead of .. directory traversal by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6635
- yarn-with-yarn workspace name by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6647
- refactor: adjust test timeouts to avoid flaky test on windows by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6638
- chore: reduce sleep length in test cases by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6640
- chore: fix rust compile warnings by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6655
- chore: add a helper script to replace turbo config in main fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6652
- fix: Fixed cache restoration for an entry with a very long name by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6662
- fix: clean paths and use package path instead of package.json path by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6649
- Revert "chore: reduce sleep length in test cases
([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6665
- chore(tests): write a test showing the behavior of gitignored inputs
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6669
- chore(tests): add test to check that root tasks can depend on
workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6671
- chore: consolidate setup scripts for integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6641
- fix(tests): fix unit tests that rely on examples by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6679
- chore(tests): remove duplicate setup_git script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6680
- chore(tests): setup package manager consistently for
example/integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6681
- chore(tests): make fixture copying consistent by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6683
- chore(tests): Enable corepack in local directory for integration tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6684
- chore(tests): delete feature where
[@&#8203;canary](https://togithub.com/canary) turbo is used by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6685
- fix(tests): update rust unit tests that rely on with-yarn fixture by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6693
- chore(daemon) disable daemon workspace discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6695
- chore: use path library read_to_string for better error message by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6694
- chore: make go-fallback confilct with remote cache read only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6702

#### New Contributors

- [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first
contribution in
[vercel/turbo#6335
- [@&#8203;fa-901](https://togithub.com/fa-901) made their first
contribution in
[vercel/turbo#5444
- [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first
contribution in
[vercel/turbo#2761
- [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their
first contribution in
[vercel/turbo#6426
- [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first
contribution in
[vercel/turbo#6427
- [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first
contribution in
[vercel/turbo#6425
- [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first
contribution in
[vercel/turbo#6506
- [@&#8203;dallonf](https://togithub.com/dallonf) made their first
contribution in
[vercel/turbo#6522
- [@&#8203;m1heng](https://togithub.com/m1heng) made their first
contribution in
[vercel/turbo#6579
- [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their
first contribution in
[vercel/turbo#6321
- [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their
first contribution in
[vercel/turbo#6657

**Full Changelog**:
vercel/turbo@v1.10.16...v1.11.0

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
renovate bot added a commit to Asjas/platform that referenced this pull request Dec 6, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.10.16` ->
`1.11.0`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.0) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

- feat(turborepo): Spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6109
- fix: bias towards graph walk cancel over continue by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6210
- feat: hook up task execution tracking by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6222
- docs: Add the enabled config to turbo.json schema by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6224
- chore: fix example test setup so output matches by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6225
- fix: Respect color config for runcache output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6217
- refactor(auth): Removed closure in login functions by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6235
- chore(test): validate that pruning carries remoteCache fields
correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6226
- chore: Removed run stub feature by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6236
- fix(Turborepo): Drop incorrect deprecation notice by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6239
- chore(test): Add test to ensure env var changes task hash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6238
- chore: run summary prefactor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6240
- refactor: Removed closure from logout by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6251
- chore: Added panic handler to turborepo by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6253
- refactor: Moving from anyhow to thiserror part 1 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6250
- Clearer cache spinner message. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6278
- fix: use cprintln instead of warn when no tasks are run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6285
- fix: don't escape html when serializing dry runs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6284
- fix(Turborepo): Ensure process manager stays closed by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6258
- fix(Turborepo): escape colons in log filenames by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6267
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6300
- feat: Hook up Run summary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6282
- port(Turborepo): Port escaping globs sent via rust daemon client by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6295
- feat(Turborepo): Validation checks for task names by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6293
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6303
- fix(lockfiles) trailing zero yaml parse by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6296
- Chore/update teamname by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#6317
- build(cargo): skip external build script with rust-analyzer by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#6325
- fix: global hash divergence for empty version strings by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6319
- fix: explicitly set turbo command name by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6332
- fix: task definition serialization by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6306
- fix: Empty command returns help text and not error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6340
- feat: add support for --parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6339
- fix(Turborepo): Drop root from calculation of in-scope workspaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6328
- feat(turbopack-ecmascript): calculate import.meta.url as an absolute
path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#6318
- feat(Turborepo): Add more detail to a cookie error variant by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6349
- fix(Turborepo): Bump x/net, go mod tidy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6355
- fix(turbo-utils): correct typo on package.json on types field by
[@&#8203;stefanofa](https://togithub.com/stefanofa) in
[vercel/turbo#6360
- Triple chunk size heuristic by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6305
- improve resolving performance by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6304
- Devlow: refactor browser.ts by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[vercel/turbo#6286
- make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6367
- Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[vercel/turbo#6354
- port(turborepo): Fixing API Client config tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6356
- fix: use which for package manager binary discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6370
- chore(tests): delete a mostly copy-pasted fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6366
- refactor: Moving to thiserror part 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6273
- refactor(turborepo): Changed cache misses to be a non-error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6369
- fix: use correct command for package managers by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6372
- chore(test): combine two fixtures for single package testing by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6374
- build: Update `swc_core` to `v0.86.40` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[vercel/turbo#6343
- feat: forward signals to process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6357
- fix: Move package manager tests to turbo info by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6373
- port(turborepo): Analytics Client by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6315
- fix(updater): specify latest for codemod by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6381
- refactor(Turborepo): Move package graph to repository crate by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6375
- fix: Dry Run Text Output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6380
- feat(turbopack): support url rewrite behavior options by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#6376
- chore: fix clippy lints in tests by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6384
- feat(turbopack-ecmascript): support relative url asset ref by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[vercel/turbo#6386
- chore(tests): replace fixture with a fixture config by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6391
- refactor and fix CssEmbed for url() by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6382
- chore: update `update-informer` to 1.1 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[vercel/turbo#5400
- fix: kill process group instead of children by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6387
- Update turbopack related labels by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[vercel/turbo#6399
- chore: prefactor for sending task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6383
- improve count hash set edge case handling, fix negative bottom
connection counting by [@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#6393
- fix: add newline to graph output by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6397
- fix(Turborepo): Sort env vars, include framework inference in task
summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6402
- chore(tests): make test output assertions simpler by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6400
- fix(Turborepo): Add suppressing logs line for new-only output mode by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6406
- port: Fixing and refactoring integration tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6398
- chore: Fix compilation warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6418
- Port(Turborepo): Synthesize command for spaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6417
- fix: Dry run output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6416
- fix: unbreak main by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6423
- port(Turborepo): Pass through args by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6422
- fix(Turborepo): Fix error stutter, update tests to match on relevent
error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6421
- port: Fixing run summary json output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6431
- feat: send task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6419
- chore: output absolute path warnings to stderr by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6434
- port(Turborepo): Add summary error to match Go by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6438
- port(Turborepo): Fix task dependencies integration tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6440
- fix: match dependency ordering between rust/go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6443
- fix: `--no-cache` flag was not working by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6444
- Ensure daemon connection errors are non-fatal by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6445
- fix: Cleaning up duration printing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6447
- fix: displaying stdout/stderr with errors-only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6446
- port(Turborepo): Migrate inference tests to grep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6437
- fix: rust spaces auth requirements by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6453
- chore: add test for turbo bin by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6451
- adjust tracing for run finalization by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6410
- chore(test): Remove single/double quotes in npm scripts in fixtures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6459
- chore: simplify inference test grep commands by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6455
- feat(Turborepo): Send logging to stderr by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6462
- chore(test): Remove more single/double quotes in npm script fixtures
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6464
- fix(Turborepo): Update missing-tasks.t to pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6467
- fix(Turborepo): Make verbosity test pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6465
- chore(ci): launch prysk tests with JS instead of bash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6463
- chore(test): remove another single quoted echo arg by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6468
- fix: Check cache on dry run by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6466
- fix(Turborepo): Fix dry-json/monorepo.t by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6470
- fix: dry run missing tasks with no script by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6473
- port(Turborepo): Add github prefixing in Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6471
- fix: forward powershell style env casing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6485
- fix: fixup unit tests that use the basic example by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6517
- fix: Deadlock with closing process manager by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6516
- chore(tests): delete e2e tests for turbo prune by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6515
- chore: clean up run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6519
- feat: make rust codepath opt-out by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6420
- fix: run summary tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6532
- fix: make spaces requests in parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6536
- refactor: switch daemon version to be independent of turbo version by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6528
- fix: analytics closing when all senders drop by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6542
- feat: add a go fallback flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6540
- chore(ci): delete e2e tests covering monorepo root in subdir by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6565
- fix: treat missing and empty scripts the same by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6552
- test(gen): add generator command tests by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6569
- chore(tests): fix daemon verbosity test on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6582
- chore(tests): fix absolute path warnings test on windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6564
- chore: hyphenate filenames isntead of underscore by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6595
- fix: ensure cache is done writing before exit by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6603
- feat(releases): update turborepo-release.yml by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6611
- chore(tests): remove hardcoded packageManager when running examples
tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6615
- fix: Hard error on spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6596
- fix(Turborepo): Handle windows absolute paths in global dependencies
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6608
- fix(tests): account for .cmd extension on npm binary in Rust codepath
tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6604
- fix(release): correct excludes label by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#6623
- fix: second granularity by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6606
- feat: add read only remote cache by
[@&#8203;maschwenk](https://togithub.com/maschwenk) in
[vercel/turbo#6624
- fix: look for unix based project paths by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6609
- fix(tests): account for cmd extensions in more tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6628
- Drop nonsensical(?) tests? by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6632
- fix(turborepo): make linked installs test pass on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6477
- chore: update lockfile after workspace deletion by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6637
- fix(Turborepo): Remove unused globwalk code, fix multiple doublestars
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#6633
- feat: add package discovery trait and a few discovery strategies by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6275
- chore: use parent() method instead of .. directory traversal by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6635
- yarn-with-yarn workspace name by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#6647
- refactor: adjust test timeouts to avoid flaky test on windows by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#6638
- chore: reduce sleep length in test cases by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6640
- chore: fix rust compile warnings by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6655
- chore: add a helper script to replace turbo config in main fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6652
- fix: Fixed cache restoration for an entry with a very long name by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#6662
- fix: clean paths and use package path instead of package.json path by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6649
- Revert "chore: reduce sleep length in test cases
([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6665
- chore(tests): write a test showing the behavior of gitignored inputs
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6669
- chore(tests): add test to check that root tasks can depend on
workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6671
- chore: consolidate setup scripts for integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6641
- fix(tests): fix unit tests that rely on examples by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6679
- chore(tests): remove duplicate setup_git script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6680
- chore(tests): setup package manager consistently for
example/integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6681
- chore(tests): make fixture copying consistent by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6683
- chore(tests): Enable corepack in local directory for integration tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6684
- chore(tests): delete feature where
[@&#8203;canary](https://togithub.com/canary) turbo is used by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#6685
- fix(tests): update rust unit tests that rely on with-yarn fixture by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6693
- chore(daemon) disable daemon workspace discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6695
- chore: use path library read_to_string for better error message by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6694
- chore: make go-fallback confilct with remote cache read only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#6702

#### New Contributors

- [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first
contribution in
[vercel/turbo#6335
- [@&#8203;fa-901](https://togithub.com/fa-901) made their first
contribution in
[vercel/turbo#5444
- [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first
contribution in
[vercel/turbo#2761
- [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their
first contribution in
[vercel/turbo#6426
- [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first
contribution in
[vercel/turbo#6427
- [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first
contribution in
[vercel/turbo#6425
- [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first
contribution in
[vercel/turbo#6506
- [@&#8203;dallonf](https://togithub.com/dallonf) made their first
contribution in
[vercel/turbo#6522
- [@&#8203;m1heng](https://togithub.com/m1heng) made their first
contribution in
[vercel/turbo#6579
- [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their
first contribution in
[vercel/turbo#6321
- [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their
first contribution in
[vercel/turbo#6657

**Full Changelog**:
vercel/turbo@v1.10.16...v1.11.0

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [@crowdin/crowdin-api-client](https://togithub.com/crowdin/crowdin-api-client-js) | [`1.28.1` -> `1.28.2`](https://renovatebot.com/diffs/npm/@crowdin%2fcrowdin-api-client/1.28.1/1.28.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@crowdin%2fcrowdin-api-client/1.28.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@crowdin%2fcrowdin-api-client/1.28.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@crowdin%2fcrowdin-api-client/1.28.1/1.28.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@crowdin%2fcrowdin-api-client/1.28.1/1.28.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@prisma/client](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/client)) | [`5.6.0` -> `5.7.0`](https://renovatebot.com/diffs/npm/@prisma%2fclient/5.6.0/5.7.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@prisma%2fclient/5.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@prisma%2fclient/5.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@prisma%2fclient/5.6.0/5.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@prisma%2fclient/5.6.0/5.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/luxon](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/luxon) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/luxon)) | [`3.3.6` -> `3.3.7`](https://renovatebot.com/diffs/npm/@types%2fluxon/3.3.6/3.3.7) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2fluxon/3.3.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2fluxon/3.3.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2fluxon/3.3.6/3.3.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2fluxon/3.3.6/3.3.7?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/HEAD/types/react)) | [`18.2.41` -> `18.2.42`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.41/18.2.42) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@types%2freact/18.2.42?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@types%2freact/18.2.42?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@types%2freact/18.2.41/18.2.42?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@types%2freact/18.2.41/18.2.42?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/eslint-plugin)) | [`6.13.1` -> `6.13.2`](https://renovatebot.com/diffs/npm/@typescript-eslint%2feslint-plugin/6.13.1/6.13.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2feslint-plugin/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2feslint-plugin/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2feslint-plugin/6.13.1/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2feslint-plugin/6.13.1/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/parser](https://togithub.com/typescript-eslint/typescript-eslint) ([source](https://togithub.com/typescript-eslint/typescript-eslint/tree/HEAD/packages/parser)) | [`6.13.1` -> `6.13.2`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fparser/6.13.1/6.13.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/@typescript-eslint%2fparser/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/@typescript-eslint%2fparser/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/@typescript-eslint%2fparser/6.13.1/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/@typescript-eslint%2fparser/6.13.1/6.13.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) ([source](https://togithub.com/vercel/turbo/tree/HEAD/packages/eslint-plugin-turbo)) | [`1.10.16` -> `1.11.0`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.16/1.11.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/eslint-plugin-turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/eslint-plugin-turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/eslint-plugin-turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/eslint-plugin-turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [prisma](https://www.prisma.io) ([source](https://togithub.com/prisma/prisma/tree/HEAD/packages/cli)) | [`5.6.0` -> `5.7.0`](https://renovatebot.com/diffs/npm/prisma/5.6.0/5.7.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/prisma/5.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/prisma/5.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/prisma/5.6.0/5.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/prisma/5.6.0/5.7.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.16` -> `1.11.0`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>crowdin/crowdin-api-client-js (@&#8203;crowdin/crowdin-api-client)</summary>

### [`v1.28.2`](https://togithub.com/crowdin/crowdin-api-client-js/releases/tag/1.28.2)

[Compare Source](https://togithub.com/crowdin/crowdin-api-client-js/compare/1.28.1...1.28.2)

#### What's Changed

-   fix: update error message for task creation errors by [@&#8203;kevinb-tryjeeves](https://togithub.com/kevinb-tryjeeves) in [https://github.com/crowdin/crowdin-api-client-js/pull/348](https://togithub.com/crowdin/crowdin-api-client-js/pull/348)

**Full Changelog**: https://github.com/crowdin/crowdin-api-client-js/compare/1.28.1...1.28.2

</details>

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

### [`v5.7.0`](https://togithub.com/prisma/prisma/compare/5.6.0...5.7.0)

[Compare Source](https://togithub.com/prisma/prisma/compare/5.6.0...5.7.0)

</details>

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

### [`v6.13.2`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/eslint-plugin/CHANGELOG.md#6132-2023-12-04)

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

**Note:** Version bump only for package [@&#8203;typescript-eslint/eslint-plugin](https://togithub.com/typescript-eslint/eslint-plugin)

You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.

</details>

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

### [`v6.13.2`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/parser/CHANGELOG.md#6132-2023-12-04)

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

**Note:** Version bump only for package [@&#8203;typescript-eslint/parser](https://togithub.com/typescript-eslint/parser)

You can read about our [versioning strategy](https://main--typescript-eslint.netlify.app/users/versioning) and [releases](https://main--typescript-eslint.netlify.app/users/releases) on our website.

</details>

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

-   feat(turborepo): Spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
-   fix: bias towards graph walk cancel over continue by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
-   feat: hook up task execution tracking by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
-   docs: Add the enabled config to turbo.json schema by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
-   chore: fix example test setup so output matches by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
-   fix: Respect color config for runcache output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
-   refactor(auth): Removed closure in login functions by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
-   chore(test): validate that pruning carries remoteCache fields correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
-   chore: Removed run stub feature by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
-   fix(Turborepo): Drop incorrect deprecation notice by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
-   chore(test): Add test to ensure env var changes task hash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
-   chore: run summary prefactor by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
-   refactor: Removed closure from logout by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
-   chore: Added panic handler to turborepo by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
-   refactor: Moving from anyhow to thiserror part 1 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
-   Clearer cache spinner message. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
-   fix: use cprintln instead of warn when no tasks are run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
-   fix: don't escape html when serializing dry runs by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
-   fix(Turborepo): Ensure process manager stays closed by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
-   fix(Turborepo): escape colons in log filenames by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6300](https://togithub.com/vercel/turbo/pull/6300)
-   feat: Hook up Run summary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6282](https://togithub.com/vercel/turbo/pull/6282)
-   port(Turborepo): Port escaping globs sent via rust daemon client by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6295](https://togithub.com/vercel/turbo/pull/6295)
-   feat(Turborepo): Validation checks for task names by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6293](https://togithub.com/vercel/turbo/pull/6293)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6303](https://togithub.com/vercel/turbo/pull/6303)
-   fix(lockfiles) trailing zero yaml parse by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6296](https://togithub.com/vercel/turbo/pull/6296)
-   Chore/update teamname by [@&#8203;padmaia](https://togithub.com/padmaia) in [https://github.com/vercel/turbo/pull/6317](https://togithub.com/vercel/turbo/pull/6317)
-   build(cargo): skip external build script with rust-analyzer by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6325](https://togithub.com/vercel/turbo/pull/6325)
-   fix: global hash divergence for empty version strings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6319](https://togithub.com/vercel/turbo/pull/6319)
-   fix: explicitly set turbo command name by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6332](https://togithub.com/vercel/turbo/pull/6332)
-   fix: task definition serialization by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6306](https://togithub.com/vercel/turbo/pull/6306)
-   fix: Empty command returns help text and not error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6340](https://togithub.com/vercel/turbo/pull/6340)
-   feat: add support for --parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6339](https://togithub.com/vercel/turbo/pull/6339)
-   fix(Turborepo): Drop root from calculation of in-scope workspaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6328](https://togithub.com/vercel/turbo/pull/6328)
-   feat(turbopack-ecmascript): calculate import.meta.url as an absolute path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6318](https://togithub.com/vercel/turbo/pull/6318)
-   feat(Turborepo): Add more detail to a cookie error variant by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6349](https://togithub.com/vercel/turbo/pull/6349)
-   fix(Turborepo): Bump x/net, go mod tidy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6355](https://togithub.com/vercel/turbo/pull/6355)
-   fix(turbo-utils): correct typo on package.json on types field by [@&#8203;stefanofa](https://togithub.com/stefanofa) in [https://github.com/vercel/turbo/pull/6360](https://togithub.com/vercel/turbo/pull/6360)
-   Triple chunk size heuristic by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6305](https://togithub.com/vercel/turbo/pull/6305)
-   improve resolving performance by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6304](https://togithub.com/vercel/turbo/pull/6304)
-   Devlow: refactor browser.ts by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [https://github.com/vercel/turbo/pull/6286](https://togithub.com/vercel/turbo/pull/6286)
-   make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6367](https://togithub.com/vercel/turbo/pull/6367)
-   Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by [@&#8203;jridgewell](https://togithub.com/jridgewell) in [https://github.com/vercel/turbo/pull/6354](https://togithub.com/vercel/turbo/pull/6354)
-   port(turborepo): Fixing API Client config tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6356](https://togithub.com/vercel/turbo/pull/6356)
-   fix: use which for package manager binary discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6370](https://togithub.com/vercel/turbo/pull/6370)
-   chore(tests): delete a mostly copy-pasted fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6366](https://togithub.com/vercel/turbo/pull/6366)
-   refactor: Moving to thiserror part 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6273](https://togithub.com/vercel/turbo/pull/6273)
-   refactor(turborepo): Changed cache misses to be a non-error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6369](https://togithub.com/vercel/turbo/pull/6369)
-   fix: use correct command for package managers by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6372](https://togithub.com/vercel/turbo/pull/6372)
-   chore(test): combine two fixtures for single package testing by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6374](https://togithub.com/vercel/turbo/pull/6374)
-   build: Update `swc_core` to `v0.86.40` by [@&#8203;kdy1](https://togithub.com/kdy1) in [https://github.com/vercel/turbo/pull/6343](https://togithub.com/vercel/turbo/pull/6343)
-   feat: forward signals to process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6357](https://togithub.com/vercel/turbo/pull/6357)
-   fix: Move package manager tests to turbo info by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6373](https://togithub.com/vercel/turbo/pull/6373)
-   port(turborepo): Analytics Client by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6315](https://togithub.com/vercel/turbo/pull/6315)
-   fix(updater): specify latest for codemod by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6381](https://togithub.com/vercel/turbo/pull/6381)
-   refactor(Turborepo): Move package graph to repository crate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6375](https://togithub.com/vercel/turbo/pull/6375)
-   fix: Dry Run Text Output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6380](https://togithub.com/vercel/turbo/pull/6380)
-   feat(turbopack): support url rewrite behavior options by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6376](https://togithub.com/vercel/turbo/pull/6376)
-   chore: fix clippy lints in tests by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6384](https://togithub.com/vercel/turbo/pull/6384)
-   feat(turbopack-ecmascript): support relative url asset ref by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6386](https://togithub.com/vercel/turbo/pull/6386)
-   chore(tests): replace fixture with a fixture config by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6391](https://togithub.com/vercel/turbo/pull/6391)
-   refactor and fix CssEmbed for url() by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6382](https://togithub.com/vercel/turbo/pull/6382)
-   chore: update `update-informer` to 1.1 by [@&#8203;mgrachev](https://togithub.com/mgrachev) in [https://github.com/vercel/turbo/pull/5400](https://togithub.com/vercel/turbo/pull/5400)
-   fix: kill process group instead of children by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6387](https://togithub.com/vercel/turbo/pull/6387)
-   Update turbopack related labels by [@&#8203;padmaia](https://togithub.com/padmaia) in [https://github.com/vercel/turbo/pull/6399](https://togithub.com/vercel/turbo/pull/6399)
-   chore: prefactor for sending task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6383](https://togithub.com/vercel/turbo/pull/6383)
-   improve count hash set edge case handling, fix negative bottom connection counting by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6393](https://togithub.com/vercel/turbo/pull/6393)
-   fix: add newline to graph output by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6397](https://togithub.com/vercel/turbo/pull/6397)
-   fix(Turborepo): Sort env vars, include framework inference in task summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6402](https://togithub.com/vercel/turbo/pull/6402)
-   chore(tests): make test output assertions simpler by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6400](https://togithub.com/vercel/turbo/pull/6400)
-   fix(Turborepo): Add suppressing logs line for new-only output mode by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6406](https://togithub.com/vercel/turbo/pull/6406)
-   port: Fixing and refactoring integration tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6398](https://togithub.com/vercel/turbo/pull/6398)
-   chore: Fix compilation warnings by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6418](https://togithub.com/vercel/turbo/pull/6418)
-   Port(Turborepo): Synthesize command for spaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6417](https://togithub.com/vercel/turbo/pull/6417)
-   fix: Dry run output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6416](https://togithub.com/vercel/turbo/pull/6416)
-   fix: unbreak main by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6423](https://togithub.com/vercel/turbo/pull/6423)
-   port(Turborepo): Pass through args by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6422](https://togithub.com/vercel/turbo/pull/6422)
-   fix(Turborepo): Fix error stutter, update tests to match on relevent error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6421](https://togithub.com/vercel/turbo/pull/6421)
-   port: Fixing run summary json output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6431](https://togithub.com/vercel/turbo/pull/6431)
-   feat: send task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6419](https://togithub.com/vercel/turbo/pull/6419)
-   chore: output absolute path warnings to stderr by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6434](https://togithub.com/vercel/turbo/pull/6434)
-   port(Turborepo): Add summary error to match Go by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6438](https://togithub.com/vercel/turbo/pull/6438)
-   port(Turborepo): Fix task dependencies integration tests by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6440](https://togithub.com/vercel/turbo/pull/6440)
-   fix: match dependency ordering between rust/go by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6443](https://togithub.com/vercel/turbo/pull/6443)
-   fix: `--no-cache` flag was not working by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6444](https://togithub.com/vercel/turbo/pull/6444)
-   Ensure daemon connection errors are non-fatal by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6445](https://togithub.com/vercel/turbo/pull/6445)
-   fix: Cleaning up duration printing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6447](https://togithub.com/vercel/turbo/pull/6447)
-   fix: displaying stdout/stderr with errors-only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6446](https://togithub.com/vercel/turbo/pull/6446)
-   port(Turborepo): Migrate inference tests to grep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6437](https://togithub.com/vercel/turbo/pull/6437)
-   fix: rust spaces auth requirements by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6453](https://togithub.com/vercel/turbo/pull/6453)
-   chore: add test for turbo bin by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6451](https://togithub.com/vercel/turbo/pull/6451)
-   adjust tracing for run finalization by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6410](https://togithub.com/vercel/turbo/pull/6410)
-   chore(test): Remove single/double quotes in npm scripts in fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6459](https://togithub.com/vercel/turbo/pull/6459)
-   chore: simplify inference test grep commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6455](https://togithub.com/vercel/turbo/pull/6455)
-   feat(Turborepo): Send logging to stderr by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6462](https://togithub.com/vercel/turbo/pull/6462)
-   chore(test): Remove more single/double quotes in npm script fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6464](https://togithub.com/vercel/turbo/pull/6464)
-   fix(Turborepo): Update missing-tasks.t to pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6467](https://togithub.com/vercel/turbo/pull/6467)
-   fix(Turborepo): Make verbosity test pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6465](https://togithub.com/vercel/turbo/pull/6465)
-   chore(ci): launch prysk tests with JS instead of bash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6463](https://togithub.com/vercel/turbo/pull/6463)
-   chore(test): remove another single quoted echo arg by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6468](https://togithub.com/vercel/turbo/pull/6468)
-   fix: Check cache on dry run by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6466](https://togithub.com/vercel/turbo/pull/6466)
-   fix(Turborepo): Fix dry-json/monorepo.t by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6470](https://togithub.com/vercel/turbo/pull/6470)
-   fix: dry run missing tasks with no script by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6473](https://togithub.com/vercel/turbo/pull/6473)
-   port(Turborepo): Add github prefixing in Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6471](https://togithub.com/vercel/turbo/pull/6471)
-   fix: forward powershell style env casing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6485](https://togithub.com/vercel/turbo/pull/6485)
-   fix: fixup unit tests that use the basic example by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6517](https://togithub.com/vercel/turbo/pull/6517)
-   fix: Deadlock with closing process manager by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6516](https://togithub.com/vercel/turbo/pull/6516)
-   chore(tests): delete e2e tests for turbo prune by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6515](https://togithub.com/vercel/turbo/pull/6515)
-   chore: clean up run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6519](https://togithub.com/vercel/turbo/pull/6519)
-   feat: make rust codepath opt-out by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6420](https://togithub.com/vercel/turbo/pull/6420)
-   fix: run summary tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6532](https://togithub.com/vercel/turbo/pull/6532)
-   fix: make spaces requests in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6536](https://togithub.com/vercel/turbo/pull/6536)
-   refactor: switch daemon version to be independent of turbo version by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6528](https://togithub.com/vercel/turbo/pull/6528)
-   fix: analytics closing when all senders drop by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6542](https://togithub.com/vercel/turbo/pull/6542)
-   feat: add a go fallback flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6540](https://togithub.com/vercel/turbo/pull/6540)
-   chore(ci): delete e2e tests covering monorepo root in subdir by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6565](https://togithub.com/vercel/turbo/pull/6565)
-   fix: treat missing and empty scripts the same by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6552](https://togithub.com/vercel/turbo/pull/6552)
-   test(gen): add generator command tests by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6569](https://togithub.com/vercel/turbo/pull/6569)
-   chore(tests): fix daemon verbosity test on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6582](https://togithub.com/vercel/turbo/pull/6582)
-   chore(tests): fix absolute path warnings test on windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6564](https://togithub.com/vercel/turbo/pull/6564)
-   chore: hyphenate filenames isntead of underscore by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6595](https://togithub.com/vercel/turbo/pull/6595)
-   fix: ensure cache is done writing before exit by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6603](https://togithub.com/vercel/turbo/pull/6603)
-   feat(releases): update turborepo-release.yml by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6611](https://togithub.com/vercel/turbo/pull/6611)
-   chore(tests): remove hardcoded packageManager when running examples tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6615](https://togithub.com/vercel/turbo/pull/6615)
-   fix: Hard error on spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6596](https://togithub.com/vercel/turbo/pull/6596)
-   fix(Turborepo): Handle windows absolute paths in global dependencies by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6608](https://togithub.com/vercel/turbo/pull/6608)
-   fix(tests): account for .cmd extension on npm binary in Rust codepath tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6604](https://togithub.com/vercel/turbo/pull/6604)
-   fix(release): correct excludes label by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6623](https://togithub.com/vercel/turbo/pull/6623)
-   fix: second granularity by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6606](https://togithub.com/vercel/turbo/pull/6606)
-   feat: add read only remote cache by [@&#8203;maschwenk](https://togithub.com/maschwenk)  in [https://github.com/vercel/turbo/pull/6624](https://togithub.com/vercel/turbo/pull/6624)
-   fix: look for unix based project paths by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6609](https://togithub.com/vercel/turbo/pull/6609)
-   fix(tests): account for cmd extensions in more tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6628](https://togithub.com/vercel/turbo/pull/6628)
-   Drop nonsensical(?) tests? by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6632](https://togithub.com/vercel/turbo/pull/6632)
-   fix(turborepo): make linked installs test pass on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6477](https://togithub.com/vercel/turbo/pull/6477)
-   chore: update lockfile after workspace deletion by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6637](https://togithub.com/vercel/turbo/pull/6637)
-   fix(Turborepo): Remove unused globwalk code, fix multiple doublestars by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6633](https://togithub.com/vercel/turbo/pull/6633)
-   feat: add package discovery trait and a few discovery strategies by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6275](https://togithub.com/vercel/turbo/pull/6275)
-   chore: use parent() method instead of .. directory traversal by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6635](https://togithub.com/vercel/turbo/pull/6635)
-   yarn-with-yarn workspace name by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6647](https://togithub.com/vercel/turbo/pull/6647)
-   refactor: adjust test timeouts to avoid flaky test on windows by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6638](https://togithub.com/vercel/turbo/pull/6638)
-   chore: reduce sleep length in test cases by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6640](https://togithub.com/vercel/turbo/pull/6640)
-   chore: fix rust compile warnings by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6655](https://togithub.com/vercel/turbo/pull/6655)
-   chore: add a helper script to replace turbo config in main fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6652](https://togithub.com/vercel/turbo/pull/6652)
-   fix: Fixed cache restoration for an entry with a very long name by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6662](https://togithub.com/vercel/turbo/pull/6662)
-   fix: clean paths and use package path instead of package.json path by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6649](https://togithub.com/vercel/turbo/pull/6649)
-   Revert "chore: reduce sleep length in test cases ([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6665](https://togithub.com/vercel/turbo/pull/6665)
-   chore(tests): write a test showing the behavior of gitignored inputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6669](https://togithub.com/vercel/turbo/pull/6669)
-   chore(tests): add test to check that root tasks can depend on workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6671](https://togithub.com/vercel/turbo/pull/6671)
-   chore: consolidate setup scripts for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6641](https://togithub.com/vercel/turbo/pull/6641)
-   fix(tests): fix unit tests that rely on examples by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6679](https://togithub.com/vercel/turbo/pull/6679)
-   chore(tests): remove duplicate setup_git script by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6680](https://togithub.com/vercel/turbo/pull/6680)
-   chore(tests): setup package manager consistently for example/integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6681](https://togithub.com/vercel/turbo/pull/6681)
-   chore(tests): make fixture copying consistent by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6683](https://togithub.com/vercel/turbo/pull/6683)
-   chore(tests): Enable corepack in local directory for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6684](https://togithub.com/vercel/turbo/pull/6684)
-   chore(tests): delete feature where [@&#8203;canary](https://togithub.com/canary) turbo is used by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6685](https://togithub.com/vercel/turbo/pull/6685)
-   fix(tests): update rust unit tests that rely on with-yarn fixture by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6693](https://togithub.com/vercel/turbo/pull/6693)
-   chore(daemon) disable daemon workspace discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6695](https://togithub.com/vercel/turbo/pull/6695)
-   chore: use path library read_to_string for better error message by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6694](https://togithub.com/vercel/turbo/pull/6694)
-   chore: make go-fallback confilct with remote cache read only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6702](https://togithub.com/vercel/turbo/pull/6702)

#### New Contributors

-   [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first contribution in [https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
-   [@&#8203;fa-901](https://togithub.com/fa-901) made their first contribution in [https://github.com/vercel/turbo/pull/5444](https://togithub.com/vercel/turbo/pull/5444)
-   [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first contribution in [https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
-   [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their first contribution in [https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
-   [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first contribution in [https://github.com/vercel/turbo/pull/6427](https://togithub.com/vercel/turbo/pull/6427)
-   [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first contribution in [https://github.com/vercel/turbo/pull/6425](https://togithub.com/vercel/turbo/pull/6425)
-   [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first contribution in [https://github.com/vercel/turbo/pull/6506](https://togithub.com/vercel/turbo/pull/6506)
-   [@&#8203;dallonf](https://togithub.com/dallonf) made their first contribution in [https://github.com/vercel/turbo/pull/6522](https://togithub.com/vercel/turbo/pull/6522)
-   [@&#8203;m1heng](https://togithub.com/m1heng) made their first contribution in [https://github.com/vercel/turbo/pull/6579](https://togithub.com/vercel/turbo/pull/6579)
-   [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their first contribution in [https://github.com/vercel/turbo/pull/6321](https://togithub.com/vercel/turbo/pull/6321)
-   [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their first contribution in [https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

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

</details>

<details>
<summary>prisma/prisma (prisma)</summary>

### [`v5.7.0`](https://togithub.com/prisma/prisma/compare/5.6.0...5.7.0)

[Compare Source](https://togithub.com/prisma/prisma/compare/5.6.0...5.7.0)

</details>

---

### Configuration

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

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

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

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

---

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

---

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



PR-URL: https://github.com/weareinreach/GLAAD/pull/274
Co-authored-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>
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Dec 6, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.16` -> `1.11.0`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.0) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.0?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

-   feat(turborepo): Spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6109
-   fix: bias towards graph walk cancel over continue by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6210
-   feat: hook up task execution tracking by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6222
-   docs: Add the enabled config to turbo.json schema by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6224
-   chore: fix example test setup so output matches by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6225
-   fix: Respect color config for runcache output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6217
-   refactor(auth): Removed closure in login functions by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6235
-   chore(test): validate that pruning carries remoteCache fields correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6226
-   chore: Removed run stub feature by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6236
-   fix(Turborepo): Drop incorrect deprecation notice by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6239
-   chore(test): Add test to ensure env var changes task hash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6238
-   chore: run summary prefactor by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6240
-   refactor: Removed closure from logout by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6251
-   chore: Added panic handler to turborepo by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6253
-   refactor: Moving from anyhow to thiserror part 1 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6250
-   Clearer cache spinner message. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6278
-   fix: use cprintln instead of warn when no tasks are run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6285
-   fix: don't escape html when serializing dry runs by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6284
-   fix(Turborepo): Ensure process manager stays closed by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6258
-   fix(Turborepo): escape colons in log filenames by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6267
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6300
-   feat: Hook up Run summary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6282
-   port(Turborepo): Port escaping globs sent via rust daemon client by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6295
-   feat(Turborepo): Validation checks for task names by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6293
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6303
-   fix(lockfiles) trailing zero yaml parse by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6296
-   Chore/update teamname by [@&#8203;padmaia](https://togithub.com/padmaia) in [vercel/turbo#6317
-   build(cargo): skip external build script with rust-analyzer by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#6325
-   fix: global hash divergence for empty version strings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6319
-   fix: explicitly set turbo command name by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6332
-   fix: task definition serialization by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6306
-   fix: Empty command returns help text and not error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6340
-   feat: add support for --parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6339
-   fix(Turborepo): Drop root from calculation of in-scope workspaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6328
-   feat(turbopack-ecmascript): calculate import.meta.url as an absolute path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#6318
-   feat(Turborepo): Add more detail to a cookie error variant by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6349
-   fix(Turborepo): Bump x/net, go mod tidy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6355
-   fix(turbo-utils): correct typo on package.json on types field by [@&#8203;stefanofa](https://togithub.com/stefanofa) in [vercel/turbo#6360
-   Triple chunk size heuristic by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6305
-   improve resolving performance by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6304
-   Devlow: refactor browser.ts by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6286
-   make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6367
-   Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by [@&#8203;jridgewell](https://togithub.com/jridgewell) in [vercel/turbo#6354
-   port(turborepo): Fixing API Client config tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6356
-   fix: use which for package manager binary discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6370
-   chore(tests): delete a mostly copy-pasted fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6366
-   refactor: Moving to thiserror part 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6273
-   refactor(turborepo): Changed cache misses to be a non-error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6369
-   fix: use correct command for package managers by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6372
-   chore(test): combine two fixtures for single package testing by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6374
-   build: Update `swc_core` to `v0.86.40` by [@&#8203;kdy1](https://togithub.com/kdy1) in [vercel/turbo#6343
-   feat: forward signals to process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6357
-   fix: Move package manager tests to turbo info by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6373
-   port(turborepo): Analytics Client by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6315
-   fix(updater): specify latest for codemod by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6381
-   refactor(Turborepo): Move package graph to repository crate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6375
-   fix: Dry Run Text Output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6380
-   feat(turbopack): support url rewrite behavior options by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#6376
-   chore: fix clippy lints in tests by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6384
-   feat(turbopack-ecmascript): support relative url asset ref by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#6386
-   chore(tests): replace fixture with a fixture config by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6391
-   refactor and fix CssEmbed for url() by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6382
-   chore: update `update-informer` to 1.1 by [@&#8203;mgrachev](https://togithub.com/mgrachev) in [vercel/turbo#5400
-   fix: kill process group instead of children by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6387
-   Update turbopack related labels by [@&#8203;padmaia](https://togithub.com/padmaia) in [vercel/turbo#6399
-   chore: prefactor for sending task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6383
-   improve count hash set edge case handling, fix negative bottom connection counting by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6393
-   fix: add newline to graph output by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6397
-   fix(Turborepo): Sort env vars, include framework inference in task summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6402
-   chore(tests): make test output assertions simpler by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6400
-   fix(Turborepo): Add suppressing logs line for new-only output mode by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6406
-   port: Fixing and refactoring integration tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6398
-   chore: Fix compilation warnings by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6418
-   Port(Turborepo): Synthesize command for spaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6417
-   fix: Dry run output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6416
-   fix: unbreak main by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6423
-   port(Turborepo): Pass through args by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6422
-   fix(Turborepo): Fix error stutter, update tests to match on relevent error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6421
-   port: Fixing run summary json output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6431
-   feat: send task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6419
-   chore: output absolute path warnings to stderr by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6434
-   port(Turborepo): Add summary error to match Go by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6438
-   port(Turborepo): Fix task dependencies integration tests by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6440
-   fix: match dependency ordering between rust/go by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6443
-   fix: `--no-cache` flag was not working by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6444
-   Ensure daemon connection errors are non-fatal by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6445
-   fix: Cleaning up duration printing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6447
-   fix: displaying stdout/stderr with errors-only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6446
-   port(Turborepo): Migrate inference tests to grep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6437
-   fix: rust spaces auth requirements by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6453
-   chore: add test for turbo bin by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6451
-   adjust tracing for run finalization by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6410
-   chore(test): Remove single/double quotes in npm scripts in fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6459
-   chore: simplify inference test grep commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6455
-   feat(Turborepo): Send logging to stderr by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6462
-   chore(test): Remove more single/double quotes in npm script fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6464
-   fix(Turborepo): Update missing-tasks.t to pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6467
-   fix(Turborepo): Make verbosity test pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6465
-   chore(ci): launch prysk tests with JS instead of bash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6463
-   chore(test): remove another single quoted echo arg by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6468
-   fix: Check cache on dry run by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6466
-   fix(Turborepo): Fix dry-json/monorepo.t by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6470
-   fix: dry run missing tasks with no script by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6473
-   port(Turborepo): Add github prefixing in Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6471
-   fix: forward powershell style env casing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6485
-   fix: fixup unit tests that use the basic example by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6517
-   fix: Deadlock with closing process manager by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6516
-   chore(tests): delete e2e tests for turbo prune by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6515
-   chore: clean up run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6519
-   feat: make rust codepath opt-out by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6420
-   fix: run summary tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6532
-   fix: make spaces requests in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6536
-   refactor: switch daemon version to be independent of turbo version by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6528
-   fix: analytics closing when all senders drop by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6542
-   feat: add a go fallback flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6540
-   chore(ci): delete e2e tests covering monorepo root in subdir by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6565
-   fix: treat missing and empty scripts the same by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6552
-   test(gen): add generator command tests by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6569
-   chore(tests): fix daemon verbosity test on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6582
-   chore(tests): fix absolute path warnings test on windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6564
-   chore: hyphenate filenames isntead of underscore by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6595
-   fix: ensure cache is done writing before exit by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6603
-   feat(releases): update turborepo-release.yml by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6611
-   chore(tests): remove hardcoded packageManager when running examples tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6615
-   fix: Hard error on spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6596
-   fix(Turborepo): Handle windows absolute paths in global dependencies by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6608
-   fix(tests): account for .cmd extension on npm binary in Rust codepath tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6604
-   fix(release): correct excludes label by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6623
-   fix: second granularity by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6606
-   feat: add read only remote cache by [@&#8203;maschwenk](https://togithub.com/maschwenk)  in [vercel/turbo#6624
-   fix: look for unix based project paths by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6609
-   fix(tests): account for cmd extensions in more tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6628
-   Drop nonsensical(?) tests? by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6632
-   fix(turborepo): make linked installs test pass on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6477
-   chore: update lockfile after workspace deletion by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6637
-   fix(Turborepo): Remove unused globwalk code, fix multiple doublestars by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6633
-   feat: add package discovery trait and a few discovery strategies by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6275
-   chore: use parent() method instead of .. directory traversal by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6635
-   yarn-with-yarn workspace name by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6647
-   refactor: adjust test timeouts to avoid flaky test on windows by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6638
-   chore: reduce sleep length in test cases by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6640
-   chore: fix rust compile warnings by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6655
-   chore: add a helper script to replace turbo config in main fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6652
-   fix: Fixed cache restoration for an entry with a very long name by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6662
-   fix: clean paths and use package path instead of package.json path by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6649
-   Revert "chore: reduce sleep length in test cases ([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6665
-   chore(tests): write a test showing the behavior of gitignored inputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6669
-   chore(tests): add test to check that root tasks can depend on workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6671
-   chore: consolidate setup scripts for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6641
-   fix(tests): fix unit tests that rely on examples by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6679
-   chore(tests): remove duplicate setup_git script by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6680
-   chore(tests): setup package manager consistently for example/integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6681
-   chore(tests): make fixture copying consistent by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6683
-   chore(tests): Enable corepack in local directory for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6684
-   chore(tests): delete feature where [@&#8203;canary](https://togithub.com/canary) turbo is used by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6685
-   fix(tests): update rust unit tests that rely on with-yarn fixture by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6693
-   chore(daemon) disable daemon workspace discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6695
-   chore: use path library read_to_string for better error message by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6694
-   chore: make go-fallback confilct with remote cache read only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6702

#### New Contributors

-   [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first contribution in [vercel/turbo#6335
-   [@&#8203;fa-901](https://togithub.com/fa-901) made their first contribution in [vercel/turbo#5444
-   [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first contribution in [vercel/turbo#2761
-   [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their first contribution in [vercel/turbo#6426
-   [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first contribution in [vercel/turbo#6427
-   [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first contribution in [vercel/turbo#6425
-   [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first contribution in [vercel/turbo#6506
-   [@&#8203;dallonf](https://togithub.com/dallonf) made their first contribution in [vercel/turbo#6522
-   [@&#8203;m1heng](https://togithub.com/m1heng) made their first contribution in [vercel/turbo#6579
-   [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their first contribution in [vercel/turbo#6321
-   [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their first contribution in [vercel/turbo#6657

**Full Changelog**: vercel/turbo@v1.10.16...v1.11.0

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Dec 8, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.11.0` -> `1.11.1`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.1) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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



#### What's Changed

##### create-turbo

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

##### Examples

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

##### Changelog

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

**Full Changelog**: vercel/turbo@v1.11.0...v1.11.1

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

-   feat(turborepo): Spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6109
-   fix: bias towards graph walk cancel over continue by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6210
-   feat: hook up task execution tracking by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6222
-   docs: Add the enabled config to turbo.json schema by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6224
-   chore: fix example test setup so output matches by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6225
-   fix: Respect color config for runcache output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6217
-   refactor(auth): Removed closure in login functions by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6235
-   chore(test): validate that pruning carries remoteCache fields correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6226
-   chore: Removed run stub feature by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6236
-   fix(Turborepo): Drop incorrect deprecation notice by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6239
-   chore(test): Add test to ensure env var changes task hash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6238
-   chore: run summary prefactor by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6240
-   refactor: Removed closure from logout by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6251
-   chore: Added panic handler to turborepo by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6253
-   refactor: Moving from anyhow to thiserror part 1 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6250
-   Clearer cache spinner message. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6278
-   fix: use cprintln instead of warn when no tasks are run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6285
-   fix: don't escape html when serializing dry runs by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6284
-   fix(Turborepo): Ensure process manager stays closed by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6258
-   fix(Turborepo): escape colons in log filenames by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6267
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6300
-   feat: Hook up Run summary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6282
-   port(Turborepo): Port escaping globs sent via rust daemon client by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6295
-   feat(Turborepo): Validation checks for task names by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6293
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6303
-   fix(lockfiles) trailing zero yaml parse by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6296
-   Chore/update teamname by [@&#8203;padmaia](https://togithub.com/padmaia) in [vercel/turbo#6317
-   build(cargo): skip external build script with rust-analyzer by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#6325
-   fix: global hash divergence for empty version strings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6319
-   fix: explicitly set turbo command name by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6332
-   fix: task definition serialization by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6306
-   fix: Empty command returns help text and not error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6340
-   feat: add support for --parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6339
-   fix(Turborepo): Drop root from calculation of in-scope workspaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6328
-   feat(turbopack-ecmascript): calculate import.meta.url as an absolute path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#6318
-   feat(Turborepo): Add more detail to a cookie error variant by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6349
-   fix(Turborepo): Bump x/net, go mod tidy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6355
-   fix(turbo-utils): correct typo on package.json on types field by [@&#8203;stefanofa](https://togithub.com/stefanofa) in [vercel/turbo#6360
-   Triple chunk size heuristic by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6305
-   improve resolving performance by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6304
-   Devlow: refactor browser.ts by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [vercel/turbo#6286
-   make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6367
-   Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by [@&#8203;jridgewell](https://togithub.com/jridgewell) in [vercel/turbo#6354
-   port(turborepo): Fixing API Client config tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6356
-   fix: use which for package manager binary discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6370
-   chore(tests): delete a mostly copy-pasted fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6366
-   refactor: Moving to thiserror part 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6273
-   refactor(turborepo): Changed cache misses to be a non-error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6369
-   fix: use correct command for package managers by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6372
-   chore(test): combine two fixtures for single package testing by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6374
-   build: Update `swc_core` to `v0.86.40` by [@&#8203;kdy1](https://togithub.com/kdy1) in [vercel/turbo#6343
-   feat: forward signals to process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6357
-   fix: Move package manager tests to turbo info by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6373
-   port(turborepo): Analytics Client by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6315
-   fix(updater): specify latest for codemod by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6381
-   refactor(Turborepo): Move package graph to repository crate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6375
-   fix: Dry Run Text Output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6380
-   feat(turbopack): support url rewrite behavior options by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#6376
-   chore: fix clippy lints in tests by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6384
-   feat(turbopack-ecmascript): support relative url asset ref by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [vercel/turbo#6386
-   chore(tests): replace fixture with a fixture config by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6391
-   refactor and fix CssEmbed for url() by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6382
-   chore: update `update-informer` to 1.1 by [@&#8203;mgrachev](https://togithub.com/mgrachev) in [vercel/turbo#5400
-   fix: kill process group instead of children by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6387
-   Update turbopack related labels by [@&#8203;padmaia](https://togithub.com/padmaia) in [vercel/turbo#6399
-   chore: prefactor for sending task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6383
-   improve count hash set edge case handling, fix negative bottom connection counting by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#6393
-   fix: add newline to graph output by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6397
-   fix(Turborepo): Sort env vars, include framework inference in task summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6402
-   chore(tests): make test output assertions simpler by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6400
-   fix(Turborepo): Add suppressing logs line for new-only output mode by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6406
-   port: Fixing and refactoring integration tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6398
-   chore: Fix compilation warnings by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6418
-   Port(Turborepo): Synthesize command for spaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6417
-   fix: Dry run output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6416
-   fix: unbreak main by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6423
-   port(Turborepo): Pass through args by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6422
-   fix(Turborepo): Fix error stutter, update tests to match on relevent error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6421
-   port: Fixing run summary json output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6431
-   feat: send task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6419
-   chore: output absolute path warnings to stderr by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6434
-   port(Turborepo): Add summary error to match Go by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6438
-   port(Turborepo): Fix task dependencies integration tests by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6440
-   fix: match dependency ordering between rust/go by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6443
-   fix: `--no-cache` flag was not working by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6444
-   Ensure daemon connection errors are non-fatal by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6445
-   fix: Cleaning up duration printing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6447
-   fix: displaying stdout/stderr with errors-only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6446
-   port(Turborepo): Migrate inference tests to grep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6437
-   fix: rust spaces auth requirements by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6453
-   chore: add test for turbo bin by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6451
-   adjust tracing for run finalization by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6410
-   chore(test): Remove single/double quotes in npm scripts in fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6459
-   chore: simplify inference test grep commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6455
-   feat(Turborepo): Send logging to stderr by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6462
-   chore(test): Remove more single/double quotes in npm script fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6464
-   fix(Turborepo): Update missing-tasks.t to pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6467
-   fix(Turborepo): Make verbosity test pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6465
-   chore(ci): launch prysk tests with JS instead of bash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6463
-   chore(test): remove another single quoted echo arg by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6468
-   fix: Check cache on dry run by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6466
-   fix(Turborepo): Fix dry-json/monorepo.t by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6470
-   fix: dry run missing tasks with no script by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6473
-   port(Turborepo): Add github prefixing in Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6471
-   fix: forward powershell style env casing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6485
-   fix: fixup unit tests that use the basic example by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6517
-   fix: Deadlock with closing process manager by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6516
-   chore(tests): delete e2e tests for turbo prune by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6515
-   chore: clean up run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6519
-   feat: make rust codepath opt-out by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6420
-   fix: run summary tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6532
-   fix: make spaces requests in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6536
-   refactor: switch daemon version to be independent of turbo version by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6528
-   fix: analytics closing when all senders drop by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6542
-   feat: add a go fallback flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6540
-   chore(ci): delete e2e tests covering monorepo root in subdir by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6565
-   fix: treat missing and empty scripts the same by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6552
-   test(gen): add generator command tests by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6569
-   chore(tests): fix daemon verbosity test on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6582
-   chore(tests): fix absolute path warnings test on windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6564
-   chore: hyphenate filenames isntead of underscore by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6595
-   fix: ensure cache is done writing before exit by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6603
-   feat(releases): update turborepo-release.yml by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6611
-   chore(tests): remove hardcoded packageManager when running examples tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6615
-   fix: Hard error on spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6596
-   fix(Turborepo): Handle windows absolute paths in global dependencies by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6608
-   fix(tests): account for .cmd extension on npm binary in Rust codepath tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6604
-   fix(release): correct excludes label by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#6623
-   fix: second granularity by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6606
-   feat: add read only remote cache by [@&#8203;maschwenk](https://togithub.com/maschwenk)  in [vercel/turbo#6624
-   fix: look for unix based project paths by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6609
-   fix(tests): account for cmd extensions in more tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6628
-   Drop nonsensical(?) tests? by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6632
-   fix(turborepo): make linked installs test pass on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6477
-   chore: update lockfile after workspace deletion by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6637
-   fix(Turborepo): Remove unused globwalk code, fix multiple doublestars by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#6633
-   feat: add package discovery trait and a few discovery strategies by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6275
-   chore: use parent() method instead of .. directory traversal by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6635
-   yarn-with-yarn workspace name by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#6647
-   refactor: adjust test timeouts to avoid flaky test on windows by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#6638
-   chore: reduce sleep length in test cases by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6640
-   chore: fix rust compile warnings by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6655
-   chore: add a helper script to replace turbo config in main fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6652
-   fix: Fixed cache restoration for an entry with a very long name by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#6662
-   fix: clean paths and use package path instead of package.json path by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6649
-   Revert "chore: reduce sleep length in test cases ([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6665
-   chore(tests): write a test showing the behavior of gitignored inputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6669
-   chore(tests): add test to check that root tasks can depend on workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6671
-   chore: consolidate setup scripts for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6641
-   fix(tests): fix unit tests that rely on examples by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6679
-   chore(tests): remove duplicate setup_git script by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6680
-   chore(tests): setup package manager consistently for example/integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6681
-   chore(tests): make fixture copying consistent by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6683
-   chore(tests): Enable corepack in local directory for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6684
-   chore(tests): delete feature where [@&#8203;canary](https://togithub.com/canary) turbo is used by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#6685
-   fix(tests): update rust unit tests that rely on with-yarn fixture by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6693
-   chore(daemon) disable daemon workspace discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6695
-   chore: use path library read_to_string for better error message by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6694
-   chore: make go-fallback confilct with remote cache read only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#6702

#### New Contributors

-   [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first contribution in [vercel/turbo#6335
-   [@&#8203;fa-901](https://togithub.com/fa-901) made their first contribution in [vercel/turbo#5444
-   [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first contribution in [vercel/turbo#2761
-   [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their first contribution in [vercel/turbo#6426
-   [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first contribution in [vercel/turbo#6427
-   [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first contribution in [vercel/turbo#6425
-   [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first contribution in [vercel/turbo#6506
-   [@&#8203;dallonf](https://togithub.com/dallonf) made their first contribution in [vercel/turbo#6522
-   [@&#8203;m1heng](https://togithub.com/m1heng) made their first contribution in [vercel/turbo#6579
-   [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their first contribution in [vercel/turbo#6321
-   [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their first contribution in [vercel/turbo#6657

**Full Changelog**: vercel/turbo@v1.10.16...v1.11.0

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
fuxingloh pushed a commit to fuxingloh/contented that referenced this pull request Dec 11, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.10.16` ->
`^1.11.1`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.1) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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

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

#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

- feat(turborepo): Spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
- fix: bias towards graph walk cancel over continue by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
- feat: hook up task execution tracking by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
- docs: Add the enabled config to turbo.json schema by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
- chore: fix example test setup so output matches by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
- fix: Respect color config for runcache output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
- refactor(auth): Removed closure in login functions by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
- chore(test): validate that pruning carries remoteCache fields
correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
- chore: Removed run stub feature by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
- fix(Turborepo): Drop incorrect deprecation notice by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
- chore(test): Add test to ensure env var changes task hash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
- chore: run summary prefactor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
- refactor: Removed closure from logout by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
- chore: Added panic handler to turborepo by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
- refactor: Moving from anyhow to thiserror part 1 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
- Clearer cache spinner message. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
- fix: use cprintln instead of warn when no tasks are run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
- fix: don't escape html when serializing dry runs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
- fix(Turborepo): Ensure process manager stays closed by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
- fix(Turborepo): escape colons in log filenames by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6300](https://togithub.com/vercel/turbo/pull/6300)
- feat: Hook up Run summary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6282](https://togithub.com/vercel/turbo/pull/6282)
- port(Turborepo): Port escaping globs sent via rust daemon client by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6295](https://togithub.com/vercel/turbo/pull/6295)
- feat(Turborepo): Validation checks for task names by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6293](https://togithub.com/vercel/turbo/pull/6293)
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6303](https://togithub.com/vercel/turbo/pull/6303)
- fix(lockfiles) trailing zero yaml parse by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6296](https://togithub.com/vercel/turbo/pull/6296)
- Chore/update teamname by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[https://github.com/vercel/turbo/pull/6317](https://togithub.com/vercel/turbo/pull/6317)
- build(cargo): skip external build script with rust-analyzer by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6325](https://togithub.com/vercel/turbo/pull/6325)
- fix: global hash divergence for empty version strings by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6319](https://togithub.com/vercel/turbo/pull/6319)
- fix: explicitly set turbo command name by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6332](https://togithub.com/vercel/turbo/pull/6332)
- fix: task definition serialization by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6306](https://togithub.com/vercel/turbo/pull/6306)
- fix: Empty command returns help text and not error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6340](https://togithub.com/vercel/turbo/pull/6340)
- feat: add support for --parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6339](https://togithub.com/vercel/turbo/pull/6339)
- fix(Turborepo): Drop root from calculation of in-scope workspaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6328](https://togithub.com/vercel/turbo/pull/6328)
- feat(turbopack-ecmascript): calculate import.meta.url as an absolute
path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6318](https://togithub.com/vercel/turbo/pull/6318)
- feat(Turborepo): Add more detail to a cookie error variant by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6349](https://togithub.com/vercel/turbo/pull/6349)
- fix(Turborepo): Bump x/net, go mod tidy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6355](https://togithub.com/vercel/turbo/pull/6355)
- fix(turbo-utils): correct typo on package.json on types field by
[@&#8203;stefanofa](https://togithub.com/stefanofa) in
[https://github.com/vercel/turbo/pull/6360](https://togithub.com/vercel/turbo/pull/6360)
- Triple chunk size heuristic by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6305](https://togithub.com/vercel/turbo/pull/6305)
- improve resolving performance by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6304](https://togithub.com/vercel/turbo/pull/6304)
- Devlow: refactor browser.ts by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/6286](https://togithub.com/vercel/turbo/pull/6286)
- make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6367](https://togithub.com/vercel/turbo/pull/6367)
- Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/6354](https://togithub.com/vercel/turbo/pull/6354)
- port(turborepo): Fixing API Client config tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6356](https://togithub.com/vercel/turbo/pull/6356)
- fix: use which for package manager binary discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6370](https://togithub.com/vercel/turbo/pull/6370)
- chore(tests): delete a mostly copy-pasted fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6366](https://togithub.com/vercel/turbo/pull/6366)
- refactor: Moving to thiserror part 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6273](https://togithub.com/vercel/turbo/pull/6273)
- refactor(turborepo): Changed cache misses to be a non-error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6369](https://togithub.com/vercel/turbo/pull/6369)
- fix: use correct command for package managers by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6372](https://togithub.com/vercel/turbo/pull/6372)
- chore(test): combine two fixtures for single package testing by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6374](https://togithub.com/vercel/turbo/pull/6374)
- build: Update `swc_core` to `v0.86.40` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/6343](https://togithub.com/vercel/turbo/pull/6343)
- feat: forward signals to process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6357](https://togithub.com/vercel/turbo/pull/6357)
- fix: Move package manager tests to turbo info by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6373](https://togithub.com/vercel/turbo/pull/6373)
- port(turborepo): Analytics Client by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6315](https://togithub.com/vercel/turbo/pull/6315)
- fix(updater): specify latest for codemod by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6381](https://togithub.com/vercel/turbo/pull/6381)
- refactor(Turborepo): Move package graph to repository crate by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6375](https://togithub.com/vercel/turbo/pull/6375)
- fix: Dry Run Text Output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6380](https://togithub.com/vercel/turbo/pull/6380)
- feat(turbopack): support url rewrite behavior options by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6376](https://togithub.com/vercel/turbo/pull/6376)
- chore: fix clippy lints in tests by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6384](https://togithub.com/vercel/turbo/pull/6384)
- feat(turbopack-ecmascript): support relative url asset ref by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6386](https://togithub.com/vercel/turbo/pull/6386)
- chore(tests): replace fixture with a fixture config by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6391](https://togithub.com/vercel/turbo/pull/6391)
- refactor and fix CssEmbed for url() by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6382](https://togithub.com/vercel/turbo/pull/6382)
- chore: update `update-informer` to 1.1 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[https://github.com/vercel/turbo/pull/5400](https://togithub.com/vercel/turbo/pull/5400)
- fix: kill process group instead of children by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6387](https://togithub.com/vercel/turbo/pull/6387)
- Update turbopack related labels by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[https://github.com/vercel/turbo/pull/6399](https://togithub.com/vercel/turbo/pull/6399)
- chore: prefactor for sending task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6383](https://togithub.com/vercel/turbo/pull/6383)
- improve count hash set edge case handling, fix negative bottom
connection counting by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6393](https://togithub.com/vercel/turbo/pull/6393)
- fix: add newline to graph output by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6397](https://togithub.com/vercel/turbo/pull/6397)
- fix(Turborepo): Sort env vars, include framework inference in task
summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6402](https://togithub.com/vercel/turbo/pull/6402)
- chore(tests): make test output assertions simpler by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6400](https://togithub.com/vercel/turbo/pull/6400)
- fix(Turborepo): Add suppressing logs line for new-only output mode by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6406](https://togithub.com/vercel/turbo/pull/6406)
- port: Fixing and refactoring integration tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6398](https://togithub.com/vercel/turbo/pull/6398)
- chore: Fix compilation warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6418](https://togithub.com/vercel/turbo/pull/6418)
- Port(Turborepo): Synthesize command for spaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6417](https://togithub.com/vercel/turbo/pull/6417)
- fix: Dry run output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6416](https://togithub.com/vercel/turbo/pull/6416)
- fix: unbreak main by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6423](https://togithub.com/vercel/turbo/pull/6423)
- port(Turborepo): Pass through args by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6422](https://togithub.com/vercel/turbo/pull/6422)
- fix(Turborepo): Fix error stutter, update tests to match on relevent
error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6421](https://togithub.com/vercel/turbo/pull/6421)
- port: Fixing run summary json output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6431](https://togithub.com/vercel/turbo/pull/6431)
- feat: send task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6419](https://togithub.com/vercel/turbo/pull/6419)
- chore: output absolute path warnings to stderr by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6434](https://togithub.com/vercel/turbo/pull/6434)
- port(Turborepo): Add summary error to match Go by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6438](https://togithub.com/vercel/turbo/pull/6438)
- port(Turborepo): Fix task dependencies integration tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6440](https://togithub.com/vercel/turbo/pull/6440)
- fix: match dependency ordering between rust/go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6443](https://togithub.com/vercel/turbo/pull/6443)
- fix: `--no-cache` flag was not working by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6444](https://togithub.com/vercel/turbo/pull/6444)
- Ensure daemon connection errors are non-fatal by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6445](https://togithub.com/vercel/turbo/pull/6445)
- fix: Cleaning up duration printing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6447](https://togithub.com/vercel/turbo/pull/6447)
- fix: displaying stdout/stderr with errors-only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6446](https://togithub.com/vercel/turbo/pull/6446)
- port(Turborepo): Migrate inference tests to grep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6437](https://togithub.com/vercel/turbo/pull/6437)
- fix: rust spaces auth requirements by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6453](https://togithub.com/vercel/turbo/pull/6453)
- chore: add test for turbo bin by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6451](https://togithub.com/vercel/turbo/pull/6451)
- adjust tracing for run finalization by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6410](https://togithub.com/vercel/turbo/pull/6410)
- chore(test): Remove single/double quotes in npm scripts in fixtures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6459](https://togithub.com/vercel/turbo/pull/6459)
- chore: simplify inference test grep commands by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6455](https://togithub.com/vercel/turbo/pull/6455)
- feat(Turborepo): Send logging to stderr by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6462](https://togithub.com/vercel/turbo/pull/6462)
- chore(test): Remove more single/double quotes in npm script fixtures
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6464](https://togithub.com/vercel/turbo/pull/6464)
- fix(Turborepo): Update missing-tasks.t to pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6467](https://togithub.com/vercel/turbo/pull/6467)
- fix(Turborepo): Make verbosity test pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6465](https://togithub.com/vercel/turbo/pull/6465)
- chore(ci): launch prysk tests with JS instead of bash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6463](https://togithub.com/vercel/turbo/pull/6463)
- chore(test): remove another single quoted echo arg by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6468](https://togithub.com/vercel/turbo/pull/6468)
- fix: Check cache on dry run by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6466](https://togithub.com/vercel/turbo/pull/6466)
- fix(Turborepo): Fix dry-json/monorepo.t by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6470](https://togithub.com/vercel/turbo/pull/6470)
- fix: dry run missing tasks with no script by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6473](https://togithub.com/vercel/turbo/pull/6473)
- port(Turborepo): Add github prefixing in Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6471](https://togithub.com/vercel/turbo/pull/6471)
- fix: forward powershell style env casing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6485](https://togithub.com/vercel/turbo/pull/6485)
- fix: fixup unit tests that use the basic example by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6517](https://togithub.com/vercel/turbo/pull/6517)
- fix: Deadlock with closing process manager by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6516](https://togithub.com/vercel/turbo/pull/6516)
- chore(tests): delete e2e tests for turbo prune by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6515](https://togithub.com/vercel/turbo/pull/6515)
- chore: clean up run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6519](https://togithub.com/vercel/turbo/pull/6519)
- feat: make rust codepath opt-out by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6420](https://togithub.com/vercel/turbo/pull/6420)
- fix: run summary tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6532](https://togithub.com/vercel/turbo/pull/6532)
- fix: make spaces requests in parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6536](https://togithub.com/vercel/turbo/pull/6536)
- refactor: switch daemon version to be independent of turbo version by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6528](https://togithub.com/vercel/turbo/pull/6528)
- fix: analytics closing when all senders drop by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6542](https://togithub.com/vercel/turbo/pull/6542)
- feat: add a go fallback flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6540](https://togithub.com/vercel/turbo/pull/6540)
- chore(ci): delete e2e tests covering monorepo root in subdir by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6565](https://togithub.com/vercel/turbo/pull/6565)
- fix: treat missing and empty scripts the same by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6552](https://togithub.com/vercel/turbo/pull/6552)
- test(gen): add generator command tests by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6569](https://togithub.com/vercel/turbo/pull/6569)
- chore(tests): fix daemon verbosity test on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6582](https://togithub.com/vercel/turbo/pull/6582)
- chore(tests): fix absolute path warnings test on windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6564](https://togithub.com/vercel/turbo/pull/6564)
- chore: hyphenate filenames isntead of underscore by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6595](https://togithub.com/vercel/turbo/pull/6595)
- fix: ensure cache is done writing before exit by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6603](https://togithub.com/vercel/turbo/pull/6603)
- feat(releases): update turborepo-release.yml by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6611](https://togithub.com/vercel/turbo/pull/6611)
- chore(tests): remove hardcoded packageManager when running examples
tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6615](https://togithub.com/vercel/turbo/pull/6615)
- fix: Hard error on spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6596](https://togithub.com/vercel/turbo/pull/6596)
- fix(Turborepo): Handle windows absolute paths in global dependencies
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6608](https://togithub.com/vercel/turbo/pull/6608)
- fix(tests): account for .cmd extension on npm binary in Rust codepath
tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6604](https://togithub.com/vercel/turbo/pull/6604)
- fix(release): correct excludes label by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6623](https://togithub.com/vercel/turbo/pull/6623)
- fix: second granularity by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6606](https://togithub.com/vercel/turbo/pull/6606)
- feat: add read only remote cache by
[@&#8203;maschwenk](https://togithub.com/maschwenk) in
[https://github.com/vercel/turbo/pull/6624](https://togithub.com/vercel/turbo/pull/6624)
- fix: look for unix based project paths by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6609](https://togithub.com/vercel/turbo/pull/6609)
- fix(tests): account for cmd extensions in more tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6628](https://togithub.com/vercel/turbo/pull/6628)
- Drop nonsensical(?) tests? by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6632](https://togithub.com/vercel/turbo/pull/6632)
- fix(turborepo): make linked installs test pass on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6477](https://togithub.com/vercel/turbo/pull/6477)
- chore: update lockfile after workspace deletion by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6637](https://togithub.com/vercel/turbo/pull/6637)
- fix(Turborepo): Remove unused globwalk code, fix multiple doublestars
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6633](https://togithub.com/vercel/turbo/pull/6633)
- feat: add package discovery trait and a few discovery strategies by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6275](https://togithub.com/vercel/turbo/pull/6275)
- chore: use parent() method instead of .. directory traversal by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6635](https://togithub.com/vercel/turbo/pull/6635)
- yarn-with-yarn workspace name by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6647](https://togithub.com/vercel/turbo/pull/6647)
- refactor: adjust test timeouts to avoid flaky test on windows by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6638](https://togithub.com/vercel/turbo/pull/6638)
- chore: reduce sleep length in test cases by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6640](https://togithub.com/vercel/turbo/pull/6640)
- chore: fix rust compile warnings by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6655](https://togithub.com/vercel/turbo/pull/6655)
- chore: add a helper script to replace turbo config in main fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6652](https://togithub.com/vercel/turbo/pull/6652)
- fix: Fixed cache restoration for an entry with a very long name by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6662](https://togithub.com/vercel/turbo/pull/6662)
- fix: clean paths and use package path instead of package.json path by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6649](https://togithub.com/vercel/turbo/pull/6649)
- Revert "chore: reduce sleep length in test cases
([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6665](https://togithub.com/vercel/turbo/pull/6665)
- chore(tests): write a test showing the behavior of gitignored inputs
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6669](https://togithub.com/vercel/turbo/pull/6669)
- chore(tests): add test to check that root tasks can depend on
workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6671](https://togithub.com/vercel/turbo/pull/6671)
- chore: consolidate setup scripts for integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6641](https://togithub.com/vercel/turbo/pull/6641)
- fix(tests): fix unit tests that rely on examples by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6679](https://togithub.com/vercel/turbo/pull/6679)
- chore(tests): remove duplicate setup_git script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6680](https://togithub.com/vercel/turbo/pull/6680)
- chore(tests): setup package manager consistently for
example/integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6681](https://togithub.com/vercel/turbo/pull/6681)
- chore(tests): make fixture copying consistent by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6683](https://togithub.com/vercel/turbo/pull/6683)
- chore(tests): Enable corepack in local directory for integration tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6684](https://togithub.com/vercel/turbo/pull/6684)
- chore(tests): delete feature where
[@&#8203;canary](https://togithub.com/canary) turbo is used by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6685](https://togithub.com/vercel/turbo/pull/6685)
- fix(tests): update rust unit tests that rely on with-yarn fixture by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6693](https://togithub.com/vercel/turbo/pull/6693)
- chore(daemon) disable daemon workspace discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6695](https://togithub.com/vercel/turbo/pull/6695)
- chore: use path library read_to_string for better error message by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6694](https://togithub.com/vercel/turbo/pull/6694)
- chore: make go-fallback confilct with remote cache read only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6702](https://togithub.com/vercel/turbo/pull/6702)

#### New Contributors

- [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first
contribution in
[https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
- [@&#8203;fa-901](https://togithub.com/fa-901) made their first
contribution in
[https://github.com/vercel/turbo/pull/5444](https://togithub.com/vercel/turbo/pull/5444)
- [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first
contribution in
[https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
- [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their
first contribution in
[https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
- [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first
contribution in
[https://github.com/vercel/turbo/pull/6427](https://togithub.com/vercel/turbo/pull/6427)
- [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first
contribution in
[https://github.com/vercel/turbo/pull/6425](https://togithub.com/vercel/turbo/pull/6425)
- [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first
contribution in
[https://github.com/vercel/turbo/pull/6506](https://togithub.com/vercel/turbo/pull/6506)
- [@&#8203;dallonf](https://togithub.com/dallonf) made their first
contribution in
[https://github.com/vercel/turbo/pull/6522](https://togithub.com/vercel/turbo/pull/6522)
- [@&#8203;m1heng](https://togithub.com/m1heng) made their first
contribution in
[https://github.com/vercel/turbo/pull/6579](https://togithub.com/vercel/turbo/pull/6579)
- [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their
first contribution in
[https://github.com/vercel/turbo/pull/6321](https://togithub.com/vercel/turbo/pull/6321)
- [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their
first contribution in
[https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh pushed a commit to fuxingloh/crypto-frontmatter that referenced this pull request Dec 11, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.10.16` ->
`^1.11.1`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.1) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.1?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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

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

#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

- feat(turborepo): Spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
- fix: bias towards graph walk cancel over continue by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
- feat: hook up task execution tracking by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
- docs: Add the enabled config to turbo.json schema by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
- chore: fix example test setup so output matches by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
- fix: Respect color config for runcache output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
- refactor(auth): Removed closure in login functions by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
- chore(test): validate that pruning carries remoteCache fields
correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
- chore: Removed run stub feature by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
- fix(Turborepo): Drop incorrect deprecation notice by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
- chore(test): Add test to ensure env var changes task hash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
- chore: run summary prefactor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
- refactor: Removed closure from logout by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
- chore: Added panic handler to turborepo by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
- refactor: Moving from anyhow to thiserror part 1 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
- Clearer cache spinner message. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
- fix: use cprintln instead of warn when no tasks are run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
- fix: don't escape html when serializing dry runs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
- fix(Turborepo): Ensure process manager stays closed by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
- fix(Turborepo): escape colons in log filenames by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6300](https://togithub.com/vercel/turbo/pull/6300)
- feat: Hook up Run summary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6282](https://togithub.com/vercel/turbo/pull/6282)
- port(Turborepo): Port escaping globs sent via rust daemon client by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6295](https://togithub.com/vercel/turbo/pull/6295)
- feat(Turborepo): Validation checks for task names by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6293](https://togithub.com/vercel/turbo/pull/6293)
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6303](https://togithub.com/vercel/turbo/pull/6303)
- fix(lockfiles) trailing zero yaml parse by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6296](https://togithub.com/vercel/turbo/pull/6296)
- Chore/update teamname by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[https://github.com/vercel/turbo/pull/6317](https://togithub.com/vercel/turbo/pull/6317)
- build(cargo): skip external build script with rust-analyzer by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6325](https://togithub.com/vercel/turbo/pull/6325)
- fix: global hash divergence for empty version strings by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6319](https://togithub.com/vercel/turbo/pull/6319)
- fix: explicitly set turbo command name by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6332](https://togithub.com/vercel/turbo/pull/6332)
- fix: task definition serialization by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6306](https://togithub.com/vercel/turbo/pull/6306)
- fix: Empty command returns help text and not error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6340](https://togithub.com/vercel/turbo/pull/6340)
- feat: add support for --parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6339](https://togithub.com/vercel/turbo/pull/6339)
- fix(Turborepo): Drop root from calculation of in-scope workspaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6328](https://togithub.com/vercel/turbo/pull/6328)
- feat(turbopack-ecmascript): calculate import.meta.url as an absolute
path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6318](https://togithub.com/vercel/turbo/pull/6318)
- feat(Turborepo): Add more detail to a cookie error variant by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6349](https://togithub.com/vercel/turbo/pull/6349)
- fix(Turborepo): Bump x/net, go mod tidy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6355](https://togithub.com/vercel/turbo/pull/6355)
- fix(turbo-utils): correct typo on package.json on types field by
[@&#8203;stefanofa](https://togithub.com/stefanofa) in
[https://github.com/vercel/turbo/pull/6360](https://togithub.com/vercel/turbo/pull/6360)
- Triple chunk size heuristic by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6305](https://togithub.com/vercel/turbo/pull/6305)
- improve resolving performance by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6304](https://togithub.com/vercel/turbo/pull/6304)
- Devlow: refactor browser.ts by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/6286](https://togithub.com/vercel/turbo/pull/6286)
- make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6367](https://togithub.com/vercel/turbo/pull/6367)
- Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/6354](https://togithub.com/vercel/turbo/pull/6354)
- port(turborepo): Fixing API Client config tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6356](https://togithub.com/vercel/turbo/pull/6356)
- fix: use which for package manager binary discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6370](https://togithub.com/vercel/turbo/pull/6370)
- chore(tests): delete a mostly copy-pasted fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6366](https://togithub.com/vercel/turbo/pull/6366)
- refactor: Moving to thiserror part 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6273](https://togithub.com/vercel/turbo/pull/6273)
- refactor(turborepo): Changed cache misses to be a non-error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6369](https://togithub.com/vercel/turbo/pull/6369)
- fix: use correct command for package managers by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6372](https://togithub.com/vercel/turbo/pull/6372)
- chore(test): combine two fixtures for single package testing by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6374](https://togithub.com/vercel/turbo/pull/6374)
- build: Update `swc_core` to `v0.86.40` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/6343](https://togithub.com/vercel/turbo/pull/6343)
- feat: forward signals to process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6357](https://togithub.com/vercel/turbo/pull/6357)
- fix: Move package manager tests to turbo info by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6373](https://togithub.com/vercel/turbo/pull/6373)
- port(turborepo): Analytics Client by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6315](https://togithub.com/vercel/turbo/pull/6315)
- fix(updater): specify latest for codemod by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6381](https://togithub.com/vercel/turbo/pull/6381)
- refactor(Turborepo): Move package graph to repository crate by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6375](https://togithub.com/vercel/turbo/pull/6375)
- fix: Dry Run Text Output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6380](https://togithub.com/vercel/turbo/pull/6380)
- feat(turbopack): support url rewrite behavior options by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6376](https://togithub.com/vercel/turbo/pull/6376)
- chore: fix clippy lints in tests by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6384](https://togithub.com/vercel/turbo/pull/6384)
- feat(turbopack-ecmascript): support relative url asset ref by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6386](https://togithub.com/vercel/turbo/pull/6386)
- chore(tests): replace fixture with a fixture config by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6391](https://togithub.com/vercel/turbo/pull/6391)
- refactor and fix CssEmbed for url() by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6382](https://togithub.com/vercel/turbo/pull/6382)
- chore: update `update-informer` to 1.1 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[https://github.com/vercel/turbo/pull/5400](https://togithub.com/vercel/turbo/pull/5400)
- fix: kill process group instead of children by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6387](https://togithub.com/vercel/turbo/pull/6387)
- Update turbopack related labels by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[https://github.com/vercel/turbo/pull/6399](https://togithub.com/vercel/turbo/pull/6399)
- chore: prefactor for sending task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6383](https://togithub.com/vercel/turbo/pull/6383)
- improve count hash set edge case handling, fix negative bottom
connection counting by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6393](https://togithub.com/vercel/turbo/pull/6393)
- fix: add newline to graph output by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6397](https://togithub.com/vercel/turbo/pull/6397)
- fix(Turborepo): Sort env vars, include framework inference in task
summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6402](https://togithub.com/vercel/turbo/pull/6402)
- chore(tests): make test output assertions simpler by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6400](https://togithub.com/vercel/turbo/pull/6400)
- fix(Turborepo): Add suppressing logs line for new-only output mode by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6406](https://togithub.com/vercel/turbo/pull/6406)
- port: Fixing and refactoring integration tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6398](https://togithub.com/vercel/turbo/pull/6398)
- chore: Fix compilation warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6418](https://togithub.com/vercel/turbo/pull/6418)
- Port(Turborepo): Synthesize command for spaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6417](https://togithub.com/vercel/turbo/pull/6417)
- fix: Dry run output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6416](https://togithub.com/vercel/turbo/pull/6416)
- fix: unbreak main by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6423](https://togithub.com/vercel/turbo/pull/6423)
- port(Turborepo): Pass through args by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6422](https://togithub.com/vercel/turbo/pull/6422)
- fix(Turborepo): Fix error stutter, update tests to match on relevent
error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6421](https://togithub.com/vercel/turbo/pull/6421)
- port: Fixing run summary json output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6431](https://togithub.com/vercel/turbo/pull/6431)
- feat: send task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6419](https://togithub.com/vercel/turbo/pull/6419)
- chore: output absolute path warnings to stderr by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6434](https://togithub.com/vercel/turbo/pull/6434)
- port(Turborepo): Add summary error to match Go by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6438](https://togithub.com/vercel/turbo/pull/6438)
- port(Turborepo): Fix task dependencies integration tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6440](https://togithub.com/vercel/turbo/pull/6440)
- fix: match dependency ordering between rust/go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6443](https://togithub.com/vercel/turbo/pull/6443)
- fix: `--no-cache` flag was not working by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6444](https://togithub.com/vercel/turbo/pull/6444)
- Ensure daemon connection errors are non-fatal by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6445](https://togithub.com/vercel/turbo/pull/6445)
- fix: Cleaning up duration printing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6447](https://togithub.com/vercel/turbo/pull/6447)
- fix: displaying stdout/stderr with errors-only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6446](https://togithub.com/vercel/turbo/pull/6446)
- port(Turborepo): Migrate inference tests to grep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6437](https://togithub.com/vercel/turbo/pull/6437)
- fix: rust spaces auth requirements by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6453](https://togithub.com/vercel/turbo/pull/6453)
- chore: add test for turbo bin by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6451](https://togithub.com/vercel/turbo/pull/6451)
- adjust tracing for run finalization by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6410](https://togithub.com/vercel/turbo/pull/6410)
- chore(test): Remove single/double quotes in npm scripts in fixtures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6459](https://togithub.com/vercel/turbo/pull/6459)
- chore: simplify inference test grep commands by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6455](https://togithub.com/vercel/turbo/pull/6455)
- feat(Turborepo): Send logging to stderr by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6462](https://togithub.com/vercel/turbo/pull/6462)
- chore(test): Remove more single/double quotes in npm script fixtures
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6464](https://togithub.com/vercel/turbo/pull/6464)
- fix(Turborepo): Update missing-tasks.t to pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6467](https://togithub.com/vercel/turbo/pull/6467)
- fix(Turborepo): Make verbosity test pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6465](https://togithub.com/vercel/turbo/pull/6465)
- chore(ci): launch prysk tests with JS instead of bash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6463](https://togithub.com/vercel/turbo/pull/6463)
- chore(test): remove another single quoted echo arg by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6468](https://togithub.com/vercel/turbo/pull/6468)
- fix: Check cache on dry run by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6466](https://togithub.com/vercel/turbo/pull/6466)
- fix(Turborepo): Fix dry-json/monorepo.t by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6470](https://togithub.com/vercel/turbo/pull/6470)
- fix: dry run missing tasks with no script by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6473](https://togithub.com/vercel/turbo/pull/6473)
- port(Turborepo): Add github prefixing in Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6471](https://togithub.com/vercel/turbo/pull/6471)
- fix: forward powershell style env casing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6485](https://togithub.com/vercel/turbo/pull/6485)
- fix: fixup unit tests that use the basic example by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6517](https://togithub.com/vercel/turbo/pull/6517)
- fix: Deadlock with closing process manager by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6516](https://togithub.com/vercel/turbo/pull/6516)
- chore(tests): delete e2e tests for turbo prune by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6515](https://togithub.com/vercel/turbo/pull/6515)
- chore: clean up run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6519](https://togithub.com/vercel/turbo/pull/6519)
- feat: make rust codepath opt-out by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6420](https://togithub.com/vercel/turbo/pull/6420)
- fix: run summary tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6532](https://togithub.com/vercel/turbo/pull/6532)
- fix: make spaces requests in parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6536](https://togithub.com/vercel/turbo/pull/6536)
- refactor: switch daemon version to be independent of turbo version by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6528](https://togithub.com/vercel/turbo/pull/6528)
- fix: analytics closing when all senders drop by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6542](https://togithub.com/vercel/turbo/pull/6542)
- feat: add a go fallback flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6540](https://togithub.com/vercel/turbo/pull/6540)
- chore(ci): delete e2e tests covering monorepo root in subdir by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6565](https://togithub.com/vercel/turbo/pull/6565)
- fix: treat missing and empty scripts the same by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6552](https://togithub.com/vercel/turbo/pull/6552)
- test(gen): add generator command tests by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6569](https://togithub.com/vercel/turbo/pull/6569)
- chore(tests): fix daemon verbosity test on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6582](https://togithub.com/vercel/turbo/pull/6582)
- chore(tests): fix absolute path warnings test on windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6564](https://togithub.com/vercel/turbo/pull/6564)
- chore: hyphenate filenames isntead of underscore by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6595](https://togithub.com/vercel/turbo/pull/6595)
- fix: ensure cache is done writing before exit by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6603](https://togithub.com/vercel/turbo/pull/6603)
- feat(releases): update turborepo-release.yml by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6611](https://togithub.com/vercel/turbo/pull/6611)
- chore(tests): remove hardcoded packageManager when running examples
tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6615](https://togithub.com/vercel/turbo/pull/6615)
- fix: Hard error on spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6596](https://togithub.com/vercel/turbo/pull/6596)
- fix(Turborepo): Handle windows absolute paths in global dependencies
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6608](https://togithub.com/vercel/turbo/pull/6608)
- fix(tests): account for .cmd extension on npm binary in Rust codepath
tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6604](https://togithub.com/vercel/turbo/pull/6604)
- fix(release): correct excludes label by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6623](https://togithub.com/vercel/turbo/pull/6623)
- fix: second granularity by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6606](https://togithub.com/vercel/turbo/pull/6606)
- feat: add read only remote cache by
[@&#8203;maschwenk](https://togithub.com/maschwenk) in
[https://github.com/vercel/turbo/pull/6624](https://togithub.com/vercel/turbo/pull/6624)
- fix: look for unix based project paths by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6609](https://togithub.com/vercel/turbo/pull/6609)
- fix(tests): account for cmd extensions in more tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6628](https://togithub.com/vercel/turbo/pull/6628)
- Drop nonsensical(?) tests? by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6632](https://togithub.com/vercel/turbo/pull/6632)
- fix(turborepo): make linked installs test pass on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6477](https://togithub.com/vercel/turbo/pull/6477)
- chore: update lockfile after workspace deletion by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6637](https://togithub.com/vercel/turbo/pull/6637)
- fix(Turborepo): Remove unused globwalk code, fix multiple doublestars
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6633](https://togithub.com/vercel/turbo/pull/6633)
- feat: add package discovery trait and a few discovery strategies by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6275](https://togithub.com/vercel/turbo/pull/6275)
- chore: use parent() method instead of .. directory traversal by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6635](https://togithub.com/vercel/turbo/pull/6635)
- yarn-with-yarn workspace name by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6647](https://togithub.com/vercel/turbo/pull/6647)
- refactor: adjust test timeouts to avoid flaky test on windows by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6638](https://togithub.com/vercel/turbo/pull/6638)
- chore: reduce sleep length in test cases by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6640](https://togithub.com/vercel/turbo/pull/6640)
- chore: fix rust compile warnings by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6655](https://togithub.com/vercel/turbo/pull/6655)
- chore: add a helper script to replace turbo config in main fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6652](https://togithub.com/vercel/turbo/pull/6652)
- fix: Fixed cache restoration for an entry with a very long name by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6662](https://togithub.com/vercel/turbo/pull/6662)
- fix: clean paths and use package path instead of package.json path by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6649](https://togithub.com/vercel/turbo/pull/6649)
- Revert "chore: reduce sleep length in test cases
([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6665](https://togithub.com/vercel/turbo/pull/6665)
- chore(tests): write a test showing the behavior of gitignored inputs
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6669](https://togithub.com/vercel/turbo/pull/6669)
- chore(tests): add test to check that root tasks can depend on
workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6671](https://togithub.com/vercel/turbo/pull/6671)
- chore: consolidate setup scripts for integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6641](https://togithub.com/vercel/turbo/pull/6641)
- fix(tests): fix unit tests that rely on examples by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6679](https://togithub.com/vercel/turbo/pull/6679)
- chore(tests): remove duplicate setup_git script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6680](https://togithub.com/vercel/turbo/pull/6680)
- chore(tests): setup package manager consistently for
example/integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6681](https://togithub.com/vercel/turbo/pull/6681)
- chore(tests): make fixture copying consistent by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6683](https://togithub.com/vercel/turbo/pull/6683)
- chore(tests): Enable corepack in local directory for integration tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6684](https://togithub.com/vercel/turbo/pull/6684)
- chore(tests): delete feature where
[@&#8203;canary](https://togithub.com/canary) turbo is used by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6685](https://togithub.com/vercel/turbo/pull/6685)
- fix(tests): update rust unit tests that rely on with-yarn fixture by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6693](https://togithub.com/vercel/turbo/pull/6693)
- chore(daemon) disable daemon workspace discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6695](https://togithub.com/vercel/turbo/pull/6695)
- chore: use path library read_to_string for better error message by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6694](https://togithub.com/vercel/turbo/pull/6694)
- chore: make go-fallback confilct with remote cache read only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6702](https://togithub.com/vercel/turbo/pull/6702)

#### New Contributors

- [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first
contribution in
[https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
- [@&#8203;fa-901](https://togithub.com/fa-901) made their first
contribution in
[https://github.com/vercel/turbo/pull/5444](https://togithub.com/vercel/turbo/pull/5444)
- [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first
contribution in
[https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
- [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their
first contribution in
[https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
- [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first
contribution in
[https://github.com/vercel/turbo/pull/6427](https://togithub.com/vercel/turbo/pull/6427)
- [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first
contribution in
[https://github.com/vercel/turbo/pull/6425](https://togithub.com/vercel/turbo/pull/6425)
- [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first
contribution in
[https://github.com/vercel/turbo/pull/6506](https://togithub.com/vercel/turbo/pull/6506)
- [@&#8203;dallonf](https://togithub.com/dallonf) made their first
contribution in
[https://github.com/vercel/turbo/pull/6522](https://togithub.com/vercel/turbo/pull/6522)
- [@&#8203;m1heng](https://togithub.com/m1heng) made their first
contribution in
[https://github.com/vercel/turbo/pull/6579](https://togithub.com/vercel/turbo/pull/6579)
- [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their
first contribution in
[https://github.com/vercel/turbo/pull/6321](https://togithub.com/vercel/turbo/pull/6321)
- [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their
first contribution in
[https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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

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

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Dec 16, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.11.1` -> `1.11.2`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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



#### What's Changed

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

-   feat(turborepo): Spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
-   fix: bias towards graph walk cancel over continue by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
-   feat: hook up task execution tracking by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
-   docs: Add the enabled config to turbo.json schema by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
-   chore: fix example test setup so output matches by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
-   fix: Respect color config for runcache output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
-   refactor(auth): Removed closure in login functions by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
-   chore(test): validate that pruning carries remoteCache fields correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
-   chore: Removed run stub feature by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
-   fix(Turborepo): Drop incorrect deprecation notice by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
-   chore(test): Add test to ensure env var changes task hash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
-   chore: run summary prefactor by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
-   refactor: Removed closure from logout by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
-   chore: Added panic handler to turborepo by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
-   refactor: Moving from anyhow to thiserror part 1 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
-   Clearer cache spinner message. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
-   fix: use cprintln instead of warn when no tasks are run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
-   fix: don't escape html when serializing dry runs by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
-   fix(Turborepo): Ensure process manager stays closed by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
-   fix(Turborepo): escape colons in log filenames by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6300](https://togithub.com/vercel/turbo/pull/6300)
-   feat: Hook up Run summary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6282](https://togithub.com/vercel/turbo/pull/6282)
-   port(Turborepo): Port escaping globs sent via rust daemon client by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6295](https://togithub.com/vercel/turbo/pull/6295)
-   feat(Turborepo): Validation checks for task names by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6293](https://togithub.com/vercel/turbo/pull/6293)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6303](https://togithub.com/vercel/turbo/pull/6303)
-   fix(lockfiles) trailing zero yaml parse by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6296](https://togithub.com/vercel/turbo/pull/6296)
-   Chore/update teamname by [@&#8203;padmaia](https://togithub.com/padmaia) in [https://github.com/vercel/turbo/pull/6317](https://togithub.com/vercel/turbo/pull/6317)
-   build(cargo): skip external build script with rust-analyzer by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6325](https://togithub.com/vercel/turbo/pull/6325)
-   fix: global hash divergence for empty version strings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6319](https://togithub.com/vercel/turbo/pull/6319)
-   fix: explicitly set turbo command name by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6332](https://togithub.com/vercel/turbo/pull/6332)
-   fix: task definition serialization by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6306](https://togithub.com/vercel/turbo/pull/6306)
-   fix: Empty command returns help text and not error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6340](https://togithub.com/vercel/turbo/pull/6340)
-   feat: add support for --parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6339](https://togithub.com/vercel/turbo/pull/6339)
-   fix(Turborepo): Drop root from calculation of in-scope workspaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6328](https://togithub.com/vercel/turbo/pull/6328)
-   feat(turbopack-ecmascript): calculate import.meta.url as an absolute path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6318](https://togithub.com/vercel/turbo/pull/6318)
-   feat(Turborepo): Add more detail to a cookie error variant by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6349](https://togithub.com/vercel/turbo/pull/6349)
-   fix(Turborepo): Bump x/net, go mod tidy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6355](https://togithub.com/vercel/turbo/pull/6355)
-   fix(turbo-utils): correct typo on package.json on types field by [@&#8203;stefanofa](https://togithub.com/stefanofa) in [https://github.com/vercel/turbo/pull/6360](https://togithub.com/vercel/turbo/pull/6360)
-   Triple chunk size heuristic by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6305](https://togithub.com/vercel/turbo/pull/6305)
-   improve resolving performance by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6304](https://togithub.com/vercel/turbo/pull/6304)
-   Devlow: refactor browser.ts by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [https://github.com/vercel/turbo/pull/6286](https://togithub.com/vercel/turbo/pull/6286)
-   make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6367](https://togithub.com/vercel/turbo/pull/6367)
-   Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by [@&#8203;jridgewell](https://togithub.com/jridgewell) in [https://github.com/vercel/turbo/pull/6354](https://togithub.com/vercel/turbo/pull/6354)
-   port(turborepo): Fixing API Client config tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6356](https://togithub.com/vercel/turbo/pull/6356)
-   fix: use which for package manager binary discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6370](https://togithub.com/vercel/turbo/pull/6370)
-   chore(tests): delete a mostly copy-pasted fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6366](https://togithub.com/vercel/turbo/pull/6366)
-   refactor: Moving to thiserror part 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6273](https://togithub.com/vercel/turbo/pull/6273)
-   refactor(turborepo): Changed cache misses to be a non-error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6369](https://togithub.com/vercel/turbo/pull/6369)
-   fix: use correct command for package managers by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6372](https://togithub.com/vercel/turbo/pull/6372)
-   chore(test): combine two fixtures for single package testing by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6374](https://togithub.com/vercel/turbo/pull/6374)
-   build: Update `swc_core` to `v0.86.40` by [@&#8203;kdy1](https://togithub.com/kdy1) in [https://github.com/vercel/turbo/pull/6343](https://togithub.com/vercel/turbo/pull/6343)
-   feat: forward signals to process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6357](https://togithub.com/vercel/turbo/pull/6357)
-   fix: Move package manager tests to turbo info by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6373](https://togithub.com/vercel/turbo/pull/6373)
-   port(turborepo): Analytics Client by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6315](https://togithub.com/vercel/turbo/pull/6315)
-   fix(updater): specify latest for codemod by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6381](https://togithub.com/vercel/turbo/pull/6381)
-   refactor(Turborepo): Move package graph to repository crate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6375](https://togithub.com/vercel/turbo/pull/6375)
-   fix: Dry Run Text Output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6380](https://togithub.com/vercel/turbo/pull/6380)
-   feat(turbopack): support url rewrite behavior options by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6376](https://togithub.com/vercel/turbo/pull/6376)
-   chore: fix clippy lints in tests by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6384](https://togithub.com/vercel/turbo/pull/6384)
-   feat(turbopack-ecmascript): support relative url asset ref by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6386](https://togithub.com/vercel/turbo/pull/6386)
-   chore(tests): replace fixture with a fixture config by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6391](https://togithub.com/vercel/turbo/pull/6391)
-   refactor and fix CssEmbed for url() by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6382](https://togithub.com/vercel/turbo/pull/6382)
-   chore: update `update-informer` to 1.1 by [@&#8203;mgrachev](https://togithub.com/mgrachev) in [https://github.com/vercel/turbo/pull/5400](https://togithub.com/vercel/turbo/pull/5400)
-   fix: kill process group instead of children by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6387](https://togithub.com/vercel/turbo/pull/6387)
-   Update turbopack related labels by [@&#8203;padmaia](https://togithub.com/padmaia) in [https://github.com/vercel/turbo/pull/6399](https://togithub.com/vercel/turbo/pull/6399)
-   chore: prefactor for sending task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6383](https://togithub.com/vercel/turbo/pull/6383)
-   improve count hash set edge case handling, fix negative bottom connection counting by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6393](https://togithub.com/vercel/turbo/pull/6393)
-   fix: add newline to graph output by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6397](https://togithub.com/vercel/turbo/pull/6397)
-   fix(Turborepo): Sort env vars, include framework inference in task summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6402](https://togithub.com/vercel/turbo/pull/6402)
-   chore(tests): make test output assertions simpler by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6400](https://togithub.com/vercel/turbo/pull/6400)
-   fix(Turborepo): Add suppressing logs line for new-only output mode by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6406](https://togithub.com/vercel/turbo/pull/6406)
-   port: Fixing and refactoring integration tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6398](https://togithub.com/vercel/turbo/pull/6398)
-   chore: Fix compilation warnings by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6418](https://togithub.com/vercel/turbo/pull/6418)
-   Port(Turborepo): Synthesize command for spaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6417](https://togithub.com/vercel/turbo/pull/6417)
-   fix: Dry run output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6416](https://togithub.com/vercel/turbo/pull/6416)
-   fix: unbreak main by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6423](https://togithub.com/vercel/turbo/pull/6423)
-   port(Turborepo): Pass through args by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6422](https://togithub.com/vercel/turbo/pull/6422)
-   fix(Turborepo): Fix error stutter, update tests to match on relevent error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6421](https://togithub.com/vercel/turbo/pull/6421)
-   port: Fixing run summary json output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6431](https://togithub.com/vercel/turbo/pull/6431)
-   feat: send task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6419](https://togithub.com/vercel/turbo/pull/6419)
-   chore: output absolute path warnings to stderr by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6434](https://togithub.com/vercel/turbo/pull/6434)
-   port(Turborepo): Add summary error to match Go by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6438](https://togithub.com/vercel/turbo/pull/6438)
-   port(Turborepo): Fix task dependencies integration tests by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6440](https://togithub.com/vercel/turbo/pull/6440)
-   fix: match dependency ordering between rust/go by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6443](https://togithub.com/vercel/turbo/pull/6443)
-   fix: `--no-cache` flag was not working by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6444](https://togithub.com/vercel/turbo/pull/6444)
-   Ensure daemon connection errors are non-fatal by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6445](https://togithub.com/vercel/turbo/pull/6445)
-   fix: Cleaning up duration printing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6447](https://togithub.com/vercel/turbo/pull/6447)
-   fix: displaying stdout/stderr with errors-only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6446](https://togithub.com/vercel/turbo/pull/6446)
-   port(Turborepo): Migrate inference tests to grep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6437](https://togithub.com/vercel/turbo/pull/6437)
-   fix: rust spaces auth requirements by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6453](https://togithub.com/vercel/turbo/pull/6453)
-   chore: add test for turbo bin by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6451](https://togithub.com/vercel/turbo/pull/6451)
-   adjust tracing for run finalization by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6410](https://togithub.com/vercel/turbo/pull/6410)
-   chore(test): Remove single/double quotes in npm scripts in fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6459](https://togithub.com/vercel/turbo/pull/6459)
-   chore: simplify inference test grep commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6455](https://togithub.com/vercel/turbo/pull/6455)
-   feat(Turborepo): Send logging to stderr by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6462](https://togithub.com/vercel/turbo/pull/6462)
-   chore(test): Remove more single/double quotes in npm script fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6464](https://togithub.com/vercel/turbo/pull/6464)
-   fix(Turborepo): Update missing-tasks.t to pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6467](https://togithub.com/vercel/turbo/pull/6467)
-   fix(Turborepo): Make verbosity test pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6465](https://togithub.com/vercel/turbo/pull/6465)
-   chore(ci): launch prysk tests with JS instead of bash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6463](https://togithub.com/vercel/turbo/pull/6463)
-   chore(test): remove another single quoted echo arg by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6468](https://togithub.com/vercel/turbo/pull/6468)
-   fix: Check cache on dry run by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6466](https://togithub.com/vercel/turbo/pull/6466)
-   fix(Turborepo): Fix dry-json/monorepo.t by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6470](https://togithub.com/vercel/turbo/pull/6470)
-   fix: dry run missing tasks with no script by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6473](https://togithub.com/vercel/turbo/pull/6473)
-   port(Turborepo): Add github prefixing in Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6471](https://togithub.com/vercel/turbo/pull/6471)
-   fix: forward powershell style env casing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6485](https://togithub.com/vercel/turbo/pull/6485)
-   fix: fixup unit tests that use the basic example by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6517](https://togithub.com/vercel/turbo/pull/6517)
-   fix: Deadlock with closing process manager by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6516](https://togithub.com/vercel/turbo/pull/6516)
-   chore(tests): delete e2e tests for turbo prune by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6515](https://togithub.com/vercel/turbo/pull/6515)
-   chore: clean up run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6519](https://togithub.com/vercel/turbo/pull/6519)
-   feat: make rust codepath opt-out by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6420](https://togithub.com/vercel/turbo/pull/6420)
-   fix: run summary tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6532](https://togithub.com/vercel/turbo/pull/6532)
-   fix: make spaces requests in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6536](https://togithub.com/vercel/turbo/pull/6536)
-   refactor: switch daemon version to be independent of turbo version by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6528](https://togithub.com/vercel/turbo/pull/6528)
-   fix: analytics closing when all senders drop by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6542](https://togithub.com/vercel/turbo/pull/6542)
-   feat: add a go fallback flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6540](https://togithub.com/vercel/turbo/pull/6540)
-   chore(ci): delete e2e tests covering monorepo root in subdir by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6565](https://togithub.com/vercel/turbo/pull/6565)
-   fix: treat missing and empty scripts the same by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6552](https://togithub.com/vercel/turbo/pull/6552)
-   test(gen): add generator command tests by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6569](https://togithub.com/vercel/turbo/pull/6569)
-   chore(tests): fix daemon verbosity test on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6582](https://togithub.com/vercel/turbo/pull/6582)
-   chore(tests): fix absolute path warnings test on windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6564](https://togithub.com/vercel/turbo/pull/6564)
-   chore: hyphenate filenames isntead of underscore by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6595](https://togithub.com/vercel/turbo/pull/6595)
-   fix: ensure cache is done writing before exit by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6603](https://togithub.com/vercel/turbo/pull/6603)
-   feat(releases): update turborepo-release.yml by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6611](https://togithub.com/vercel/turbo/pull/6611)
-   chore(tests): remove hardcoded packageManager when running examples tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6615](https://togithub.com/vercel/turbo/pull/6615)
-   fix: Hard error on spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6596](https://togithub.com/vercel/turbo/pull/6596)
-   fix(Turborepo): Handle windows absolute paths in global dependencies by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6608](https://togithub.com/vercel/turbo/pull/6608)
-   fix(tests): account for .cmd extension on npm binary in Rust codepath tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6604](https://togithub.com/vercel/turbo/pull/6604)
-   fix(release): correct excludes label by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6623](https://togithub.com/vercel/turbo/pull/6623)
-   fix: second granularity by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6606](https://togithub.com/vercel/turbo/pull/6606)
-   feat: add read only remote cache by [@&#8203;maschwenk](https://togithub.com/maschwenk)  in [https://github.com/vercel/turbo/pull/6624](https://togithub.com/vercel/turbo/pull/6624)
-   fix: look for unix based project paths by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6609](https://togithub.com/vercel/turbo/pull/6609)
-   fix(tests): account for cmd extensions in more tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6628](https://togithub.com/vercel/turbo/pull/6628)
-   Drop nonsensical(?) tests? by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6632](https://togithub.com/vercel/turbo/pull/6632)
-   fix(turborepo): make linked installs test pass on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6477](https://togithub.com/vercel/turbo/pull/6477)
-   chore: update lockfile after workspace deletion by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6637](https://togithub.com/vercel/turbo/pull/6637)
-   fix(Turborepo): Remove unused globwalk code, fix multiple doublestars by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6633](https://togithub.com/vercel/turbo/pull/6633)
-   feat: add package discovery trait and a few discovery strategies by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6275](https://togithub.com/vercel/turbo/pull/6275)
-   chore: use parent() method instead of .. directory traversal by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6635](https://togithub.com/vercel/turbo/pull/6635)
-   yarn-with-yarn workspace name by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6647](https://togithub.com/vercel/turbo/pull/6647)
-   refactor: adjust test timeouts to avoid flaky test on windows by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6638](https://togithub.com/vercel/turbo/pull/6638)
-   chore: reduce sleep length in test cases by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6640](https://togithub.com/vercel/turbo/pull/6640)
-   chore: fix rust compile warnings by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6655](https://togithub.com/vercel/turbo/pull/6655)
-   chore: add a helper script to replace turbo config in main fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6652](https://togithub.com/vercel/turbo/pull/6652)
-   fix: Fixed cache restoration for an entry with a very long name by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6662](https://togithub.com/vercel/turbo/pull/6662)
-   fix: clean paths and use package path instead of package.json path by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6649](https://togithub.com/vercel/turbo/pull/6649)
-   Revert "chore: reduce sleep length in test cases ([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6665](https://togithub.com/vercel/turbo/pull/6665)
-   chore(tests): write a test showing the behavior of gitignored inputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6669](https://togithub.com/vercel/turbo/pull/6669)
-   chore(tests): add test to check that root tasks can depend on workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6671](https://togithub.com/vercel/turbo/pull/6671)
-   chore: consolidate setup scripts for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6641](https://togithub.com/vercel/turbo/pull/6641)
-   fix(tests): fix unit tests that rely on examples by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6679](https://togithub.com/vercel/turbo/pull/6679)
-   chore(tests): remove duplicate setup_git script by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6680](https://togithub.com/vercel/turbo/pull/6680)
-   chore(tests): setup package manager consistently for example/integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6681](https://togithub.com/vercel/turbo/pull/6681)
-   chore(tests): make fixture copying consistent by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6683](https://togithub.com/vercel/turbo/pull/6683)
-   chore(tests): Enable corepack in local directory for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6684](https://togithub.com/vercel/turbo/pull/6684)
-   chore(tests): delete feature where [@&#8203;canary](https://togithub.com/canary) turbo is used by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6685](https://togithub.com/vercel/turbo/pull/6685)
-   fix(tests): update rust unit tests that rely on with-yarn fixture by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6693](https://togithub.com/vercel/turbo/pull/6693)
-   chore(daemon) disable daemon workspace discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6695](https://togithub.com/vercel/turbo/pull/6695)
-   chore: use path library read_to_string for better error message by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6694](https://togithub.com/vercel/turbo/pull/6694)
-   chore: make go-fallback confilct with remote cache read only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6702](https://togithub.com/vercel/turbo/pull/6702)

#### New Contributors

-   [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first contribution in [https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
-   [@&#8203;fa-901](https://togithub.com/fa-901) made their first contribution in [https://github.com/vercel/turbo/pull/5444](https://togithub.com/vercel/turbo/pull/5444)
-   [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first contribution in [https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
-   [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their first contribution in [https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
-   [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first contribution in [https://github.com/vercel/turbo/pull/6427](https://togithub.com/vercel/turbo/pull/6427)
-   [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first contribution in [https://github.com/vercel/turbo/pull/6425](https://togithub.com/vercel/turbo/pull/6425)
-   [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first contribution in [https://github.com/vercel/turbo/pull/6506](https://togithub.com/vercel/turbo/pull/6506)
-   [@&#8203;dallonf](https://togithub.com/dallonf) made their first contribution in [https://github.com/vercel/turbo/pull/6522](https://togithub.com/vercel/turbo/pull/6522)
-   [@&#8203;m1heng](https://togithub.com/m1heng) made their first contribution in [https://github.com/vercel/turbo/pull/6579](https://togithub.com/vercel/turbo/pull/6579)
-   [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their first contribution in [https://github.com/vercel/turbo/pull/6321](https://togithub.com/vercel/turbo/pull/6321)
-   [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their first contribution in [https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

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

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/X-oss-byte/Nextjs).
mergify bot pushed a commit to kinguru-io/kinguru-monorepo that referenced this pull request Dec 19, 2023
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`^1.10.16` -> `^1.11.2`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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



#### What's Changed

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

-   feat(turborepo): Spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
-   fix: bias towards graph walk cancel over continue by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
-   feat: hook up task execution tracking by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
-   docs: Add the enabled config to turbo.json schema by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
-   chore: fix example test setup so output matches by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
-   fix: Respect color config for runcache output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
-   refactor(auth): Removed closure in login functions by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
-   chore(test): validate that pruning carries remoteCache fields correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
-   chore: Removed run stub feature by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
-   fix(Turborepo): Drop incorrect deprecation notice by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
-   chore(test): Add test to ensure env var changes task hash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
-   chore: run summary prefactor by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
-   refactor: Removed closure from logout by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
-   chore: Added panic handler to turborepo by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
-   refactor: Moving from anyhow to thiserror part 1 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
-   Clearer cache spinner message. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
-   fix: use cprintln instead of warn when no tasks are run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
-   fix: don't escape html when serializing dry runs by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
-   fix(Turborepo): Ensure process manager stays closed by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
-   fix(Turborepo): escape colons in log filenames by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6300](https://togithub.com/vercel/turbo/pull/6300)
-   feat: Hook up Run summary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6282](https://togithub.com/vercel/turbo/pull/6282)
-   port(Turborepo): Port escaping globs sent via rust daemon client by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6295](https://togithub.com/vercel/turbo/pull/6295)
-   feat(Turborepo): Validation checks for task names by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6293](https://togithub.com/vercel/turbo/pull/6293)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6303](https://togithub.com/vercel/turbo/pull/6303)
-   fix(lockfiles) trailing zero yaml parse by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6296](https://togithub.com/vercel/turbo/pull/6296)
-   Chore/update teamname by [@&#8203;padmaia](https://togithub.com/padmaia) in [https://github.com/vercel/turbo/pull/6317](https://togithub.com/vercel/turbo/pull/6317)
-   build(cargo): skip external build script with rust-analyzer by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6325](https://togithub.com/vercel/turbo/pull/6325)
-   fix: global hash divergence for empty version strings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6319](https://togithub.com/vercel/turbo/pull/6319)
-   fix: explicitly set turbo command name by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6332](https://togithub.com/vercel/turbo/pull/6332)
-   fix: task definition serialization by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6306](https://togithub.com/vercel/turbo/pull/6306)
-   fix: Empty command returns help text and not error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6340](https://togithub.com/vercel/turbo/pull/6340)
-   feat: add support for --parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6339](https://togithub.com/vercel/turbo/pull/6339)
-   fix(Turborepo): Drop root from calculation of in-scope workspaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6328](https://togithub.com/vercel/turbo/pull/6328)
-   feat(turbopack-ecmascript): calculate import.meta.url as an absolute path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6318](https://togithub.com/vercel/turbo/pull/6318)
-   feat(Turborepo): Add more detail to a cookie error variant by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6349](https://togithub.com/vercel/turbo/pull/6349)
-   fix(Turborepo): Bump x/net, go mod tidy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6355](https://togithub.com/vercel/turbo/pull/6355)
-   fix(turbo-utils): correct typo on package.json on types field by [@&#8203;stefanofa](https://togithub.com/stefanofa) in [https://github.com/vercel/turbo/pull/6360](https://togithub.com/vercel/turbo/pull/6360)
-   Triple chunk size heuristic by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6305](https://togithub.com/vercel/turbo/pull/6305)
-   improve resolving performance by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6304](https://togithub.com/vercel/turbo/pull/6304)
-   Devlow: refactor browser.ts by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [https://github.com/vercel/turbo/pull/6286](https://togithub.com/vercel/turbo/pull/6286)
-   make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6367](https://togithub.com/vercel/turbo/pull/6367)
-   Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by [@&#8203;jridgewell](https://togithub.com/jridgewell) in [https://github.com/vercel/turbo/pull/6354](https://togithub.com/vercel/turbo/pull/6354)
-   port(turborepo): Fixing API Client config tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6356](https://togithub.com/vercel/turbo/pull/6356)
-   fix: use which for package manager binary discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6370](https://togithub.com/vercel/turbo/pull/6370)
-   chore(tests): delete a mostly copy-pasted fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6366](https://togithub.com/vercel/turbo/pull/6366)
-   refactor: Moving to thiserror part 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6273](https://togithub.com/vercel/turbo/pull/6273)
-   refactor(turborepo): Changed cache misses to be a non-error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6369](https://togithub.com/vercel/turbo/pull/6369)
-   fix: use correct command for package managers by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6372](https://togithub.com/vercel/turbo/pull/6372)
-   chore(test): combine two fixtures for single package testing by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6374](https://togithub.com/vercel/turbo/pull/6374)
-   build: Update `swc_core` to `v0.86.40` by [@&#8203;kdy1](https://togithub.com/kdy1) in [https://github.com/vercel/turbo/pull/6343](https://togithub.com/vercel/turbo/pull/6343)
-   feat: forward signals to process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6357](https://togithub.com/vercel/turbo/pull/6357)
-   fix: Move package manager tests to turbo info by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6373](https://togithub.com/vercel/turbo/pull/6373)
-   port(turborepo): Analytics Client by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6315](https://togithub.com/vercel/turbo/pull/6315)
-   fix(updater): specify latest for codemod by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6381](https://togithub.com/vercel/turbo/pull/6381)
-   refactor(Turborepo): Move package graph to repository crate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6375](https://togithub.com/vercel/turbo/pull/6375)
-   fix: Dry Run Text Output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6380](https://togithub.com/vercel/turbo/pull/6380)
-   feat(turbopack): support url rewrite behavior options by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6376](https://togithub.com/vercel/turbo/pull/6376)
-   chore: fix clippy lints in tests by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6384](https://togithub.com/vercel/turbo/pull/6384)
-   feat(turbopack-ecmascript): support relative url asset ref by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6386](https://togithub.com/vercel/turbo/pull/6386)
-   chore(tests): replace fixture with a fixture config by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6391](https://togithub.com/vercel/turbo/pull/6391)
-   refactor and fix CssEmbed for url() by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6382](https://togithub.com/vercel/turbo/pull/6382)
-   chore: update `update-informer` to 1.1 by [@&#8203;mgrachev](https://togithub.com/mgrachev) in [https://github.com/vercel/turbo/pull/5400](https://togithub.com/vercel/turbo/pull/5400)
-   fix: kill process group instead of children by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6387](https://togithub.com/vercel/turbo/pull/6387)
-   Update turbopack related labels by [@&#8203;padmaia](https://togithub.com/padmaia) in [https://github.com/vercel/turbo/pull/6399](https://togithub.com/vercel/turbo/pull/6399)
-   chore: prefactor for sending task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6383](https://togithub.com/vercel/turbo/pull/6383)
-   improve count hash set edge case handling, fix negative bottom connection counting by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6393](https://togithub.com/vercel/turbo/pull/6393)
-   fix: add newline to graph output by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6397](https://togithub.com/vercel/turbo/pull/6397)
-   fix(Turborepo): Sort env vars, include framework inference in task summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6402](https://togithub.com/vercel/turbo/pull/6402)
-   chore(tests): make test output assertions simpler by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6400](https://togithub.com/vercel/turbo/pull/6400)
-   fix(Turborepo): Add suppressing logs line for new-only output mode by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6406](https://togithub.com/vercel/turbo/pull/6406)
-   port: Fixing and refactoring integration tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6398](https://togithub.com/vercel/turbo/pull/6398)
-   chore: Fix compilation warnings by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6418](https://togithub.com/vercel/turbo/pull/6418)
-   Port(Turborepo): Synthesize command for spaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6417](https://togithub.com/vercel/turbo/pull/6417)
-   fix: Dry run output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6416](https://togithub.com/vercel/turbo/pull/6416)
-   fix: unbreak main by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6423](https://togithub.com/vercel/turbo/pull/6423)
-   port(Turborepo): Pass through args by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6422](https://togithub.com/vercel/turbo/pull/6422)
-   fix(Turborepo): Fix error stutter, update tests to match on relevent error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6421](https://togithub.com/vercel/turbo/pull/6421)
-   port: Fixing run summary json output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6431](https://togithub.com/vercel/turbo/pull/6431)
-   feat: send task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6419](https://togithub.com/vercel/turbo/pull/6419)
-   chore: output absolute path warnings to stderr by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6434](https://togithub.com/vercel/turbo/pull/6434)
-   port(Turborepo): Add summary error to match Go by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6438](https://togithub.com/vercel/turbo/pull/6438)
-   port(Turborepo): Fix task dependencies integration tests by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6440](https://togithub.com/vercel/turbo/pull/6440)
-   fix: match dependency ordering between rust/go by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6443](https://togithub.com/vercel/turbo/pull/6443)
-   fix: `--no-cache` flag was not working by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6444](https://togithub.com/vercel/turbo/pull/6444)
-   Ensure daemon connection errors are non-fatal by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6445](https://togithub.com/vercel/turbo/pull/6445)
-   fix: Cleaning up duration printing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6447](https://togithub.com/vercel/turbo/pull/6447)
-   fix: displaying stdout/stderr with errors-only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6446](https://togithub.com/vercel/turbo/pull/6446)
-   port(Turborepo): Migrate inference tests to grep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6437](https://togithub.com/vercel/turbo/pull/6437)
-   fix: rust spaces auth requirements by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6453](https://togithub.com/vercel/turbo/pull/6453)
-   chore: add test for turbo bin by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6451](https://togithub.com/vercel/turbo/pull/6451)
-   adjust tracing for run finalization by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6410](https://togithub.com/vercel/turbo/pull/6410)
-   chore(test): Remove single/double quotes in npm scripts in fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6459](https://togithub.com/vercel/turbo/pull/6459)
-   chore: simplify inference test grep commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6455](https://togithub.com/vercel/turbo/pull/6455)
-   feat(Turborepo): Send logging to stderr by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6462](https://togithub.com/vercel/turbo/pull/6462)
-   chore(test): Remove more single/double quotes in npm script fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6464](https://togithub.com/vercel/turbo/pull/6464)
-   fix(Turborepo): Update missing-tasks.t to pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6467](https://togithub.com/vercel/turbo/pull/6467)
-   fix(Turborepo): Make verbosity test pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6465](https://togithub.com/vercel/turbo/pull/6465)
-   chore(ci): launch prysk tests with JS instead of bash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6463](https://togithub.com/vercel/turbo/pull/6463)
-   chore(test): remove another single quoted echo arg by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6468](https://togithub.com/vercel/turbo/pull/6468)
-   fix: Check cache on dry run by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6466](https://togithub.com/vercel/turbo/pull/6466)
-   fix(Turborepo): Fix dry-json/monorepo.t by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6470](https://togithub.com/vercel/turbo/pull/6470)
-   fix: dry run missing tasks with no script by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6473](https://togithub.com/vercel/turbo/pull/6473)
-   port(Turborepo): Add github prefixing in Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6471](https://togithub.com/vercel/turbo/pull/6471)
-   fix: forward powershell style env casing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6485](https://togithub.com/vercel/turbo/pull/6485)
-   fix: fixup unit tests that use the basic example by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6517](https://togithub.com/vercel/turbo/pull/6517)
-   fix: Deadlock with closing process manager by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6516](https://togithub.com/vercel/turbo/pull/6516)
-   chore(tests): delete e2e tests for turbo prune by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6515](https://togithub.com/vercel/turbo/pull/6515)
-   chore: clean up run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6519](https://togithub.com/vercel/turbo/pull/6519)
-   feat: make rust codepath opt-out by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6420](https://togithub.com/vercel/turbo/pull/6420)
-   fix: run summary tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6532](https://togithub.com/vercel/turbo/pull/6532)
-   fix: make spaces requests in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6536](https://togithub.com/vercel/turbo/pull/6536)
-   refactor: switch daemon version to be independent of turbo version by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6528](https://togithub.com/vercel/turbo/pull/6528)
-   fix: analytics closing when all senders drop by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6542](https://togithub.com/vercel/turbo/pull/6542)
-   feat: add a go fallback flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6540](https://togithub.com/vercel/turbo/pull/6540)
-   chore(ci): delete e2e tests covering monorepo root in subdir by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6565](https://togithub.com/vercel/turbo/pull/6565)
-   fix: treat missing and empty scripts the same by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6552](https://togithub.com/vercel/turbo/pull/6552)
-   test(gen): add generator command tests by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6569](https://togithub.com/vercel/turbo/pull/6569)
-   chore(tests): fix daemon verbosity test on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6582](https://togithub.com/vercel/turbo/pull/6582)
-   chore(tests): fix absolute path warnings test on windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6564](https://togithub.com/vercel/turbo/pull/6564)
-   chore: hyphenate filenames isntead of underscore by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6595](https://togithub.com/vercel/turbo/pull/6595)
-   fix: ensure cache is done writing before exit by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6603](https://togithub.com/vercel/turbo/pull/6603)
-   feat(releases): update turborepo-release.yml by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6611](https://togithub.com/vercel/turbo/pull/6611)
-   chore(tests): remove hardcoded packageManager when running examples tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6615](https://togithub.com/vercel/turbo/pull/6615)
-   fix: Hard error on spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6596](https://togithub.com/vercel/turbo/pull/6596)
-   fix(Turborepo): Handle windows absolute paths in global dependencies by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6608](https://togithub.com/vercel/turbo/pull/6608)
-   fix(tests): account for .cmd extension on npm binary in Rust codepath tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6604](https://togithub.com/vercel/turbo/pull/6604)
-   fix(release): correct excludes label by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6623](https://togithub.com/vercel/turbo/pull/6623)
-   fix: second granularity by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6606](https://togithub.com/vercel/turbo/pull/6606)
-   feat: add read only remote cache by [@&#8203;maschwenk](https://togithub.com/maschwenk)  in [https://github.com/vercel/turbo/pull/6624](https://togithub.com/vercel/turbo/pull/6624)
-   fix: look for unix based project paths by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6609](https://togithub.com/vercel/turbo/pull/6609)
-   fix(tests): account for cmd extensions in more tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6628](https://togithub.com/vercel/turbo/pull/6628)
-   Drop nonsensical(?) tests? by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6632](https://togithub.com/vercel/turbo/pull/6632)
-   fix(turborepo): make linked installs test pass on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6477](https://togithub.com/vercel/turbo/pull/6477)
-   chore: update lockfile after workspace deletion by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6637](https://togithub.com/vercel/turbo/pull/6637)
-   fix(Turborepo): Remove unused globwalk code, fix multiple doublestars by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6633](https://togithub.com/vercel/turbo/pull/6633)
-   feat: add package discovery trait and a few discovery strategies by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6275](https://togithub.com/vercel/turbo/pull/6275)
-   chore: use parent() method instead of .. directory traversal by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6635](https://togithub.com/vercel/turbo/pull/6635)
-   yarn-with-yarn workspace name by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6647](https://togithub.com/vercel/turbo/pull/6647)
-   refactor: adjust test timeouts to avoid flaky test on windows by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6638](https://togithub.com/vercel/turbo/pull/6638)
-   chore: reduce sleep length in test cases by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6640](https://togithub.com/vercel/turbo/pull/6640)
-   chore: fix rust compile warnings by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6655](https://togithub.com/vercel/turbo/pull/6655)
-   chore: add a helper script to replace turbo config in main fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6652](https://togithub.com/vercel/turbo/pull/6652)
-   fix: Fixed cache restoration for an entry with a very long name by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6662](https://togithub.com/vercel/turbo/pull/6662)
-   fix: clean paths and use package path instead of package.json path by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6649](https://togithub.com/vercel/turbo/pull/6649)
-   Revert "chore: reduce sleep length in test cases ([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6665](https://togithub.com/vercel/turbo/pull/6665)
-   chore(tests): write a test showing the behavior of gitignored inputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6669](https://togithub.com/vercel/turbo/pull/6669)
-   chore(tests): add test to check that root tasks can depend on workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6671](https://togithub.com/vercel/turbo/pull/6671)
-   chore: consolidate setup scripts for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6641](https://togithub.com/vercel/turbo/pull/6641)
-   fix(tests): fix unit tests that rely on examples by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6679](https://togithub.com/vercel/turbo/pull/6679)
-   chore(tests): remove duplicate setup_git script by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6680](https://togithub.com/vercel/turbo/pull/6680)
-   chore(tests): setup package manager consistently for example/integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6681](https://togithub.com/vercel/turbo/pull/6681)
-   chore(tests): make fixture copying consistent by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6683](https://togithub.com/vercel/turbo/pull/6683)
-   chore(tests): Enable corepack in local directory for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6684](https://togithub.com/vercel/turbo/pull/6684)
-   chore(tests): delete feature where [@&#8203;canary](https://togithub.com/canary) turbo is used by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6685](https://togithub.com/vercel/turbo/pull/6685)
-   fix(tests): update rust unit tests that rely on with-yarn fixture by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6693](https://togithub.com/vercel/turbo/pull/6693)
-   chore(daemon) disable daemon workspace discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6695](https://togithub.com/vercel/turbo/pull/6695)
-   chore: use path library read_to_string for better error message by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6694](https://togithub.com/vercel/turbo/pull/6694)
-   chore: make go-fallback confilct with remote cache read only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6702](https://togithub.com/vercel/turbo/pull/6702)

#### New Contributors

-   [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first contribution in [https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
-   [@&#8203;fa-901](https://togithub.com/fa-901) made their first contribution in [https://github.com/vercel/turbo/pull/5444](https://togithub.com/vercel/turbo/pull/5444)
-   [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first contribution in [https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
-   [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their first contribution in [https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
-   [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first contribution in [https://github.com/vercel/turbo/pull/6427](https://togithub.com/vercel/turbo/pull/6427)
-   [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first contribution in [https://github.com/vercel/turbo/pull/6425](https://togithub.com/vercel/turbo/pull/6425)
-   [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first contribution in [https://github.com/vercel/turbo/pull/6506](https://togithub.com/vercel/turbo/pull/6506)
-   [@&#8203;dallonf](https://togithub.com/dallonf) made their first contribution in [https://github.com/vercel/turbo/pull/6522](https://togithub.com/vercel/turbo/pull/6522)
-   [@&#8203;m1heng](https://togithub.com/m1heng) made their first contribution in [https://github.com/vercel/turbo/pull/6579](https://togithub.com/vercel/turbo/pull/6579)
-   [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their first contribution in [https://github.com/vercel/turbo/pull/6321](https://togithub.com/vercel/turbo/pull/6321)
-   [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their first contribution in [https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

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

</details>

---

### Configuration

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

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

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

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

---

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

---

This PR has been generated by [Mend Renovate](https://www.mend.io/free-developer-tools/renovate/). View repository job log [here](https://developer.mend.io/github/kinguru-io/kinguru-monorepo).
benelan pushed a commit to Esri/calcite-design-system that referenced this pull request Dec 21, 2023
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`1.10.16` ->
`1.11.2`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Docs

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

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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

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

#### What's Changed

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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

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

#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

- feat(turborepo): Spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
- fix: bias towards graph walk cancel over continue by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
- feat: hook up task execution tracking by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
- docs: Add the enabled config to turbo.json schema by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
- chore: fix example test setup so output matches by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
- fix: Respect color config for runcache output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
- refactor(auth): Removed closure in login functions by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
- chore(test): validate that pruning carries remoteCache fields
correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
- chore: Removed run stub feature by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
- fix(Turborepo): Drop incorrect deprecation notice by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
- chore(test): Add test to ensure env var changes task hash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
- chore: run summary prefactor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
- refactor: Removed closure from logout by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
- chore: Added panic handler to turborepo by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
- refactor: Moving from anyhow to thiserror part 1 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
- Clearer cache spinner message. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
- fix: use cprintln instead of warn when no tasks are run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
- fix: don't escape html when serializing dry runs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
- fix(Turborepo): Ensure process manager stays closed by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
- fix(Turborepo): escape colons in log filenames by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6300](https://togithub.com/vercel/turbo/pull/6300)
- feat: Hook up Run summary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6282](https://togithub.com/vercel/turbo/pull/6282)
- port(Turborepo): Port escaping globs sent via rust daemon client by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6295](https://togithub.com/vercel/turbo/pull/6295)
- feat(Turborepo): Validation checks for task names by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6293](https://togithub.com/vercel/turbo/pull/6293)
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6303](https://togithub.com/vercel/turbo/pull/6303)
- fix(lockfiles) trailing zero yaml parse by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6296](https://togithub.com/vercel/turbo/pull/6296)
- Chore/update teamname by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[https://github.com/vercel/turbo/pull/6317](https://togithub.com/vercel/turbo/pull/6317)
- build(cargo): skip external build script with rust-analyzer by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6325](https://togithub.com/vercel/turbo/pull/6325)
- fix: global hash divergence for empty version strings by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6319](https://togithub.com/vercel/turbo/pull/6319)
- fix: explicitly set turbo command name by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6332](https://togithub.com/vercel/turbo/pull/6332)
- fix: task definition serialization by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6306](https://togithub.com/vercel/turbo/pull/6306)
- fix: Empty command returns help text and not error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6340](https://togithub.com/vercel/turbo/pull/6340)
- feat: add support for --parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6339](https://togithub.com/vercel/turbo/pull/6339)
- fix(Turborepo): Drop root from calculation of in-scope workspaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6328](https://togithub.com/vercel/turbo/pull/6328)
- feat(turbopack-ecmascript): calculate import.meta.url as an absolute
path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6318](https://togithub.com/vercel/turbo/pull/6318)
- feat(Turborepo): Add more detail to a cookie error variant by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6349](https://togithub.com/vercel/turbo/pull/6349)
- fix(Turborepo): Bump x/net, go mod tidy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6355](https://togithub.com/vercel/turbo/pull/6355)
- fix(turbo-utils): correct typo on package.json on types field by
[@&#8203;stefanofa](https://togithub.com/stefanofa) in
[https://github.com/vercel/turbo/pull/6360](https://togithub.com/vercel/turbo/pull/6360)
- Triple chunk size heuristic by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6305](https://togithub.com/vercel/turbo/pull/6305)
- improve resolving performance by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6304](https://togithub.com/vercel/turbo/pull/6304)
- Devlow: refactor browser.ts by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/6286](https://togithub.com/vercel/turbo/pull/6286)
- make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6367](https://togithub.com/vercel/turbo/pull/6367)
- Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/6354](https://togithub.com/vercel/turbo/pull/6354)
- port(turborepo): Fixing API Client config tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6356](https://togithub.com/vercel/turbo/pull/6356)
- fix: use which for package manager binary discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6370](https://togithub.com/vercel/turbo/pull/6370)
- chore(tests): delete a mostly copy-pasted fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6366](https://togithub.com/vercel/turbo/pull/6366)
- refactor: Moving to thiserror part 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6273](https://togithub.com/vercel/turbo/pull/6273)
- refactor(turborepo): Changed cache misses to be a non-error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6369](https://togithub.com/vercel/turbo/pull/6369)
- fix: use correct command for package managers by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6372](https://togithub.com/vercel/turbo/pull/6372)
- chore(test): combine two fixtures for single package testing by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6374](https://togithub.com/vercel/turbo/pull/6374)
- build: Update `swc_core` to `v0.86.40` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/6343](https://togithub.com/vercel/turbo/pull/6343)
- feat: forward signals to process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6357](https://togithub.com/vercel/turbo/pull/6357)
- fix: Move package manager tests to turbo info by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6373](https://togithub.com/vercel/turbo/pull/6373)
- port(turborepo): Analytics Client by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6315](https://togithub.com/vercel/turbo/pull/6315)
- fix(updater): specify latest for codemod by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6381](https://togithub.com/vercel/turbo/pull/6381)
- refactor(Turborepo): Move package graph to repository crate by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6375](https://togithub.com/vercel/turbo/pull/6375)
- fix: Dry Run Text Output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6380](https://togithub.com/vercel/turbo/pull/6380)
- feat(turbopack): support url rewrite behavior options by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6376](https://togithub.com/vercel/turbo/pull/6376)
- chore: fix clippy lints in tests by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6384](https://togithub.com/vercel/turbo/pull/6384)
- feat(turbopack-ecmascript): support relative url asset ref by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6386](https://togithub.com/vercel/turbo/pull/6386)
- chore(tests): replace fixture with a fixture config by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6391](https://togithub.com/vercel/turbo/pull/6391)
- refactor and fix CssEmbed for url() by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6382](https://togithub.com/vercel/turbo/pull/6382)
- chore: update `update-informer` to 1.1 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[https://github.com/vercel/turbo/pull/5400](https://togithub.com/vercel/turbo/pull/5400)
- fix: kill process group instead of children by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6387](https://togithub.com/vercel/turbo/pull/6387)
- Update turbopack related labels by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[https://github.com/vercel/turbo/pull/6399](https://togithub.com/vercel/turbo/pull/6399)
- chore: prefactor for sending task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6383](https://togithub.com/vercel/turbo/pull/6383)
- improve count hash set edge case handling, fix negative bottom
connection counting by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6393](https://togithub.com/vercel/turbo/pull/6393)
- fix: add newline to graph output by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6397](https://togithub.com/vercel/turbo/pull/6397)
- fix(Turborepo): Sort env vars, include framework inference in task
summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6402](https://togithub.com/vercel/turbo/pull/6402)
- chore(tests): make test output assertions simpler by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6400](https://togithub.com/vercel/turbo/pull/6400)
- fix(Turborepo): Add suppressing logs line for new-only output mode by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6406](https://togithub.com/vercel/turbo/pull/6406)
- port: Fixing and refactoring integration tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6398](https://togithub.com/vercel/turbo/pull/6398)
- chore: Fix compilation warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6418](https://togithub.com/vercel/turbo/pull/6418)
- Port(Turborepo): Synthesize command for spaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6417](https://togithub.com/vercel/turbo/pull/6417)
- fix: Dry run output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6416](https://togithub.com/vercel/turbo/pull/6416)
- fix: unbreak main by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6423](https://togithub.com/vercel/turbo/pull/6423)
- port(Turborepo): Pass through args by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6422](https://togithub.com/vercel/turbo/pull/6422)
- fix(Turborepo): Fix error stutter, update tests to match on relevent
error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6421](https://togithub.com/vercel/turbo/pull/6421)
- port: Fixing run summary json output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6431](https://togithub.com/vercel/turbo/pull/6431)
- feat: send task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6419](https://togithub.com/vercel/turbo/pull/6419)
- chore: output absolute path warnings to stderr by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6434](https://togithub.com/vercel/turbo/pull/6434)
- port(Turborepo): Add summary error to match Go by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6438](https://togithub.com/vercel/turbo/pull/6438)
- port(Turborepo): Fix task dependencies integration tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6440](https://togithub.com/vercel/turbo/pull/6440)
- fix: match dependency ordering between rust/go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6443](https://togithub.com/vercel/turbo/pull/6443)
- fix: `--no-cache` flag was not working by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6444](https://togithub.com/vercel/turbo/pull/6444)
- Ensure daemon connection errors are non-fatal by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6445](https://togithub.com/vercel/turbo/pull/6445)
- fix: Cleaning up duration printing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6447](https://togithub.com/vercel/turbo/pull/6447)
- fix: displaying stdout/stderr with errors-only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6446](https://togithub.com/vercel/turbo/pull/6446)
- port(Turborepo): Migrate inference tests to grep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6437](https://togithub.com/vercel/turbo/pull/6437)
- fix: rust spaces auth requirements by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6453](https://togithub.com/vercel/turbo/pull/6453)
- chore: add test for turbo bin by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6451](https://togithub.com/vercel/turbo/pull/6451)
- adjust tracing for run finalization by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6410](https://togithub.com/vercel/turbo/pull/6410)
- chore(test): Remove single/double quotes in npm scripts in fixtures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6459](https://togithub.com/vercel/turbo/pull/6459)
- chore: simplify inference test grep commands by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6455](https://togithub.com/vercel/turbo/pull/6455)
- feat(Turborepo): Send logging to stderr by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6462](https://togithub.com/vercel/turbo/pull/6462)
- chore(test): Remove more single/double quotes in npm script fixtures
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6464](https://togithub.com/vercel/turbo/pull/6464)
- fix(Turborepo): Update missing-tasks.t to pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6467](https://togithub.com/vercel/turbo/pull/6467)
- fix(Turborepo): Make verbosity test pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6465](https://togithub.com/vercel/turbo/pull/6465)
- chore(ci): launch prysk tests with JS instead of bash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6463](https://togithub.com/vercel/turbo/pull/6463)
- chore(test): remove another single quoted echo arg by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6468](https://togithub.com/vercel/turbo/pull/6468)
- fix: Check cache on dry run by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6466](https://togithub.com/vercel/turbo/pull/6466)
- fix(Turborepo): Fix dry-json/monorepo.t by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6470](https://togithub.com/vercel/turbo/pull/6470)
- fix: dry run missing tasks with no script by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6473](https://togithub.com/vercel/turbo/pull/6473)
- port(Turborepo): Add github prefixing in Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6471](https://togithub.com/vercel/turbo/pull/6471)
- fix: forward powershell style env casing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6485](https://togithub.com/vercel/turbo/pull/6485)
- fix: fixup unit tests that use the basic example by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6517](https://togithub.com/vercel/turbo/pull/6517)
- fix: Deadlock with closing process manager by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6516](https://togithub.com/vercel/turbo/pull/6516)
- chore(tests): delete e2e tests for turbo prune by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6515](https://togithub.com/vercel/turbo/pull/6515)
- chore: clean up run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6519](https://togithub.com/vercel/turbo/pull/6519)
- feat: make rust codepath opt-out by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6420](https://togithub.com/vercel/turbo/pull/6420)
- fix: run summary tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6532](https://togithub.com/vercel/turbo/pull/6532)
- fix: make spaces requests in parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6536](https://togithub.com/vercel/turbo/pull/6536)
- refactor: switch daemon version to be independent of turbo version by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6528](https://togithub.com/vercel/turbo/pull/6528)
- fix: analytics closing when all senders drop by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6542](https://togithub.com/vercel/turbo/pull/6542)
- feat: add a go fallback flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6540](https://togithub.com/vercel/turbo/pull/6540)
- chore(ci): delete e2e tests covering monorepo root in subdir by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6565](https://togithub.com/vercel/turbo/pull/6565)
- fix: treat missing and empty scripts the same by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6552](https://togithub.com/vercel/turbo/pull/6552)
- test(gen): add generator command tests by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6569](https://togithub.com/vercel/turbo/pull/6569)
- chore(tests): fix daemon verbosity test on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6582](https://togithub.com/vercel/turbo/pull/6582)
- chore(tests): fix absolute path warnings test on windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6564](https://togithub.com/vercel/turbo/pull/6564)
- chore: hyphenate filenames isntead of underscore by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6595](https://togithub.com/vercel/turbo/pull/6595)
- fix: ensure cache is done writing before exit by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6603](https://togithub.com/vercel/turbo/pull/6603)
- feat(releases): update turborepo-release.yml by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6611](https://togithub.com/vercel/turbo/pull/6611)
- chore(tests): remove hardcoded packageManager when running examples
tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6615](https://togithub.com/vercel/turbo/pull/6615)
- fix: Hard error on spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6596](https://togithub.com/vercel/turbo/pull/6596)
- fix(Turborepo): Handle windows absolute paths in global dependencies
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6608](https://togithub.com/vercel/turbo/pull/6608)
- fix(tests): account for .cmd extension on npm binary in Rust codepath
tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6604](https://togithub.com/vercel/turbo/pull/6604)
- fix(release): correct excludes label by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6623](https://togithub.com/vercel/turbo/pull/6623)
- fix: second granularity by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6606](https://togithub.com/vercel/turbo/pull/6606)
- feat: add read only remote cache by
[@&#8203;maschwenk](https://togithub.com/maschwenk) in
[https://github.com/vercel/turbo/pull/6624](https://togithub.com/vercel/turbo/pull/6624)
- fix: look for unix based project paths by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6609](https://togithub.com/vercel/turbo/pull/6609)
- fix(tests): account for cmd extensions in more tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6628](https://togithub.com/vercel/turbo/pull/6628)
- Drop nonsensical(?) tests? by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6632](https://togithub.com/vercel/turbo/pull/6632)
- fix(turborepo): make linked installs test pass on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6477](https://togithub.com/vercel/turbo/pull/6477)
- chore: update lockfile after workspace deletion by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6637](https://togithub.com/vercel/turbo/pull/6637)
- fix(Turborepo): Remove unused globwalk code, fix multiple doublestars
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6633](https://togithub.com/vercel/turbo/pull/6633)
- feat: add package discovery trait and a few discovery strategies by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6275](https://togithub.com/vercel/turbo/pull/6275)
- chore: use parent() method instead of .. directory traversal by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6635](https://togithub.com/vercel/turbo/pull/6635)
- yarn-with-yarn workspace name by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6647](https://togithub.com/vercel/turbo/pull/6647)
- refactor: adjust test timeouts to avoid flaky test on windows by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6638](https://togithub.com/vercel/turbo/pull/6638)
- chore: reduce sleep length in test cases by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6640](https://togithub.com/vercel/turbo/pull/6640)
- chore: fix rust compile warnings by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6655](https://togithub.com/vercel/turbo/pull/6655)
- chore: add a helper script to replace turbo config in main fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6652](https://togithub.com/vercel/turbo/pull/6652)
- fix: Fixed cache restoration for an entry with a very long name by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6662](https://togithub.com/vercel/turbo/pull/6662)
- fix: clean paths and use package path instead of package.json path by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6649](https://togithub.com/vercel/turbo/pull/6649)
- Revert "chore: reduce sleep length in test cases
([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6665](https://togithub.com/vercel/turbo/pull/6665)
- chore(tests): write a test showing the behavior of gitignored inputs
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6669](https://togithub.com/vercel/turbo/pull/6669)
- chore(tests): add test to check that root tasks can depend on
workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6671](https://togithub.com/vercel/turbo/pull/6671)
- chore: consolidate setup scripts for integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6641](https://togithub.com/vercel/turbo/pull/6641)
- fix(tests): fix unit tests that rely on examples by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6679](https://togithub.com/vercel/turbo/pull/6679)
- chore(tests): remove duplicate setup_git script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6680](https://togithub.com/vercel/turbo/pull/6680)
- chore(tests): setup package manager consistently for
example/integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6681](https://togithub.com/vercel/turbo/pull/6681)
- chore(tests): make fixture copying consistent by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6683](https://togithub.com/vercel/turbo/pull/6683)
- chore(tests): Enable corepack in local directory for integration tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6684](https://togithub.com/vercel/turbo/pull/6684)
- chore(tests): delete feature where
[@&#8203;canary](https://togithub.com/canary) turbo is used by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6685](https://togithub.com/vercel/turbo/pull/6685)
- fix(tests): update rust unit tests that rely on with-yarn fixture by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6693](https://togithub.com/vercel/turbo/pull/6693)
- chore(daemon) disable daemon workspace discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6695](https://togithub.com/vercel/turbo/pull/6695)
- chore: use path library read_to_string for better error message by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6694](https://togithub.com/vercel/turbo/pull/6694)
- chore: make go-fallback confilct with remote cache read only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6702](https://togithub.com/vercel/turbo/pull/6702)

#### New Contributors

- [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first
contribution in
[https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
- [@&#8203;fa-901](https://togithub.com/fa-901) made their first
contribution in
[https://github.com/vercel/turbo/pull/5444](https://togithub.com/vercel/turbo/pull/5444)
- [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first
contribution in
[https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
- [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their
first contribution in
[https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
- [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first
contribution in
[https://github.com/vercel/turbo/pull/6427](https://togithub.com/vercel/turbo/pull/6427)
- [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first
contribution in
[https://github.com/vercel/turbo/pull/6425](https://togithub.com/vercel/turbo/pull/6425)
- [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first
contribution in
[https://github.com/vercel/turbo/pull/6506](https://togithub.com/vercel/turbo/pull/6506)
- [@&#8203;dallonf](https://togithub.com/dallonf) made their first
contribution in
[https://github.com/vercel/turbo/pull/6522](https://togithub.com/vercel/turbo/pull/6522)
- [@&#8203;m1heng](https://togithub.com/m1heng) made their first
contribution in
[https://github.com/vercel/turbo/pull/6579](https://togithub.com/vercel/turbo/pull/6579)
- [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their
first contribution in
[https://github.com/vercel/turbo/pull/6321](https://togithub.com/vercel/turbo/pull/6321)
- [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their
first contribution in
[https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

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

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am every weekday" in timezone
America/Los_Angeles, 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/Esri/calcite-design-system).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNy4xMDMuMSIsInVwZGF0ZWRJblZlciI6IjM3LjEwMy4xIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fwouts added a commit to fwouts/previewjs that referenced this pull request Jan 4, 2024
[![Mend
Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo)
([source](https://togithub.com/vercel/turbo)) | [`^1.10.16` ->
`^1.11.2`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.2) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.2?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Docs

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

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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

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

#### What's Changed

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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

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

#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

- feat(turborepo): Spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
- fix: bias towards graph walk cancel over continue by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
- feat: hook up task execution tracking by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
- docs: Add the enabled config to turbo.json schema by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
- chore: fix example test setup so output matches by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
- fix: Respect color config for runcache output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
- refactor(auth): Removed closure in login functions by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
- chore(test): validate that pruning carries remoteCache fields
correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
- chore: Removed run stub feature by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
- fix(Turborepo): Drop incorrect deprecation notice by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
- chore(test): Add test to ensure env var changes task hash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
- chore: run summary prefactor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
- refactor: Removed closure from logout by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
- chore: Added panic handler to turborepo by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
- refactor: Moving from anyhow to thiserror part 1 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
- Clearer cache spinner message. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
- fix: use cprintln instead of warn when no tasks are run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
- fix: don't escape html when serializing dry runs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
- fix(Turborepo): Ensure process manager stays closed by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
- fix(Turborepo): escape colons in log filenames by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6300](https://togithub.com/vercel/turbo/pull/6300)
- feat: Hook up Run summary by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6282](https://togithub.com/vercel/turbo/pull/6282)
- port(Turborepo): Port escaping globs sent via rust daemon client by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6295](https://togithub.com/vercel/turbo/pull/6295)
- feat(Turborepo): Validation checks for task names by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6293](https://togithub.com/vercel/turbo/pull/6293)
- chore(test): fix gitignore in fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6303](https://togithub.com/vercel/turbo/pull/6303)
- fix(lockfiles) trailing zero yaml parse by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6296](https://togithub.com/vercel/turbo/pull/6296)
- Chore/update teamname by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[https://github.com/vercel/turbo/pull/6317](https://togithub.com/vercel/turbo/pull/6317)
- build(cargo): skip external build script with rust-analyzer by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6325](https://togithub.com/vercel/turbo/pull/6325)
- fix: global hash divergence for empty version strings by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6319](https://togithub.com/vercel/turbo/pull/6319)
- fix: explicitly set turbo command name by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6332](https://togithub.com/vercel/turbo/pull/6332)
- fix: task definition serialization by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6306](https://togithub.com/vercel/turbo/pull/6306)
- fix: Empty command returns help text and not error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6340](https://togithub.com/vercel/turbo/pull/6340)
- feat: add support for --parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6339](https://togithub.com/vercel/turbo/pull/6339)
- fix(Turborepo): Drop root from calculation of in-scope workspaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6328](https://togithub.com/vercel/turbo/pull/6328)
- feat(turbopack-ecmascript): calculate import.meta.url as an absolute
path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6318](https://togithub.com/vercel/turbo/pull/6318)
- feat(Turborepo): Add more detail to a cookie error variant by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6349](https://togithub.com/vercel/turbo/pull/6349)
- fix(Turborepo): Bump x/net, go mod tidy by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6355](https://togithub.com/vercel/turbo/pull/6355)
- fix(turbo-utils): correct typo on package.json on types field by
[@&#8203;stefanofa](https://togithub.com/stefanofa) in
[https://github.com/vercel/turbo/pull/6360](https://togithub.com/vercel/turbo/pull/6360)
- Triple chunk size heuristic by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6305](https://togithub.com/vercel/turbo/pull/6305)
- improve resolving performance by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6304](https://togithub.com/vercel/turbo/pull/6304)
- Devlow: refactor browser.ts by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/6286](https://togithub.com/vercel/turbo/pull/6286)
- make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6367](https://togithub.com/vercel/turbo/pull/6367)
- Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/6354](https://togithub.com/vercel/turbo/pull/6354)
- port(turborepo): Fixing API Client config tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6356](https://togithub.com/vercel/turbo/pull/6356)
- fix: use which for package manager binary discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6370](https://togithub.com/vercel/turbo/pull/6370)
- chore(tests): delete a mostly copy-pasted fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6366](https://togithub.com/vercel/turbo/pull/6366)
- refactor: Moving to thiserror part 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6273](https://togithub.com/vercel/turbo/pull/6273)
- refactor(turborepo): Changed cache misses to be a non-error by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6369](https://togithub.com/vercel/turbo/pull/6369)
- fix: use correct command for package managers by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6372](https://togithub.com/vercel/turbo/pull/6372)
- chore(test): combine two fixtures for single package testing by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6374](https://togithub.com/vercel/turbo/pull/6374)
- build: Update `swc_core` to `v0.86.40` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/6343](https://togithub.com/vercel/turbo/pull/6343)
- feat: forward signals to process manager by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6357](https://togithub.com/vercel/turbo/pull/6357)
- fix: Move package manager tests to turbo info by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6373](https://togithub.com/vercel/turbo/pull/6373)
- port(turborepo): Analytics Client by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6315](https://togithub.com/vercel/turbo/pull/6315)
- fix(updater): specify latest for codemod by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6381](https://togithub.com/vercel/turbo/pull/6381)
- refactor(Turborepo): Move package graph to repository crate by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6375](https://togithub.com/vercel/turbo/pull/6375)
- fix: Dry Run Text Output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6380](https://togithub.com/vercel/turbo/pull/6380)
- feat(turbopack): support url rewrite behavior options by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6376](https://togithub.com/vercel/turbo/pull/6376)
- chore: fix clippy lints in tests by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6384](https://togithub.com/vercel/turbo/pull/6384)
- feat(turbopack-ecmascript): support relative url asset ref by
[@&#8203;kwonoj](https://togithub.com/kwonoj) in
[https://github.com/vercel/turbo/pull/6386](https://togithub.com/vercel/turbo/pull/6386)
- chore(tests): replace fixture with a fixture config by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6391](https://togithub.com/vercel/turbo/pull/6391)
- refactor and fix CssEmbed for url() by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6382](https://togithub.com/vercel/turbo/pull/6382)
- chore: update `update-informer` to 1.1 by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[https://github.com/vercel/turbo/pull/5400](https://togithub.com/vercel/turbo/pull/5400)
- fix: kill process group instead of children by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6387](https://togithub.com/vercel/turbo/pull/6387)
- Update turbopack related labels by
[@&#8203;padmaia](https://togithub.com/padmaia) in
[https://github.com/vercel/turbo/pull/6399](https://togithub.com/vercel/turbo/pull/6399)
- chore: prefactor for sending task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6383](https://togithub.com/vercel/turbo/pull/6383)
- improve count hash set edge case handling, fix negative bottom
connection counting by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/6393](https://togithub.com/vercel/turbo/pull/6393)
- fix: add newline to graph output by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6397](https://togithub.com/vercel/turbo/pull/6397)
- fix(Turborepo): Sort env vars, include framework inference in task
summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6402](https://togithub.com/vercel/turbo/pull/6402)
- chore(tests): make test output assertions simpler by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6400](https://togithub.com/vercel/turbo/pull/6400)
- fix(Turborepo): Add suppressing logs line for new-only output mode by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6406](https://togithub.com/vercel/turbo/pull/6406)
- port: Fixing and refactoring integration tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6398](https://togithub.com/vercel/turbo/pull/6398)
- chore: Fix compilation warnings by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6418](https://togithub.com/vercel/turbo/pull/6418)
- Port(Turborepo): Synthesize command for spaces by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6417](https://togithub.com/vercel/turbo/pull/6417)
- fix: Dry run output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6416](https://togithub.com/vercel/turbo/pull/6416)
- fix: unbreak main by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6423](https://togithub.com/vercel/turbo/pull/6423)
- port(Turborepo): Pass through args by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6422](https://togithub.com/vercel/turbo/pull/6422)
- fix(Turborepo): Fix error stutter, update tests to match on relevent
error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6421](https://togithub.com/vercel/turbo/pull/6421)
- port: Fixing run summary json output by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6431](https://togithub.com/vercel/turbo/pull/6431)
- feat: send task logs to spaces by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6419](https://togithub.com/vercel/turbo/pull/6419)
- chore: output absolute path warnings to stderr by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6434](https://togithub.com/vercel/turbo/pull/6434)
- port(Turborepo): Add summary error to match Go by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6438](https://togithub.com/vercel/turbo/pull/6438)
- port(Turborepo): Fix task dependencies integration tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6440](https://togithub.com/vercel/turbo/pull/6440)
- fix: match dependency ordering between rust/go by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6443](https://togithub.com/vercel/turbo/pull/6443)
- fix: `--no-cache` flag was not working by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6444](https://togithub.com/vercel/turbo/pull/6444)
- Ensure daemon connection errors are non-fatal by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6445](https://togithub.com/vercel/turbo/pull/6445)
- fix: Cleaning up duration printing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6447](https://togithub.com/vercel/turbo/pull/6447)
- fix: displaying stdout/stderr with errors-only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6446](https://togithub.com/vercel/turbo/pull/6446)
- port(Turborepo): Migrate inference tests to grep by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6437](https://togithub.com/vercel/turbo/pull/6437)
- fix: rust spaces auth requirements by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6453](https://togithub.com/vercel/turbo/pull/6453)
- chore: add test for turbo bin by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6451](https://togithub.com/vercel/turbo/pull/6451)
- adjust tracing for run finalization by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6410](https://togithub.com/vercel/turbo/pull/6410)
- chore(test): Remove single/double quotes in npm scripts in fixtures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6459](https://togithub.com/vercel/turbo/pull/6459)
- chore: simplify inference test grep commands by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6455](https://togithub.com/vercel/turbo/pull/6455)
- feat(Turborepo): Send logging to stderr by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6462](https://togithub.com/vercel/turbo/pull/6462)
- chore(test): Remove more single/double quotes in npm script fixtures
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6464](https://togithub.com/vercel/turbo/pull/6464)
- fix(Turborepo): Update missing-tasks.t to pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6467](https://togithub.com/vercel/turbo/pull/6467)
- fix(Turborepo): Make verbosity test pass with Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6465](https://togithub.com/vercel/turbo/pull/6465)
- chore(ci): launch prysk tests with JS instead of bash by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6463](https://togithub.com/vercel/turbo/pull/6463)
- chore(test): remove another single quoted echo arg by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6468](https://togithub.com/vercel/turbo/pull/6468)
- fix: Check cache on dry run by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6466](https://togithub.com/vercel/turbo/pull/6466)
- fix(Turborepo): Fix dry-json/monorepo.t by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6470](https://togithub.com/vercel/turbo/pull/6470)
- fix: dry run missing tasks with no script by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6473](https://togithub.com/vercel/turbo/pull/6473)
- port(Turborepo): Add github prefixing in Rust by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6471](https://togithub.com/vercel/turbo/pull/6471)
- fix: forward powershell style env casing by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6485](https://togithub.com/vercel/turbo/pull/6485)
- fix: fixup unit tests that use the basic example by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6517](https://togithub.com/vercel/turbo/pull/6517)
- fix: Deadlock with closing process manager by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6516](https://togithub.com/vercel/turbo/pull/6516)
- chore(tests): delete e2e tests for turbo prune by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6515](https://togithub.com/vercel/turbo/pull/6515)
- chore: clean up run by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6519](https://togithub.com/vercel/turbo/pull/6519)
- feat: make rust codepath opt-out by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6420](https://togithub.com/vercel/turbo/pull/6420)
- fix: run summary tests by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6532](https://togithub.com/vercel/turbo/pull/6532)
- fix: make spaces requests in parallel by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6536](https://togithub.com/vercel/turbo/pull/6536)
- refactor: switch daemon version to be independent of turbo version by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6528](https://togithub.com/vercel/turbo/pull/6528)
- fix: analytics closing when all senders drop by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6542](https://togithub.com/vercel/turbo/pull/6542)
- feat: add a go fallback flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6540](https://togithub.com/vercel/turbo/pull/6540)
- chore(ci): delete e2e tests covering monorepo root in subdir by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6565](https://togithub.com/vercel/turbo/pull/6565)
- fix: treat missing and empty scripts the same by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6552](https://togithub.com/vercel/turbo/pull/6552)
- test(gen): add generator command tests by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6569](https://togithub.com/vercel/turbo/pull/6569)
- chore(tests): fix daemon verbosity test on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6582](https://togithub.com/vercel/turbo/pull/6582)
- chore(tests): fix absolute path warnings test on windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6564](https://togithub.com/vercel/turbo/pull/6564)
- chore: hyphenate filenames isntead of underscore by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6595](https://togithub.com/vercel/turbo/pull/6595)
- fix: ensure cache is done writing before exit by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6603](https://togithub.com/vercel/turbo/pull/6603)
- feat(releases): update turborepo-release.yml by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6611](https://togithub.com/vercel/turbo/pull/6611)
- chore(tests): remove hardcoded packageManager when running examples
tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6615](https://togithub.com/vercel/turbo/pull/6615)
- fix: Hard error on spaces by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6596](https://togithub.com/vercel/turbo/pull/6596)
- fix(Turborepo): Handle windows absolute paths in global dependencies
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6608](https://togithub.com/vercel/turbo/pull/6608)
- fix(tests): account for .cmd extension on npm binary in Rust codepath
tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6604](https://togithub.com/vercel/turbo/pull/6604)
- fix(release): correct excludes label by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/6623](https://togithub.com/vercel/turbo/pull/6623)
- fix: second granularity by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6606](https://togithub.com/vercel/turbo/pull/6606)
- feat: add read only remote cache by
[@&#8203;maschwenk](https://togithub.com/maschwenk) in
[https://github.com/vercel/turbo/pull/6624](https://togithub.com/vercel/turbo/pull/6624)
- fix: look for unix based project paths by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6609](https://togithub.com/vercel/turbo/pull/6609)
- fix(tests): account for cmd extensions in more tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6628](https://togithub.com/vercel/turbo/pull/6628)
- Drop nonsensical(?) tests? by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6632](https://togithub.com/vercel/turbo/pull/6632)
- fix(turborepo): make linked installs test pass on Windows by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6477](https://togithub.com/vercel/turbo/pull/6477)
- chore: update lockfile after workspace deletion by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6637](https://togithub.com/vercel/turbo/pull/6637)
- fix(Turborepo): Remove unused globwalk code, fix multiple doublestars
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/6633](https://togithub.com/vercel/turbo/pull/6633)
- feat: add package discovery trait and a few discovery strategies by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6275](https://togithub.com/vercel/turbo/pull/6275)
- chore: use parent() method instead of .. directory traversal by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6635](https://togithub.com/vercel/turbo/pull/6635)
- yarn-with-yarn workspace name by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/6647](https://togithub.com/vercel/turbo/pull/6647)
- refactor: adjust test timeouts to avoid flaky test on windows by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/6638](https://togithub.com/vercel/turbo/pull/6638)
- chore: reduce sleep length in test cases by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6640](https://togithub.com/vercel/turbo/pull/6640)
- chore: fix rust compile warnings by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6655](https://togithub.com/vercel/turbo/pull/6655)
- chore: add a helper script to replace turbo config in main fixture by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6652](https://togithub.com/vercel/turbo/pull/6652)
- fix: Fixed cache restoration for an entry with a very long name by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/6662](https://togithub.com/vercel/turbo/pull/6662)
- fix: clean paths and use package path instead of package.json path by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6649](https://togithub.com/vercel/turbo/pull/6649)
- Revert "chore: reduce sleep length in test cases
([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6665](https://togithub.com/vercel/turbo/pull/6665)
- chore(tests): write a test showing the behavior of gitignored inputs
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6669](https://togithub.com/vercel/turbo/pull/6669)
- chore(tests): add test to check that root tasks can depend on
workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6671](https://togithub.com/vercel/turbo/pull/6671)
- chore: consolidate setup scripts for integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6641](https://togithub.com/vercel/turbo/pull/6641)
- fix(tests): fix unit tests that rely on examples by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6679](https://togithub.com/vercel/turbo/pull/6679)
- chore(tests): remove duplicate setup_git script by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6680](https://togithub.com/vercel/turbo/pull/6680)
- chore(tests): setup package manager consistently for
example/integration tests by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6681](https://togithub.com/vercel/turbo/pull/6681)
- chore(tests): make fixture copying consistent by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6683](https://togithub.com/vercel/turbo/pull/6683)
- chore(tests): Enable corepack in local directory for integration tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6684](https://togithub.com/vercel/turbo/pull/6684)
- chore(tests): delete feature where
[@&#8203;canary](https://togithub.com/canary) turbo is used by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/6685](https://togithub.com/vercel/turbo/pull/6685)
- fix(tests): update rust unit tests that rely on with-yarn fixture by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6693](https://togithub.com/vercel/turbo/pull/6693)
- chore(daemon) disable daemon workspace discovery by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6695](https://togithub.com/vercel/turbo/pull/6695)
- chore: use path library read_to_string for better error message by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6694](https://togithub.com/vercel/turbo/pull/6694)
- chore: make go-fallback confilct with remote cache read only by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/6702](https://togithub.com/vercel/turbo/pull/6702)

#### New Contributors

- [@&#8203;mdmathewdc](https://togithub.com/mdmathewdc) made their first
contribution in
[https://github.com/vercel/turbo/pull/6335](https://togithub.com/vercel/turbo/pull/6335)
- [@&#8203;fa-901](https://togithub.com/fa-901) made their first
contribution in
[https://github.com/vercel/turbo/pull/5444](https://togithub.com/vercel/turbo/pull/5444)
- [@&#8203;austinwoon](https://togithub.com/austinwoon) made their first
contribution in
[https://github.com/vercel/turbo/pull/2761](https://togithub.com/vercel/turbo/pull/2761)
- [@&#8203;mia-riezebos](https://togithub.com/mia-riezebos) made their
first contribution in
[https://github.com/vercel/turbo/pull/6426](https://togithub.com/vercel/turbo/pull/6426)
- [@&#8203;jongwooo](https://togithub.com/jongwooo) made their first
contribution in
[https://github.com/vercel/turbo/pull/6427](https://togithub.com/vercel/turbo/pull/6427)
- [@&#8203;Neosoulink](https://togithub.com/Neosoulink) made their first
contribution in
[https://github.com/vercel/turbo/pull/6425](https://togithub.com/vercel/turbo/pull/6425)
- [@&#8203;e-jigsaw](https://togithub.com/e-jigsaw) made their first
contribution in
[https://github.com/vercel/turbo/pull/6506](https://togithub.com/vercel/turbo/pull/6506)
- [@&#8203;dallonf](https://togithub.com/dallonf) made their first
contribution in
[https://github.com/vercel/turbo/pull/6522](https://togithub.com/vercel/turbo/pull/6522)
- [@&#8203;m1heng](https://togithub.com/m1heng) made their first
contribution in
[https://github.com/vercel/turbo/pull/6579](https://togithub.com/vercel/turbo/pull/6579)
- [@&#8203;danger-ahead](https://togithub.com/danger-ahead) made their
first contribution in
[https://github.com/vercel/turbo/pull/6321](https://togithub.com/vercel/turbo/pull/6321)
- [@&#8203;marcneubauer](https://togithub.com/marcneubauer) made their
first contribution in
[https://github.com/vercel/turbo/pull/6657](https://togithub.com/vercel/turbo/pull/6657)

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

</details>

---

### Configuration

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

🚦 **Automerge**: Enabled.

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

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

---

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

---

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

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

---------

Co-authored-by: François Wouts <f@zenc.io>
kodiakhq bot pushed a commit to X-oss-byte/Nextjs that referenced this pull request Jan 5, 2024
[![Mend Renovate](https://app.renovatebot.com/images/banner.svg)](https://renovatebot.com)

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.11.2` -> `1.11.3`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.11.3) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.11.3?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### Examples

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

##### Changelog

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

#### New Contributors

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

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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



#### What's Changed

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

-   feat(turborepo): Spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6109](https://togithub.com/vercel/turbo/pull/6109)
-   fix: bias towards graph walk cancel over continue by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6210](https://togithub.com/vercel/turbo/pull/6210)
-   feat: hook up task execution tracking by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6222](https://togithub.com/vercel/turbo/pull/6222)
-   docs: Add the enabled config to turbo.json schema by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6224](https://togithub.com/vercel/turbo/pull/6224)
-   chore: fix example test setup so output matches by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6225](https://togithub.com/vercel/turbo/pull/6225)
-   fix: Respect color config for runcache output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6217](https://togithub.com/vercel/turbo/pull/6217)
-   refactor(auth): Removed closure in login functions by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6235](https://togithub.com/vercel/turbo/pull/6235)
-   chore(test): validate that pruning carries remoteCache fields correctly by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6226](https://togithub.com/vercel/turbo/pull/6226)
-   chore: Removed run stub feature by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6236](https://togithub.com/vercel/turbo/pull/6236)
-   fix(Turborepo): Drop incorrect deprecation notice by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6239](https://togithub.com/vercel/turbo/pull/6239)
-   chore(test): Add test to ensure env var changes task hash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6238](https://togithub.com/vercel/turbo/pull/6238)
-   chore: run summary prefactor by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6240](https://togithub.com/vercel/turbo/pull/6240)
-   refactor: Removed closure from logout by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6251](https://togithub.com/vercel/turbo/pull/6251)
-   chore: Added panic handler to turborepo by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6253](https://togithub.com/vercel/turbo/pull/6253)
-   refactor: Moving from anyhow to thiserror part 1 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6250](https://togithub.com/vercel/turbo/pull/6250)
-   Clearer cache spinner message. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6278](https://togithub.com/vercel/turbo/pull/6278)
-   fix: use cprintln instead of warn when no tasks are run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6285](https://togithub.com/vercel/turbo/pull/6285)
-   fix: don't escape html when serializing dry runs by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6284](https://togithub.com/vercel/turbo/pull/6284)
-   fix(Turborepo): Ensure process manager stays closed by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6258](https://togithub.com/vercel/turbo/pull/6258)
-   fix(Turborepo): escape colons in log filenames by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6267](https://togithub.com/vercel/turbo/pull/6267)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6300](https://togithub.com/vercel/turbo/pull/6300)
-   feat: Hook up Run summary by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6282](https://togithub.com/vercel/turbo/pull/6282)
-   port(Turborepo): Port escaping globs sent via rust daemon client by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6295](https://togithub.com/vercel/turbo/pull/6295)
-   feat(Turborepo): Validation checks for task names by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6293](https://togithub.com/vercel/turbo/pull/6293)
-   chore(test): fix gitignore in fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6303](https://togithub.com/vercel/turbo/pull/6303)
-   fix(lockfiles) trailing zero yaml parse by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6296](https://togithub.com/vercel/turbo/pull/6296)
-   Chore/update teamname by [@&#8203;padmaia](https://togithub.com/padmaia) in [https://github.com/vercel/turbo/pull/6317](https://togithub.com/vercel/turbo/pull/6317)
-   build(cargo): skip external build script with rust-analyzer by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6325](https://togithub.com/vercel/turbo/pull/6325)
-   fix: global hash divergence for empty version strings by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6319](https://togithub.com/vercel/turbo/pull/6319)
-   fix: explicitly set turbo command name by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6332](https://togithub.com/vercel/turbo/pull/6332)
-   fix: task definition serialization by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6306](https://togithub.com/vercel/turbo/pull/6306)
-   fix: Empty command returns help text and not error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6340](https://togithub.com/vercel/turbo/pull/6340)
-   feat: add support for --parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6339](https://togithub.com/vercel/turbo/pull/6339)
-   fix(Turborepo): Drop root from calculation of in-scope workspaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6328](https://togithub.com/vercel/turbo/pull/6328)
-   feat(turbopack-ecmascript): calculate import.meta.url as an absolute path by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6318](https://togithub.com/vercel/turbo/pull/6318)
-   feat(Turborepo): Add more detail to a cookie error variant by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6349](https://togithub.com/vercel/turbo/pull/6349)
-   fix(Turborepo): Bump x/net, go mod tidy by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6355](https://togithub.com/vercel/turbo/pull/6355)
-   fix(turbo-utils): correct typo on package.json on types field by [@&#8203;stefanofa](https://togithub.com/stefanofa) in [https://github.com/vercel/turbo/pull/6360](https://togithub.com/vercel/turbo/pull/6360)
-   Triple chunk size heuristic by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6305](https://togithub.com/vercel/turbo/pull/6305)
-   improve resolving performance by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6304](https://togithub.com/vercel/turbo/pull/6304)
-   Devlow: refactor browser.ts by [@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in [https://github.com/vercel/turbo/pull/6286](https://togithub.com/vercel/turbo/pull/6286)
-   make test less flaky by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6367](https://togithub.com/vercel/turbo/pull/6367)
-   Implement `VersionedContent` on `EcmascriptBuildNodeChunkContent` by [@&#8203;jridgewell](https://togithub.com/jridgewell) in [https://github.com/vercel/turbo/pull/6354](https://togithub.com/vercel/turbo/pull/6354)
-   port(turborepo): Fixing API Client config tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6356](https://togithub.com/vercel/turbo/pull/6356)
-   fix: use which for package manager binary discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6370](https://togithub.com/vercel/turbo/pull/6370)
-   chore(tests): delete a mostly copy-pasted fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6366](https://togithub.com/vercel/turbo/pull/6366)
-   refactor: Moving to thiserror part 2 by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6273](https://togithub.com/vercel/turbo/pull/6273)
-   refactor(turborepo): Changed cache misses to be a non-error by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6369](https://togithub.com/vercel/turbo/pull/6369)
-   fix: use correct command for package managers by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6372](https://togithub.com/vercel/turbo/pull/6372)
-   chore(test): combine two fixtures for single package testing by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6374](https://togithub.com/vercel/turbo/pull/6374)
-   build: Update `swc_core` to `v0.86.40` by [@&#8203;kdy1](https://togithub.com/kdy1) in [https://github.com/vercel/turbo/pull/6343](https://togithub.com/vercel/turbo/pull/6343)
-   feat: forward signals to process manager by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6357](https://togithub.com/vercel/turbo/pull/6357)
-   fix: Move package manager tests to turbo info by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6373](https://togithub.com/vercel/turbo/pull/6373)
-   port(turborepo): Analytics Client by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6315](https://togithub.com/vercel/turbo/pull/6315)
-   fix(updater): specify latest for codemod by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6381](https://togithub.com/vercel/turbo/pull/6381)
-   refactor(Turborepo): Move package graph to repository crate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6375](https://togithub.com/vercel/turbo/pull/6375)
-   fix: Dry Run Text Output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6380](https://togithub.com/vercel/turbo/pull/6380)
-   feat(turbopack): support url rewrite behavior options by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6376](https://togithub.com/vercel/turbo/pull/6376)
-   chore: fix clippy lints in tests by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6384](https://togithub.com/vercel/turbo/pull/6384)
-   feat(turbopack-ecmascript): support relative url asset ref by [@&#8203;kwonoj](https://togithub.com/kwonoj) in [https://github.com/vercel/turbo/pull/6386](https://togithub.com/vercel/turbo/pull/6386)
-   chore(tests): replace fixture with a fixture config by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6391](https://togithub.com/vercel/turbo/pull/6391)
-   refactor and fix CssEmbed for url() by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6382](https://togithub.com/vercel/turbo/pull/6382)
-   chore: update `update-informer` to 1.1 by [@&#8203;mgrachev](https://togithub.com/mgrachev) in [https://github.com/vercel/turbo/pull/5400](https://togithub.com/vercel/turbo/pull/5400)
-   fix: kill process group instead of children by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6387](https://togithub.com/vercel/turbo/pull/6387)
-   Update turbopack related labels by [@&#8203;padmaia](https://togithub.com/padmaia) in [https://github.com/vercel/turbo/pull/6399](https://togithub.com/vercel/turbo/pull/6399)
-   chore: prefactor for sending task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6383](https://togithub.com/vercel/turbo/pull/6383)
-   improve count hash set edge case handling, fix negative bottom connection counting by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/6393](https://togithub.com/vercel/turbo/pull/6393)
-   fix: add newline to graph output by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6397](https://togithub.com/vercel/turbo/pull/6397)
-   fix(Turborepo): Sort env vars, include framework inference in task summary by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6402](https://togithub.com/vercel/turbo/pull/6402)
-   chore(tests): make test output assertions simpler by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6400](https://togithub.com/vercel/turbo/pull/6400)
-   fix(Turborepo): Add suppressing logs line for new-only output mode by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6406](https://togithub.com/vercel/turbo/pull/6406)
-   port: Fixing and refactoring integration tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6398](https://togithub.com/vercel/turbo/pull/6398)
-   chore: Fix compilation warnings by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6418](https://togithub.com/vercel/turbo/pull/6418)
-   Port(Turborepo): Synthesize command for spaces by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6417](https://togithub.com/vercel/turbo/pull/6417)
-   fix: Dry run output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6416](https://togithub.com/vercel/turbo/pull/6416)
-   fix: unbreak main by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6423](https://togithub.com/vercel/turbo/pull/6423)
-   port(Turborepo): Pass through args by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6422](https://togithub.com/vercel/turbo/pull/6422)
-   fix(Turborepo): Fix error stutter, update tests to match on relevent error text by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6421](https://togithub.com/vercel/turbo/pull/6421)
-   port: Fixing run summary json output by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6431](https://togithub.com/vercel/turbo/pull/6431)
-   feat: send task logs to spaces by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6419](https://togithub.com/vercel/turbo/pull/6419)
-   chore: output absolute path warnings to stderr by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6434](https://togithub.com/vercel/turbo/pull/6434)
-   port(Turborepo): Add summary error to match Go by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6438](https://togithub.com/vercel/turbo/pull/6438)
-   port(Turborepo): Fix task dependencies integration tests by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6440](https://togithub.com/vercel/turbo/pull/6440)
-   fix: match dependency ordering between rust/go by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6443](https://togithub.com/vercel/turbo/pull/6443)
-   fix: `--no-cache` flag was not working by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6444](https://togithub.com/vercel/turbo/pull/6444)
-   Ensure daemon connection errors are non-fatal by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6445](https://togithub.com/vercel/turbo/pull/6445)
-   fix: Cleaning up duration printing by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6447](https://togithub.com/vercel/turbo/pull/6447)
-   fix: displaying stdout/stderr with errors-only by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6446](https://togithub.com/vercel/turbo/pull/6446)
-   port(Turborepo): Migrate inference tests to grep by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6437](https://togithub.com/vercel/turbo/pull/6437)
-   fix: rust spaces auth requirements by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6453](https://togithub.com/vercel/turbo/pull/6453)
-   chore: add test for turbo bin by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6451](https://togithub.com/vercel/turbo/pull/6451)
-   adjust tracing for run finalization by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6410](https://togithub.com/vercel/turbo/pull/6410)
-   chore(test): Remove single/double quotes in npm scripts in fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6459](https://togithub.com/vercel/turbo/pull/6459)
-   chore: simplify inference test grep commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6455](https://togithub.com/vercel/turbo/pull/6455)
-   feat(Turborepo): Send logging to stderr by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6462](https://togithub.com/vercel/turbo/pull/6462)
-   chore(test): Remove more single/double quotes in npm script fixtures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6464](https://togithub.com/vercel/turbo/pull/6464)
-   fix(Turborepo): Update missing-tasks.t to pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6467](https://togithub.com/vercel/turbo/pull/6467)
-   fix(Turborepo): Make verbosity test pass with Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6465](https://togithub.com/vercel/turbo/pull/6465)
-   chore(ci): launch prysk tests with JS instead of bash by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6463](https://togithub.com/vercel/turbo/pull/6463)
-   chore(test): remove another single quoted echo arg by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6468](https://togithub.com/vercel/turbo/pull/6468)
-   fix: Check cache on dry run by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6466](https://togithub.com/vercel/turbo/pull/6466)
-   fix(Turborepo): Fix dry-json/monorepo.t by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6470](https://togithub.com/vercel/turbo/pull/6470)
-   fix: dry run missing tasks with no script by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6473](https://togithub.com/vercel/turbo/pull/6473)
-   port(Turborepo): Add github prefixing in Rust by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6471](https://togithub.com/vercel/turbo/pull/6471)
-   fix: forward powershell style env casing by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6485](https://togithub.com/vercel/turbo/pull/6485)
-   fix: fixup unit tests that use the basic example by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6517](https://togithub.com/vercel/turbo/pull/6517)
-   fix: Deadlock with closing process manager by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6516](https://togithub.com/vercel/turbo/pull/6516)
-   chore(tests): delete e2e tests for turbo prune by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6515](https://togithub.com/vercel/turbo/pull/6515)
-   chore: clean up run by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6519](https://togithub.com/vercel/turbo/pull/6519)
-   feat: make rust codepath opt-out by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6420](https://togithub.com/vercel/turbo/pull/6420)
-   fix: run summary tests by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6532](https://togithub.com/vercel/turbo/pull/6532)
-   fix: make spaces requests in parallel by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6536](https://togithub.com/vercel/turbo/pull/6536)
-   refactor: switch daemon version to be independent of turbo version by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6528](https://togithub.com/vercel/turbo/pull/6528)
-   fix: analytics closing when all senders drop by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6542](https://togithub.com/vercel/turbo/pull/6542)
-   feat: add a go fallback flag by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6540](https://togithub.com/vercel/turbo/pull/6540)
-   chore(ci): delete e2e tests covering monorepo root in subdir by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6565](https://togithub.com/vercel/turbo/pull/6565)
-   fix: treat missing and empty scripts the same by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6552](https://togithub.com/vercel/turbo/pull/6552)
-   test(gen): add generator command tests by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6569](https://togithub.com/vercel/turbo/pull/6569)
-   chore(tests): fix daemon verbosity test on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6582](https://togithub.com/vercel/turbo/pull/6582)
-   chore(tests): fix absolute path warnings test on windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6564](https://togithub.com/vercel/turbo/pull/6564)
-   chore: hyphenate filenames isntead of underscore by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6595](https://togithub.com/vercel/turbo/pull/6595)
-   fix: ensure cache is done writing before exit by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6603](https://togithub.com/vercel/turbo/pull/6603)
-   feat(releases): update turborepo-release.yml by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6611](https://togithub.com/vercel/turbo/pull/6611)
-   chore(tests): remove hardcoded packageManager when running examples tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6615](https://togithub.com/vercel/turbo/pull/6615)
-   fix: Hard error on spaces by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6596](https://togithub.com/vercel/turbo/pull/6596)
-   fix(Turborepo): Handle windows absolute paths in global dependencies by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6608](https://togithub.com/vercel/turbo/pull/6608)
-   fix(tests): account for .cmd extension on npm binary in Rust codepath tests on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6604](https://togithub.com/vercel/turbo/pull/6604)
-   fix(release): correct excludes label by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/6623](https://togithub.com/vercel/turbo/pull/6623)
-   fix: second granularity by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6606](https://togithub.com/vercel/turbo/pull/6606)
-   feat: add read only remote cache by [@&#8203;maschwenk](https://togithub.com/maschwenk)  in [https://github.com/vercel/turbo/pull/6624](https://togithub.com/vercel/turbo/pull/6624)
-   fix: look for unix based project paths by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6609](https://togithub.com/vercel/turbo/pull/6609)
-   fix(tests): account for cmd extensions in more tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6628](https://togithub.com/vercel/turbo/pull/6628)
-   Drop nonsensical(?) tests? by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6632](https://togithub.com/vercel/turbo/pull/6632)
-   fix(turborepo): make linked installs test pass on Windows by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6477](https://togithub.com/vercel/turbo/pull/6477)
-   chore: update lockfile after workspace deletion by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6637](https://togithub.com/vercel/turbo/pull/6637)
-   fix(Turborepo): Remove unused globwalk code, fix multiple doublestars by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/6633](https://togithub.com/vercel/turbo/pull/6633)
-   feat: add package discovery trait and a few discovery strategies by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6275](https://togithub.com/vercel/turbo/pull/6275)
-   chore: use parent() method instead of .. directory traversal by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6635](https://togithub.com/vercel/turbo/pull/6635)
-   yarn-with-yarn workspace name by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/6647](https://togithub.com/vercel/turbo/pull/6647)
-   refactor: adjust test timeouts to avoid flaky test on windows by [@&#8203;arlyon](https://togithub.com/arlyon) in [https://github.com/vercel/turbo/pull/6638](https://togithub.com/vercel/turbo/pull/6638)
-   chore: reduce sleep length in test cases by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6640](https://togithub.com/vercel/turbo/pull/6640)
-   chore: fix rust compile warnings by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6655](https://togithub.com/vercel/turbo/pull/6655)
-   chore: add a helper script to replace turbo config in main fixture by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6652](https://togithub.com/vercel/turbo/pull/6652)
-   fix: Fixed cache restoration for an entry with a very long name by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [https://github.com/vercel/turbo/pull/6662](https://togithub.com/vercel/turbo/pull/6662)
-   fix: clean paths and use package path instead of package.json path by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6649](https://togithub.com/vercel/turbo/pull/6649)
-   Revert "chore: reduce sleep length in test cases ([#&#8203;6640](https://togithub.com/vercel/turbo/issues/6640))" by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6665](https://togithub.com/vercel/turbo/pull/6665)
-   chore(tests): write a test showing the behavior of gitignored inputs by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6669](https://togithub.com/vercel/turbo/pull/6669)
-   chore(tests): add test to check that root tasks can depend on workspace tasks by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6671](https://togithub.com/vercel/turbo/pull/6671)
-   chore: consolidate setup scripts for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6641](https://togithub.com/vercel/turbo/pull/6641)
-   fix(tests): fix unit tests that rely on examples by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6679](https://togithub.com/vercel/turbo/pull/6679)
-   chore(tests): remove duplicate setup_git script by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6680](https://togithub.com/vercel/turbo/pull/6680)
-   chore(tests): setup package manager consistently for example/integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6681](https://togithub.com/vercel/turbo/pull/6681)
-   chore(tests): make fixture copying consistent by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6683](https://togithub.com/vercel/turbo/pull/6683)
-   chore(tests): Enable corepack in local directory for integration tests by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6684](https://togithub.com/vercel/turbo/pull/6684)
-   chore(tests): delete feature where [@&#8203;canary](https://togithub.com/canary) turbo is used by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/6685](https://togithub.com/vercel/turbo/pull/6685)
-   fix(tests): update rust unit tests that rely on with-yarn fixture by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6693](https://togithub.com/vercel/turbo/pull/6693)
-   chore(daemon) disable daemon workspace discovery by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/6695](https://togithub.com/vercel/turbo/pull/6695)
-   chore: use path library read_to_string for better error message by [@

</details>

---

### Configuration

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

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

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

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

---

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

---

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

This PR contains the following updates:

| Package | Change | Age | Adoption | Passing | Confidence |
|---|---|---|---|---|---|
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.11.3` -> `1.12.2`](https://renovatebot.com/diffs/npm/turbo/1.10.16/1.12.2) | [![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.16/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.16/1.12.2?slim=true)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

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

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



#### What's Changed

##### create-turbo

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

##### Changelog

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

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### Changelog

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

#### New Contributors

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

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### Examples

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

##### Changelog

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

#### New Contributors

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

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### Examples

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

##### Changelog

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

#### New Contributors

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

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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



#### What's Changed

##### create-turbo

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

##### Examples

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

##### Changelog

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

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

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

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



#### What's Changed

##### Docs

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

##### create-turbo

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

##### turbo-ignore

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

##### eslint

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

##### Examples

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

##### Changelog

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

</details>

---

### Configuration

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

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

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

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

---

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

---

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

[turborepo] Turbo error: unable to find any locator for string_decoder@0.1
2 participants