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(turborepo): rust implementation of file hashing via git index #4967

Merged
merged 13 commits into from May 26, 2023

Conversation

gsoltis
Copy link
Contributor

@gsoltis gsoltis commented May 16, 2023

Description

This reverts commit f51b85b.

  • Moves git index-based file hashing to rust again
  • Use a clean path instead of realpath. We don't want to resolve symlinks, just directory traversals
  • Errors when our calls to git are not successful. Attempts to read stderr in error cases

Testing Instructions

Added a test for a symlinked repo and directory traversal

@github-actions
Copy link
Contributor

✅ This change can build next-swc

@vercel
Copy link

vercel bot commented May 16, 2023

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

Name Status Preview Comments Updated (UTC)
examples-basic-web 🔄 Building (Inspect) Visit Preview 💬 Add feedback May 26, 2023 2:45am
examples-cra-web 🔄 Building (Inspect) Visit Preview 💬 Add feedback May 26, 2023 2:45am
9 Ignored Deployments
Name Status Preview Comments Updated (UTC)
examples-designsystem-docs ⬜️ Ignored (Inspect) Visit Preview May 26, 2023 2:45am
examples-gatsby-web ⬜️ Ignored (Inspect) Visit Preview May 26, 2023 2:45am
examples-kitchensink-blog ⬜️ Ignored (Inspect) Visit Preview May 26, 2023 2:45am
examples-native-web ⬜️ Ignored (Inspect) Visit Preview May 26, 2023 2:45am
examples-nonmonorepo ⬜️ Ignored (Inspect) Visit Preview May 26, 2023 2:45am
examples-svelte-web ⬜️ Ignored (Inspect) Visit Preview May 26, 2023 2:45am
examples-tailwind-web ⬜️ Ignored (Inspect) Visit Preview May 26, 2023 2:45am
examples-vite-web ⬜️ Ignored (Inspect) Visit Preview May 26, 2023 2:45am
turbo-site ⬜️ Ignored (Inspect) Visit Preview May 26, 2023 2:45am

@github-actions
Copy link
Contributor

Linux Benchmark for 0a16a15

Click to view benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 9415.42µs ± 29.73µs 9381.24µs ± 44.94µs -0.36%
bench_hmr_to_eval/Turbopack CSR/1000 modules 8319.04µs ± 83.97µs 8425.06µs ± 66.64µs +1.27%
bench_startup/Turbopack CSR/1000 modules 1008.19ms ± 4.35ms 1013.60ms ± 3.46ms +0.54%

@github-actions
Copy link
Contributor

github-actions bot commented May 16, 2023

🟢 CI successful 🟢

Thanks

@github-actions
Copy link
Contributor

MacOS Benchmark for 0a16a15

Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 25.43ms ± 0.09ms 26.16ms ± 0.10ms +2.88% +1.35%
Click to view full benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 25.43ms ± 0.09ms 26.16ms ± 0.10ms +2.88% +1.35%
bench_hmr_to_eval/Turbopack CSR/1000 modules 25.75ms ± 0.14ms 25.72ms ± 0.12ms -0.15%
bench_startup/Turbopack CSR/1000 modules 3103.10ms ± 37.86ms 3184.85ms ± 44.57ms +2.63%

@github-actions
Copy link
Contributor

Linux Benchmark for cbd6dd7

Test Base PR % Significant %
bench_startup/Turbopack CSR/1000 modules 973.30ms ± 2.17ms 992.47ms ± 6.47ms +1.97% +0.19%
Click to view full benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 9611.81µs ± 66.31µs 9492.37µs ± 49.51µs -1.24%
bench_hmr_to_eval/Turbopack CSR/1000 modules 8551.74µs ± 91.00µs 8703.05µs ± 94.01µs +1.77%
bench_startup/Turbopack CSR/1000 modules 973.30ms ± 2.17ms 992.47ms ± 6.47ms +1.97% +0.19%

@gsoltis gsoltis changed the title Revert "Partial revert of #4820. (#4938)" fix: rust implementation of file hashing via git index May 16, 2023
@github-actions
Copy link
Contributor

Linux Benchmark for d835a30

Click to view benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 9627.84µs ± 119.21µs 9533.30µs ± 48.88µs -0.98%
bench_hmr_to_eval/Turbopack CSR/1000 modules 8473.33µs ± 80.03µs 8535.98µs ± 163.81µs +0.74%
bench_startup/Turbopack CSR/1000 modules 1015.76ms ± 2.96ms 1028.51ms ± 6.35ms +1.26%

@github-actions
Copy link
Contributor

MacOS Benchmark for d835a30

Test Base PR % Significant %
bench_hmr_to_eval/Turbopack CSR/1000 modules 24.53ms ± 0.52ms 52.28ms ± 2.55ms +113.17% +84.50%
Click to view full benchmark
Test Base PR % Significant %
bench_hmr_to_commit/Turbopack CSR/1000 modules 26.05ms ± 0.14ms 25.75ms ± 0.23ms -1.13%
bench_hmr_to_eval/Turbopack CSR/1000 modules 24.53ms ± 0.52ms 52.28ms ± 2.55ms +113.17% +84.50%
bench_startup/Turbopack CSR/1000 modules 2761.54ms ± 50.36ms 2649.54ms ± 41.75ms -4.06%

@gsoltis
Copy link
Contributor Author

gsoltis commented May 17, 2023

Note that this PR makes an explicit call to .clean(). In the future, I think this is likely to be moved into a .join() implementation.

@gsoltis gsoltis changed the title fix: rust implementation of file hashing via git index fix(turborepo): rust implementation of file hashing via git index May 17, 2023
@gsoltis gsoltis marked this pull request as ready for review May 22, 2023 21:09
@gsoltis gsoltis requested a review from a team as a code owner May 22, 2023 21:09
@gsoltis gsoltis requested review from chris-olszewski and NicholasLYang and removed request for tknickman May 23, 2023 21:29
crates/turborepo-scm/src/hash_object.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/ls_tree.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/ls_tree.rs Outdated Show resolved Hide resolved
crates/turborepo-scm/src/ls_tree.rs Outdated Show resolved Hide resolved
// Buffer size is HASH_LEN + 1 to account for the trailing \n
let mut buffer: [u8; HASH_LEN + 1] = [0; HASH_LEN + 1];
for (i, filename) in to_hash.iter().enumerate() {
if i == to_hash.len() {
Copy link
Contributor

Choose a reason for hiding this comment

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

I'm confused, when does this happen?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Dropped. It shouldn't.

crates/turborepo-scm/src/lib.rs Outdated Show resolved Hide resolved
Co-authored-by: Nicholas Yang <nicholas.yang@vercel.com>
@gsoltis gsoltis enabled auto-merge (squash) May 26, 2023 02:45
@gsoltis gsoltis merged commit c446d53 into main May 26, 2023
47 checks passed
@gsoltis gsoltis deleted the gsoltis/clean_paths branch May 26, 2023 03:27
kodiakhq bot pushed a commit to timelessco/js-bottomsheet that referenced this pull request Jun 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.1` -> `^1.10.2`](https://renovatebot.com/diffs/npm/turbo/1.10.1/1.10.2) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/compatibility-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/confidence-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

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

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



#### What's Changed

##### Changelog

-   fix(turborepo): rust implementation of file hashing via git index by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4967
-   feat: rust pnpm lockfile implementation by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4906
-   Fix broken link for `--verbosity`. by [@&#8203;leerob](https://togithub.com/leerob) in [vercel/turbo#5118
-   Noting multiple global turbo installations. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5119
-   List dev command more consistently. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5120
-   fix: update storybook dev command by [@&#8203;ekafyi](https://togithub.com/ekafyi) in [vercel/turbo#5105
-   feat(turborepo): Move some shim paths over to AbsoluteSystemPath by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5108
-   feat(docs): update copy arg by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5090
-   feat(docs): link examples with generators by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5126
-   sync dependencies with next.js by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5131
-   Include timeSaved metric when skipping cache check by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4952
-   Update storybook.mdx by [@&#8203;lofsigma](https://togithub.com/lofsigma) in [vercel/turbo#5134
-   refactor(turborepo): API Client Cleanup by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5084
-   feat(turborepo): Set feature to use Go daemon by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5147
-   fix(turborepo): Handle unimplemented and failed_precondition in daemon clients by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5151
-   feat(types): publish turbo types by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5130
-   feat(daemon): clean by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5152
-   chore(turborepo): Port piece of kill_live_server test for version mismatch by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5153
-   feat(turborepo): Wait for a pid file, then a sock file by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5158
-   feat(create-turbo): use latest turbo by default by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5155
-   Update existing-monorepo.mdx by [@&#8203;tomheaton](https://togithub.com/tomheaton) in [vercel/turbo#5149
-   Merge timesaved and cache status data structures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5135
-   chore: specify rust crates as inputs to building turborepo by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4664
-   Organize tests a bit by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5116
-   docs: add `--out-dir` reference for prune command by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5173
-   fix(turborepo): Restructure reading from stderr, fix parsing of ls-tree by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5181
-   chore(cli): add note about changing run summary by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5186
-   feat(turborepo): Remove as_absolute_path() in favor of Deref by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5194
-   Update log message when cache restoration is skipped by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5127
-   docs: Move deprecated options for run command to bottom by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5180
-   Parallel ignores concurrency and dependencies, we don't need to validate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5191
-   feat(lockfiles): add support pnpm lockfile version 6.1 by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5195
-   feat(turborepo): Remove anyhow from package manager detection by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5196
-   Add codemod for glob syntax issues. by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5184
-   fix(gen): swap to which for windows by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5208
-   Add timeSaved value into dry run output by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5171
-   fix(turborepo): Repo config case normalization by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5209
-   release(turborepo): 1.10.2-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5212
-   Update references to docs in code comments and help output by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5179
-   fix(turbo): remove npx version check for gen by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5216
-   release(turborepo): 1.10.2-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5222

#### New Contributors

-   [@&#8203;cool-little-fish](https://togithub.com/cool-little-fish) made their first contribution in [vercel/turbo#4902
-   [@&#8203;ekafyi](https://togithub.com/ekafyi) made their first contribution in [vercel/turbo#5105
-   [@&#8203;lofsigma](https://togithub.com/lofsigma) made their first contribution in [vercel/turbo#5134
-   [@&#8203;tomheaton](https://togithub.com/tomheaton) made their first contribution in [vercel/turbo#5149

**Full Changelog**: vercel/turbo@v1.10.1...v1.10.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "after 12am and before 5am every weekday,every weekend" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

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

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

---

 - [ ] 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://app.renovatebot.com/dashboard#github/timelessco/js-bottomsheet).
renovate bot added a commit to Asjas/platform that referenced this pull request Jun 7, 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.1` ->
`1.10.2`](https://renovatebot.com/diffs/npm/turbo/1.10.1/1.10.2) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/compatibility-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/confidence-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

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

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

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

#### What's Changed

##### Changelog

- fix(turborepo): rust implementation of file hashing via git index by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4967
- feat: rust pnpm lockfile implementation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4906
- Fix broken link for `--verbosity`. by
[@&#8203;leerob](https://togithub.com/leerob) in
[vercel/turbo#5118
- Noting multiple global turbo installations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5119
- List dev command more consistently. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5120
- fix: update storybook dev command by
[@&#8203;ekafyi](https://togithub.com/ekafyi) in
[vercel/turbo#5105
- feat(turborepo): Move some shim paths over to AbsoluteSystemPath by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5108
- feat(docs): update copy arg by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5090
- feat(docs): link examples with generators by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5126
- sync dependencies with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5131
- Include timeSaved metric when skipping cache check by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4952
- Update storybook.mdx by
[@&#8203;lofsigma](https://togithub.com/lofsigma) in
[vercel/turbo#5134
- refactor(turborepo): API Client Cleanup by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5084
- feat(turborepo): Set feature to use Go daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5147
- fix(turborepo): Handle unimplemented and failed_precondition in daemon
clients by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5151
- feat(types): publish turbo types by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5130
- feat(daemon): clean by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5152
- chore(turborepo): Port piece of kill_live_server test for version
mismatch by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5153
- feat(turborepo): Wait for a pid file, then a sock file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5158
- feat(create-turbo): use latest turbo by default by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5155
- Update existing-monorepo.mdx by
[@&#8203;tomheaton](https://togithub.com/tomheaton) in
[vercel/turbo#5149
- Merge timesaved and cache status data structures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5135
- chore: specify rust crates as inputs to building turborepo by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4664
- Organize tests a bit by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5116
- docs: add `--out-dir` reference for prune command by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5173
- fix(turborepo): Restructure reading from stderr, fix parsing of
ls-tree by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5181
- chore(cli): add note about changing run summary by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5186
- feat(turborepo): Remove as_absolute_path() in favor of Deref by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5194
- Update log message when cache restoration is skipped by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5127
- docs: Move deprecated options for run command to bottom by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5180
- Parallel ignores concurrency and dependencies, we don't need to
validate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5191
- feat(lockfiles): add support pnpm lockfile version 6.1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5195
- feat(turborepo): Remove anyhow from package manager detection by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5196
- Add codemod for glob syntax issues. by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5184
- fix(gen): swap to which for windows by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5208
- Add timeSaved value into dry run output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5171
- fix(turborepo): Repo config case normalization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5209
- release(turborepo): 1.10.2-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5212
- Update references to docs in code comments and help output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5179
- fix(turbo): remove npx version check for gen by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5216
- release(turborepo): 1.10.2-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5222

#### New Contributors

- [@&#8203;cool-little-fish](https://togithub.com/cool-little-fish) made
their first contribution in
[vercel/turbo#4902
- [@&#8203;ekafyi](https://togithub.com/ekafyi) made their first
contribution in
[vercel/turbo#5105
- [@&#8203;lofsigma](https://togithub.com/lofsigma) made their first
contribution in
[vercel/turbo#5134
- [@&#8203;tomheaton](https://togithub.com/tomheaton) made their first
contribution in
[vercel/turbo#5149

**Full Changelog**:
vercel/turbo@v1.10.1...v1.10.2

</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://app.renovatebot.com/dashboard#github/Asjas/platform).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
thedoublejay pushed a commit to levaintech/sticky that referenced this pull request Jun 7, 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.1` ->
`1.10.2`](https://renovatebot.com/diffs/npm/turbo/1.10.1/1.10.2) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/compatibility-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/confidence-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

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

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

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

#### What's Changed

##### Changelog

- fix(turborepo): rust implementation of file hashing via git index by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4967
- feat: rust pnpm lockfile implementation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4906
- Fix broken link for `--verbosity`. by
[@&#8203;leerob](https://togithub.com/leerob) in
[vercel/turbo#5118
- Noting multiple global turbo installations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5119
- List dev command more consistently. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5120
- fix: update storybook dev command by
[@&#8203;ekafyi](https://togithub.com/ekafyi) in
[vercel/turbo#5105
- feat(turborepo): Move some shim paths over to AbsoluteSystemPath by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5108
- feat(docs): update copy arg by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5090
- feat(docs): link examples with generators by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5126
- sync dependencies with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5131
- Include timeSaved metric when skipping cache check by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4952
- Update storybook.mdx by
[@&#8203;lofsigma](https://togithub.com/lofsigma) in
[vercel/turbo#5134
- refactor(turborepo): API Client Cleanup by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5084
- feat(turborepo): Set feature to use Go daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5147
- fix(turborepo): Handle unimplemented and failed_precondition in daemon
clients by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5151
- feat(types): publish turbo types by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5130
- feat(daemon): clean by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5152
- chore(turborepo): Port piece of kill_live_server test for version
mismatch by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5153
- feat(turborepo): Wait for a pid file, then a sock file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5158
- feat(create-turbo): use latest turbo by default by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5155
- Update existing-monorepo.mdx by
[@&#8203;tomheaton](https://togithub.com/tomheaton) in
[vercel/turbo#5149
- Merge timesaved and cache status data structures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5135
- chore: specify rust crates as inputs to building turborepo by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4664
- Organize tests a bit by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5116
- docs: add `--out-dir` reference for prune command by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5173
- fix(turborepo): Restructure reading from stderr, fix parsing of
ls-tree by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5181
- chore(cli): add note about changing run summary by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5186
- feat(turborepo): Remove as_absolute_path() in favor of Deref by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5194
- Update log message when cache restoration is skipped by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5127
- docs: Move deprecated options for run command to bottom by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5180
- Parallel ignores concurrency and dependencies, we don't need to
validate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5191
- feat(lockfiles): add support pnpm lockfile version 6.1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5195
- feat(turborepo): Remove anyhow from package manager detection by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5196
- Add codemod for glob syntax issues. by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5184
- fix(gen): swap to which for windows by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5208
- Add timeSaved value into dry run output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5171
- fix(turborepo): Repo config case normalization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5209
- release(turborepo): 1.10.2-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5212
- Update references to docs in code comments and help output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5179
- fix(turbo): remove npx version check for gen by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5216
- release(turborepo): 1.10.2-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5222

#### New Contributors

- [@&#8203;cool-little-fish](https://togithub.com/cool-little-fish) made
their first contribution in
[vercel/turbo#4902
- [@&#8203;ekafyi](https://togithub.com/ekafyi) made their first
contribution in
[vercel/turbo#5105
- [@&#8203;lofsigma](https://togithub.com/lofsigma) made their first
contribution in
[vercel/turbo#5134
- [@&#8203;tomheaton](https://togithub.com/tomheaton) made their first
contribution in
[vercel/turbo#5149

**Full Changelog**:
vercel/turbo@v1.10.1...v1.10.2

</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://app.renovatebot.com/dashboard#github/BirthdayResearch/sticky).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

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 Jun 7, 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 |
|---|---|---|---|---|---|
| [@emotion/react](https://togithub.com/emotion-js/emotion/tree/main#readme) ([source](https://togithub.com/emotion-js/emotion)) | [`11.11.0` -> `11.11.1`](https://renovatebot.com/diffs/npm/@emotion%2freact/11.11.0/11.11.1) | [![age](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.1/compatibility-slim/11.11.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@emotion%2freact/11.11.1/confidence-slim/11.11.0)](https://docs.renovatebot.com/merge-confidence/) |
| [@tabler/icons-react](https://tabler-icons.io) ([source](https://togithub.com/tabler/tabler-icons)) | [`2.21.0` -> `2.22.0`](https://renovatebot.com/diffs/npm/@tabler%2ficons-react/2.21.0/2.22.0) | [![age](https://badges.renovateapi.com/packages/npm/@tabler%2ficons-react/2.22.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@tabler%2ficons-react/2.22.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@tabler%2ficons-react/2.22.0/compatibility-slim/2.21.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@tabler%2ficons-react/2.22.0/confidence-slim/2.21.0)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-turbo](https://togithub.com/vercel/turbo) | [`1.10.1` -> `1.10.2`](https://renovatebot.com/diffs/npm/eslint-plugin-turbo/1.10.1/1.10.2) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.2/compatibility-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-turbo/1.10.2/confidence-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.10.1` -> `1.10.2`](https://renovatebot.com/diffs/npm/turbo/1.10.1/1.10.2) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/compatibility-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/confidence-slim/1.10.1)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

<details>
<summary>emotion-js/emotion</summary>

### [`v11.11.1`](https://togithub.com/emotion-js/emotion/releases/tag/%40emotion/react%4011.11.1)

[Compare Source](https://togithub.com/emotion-js/emotion/compare/@emotion/react@11.11.0...@emotion/react@11.11.1)

##### Patch Changes

-   [#&#8203;3048](https://togithub.com/emotion-js/emotion/pull/3048) [`9357f337`](https://togithub.com/emotion-js/emotion/commit/9357f337200ef38f9c6df5d4dd7c20772478ea42) Thanks [@&#8203;naari3](https://togithub.com/naari3)! - Added `ElementType` to the Emotion's `JSX` namespace. It's defined in the same way as the one in `@types/react` and should make it possible to use components that return `string`s, `Promise`s and other types that are valid in React.

</details>

<details>
<summary>tabler/tabler-icons</summary>

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

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

<img src="https://github.com/tabler/tabler-icons/assets/1282324/7eb81d44-f636-460c-8a6f-11d58166cc68" width="584" alt="" />

##### 18 new icons:

-   `align-box-center-bottom`
-   `align-box-center-stretch`
-   `align-box-center-top`
-   `align-box-left-stretch`
-   `align-box-right-stretch`
-   `brand-kbin`
-   `brand-rumble`
-   `calendar-repeat`
-   `piano`
-   `time-duration-0`
-   `time-duration-10`
-   `time-duration-15`
-   `time-duration-30`
-   `time-duration-45`
-   `time-duration-5`
-   `time-duration-60`
-   `time-duration-90`
-   `time-duration-off`

Fixed icons: `repeat`

</details>

<details>
<summary>vercel/turbo</summary>

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

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



#### What's Changed

##### Changelog

-   fix(turborepo): rust implementation of file hashing via git index by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#4967
-   feat: rust pnpm lockfile implementation by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#4906
-   Fix broken link for `--verbosity`. by [@&#8203;leerob](https://togithub.com/leerob) in [vercel/turbo#5118
-   Noting multiple global turbo installations. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5119
-   List dev command more consistently. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [vercel/turbo#5120
-   fix: update storybook dev command by [@&#8203;ekafyi](https://togithub.com/ekafyi) in [vercel/turbo#5105
-   feat(turborepo): Move some shim paths over to AbsoluteSystemPath by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5108
-   feat(docs): update copy arg by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5090
-   feat(docs): link examples with generators by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5126
-   sync dependencies with next.js by [@&#8203;sokra](https://togithub.com/sokra) in [vercel/turbo#5131
-   Include timeSaved metric when skipping cache check by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4952
-   Update storybook.mdx by [@&#8203;lofsigma](https://togithub.com/lofsigma) in [vercel/turbo#5134
-   refactor(turborepo): API Client Cleanup by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5084
-   feat(turborepo): Set feature to use Go daemon by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5147
-   fix(turborepo): Handle unimplemented and failed_precondition in daemon clients by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5151
-   feat(types): publish turbo types by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5130
-   feat(daemon): clean by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5152
-   chore(turborepo): Port piece of kill_live_server test for version mismatch by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5153
-   feat(turborepo): Wait for a pid file, then a sock file by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5158
-   feat(create-turbo): use latest turbo by default by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5155
-   Update existing-monorepo.mdx by [@&#8203;tomheaton](https://togithub.com/tomheaton) in [vercel/turbo#5149
-   Merge timesaved and cache status data structures by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5135
-   chore: specify rust crates as inputs to building turborepo by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#4664
-   Organize tests a bit by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5116
-   docs: add `--out-dir` reference for prune command by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5173
-   fix(turborepo): Restructure reading from stderr, fix parsing of ls-tree by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5181
-   chore(cli): add note about changing run summary by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5186
-   feat(turborepo): Remove as_absolute_path() in favor of Deref by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5194
-   Update log message when cache restoration is skipped by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5127
-   docs: Move deprecated options for run command to bottom by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5180
-   Parallel ignores concurrency and dependencies, we don't need to validate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5191
-   feat(lockfiles): add support pnpm lockfile version 6.1 by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [vercel/turbo#5195
-   feat(turborepo): Remove anyhow from package manager detection by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [vercel/turbo#5196
-   Add codemod for glob syntax issues. by [@&#8203;arlyon](https://togithub.com/arlyon) in [vercel/turbo#5184
-   fix(gen): swap to which for windows by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5208
-   Add timeSaved value into dry run output by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5171
-   fix(turborepo): Repo config case normalization by [@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in [vercel/turbo#5209
-   release(turborepo): 1.10.2-canary.2 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5212
-   Update references to docs in code comments and help output by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [vercel/turbo#5179
-   fix(turbo): remove npx version check for gen by [@&#8203;tknickman](https://togithub.com/tknickman) in [vercel/turbo#5216
-   release(turborepo): 1.10.2-canary.3 by [@&#8203;github-actions](https://togithub.com/github-actions) in [vercel/turbo#5222

#### New Contributors

-   [@&#8203;cool-little-fish](https://togithub.com/cool-little-fish) made their first contribution in [vercel/turbo#4902
-   [@&#8203;ekafyi](https://togithub.com/ekafyi) made their first contribution in [vercel/turbo#5105
-   [@&#8203;lofsigma](https://togithub.com/lofsigma) made their first contribution in [vercel/turbo#5134
-   [@&#8203;tomheaton](https://togithub.com/tomheaton) made their first contribution in [vercel/turbo#5149

**Full Changelog**: vercel/turbo@v1.10.1...v1.10.2

</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://app.renovatebot.com/dashboard#github/weareinreach/GLAAD).



PR-URL: #55
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
fuxingloh pushed a commit to fuxingloh/contented that referenced this pull request Jun 9, 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.9.4` ->
`^1.10.2`](https://renovatebot.com/diffs/npm/turbo/1.9.6/1.10.2) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/compatibility-slim/1.9.6)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/confidence-slim/1.9.6)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

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

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

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

#### What's Changed

##### Changelog

- fix(turborepo): rust implementation of file hashing via git index by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4967
- feat: rust pnpm lockfile implementation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4906
- Fix broken link for `--verbosity`. by
[@&#8203;leerob](https://togithub.com/leerob) in
[vercel/turbo#5118
- Noting multiple global turbo installations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5119
- List dev command more consistently. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5120
- fix: update storybook dev command by
[@&#8203;ekafyi](https://togithub.com/ekafyi) in
[vercel/turbo#5105
- feat(turborepo): Move some shim paths over to AbsoluteSystemPath by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5108
- feat(docs): update copy arg by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5090
- feat(docs): link examples with generators by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5126
- sync dependencies with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5131
- Include timeSaved metric when skipping cache check by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4952
- Update storybook.mdx by
[@&#8203;lofsigma](https://togithub.com/lofsigma) in
[vercel/turbo#5134
- refactor(turborepo): API Client Cleanup by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5084
- feat(turborepo): Set feature to use Go daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5147
- fix(turborepo): Handle unimplemented and failed_precondition in daemon
clients by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5151
- feat(types): publish turbo types by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5130
- feat(daemon): clean by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5152
- chore(turborepo): Port piece of kill_live_server test for version
mismatch by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5153
- feat(turborepo): Wait for a pid file, then a sock file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5158
- feat(create-turbo): use latest turbo by default by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5155
- Update existing-monorepo.mdx by
[@&#8203;tomheaton](https://togithub.com/tomheaton) in
[vercel/turbo#5149
- Merge timesaved and cache status data structures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5135
- chore: specify rust crates as inputs to building turborepo by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4664
- Organize tests a bit by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5116
- docs: add `--out-dir` reference for prune command by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5173
- fix(turborepo): Restructure reading from stderr, fix parsing of
ls-tree by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5181
- chore(cli): add note about changing run summary by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5186
- feat(turborepo): Remove as_absolute_path() in favor of Deref by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5194
- Update log message when cache restoration is skipped by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5127
- docs: Move deprecated options for run command to bottom by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5180
- Parallel ignores concurrency and dependencies, we don't need to
validate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5191
- feat(lockfiles): add support pnpm lockfile version 6.1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5195
- feat(turborepo): Remove anyhow from package manager detection by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5196
- Add codemod for glob syntax issues. by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5184
- fix(gen): swap to which for windows by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5208
- Add timeSaved value into dry run output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5171
- fix(turborepo): Repo config case normalization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5209
- release(turborepo): 1.10.2-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5212
- Update references to docs in code comments and help output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5179
- fix(turbo): remove npx version check for gen by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5216
- release(turborepo): 1.10.2-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5222

#### New Contributors

- [@&#8203;cool-little-fish](https://togithub.com/cool-little-fish) made
their first contribution in
[vercel/turbo#4902
- [@&#8203;ekafyi](https://togithub.com/ekafyi) made their first
contribution in
[vercel/turbo#5105
- [@&#8203;lofsigma](https://togithub.com/lofsigma) made their first
contribution in
[vercel/turbo#5134
- [@&#8203;tomheaton](https://togithub.com/tomheaton) made their first
contribution in
[vercel/turbo#5149

**Full Changelog**:
vercel/turbo@v1.10.1...v1.10.2

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

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

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

**Full Changelog**:
vercel/turbo@v1.10.0...v1.10.1

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

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

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

#### What's Changed

##### Changelog

- Exclude Pipeline Definition from Global Hash by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4545
- chore(turbo/gen): mark as experimental by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5016
- fix: no longer crash for single projects with global dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5002
- Add `dotEnv` to `turbo.json` by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4870
- Add missing `--copy` flag. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5021
- feat(basic): add generators to basic example by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5006
- feat(prune) allow pruning of projects using Yarn PnP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5019
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5039
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5041
- feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5020
- fix(create-turbo): default example messaging by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5059
- fix(daemon): kill daemon when root is removed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5038
- ci(turbo): allow publishing from non-main by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5062
- refactor(turborepo): Consolidated PathError and PathValidationError by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5060
- fix(create-turbo): git init must use add by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5058
- feat: go daemon opt-in feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5076
- Add codemod to transform literals to wildcards by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5054
- Wildcard env by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5017
- fix(daemon): plumb through flush watch errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5070
- Improve error message when repo is not linked or token is expired by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5089
- fix(turborepo):Support distinguishing unset env vars by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5086

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.9.9...v1.10.0

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

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

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

#### What's Changed

##### Changelog

- fix(daemon): add short sleep to repo root removal by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5067

**Full Changelog**:
vercel/turbo@v1.9.8...v1.9.9

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

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

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

#### What's Changed

##### Changelog

- fix(yarn): no longer error on pnp by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5009

**Full Changelog**:
vercel/turbo@v1.9.7...v1.9.8

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

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

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

#### What's Changed

##### Changelog

- fix(docs): Change `secrets.TURBO_TEAM` to `vars.TURBO_TEAM` by
[@&#8203;jeniabrook](https://togithub.com/jeniabrook) in
[vercel/turbo#4975
- fix(create-turbo): Hard code default example. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4974
- fix: berry lockfile semver range parsing of valid floats by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4945
- Update with-changesets with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4843
- Update kitchen-sink with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4840
- docs: Explain recursive topo tasks more by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4963
- feat: Print failed tasks at the bottom of the run by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4965
- fix(lockfile): traverse npm peer dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4981
- feat(cli): rework generator api by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4984
- Send task summaries as tasks finish by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4913
- Update with-react-native-web with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4847
- Update non-monorepo with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4842
- Update with-prisma with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4846
- Update with-docker with App Router. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#4844
- feat(cli): generators what -> type + cmd change by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#4996

#### New Contributors

- [@&#8203;jeniabrook](https://togithub.com/jeniabrook) made their first
contribution in
[vercel/turbo#4975
- [@&#8203;andershagbard](https://togithub.com/andershagbard) made their
first contribution in
[vercel/turbo#4971

**Full Changelog**:
vercel/turbo@v1.9.6...v1.9.7

</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://app.renovatebot.com/dashboard#github/BirthdayResearch/contented).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMDIuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
kodiakhq bot pushed a commit to timelessco/next-ts-app that referenced this pull request Jun 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 |
|---|---|---|---|---|---|
| [@commitlint/cli](https://commitlint.js.org/) ([source](https://togithub.com/conventional-changelog/commitlint)) | [`17.6.3` -> `17.6.5`](https://renovatebot.com/diffs/npm/@commitlint%2fcli/17.6.3/17.6.5) | [![age](https://badges.renovateapi.com/packages/npm/@commitlint%2fcli/17.6.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@commitlint%2fcli/17.6.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@commitlint%2fcli/17.6.5/compatibility-slim/17.6.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@commitlint%2fcli/17.6.5/confidence-slim/17.6.3)](https://docs.renovatebot.com/merge-confidence/) |
| [@commitlint/config-conventional](https://commitlint.js.org/) ([source](https://togithub.com/conventional-changelog/commitlint)) | [`17.6.3` -> `17.6.5`](https://renovatebot.com/diffs/npm/@commitlint%2fconfig-conventional/17.6.3/17.6.5) | [![age](https://badges.renovateapi.com/packages/npm/@commitlint%2fconfig-conventional/17.6.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@commitlint%2fconfig-conventional/17.6.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@commitlint%2fconfig-conventional/17.6.5/compatibility-slim/17.6.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@commitlint%2fconfig-conventional/17.6.5/confidence-slim/17.6.3)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/bundle-analyzer](https://togithub.com/vercel/next.js) | [`13.4.2` -> `13.4.4`](https://renovatebot.com/diffs/npm/@next%2fbundle-analyzer/13.4.2/13.4.4) | [![age](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.4/compatibility-slim/13.4.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@next%2fbundle-analyzer/13.4.4/confidence-slim/13.4.2)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/env](https://togithub.com/vercel/next.js) | [`13.4.2` -> `13.4.4`](https://renovatebot.com/diffs/npm/@next%2fenv/13.4.2/13.4.4) | [![age](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.4/compatibility-slim/13.4.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@next%2fenv/13.4.4/confidence-slim/13.4.2)](https://docs.renovatebot.com/merge-confidence/) |
| [@next/eslint-plugin-next](https://togithub.com/vercel/next.js) | [`13.4.2` -> `13.4.4`](https://renovatebot.com/diffs/npm/@next%2feslint-plugin-next/13.4.2/13.4.4) | [![age](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.4/compatibility-slim/13.4.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@next%2feslint-plugin-next/13.4.4/confidence-slim/13.4.2)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/node](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/node) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.16.13` -> `18.16.16`](https://renovatebot.com/diffs/npm/@types%2fnode/18.16.13/18.16.16) | [![age](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/compatibility-slim/18.16.13)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2fnode/18.16.16/confidence-slim/18.16.13)](https://docs.renovatebot.com/merge-confidence/) |
| [@types/react](https://togithub.com/DefinitelyTyped/DefinitelyTyped/tree/master/types/react) ([source](https://togithub.com/DefinitelyTyped/DefinitelyTyped)) | [`18.2.6` -> `18.2.9`](https://renovatebot.com/diffs/npm/@types%2freact/18.2.6/18.2.9) | [![age](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.9/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.9/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.9/compatibility-slim/18.2.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@types%2freact/18.2.9/confidence-slim/18.2.6)](https://docs.renovatebot.com/merge-confidence/) |
| [@typescript-eslint/experimental-utils](https://togithub.com/typescript-eslint/typescript-eslint) | [`5.59.6` -> `5.59.9`](https://renovatebot.com/diffs/npm/@typescript-eslint%2fexperimental-utils/5.59.6/5.59.9) | [![age](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.59.9/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.59.9/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.59.9/compatibility-slim/5.59.6)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/@typescript-eslint%2fexperimental-utils/5.59.9/confidence-slim/5.59.6)](https://docs.renovatebot.com/merge-confidence/) |
| [all-contributors-cli](https://togithub.com/all-contributors/all-contributors-cli) | [`6.25.1` -> `6.26.0`](https://renovatebot.com/diffs/npm/all-contributors-cli/6.25.1/6.26.0) | [![age](https://badges.renovateapi.com/packages/npm/all-contributors-cli/6.26.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/all-contributors-cli/6.26.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/all-contributors-cli/6.26.0/compatibility-slim/6.25.1)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/all-contributors-cli/6.26.0/confidence-slim/6.25.1)](https://docs.renovatebot.com/merge-confidence/) |
| [dotenv](https://togithub.com/motdotla/dotenv) | [`16.0.3` -> `16.1.4`](https://renovatebot.com/diffs/npm/dotenv/16.0.3/16.1.4) | [![age](https://badges.renovateapi.com/packages/npm/dotenv/16.1.4/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/dotenv/16.1.4/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/dotenv/16.1.4/compatibility-slim/16.0.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/dotenv/16.1.4/confidence-slim/16.0.3)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint](https://eslint.org) ([source](https://togithub.com/eslint/eslint)) | [`8.40.0` -> `8.42.0`](https://renovatebot.com/diffs/npm/eslint/8.40.0/8.42.0) | [![age](https://badges.renovateapi.com/packages/npm/eslint/8.42.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint/8.42.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint/8.42.0/compatibility-slim/8.40.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint/8.42.0/confidence-slim/8.40.0)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-config-canonical](https://togithub.com/gajus/eslint-config-canonical) | [`41.0.4` -> `41.0.5`](https://renovatebot.com/diffs/npm/eslint-config-canonical/41.0.4/41.0.5) | [![age](https://badges.renovateapi.com/packages/npm/eslint-config-canonical/41.0.5/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-config-canonical/41.0.5/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-config-canonical/41.0.5/compatibility-slim/41.0.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-config-canonical/41.0.5/confidence-slim/41.0.4)](https://docs.renovatebot.com/merge-confidence/) |
| [eslint-plugin-tailwindcss](https://togithub.com/francoismassart/eslint-plugin-tailwindcss) | [`3.12.0` -> `3.12.1`](https://renovatebot.com/diffs/npm/eslint-plugin-tailwindcss/3.12.0/3.12.1) | [![age](https://badges.renovateapi.com/packages/npm/eslint-plugin-tailwindcss/3.12.1/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/eslint-plugin-tailwindcss/3.12.1/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/eslint-plugin-tailwindcss/3.12.1/compatibility-slim/3.12.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/eslint-plugin-tailwindcss/3.12.1/confidence-slim/3.12.0)](https://docs.renovatebot.com/merge-confidence/) |
| [knip](https://togithub.com/webpro/knip) | [`2.11.0` -> `2.13.0`](https://renovatebot.com/diffs/npm/knip/2.11.0/2.13.0) | [![age](https://badges.renovateapi.com/packages/npm/knip/2.13.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/knip/2.13.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/knip/2.13.0/compatibility-slim/2.11.0)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/knip/2.13.0/confidence-slim/2.11.0)](https://docs.renovatebot.com/merge-confidence/) |
| [markdownlint](https://togithub.com/DavidAnson/markdownlint) | [`0.28.2` -> `0.29.0`](https://renovatebot.com/diffs/npm/markdownlint/0.28.2/0.29.0) | [![age](https://badges.renovateapi.com/packages/npm/markdownlint/0.29.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/markdownlint/0.29.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/markdownlint/0.29.0/compatibility-slim/0.28.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/markdownlint/0.29.0/confidence-slim/0.28.2)](https://docs.renovatebot.com/merge-confidence/) |
| [next-sitemap](https://togithub.com/iamvishnusankar/next-sitemap) | [`4.0.9` -> `4.1.3`](https://renovatebot.com/diffs/npm/next-sitemap/4.0.9/4.1.3) | [![age](https://badges.renovateapi.com/packages/npm/next-sitemap/4.1.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/next-sitemap/4.1.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/next-sitemap/4.1.3/compatibility-slim/4.0.9)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/next-sitemap/4.1.3/confidence-slim/4.0.9)](https://docs.renovatebot.com/merge-confidence/) |
| [postcss](https://postcss.org/) ([source](https://togithub.com/postcss/postcss)) | [`8.4.23` -> `8.4.24`](https://renovatebot.com/diffs/npm/postcss/8.4.23/8.4.24) | [![age](https://badges.renovateapi.com/packages/npm/postcss/8.4.24/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/postcss/8.4.24/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/postcss/8.4.24/compatibility-slim/8.4.23)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/postcss/8.4.24/confidence-slim/8.4.23)](https://docs.renovatebot.com/merge-confidence/) |
| [release-it](https://togithub.com/release-it/release-it) | [`15.10.3` -> `15.11.0`](https://renovatebot.com/diffs/npm/release-it/15.10.3/15.11.0) | [![age](https://badges.renovateapi.com/packages/npm/release-it/15.11.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/release-it/15.11.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/release-it/15.11.0/compatibility-slim/15.10.3)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/release-it/15.11.0/confidence-slim/15.10.3)](https://docs.renovatebot.com/merge-confidence/) |
| [stylelint](https://stylelint.io) ([source](https://togithub.com/stylelint/stylelint)) | [`15.6.2` -> `15.7.0`](https://renovatebot.com/diffs/npm/stylelint/15.6.2/15.7.0) | [![age](https://badges.renovateapi.com/packages/npm/stylelint/15.7.0/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/stylelint/15.7.0/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/stylelint/15.7.0/compatibility-slim/15.6.2)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/stylelint/15.7.0/confidence-slim/15.6.2)](https://docs.renovatebot.com/merge-confidence/) |
| [turbo](https://turbo.build/repo) ([source](https://togithub.com/vercel/turbo)) | [`1.9.8` -> `1.10.2`](https://renovatebot.com/diffs/npm/turbo/1.9.8/1.10.2) | [![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/compatibility-slim/1.9.8)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.2/confidence-slim/1.9.8)](https://docs.renovatebot.com/merge-confidence/) |
| [typescript](https://www.typescriptlang.org/) ([source](https://togithub.com/Microsoft/TypeScript)) | [`5.0.4` -> `5.1.3`](https://renovatebot.com/diffs/npm/typescript/5.0.4/5.1.3) | [![age](https://badges.renovateapi.com/packages/npm/typescript/5.1.3/age-slim)](https://docs.renovatebot.com/merge-confidence/) | [![adoption](https://badges.renovateapi.com/packages/npm/typescript/5.1.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/) | [![passing](https://badges.renovateapi.com/packages/npm/typescript/5.1.3/compatibility-slim/5.0.4)](https://docs.renovatebot.com/merge-confidence/) | [![confidence](https://badges.renovateapi.com/packages/npm/typescript/5.1.3/confidence-slim/5.0.4)](https://docs.renovatebot.com/merge-confidence/) |

---

### Release Notes

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

### [`v17.6.5`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/cli/CHANGELOG.md#&#8203;1765-httpsgithubcomconventional-changelogcommitlintcomparev1764v1765-2023-05-30)

[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v17.6.3...v17.6.5)

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

</details>

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

### [`v17.6.5`](https://togithub.com/conventional-changelog/commitlint/blob/HEAD/@&#8203;commitlint/config-conventional/CHANGELOG.md#&#8203;1765-httpsgithubcomconventional-changelogcommitlintcomparev1764v1765-2023-05-30)

[Compare Source](https://togithub.com/conventional-changelog/commitlint/compare/v17.6.3...v17.6.5)

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

</details>

<details>
<summary>vercel/next.js</summary>

### [`v13.4.4`](https://togithub.com/vercel/next.js/releases/tag/v13.4.4)

[Compare Source](https://togithub.com/vercel/next.js/compare/v13.4.3...v13.4.4)

##### Core Changes

-   test(turbopack): script to sync latest test lists: [#&#8203;50008](https://togithub.com/vercel/next.js/issues/50008)
-   Pages Module Transition: [#&#8203;49962](https://togithub.com/vercel/next.js/issues/49962)
-   Server Actions: Fix member expr in closure captured values: [#&#8203;50020](https://togithub.com/vercel/next.js/issues/50020)
-   Error in next export when serverActions is enabled: [#&#8203;50039](https://togithub.com/vercel/next.js/issues/50039)
-   \[turbopack]: Update renamed SubpathValue: [#&#8203;49636](https://togithub.com/vercel/next.js/issues/49636)
-   Fix default metadata is missing in root not-found: [#&#8203;50044](https://togithub.com/vercel/next.js/issues/50044)
-   Always defer close tags to be the suffix of body stream: [#&#8203;50056](https://togithub.com/vercel/next.js/issues/50056)
-   Fix types of cookies(): [#&#8203;50052](https://togithub.com/vercel/next.js/issues/50052)
-   Fix client references extraction of CJS exports analysis: [#&#8203;50059](https://togithub.com/vercel/next.js/issues/50059)
-   Add `x-forwarded-*` headers to turbopack renders: [#&#8203;50012](https://togithub.com/vercel/next.js/issues/50012)
-   Remove node-sass from peerDependencies: [#&#8203;50065](https://togithub.com/vercel/next.js/issues/50065)
-   Add optional generic parameter to NextResponse: [#&#8203;47526](https://togithub.com/vercel/next.js/issues/47526)
-   feat(turbopack): initial sass-loader support: [#&#8203;49882](https://togithub.com/vercel/next.js/issues/49882)
-   update test snapshots: [#&#8203;50159](https://togithub.com/vercel/next.js/issues/50159)
-   \[create-next-app]: respecting the user's `init.defaultBranch` git con…: [#&#8203;49960](https://togithub.com/vercel/next.js/issues/49960)
-   Update `swc_core` to `v0.76.18`: [#&#8203;50137](https://togithub.com/vercel/next.js/issues/50137)
-   Fix navigating on not-found: [#&#8203;50047](https://togithub.com/vercel/next.js/issues/50047)
-   Fix env variables set in next.config.js: [#&#8203;50179](https://togithub.com/vercel/next.js/issues/50179)
-   Add warning for edge with force-static: [#&#8203;50182](https://togithub.com/vercel/next.js/issues/50182)
-   fix: add missing `draftMode` type to GetServerSidePropsContext: [#&#8203;50184](https://togithub.com/vercel/next.js/issues/50184)
-   Fix react fetch deduping without next cache: [#&#8203;50187](https://togithub.com/vercel/next.js/issues/50187)
-   Fix pages react alias: [#&#8203;50128](https://togithub.com/vercel/next.js/issues/50128)
-   Add the `node` condition to import resolution: [#&#8203;50007](https://togithub.com/vercel/next.js/issues/50007)
-   test(turbopack): run next.js integration tests with denylist: [#&#8203;50172](https://togithub.com/vercel/next.js/issues/50172)
-   Move debugging variable into useEffect: [#&#8203;50210](https://togithub.com/vercel/next.js/issues/50210)
-   refactor webpack loaders: [#&#8203;49535](https://togithub.com/vercel/next.js/issues/49535)
-   Fix static workers distributing: [#&#8203;50194](https://togithub.com/vercel/next.js/issues/50194)
-   Ensure NEXT_DYNAMIC_NO_SSR_CODE has a unique name: [#&#8203;50219](https://togithub.com/vercel/next.js/issues/50219)
-   fix: Added blockfrost-js, lucid-cardano & mongoose package to srvExtPackages to prevent issue [#&#8203;49783](https://togithub.com/vercel/next.js/issues/49783) from happening.: [#&#8203;49938](https://togithub.com/vercel/next.js/issues/49938)
-   change static path to /\_next/static/media: [#&#8203;50207](https://togithub.com/vercel/next.js/issues/50207)
-   Add special route types to the link type declaration: [#&#8203;50066](https://togithub.com/vercel/next.js/issues/50066)
-   fix: NODE_OPTIONS='--inspect' in next dev for debugging: [#&#8203;48019](https://togithub.com/vercel/next.js/issues/48019)
-   enable more test cases for turbopack: [#&#8203;50154](https://togithub.com/vercel/next.js/issues/50154)
-   feat(next-swc): Implement CJS optimizer: [#&#8203;49972](https://togithub.com/vercel/next.js/issues/49972)
-   Fix alias for react-dom/server: [#&#8203;50238](https://togithub.com/vercel/next.js/issues/50238)
-   Revert "feat(next-swc): Implement CJS optimizer": [#&#8203;50247](https://togithub.com/vercel/next.js/issues/50247)
-   Fix free port handling: [#&#8203;50248](https://togithub.com/vercel/next.js/issues/50248)
-   feat(next-swc): Add CJS optimizer again: [#&#8203;50249](https://togithub.com/vercel/next.js/issues/50249)
-   Fix edge case in the CJS optimizer: [#&#8203;50258](https://togithub.com/vercel/next.js/issues/50258)
-   Remove static analysis of `process.env`: [#&#8203;50260](https://togithub.com/vercel/next.js/issues/50260)
-   Update next start listening to behave consistently: [#&#8203;50293](https://togithub.com/vercel/next.js/issues/50293)
-   Update server invoke-request: [#&#8203;50296](https://togithub.com/vercel/next.js/issues/50296)
-   Update unstable_cache key to include args: [#&#8203;50301](https://togithub.com/vercel/next.js/issues/50301)
-   Add root detection utils: [#&#8203;50305](https://togithub.com/vercel/next.js/issues/50305)
-   fix sass handling after refactoring: [#&#8203;50259](https://togithub.com/vercel/next.js/issues/50259)
-   Alias next/server for edge runtime: [#&#8203;50268](https://togithub.com/vercel/next.js/issues/50268)
-   \[turbopack]: Serve `_devMiddlewareManifest.json` from router: [#&#8203;50241](https://togithub.com/vercel/next.js/issues/50241)
-   Fix catch-all edge app route: [#&#8203;50313](https://togithub.com/vercel/next.js/issues/50313)
-   land: Include charset=utf-8 with x-component Content-Type header: [#&#8203;50314](https://togithub.com/vercel/next.js/issues/50314)
-   do not apply sass loader on existing loaders: [#&#8203;50308](https://togithub.com/vercel/next.js/issues/50308)
-   Add missing react-dom/client alias: [#&#8203;50324](https://togithub.com/vercel/next.js/issues/50324)
-   Fix missing error when using Actions on the client layer without enabling the feature flag: [#&#8203;50257](https://togithub.com/vercel/next.js/issues/50257)
-   remove allowlist, only use denylist, enable newly passing tests: [#&#8203;50325](https://togithub.com/vercel/next.js/issues/50325)
-   Fix SWC loader options for files outside of RSC layers: [#&#8203;50341](https://togithub.com/vercel/next.js/issues/50341)

##### Documentation Changes

-   Update app-static-to-dynamic-error.md: [#&#8203;50085](https://togithub.com/vercel/next.js/issues/50085)
-   Update invalid-new-link-with-extra-anchor.md: [#&#8203;50036](https://togithub.com/vercel/next.js/issues/50036)

##### Example Changes

-   fix: use node copyFile for cross-platform support: [#&#8203;48740](https://togithub.com/vercel/next.js/issues/48740)
-   Clerk example updates: [#&#8203;50021](https://togithub.com/vercel/next.js/issues/50021)
-   Fix TypeScript error in with-mongodb example: [#&#8203;50094](https://togithub.com/vercel/next.js/issues/50094)
-   Use correct casing in filenames: [#&#8203;50223](https://togithub.com/vercel/next.js/issues/50223)

##### Misc Changes

-   test: disable cache flaky test: [#&#8203;50064](https://togithub.com/vercel/next.js/issues/50064)
-   add tracing for turbopack: [#&#8203;49920](https://togithub.com/vercel/next.js/issues/49920)
-   ci: update github token: [#&#8203;50216](https://togithub.com/vercel/next.js/issues/50216)
-   Fix metadata e2e deploy test: [#&#8203;50252](https://togithub.com/vercel/next.js/issues/50252)
-   Fix middleware e2e deploy test: [#&#8203;50317](https://togithub.com/vercel/next.js/issues/50317)
-   Parallelize Turbopack CI tests: [#&#8203;50292](https://togithub.com/vercel/next.js/issues/50292)
-   makeDir should use func: [#&#8203;50136](https://togithub.com/vercel/next.js/issues/50136)

##### Credits

Huge thanks to [@&#8203;kwonoj](https://togithub.com/kwonoj), [@&#8203;wyattjoh](https://togithub.com/wyattjoh), [@&#8203;shuding](https://togithub.com/shuding), [@&#8203;huozhi](https://togithub.com/huozhi), [@&#8203;jridgewell](https://togithub.com/jridgewell), [@&#8203;ijjk](https://togithub.com/ijjk), [@&#8203;karlhorky](https://togithub.com/karlhorky), [@&#8203;lycuid](https://togithub.com/lycuid), [@&#8203;MarkAtOmniux](https://togithub.com/MarkAtOmniux), [@&#8203;darshkpatel](https://togithub.com/darshkpatel), [@&#8203;johnta0](https://togithub.com/johnta0), [@&#8203;kdy1](https://togithub.com/kdy1), [@&#8203;sokra](https://togithub.com/sokra), [@&#8203;timneutkens](https://togithub.com/timneutkens), [@&#8203;devagrawal09](https://togithub.com/devagrawal09), [@&#8203;ibrahemid](https://togithub.com/ibrahemid), [@&#8203;styfle](https://togithub.com/styfle), [@&#8203;JesseKoldewijn](https://togithub.com/JesseKoldewijn), [@&#8203;padmaia](https://togithub.com/padmaia), [@&#8203;Cow258](https://togithub.com/Cow258), [@&#8203;javivelasco](https://togithub.com/javivelasco), and [@&#8203;05lazy](https://togithub.com/05lazy) for helping!

### [`v13.4.3`](https://togithub.com/vercel/next.js/releases/tag/v13.4.3)

[Compare Source](https://togithub.com/vercel/next.js/compare/v13.4.2...v13.4.3)

##### Core Changes

-   Optimize trace span relationships: [#&#8203;49697](https://togithub.com/vercel/next.js/issues/49697)
-   refactor(next-core): deprecate custom_ecmascript_transforms: [#&#8203;49629](https://togithub.com/vercel/next.js/issues/49629)
-   Remove old-space-size filtering from dev server: [#&#8203;49727](https://togithub.com/vercel/next.js/issues/49727)
-   Rework client router filter handling: [#&#8203;49741](https://togithub.com/vercel/next.js/issues/49741)
-   fix(image): preload should respect referrerPolicy: [#&#8203;49584](https://togithub.com/vercel/next.js/issues/49584)
-   Fix cookies().set missing in types: [#&#8203;49806](https://togithub.com/vercel/next.js/issues/49806)
-   fix: Disable `tracing/release_max_level_off` for wasm, too: [#&#8203;49639](https://togithub.com/vercel/next.js/issues/49639)
-   Apply user-defined PostCSS transforms to foreign code: [#&#8203;49463](https://togithub.com/vercel/next.js/issues/49463)
-   add [@&#8203;swc/core](https://togithub.com/swc/core) to server external packages: [#&#8203;49721](https://togithub.com/vercel/next.js/issues/49721)
-   `turbo-binding` -> `turbopack-binding`: [#&#8203;49816](https://togithub.com/vercel/next.js/issues/49816)
-   refactor(next-core): consolidate react_refresh options: [#&#8203;49822](https://togithub.com/vercel/next.js/issues/49822)
-   add support for globally providing mdx components to turbopack: [#&#8203;49818](https://togithub.com/vercel/next.js/issues/49818)
-   Refactor pages structure: [#&#8203;49802](https://togithub.com/vercel/next.js/issues/49802)
-   Fix conflict when re-exporting multiple Client References: [#&#8203;49468](https://togithub.com/vercel/next.js/issues/49468)
-   refactor(next-core): move transforms to plugin: [#&#8203;49621](https://togithub.com/vercel/next.js/issues/49621)
-   Fix chained `.bind` of Server Actions: [#&#8203;49874](https://togithub.com/vercel/next.js/issues/49874)
-   Fix port value for metadataBase: [#&#8203;49924](https://togithub.com/vercel/next.js/issues/49924)
-   Introduce NextMode: [#&#8203;49852](https://togithub.com/vercel/next.js/issues/49852)
-   Port sorted-routes.ts to Rust: [#&#8203;48334](https://togithub.com/vercel/next.js/issues/48334)
-   Move build workers count change behind flag: [#&#8203;49937](https://togithub.com/vercel/next.js/issues/49937)
-   Update default for appDocumentPreloading config for minimalMode: [#&#8203;49952](https://togithub.com/vercel/next.js/issues/49952)
-   Add [@&#8203;vercel/og](https://togithub.com/vercel/og) to external server packages: [#&#8203;49944](https://togithub.com/vercel/next.js/issues/49944)
-   Fix custom server React resolution with app dir and pages both presented: [#&#8203;49805](https://togithub.com/vercel/next.js/issues/49805)
-   Error in `next export` when `serverActions` is enabled: [#&#8203;49959](https://togithub.com/vercel/next.js/issues/49959)
-   Reset not-found and error boundary when navigating: [#&#8203;49855](https://togithub.com/vercel/next.js/issues/49855)
-   Revert "Error in `next export` when `serverActions` is enabled": [#&#8203;50019](https://togithub.com/vercel/next.js/issues/50019)
-   fix: warning fetch for `[object Request]` specified: [#&#8203;50003](https://togithub.com/vercel/next.js/issues/50003)
-   Remove custom handling for prebundled react env: [#&#8203;49954](https://togithub.com/vercel/next.js/issues/49954)
-   fix: set cookies followed by `redirect()`: [#&#8203;49965](https://togithub.com/vercel/next.js/issues/49965)

##### Example Changes

-   chore: update examples to use draft mode: [#&#8203;49720](https://togithub.com/vercel/next.js/issues/49720)
-   Add mdx page example to examples/app-dir-mdx: [#&#8203;47082](https://togithub.com/vercel/next.js/issues/47082)
-   Update with-supertokens example: [#&#8203;49804](https://togithub.com/vercel/next.js/issues/49804)
-   with-clerk example updated to app router: [#&#8203;49717](https://togithub.com/vercel/next.js/issues/49717)
-   Upgrading react-ga to react-ga4: [#&#8203;48932](https://togithub.com/vercel/next.js/issues/48932)
-   update with-turbopack example: [#&#8203;49332](https://togithub.com/vercel/next.js/issues/49332)

##### Misc Changes

-   Add trace-to-jaeger to workspace: [#&#8203;49692](https://togithub.com/vercel/next.js/issues/49692)
-   refactor(scripts): apply fmt: [#&#8203;49716](https://togithub.com/vercel/next.js/issues/49716)
-   refactor(scripts): fix clippy errors: [#&#8203;49719](https://togithub.com/vercel/next.js/issues/49719)
-   chore(turbopack): Update `swc_core` to `v0.76.6`: [#&#8203;49792](https://togithub.com/vercel/next.js/issues/49792)
-   Fix going back to page after applying hash link: [#&#8203;50006](https://togithub.com/vercel/next.js/issues/50006)
-   build(cargo): update turbopack: [#&#8203;50013](https://togithub.com/vercel/next.js/issues/50013)
-   Suggest a replay in the bug issue template: [#&#8203;50022](https://togithub.com/vercel/next.js/issues/50022)

##### Credits

Huge thanks to [@&#8203;timneutkens](https://togithub.com/timneutkens), [@&#8203;kwonoj](https://togithub.com/kwonoj), [@&#8203;styfle](https://togithub.com/styfle), [@&#8203;ijjk](https://togithub.com/ijjk), [@&#8203;alexanderbluhm](https://togithub.com/alexanderbluhm), [@&#8203;Fonger](https://togithub.com/Fonger), [@&#8203;shuding](https://togithub.com/shuding), [@&#8203;kdy1](https://togithub.com/kdy1), [@&#8203;alexkirsz](https://togithub.com/alexkirsz), [@&#8203;souporserious](https://togithub.com/souporserious), [@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony), [@&#8203;rishabhpoddar](https://togithub.com/rishabhpoddar), [@&#8203;devagrawal09](https://togithub.com/devagrawal09), [@&#8203;DevEsteves](https://togithub.com/DevEsteves), [@&#8203;huozhi](https://togithub.com/huozhi), and [@&#8203;padmaia](https://togithub.com/padmaia) for helping!

</details>

<details>
<summary>typescript-eslint/typescript-eslint</summary>

### [`v5.59.9`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/experimental-utils/CHANGELOG.md#&#8203;5599-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5598v5599-2023-06-05)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.8...v5.59.9)

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

### [`v5.59.8`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/experimental-utils/CHANGELOG.md#&#8203;5598-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5597v5598-2023-05-29)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.7...v5.59.8)

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

### [`v5.59.7`](https://togithub.com/typescript-eslint/typescript-eslint/blob/HEAD/packages/experimental-utils/CHANGELOG.md#&#8203;5597-httpsgithubcomtypescript-eslinttypescript-eslintcomparev5596v5597-2023-05-22)

[Compare Source](https://togithub.com/typescript-eslint/typescript-eslint/compare/v5.59.6...v5.59.7)

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

</details>

<details>
<summary>all-contributors/all-contributors-cli</summary>

### [`v6.26.0`](https://togithub.com/all-contributors/cli/releases/tag/v6.26.0)

[Compare Source](https://togithub.com/all-contributors/all-contributors-cli/compare/v6.25.1...v6.26.0)

##### Features

-   use Prettier to write config file, if possible ([#&#8203;356](https://togithub.com/all-contributors/all-contributors-cli/issues/356)) ([e0a5312](https://togithub.com/all-contributors/all-contributors-cli/commit/e0a5312dc510fcbb3e185f176f4c23216f31193a))

</details>

<details>
<summary>motdotla/dotenv</summary>

### [`v16.1.4`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1614-httpsgithubcommotdotladotenvcomparev1613v1614-2023-06-04)

[Compare Source](https://togithub.com/motdotla/dotenv/compare/v16.1.3...v16.1.4)

##### Added

-   Added `.github/` to `.npmignore` [#&#8203;747](https://togithub.com/motdotla/dotenv/pull/747)

### [`v16.1.3`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1613-httpsgithubcommotdotladotenvcomparev1612v1613-2023-05-31)

[Compare Source](https://togithub.com/motdotla/dotenv/compare/v16.1.2...v16.1.3)

##### Removed

-   Removed `browser` keys for `path`, `os`, and `crypto` in package.json. These were set to false incorrectly as of 16.1. Instead, if using dotenv on the front-end make sure to include polyfills for `path`, `os`, and `crypto`. [node-polyfill-webpack-plugin](https://togithub.com/Richienb/node-polyfill-webpack-plugin) provides these.

### [`v16.1.2`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1612-httpsgithubcommotdotladotenvcomparev1611v1612-2023-05-31)

[Compare Source](https://togithub.com/motdotla/dotenv/compare/v16.1.1...v16.1.2)

##### Changed

-   Exposed private function `_configDotenv` as `configDotenv`. [#&#8203;744](https://togithub.com/motdotla/dotenv/pull/744)

### [`v16.1.1`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1611-httpsgithubcommotdotladotenvcomparev1610v1611-2023-05-30)

[Compare Source](https://togithub.com/motdotla/dotenv/compare/v16.1.0...v16.1.1)

##### Added

-   Added type definition for `decrypt` function

##### Changed

-   Fixed `{crypto: false}` in `packageJson.browser`

### [`v16.1.0`](https://togithub.com/motdotla/dotenv/blob/HEAD/CHANGELOG.md#&#8203;1610-httpsgithubcommotdotladotenvcomparev1603v1610-2023-05-30)

[Compare Source](https://togithub.com/motdotla/dotenv/compare/v16.0.3...v16.1.0)

##### Added

-   Add `populate` convenience method [#&#8203;733](https://togithub.com/motdotla/dotenv/pull/733)
-   Accept URL as path option [#&#8203;720](https://togithub.com/motdotla/dotenv/pull/720)
-   Add dotenv to `npm fund` command
-   Spanish language README [#&#8203;698](https://togithub.com/motdotla/dotenv/pull/698)
-   Add `.env.vault` support. 🎉 ([#&#8203;730](https://togithub.com/motdotla/dotenv/pull/730))

ℹ️ `.env.vault` extends the `.env` file format standard with a localized encrypted vault file. Package it securely with your production code deploys. It's cloud agnostic so that you can deploy your secrets anywhere – without [risky third-party integrations](https://techcrunch.com/2023/01/05/circleci-breach/). [read more](https://togithub.com/motdotla/dotenv#-deploying)

##### Changed

-   Fixed "cannot resolve 'fs'" error on tools like Replit [#&#8203;693](https://togithub.com/motdotla/dotenv/pull/693)

</details>

<details>
<summary>eslint/eslint</summary>

### [`v8.42.0`](https://togithub.com/eslint/eslint/releases/tag/v8.42.0)

[Compare Source](https://togithub.com/eslint/eslint/compare/v8.41.0...v8.42.0)

#### Features

-   [`b8448ff`](https://togithub.com/eslint/eslint/commit/b8448ff1ae1adf26a81dea07f340caa5b5c2f257) feat: correct no-useless-return behaviour in try statements ([#&#8203;16996](https://togithub.com/eslint/eslint/issues/16996)) (Nitin Kumar)

#### Bug Fixes

-   [`a589636`](https://togithub.com/eslint/eslint/commit/a5896360c3faa1e7d1fe81a9907a434b8b8f6b60) fix: Config with `ignores` and without `files` should not always apply ([#&#8203;17181](https://togithub.com/eslint/eslint/issues/17181)) (Milos Djermanovic)
-   [`c4fad17`](https://togithub.com/eslint/eslint/commit/c4fad173c7149dbcd25695c19c68663102b9ec6b) fix: Correct ignore message for "node_modules" subfolders ([#&#8203;17217](https://togithub.com/eslint/eslint/issues/17217)) (Francesco Trotta)

#### Documentation

-   [`01d7142`](https://togithub.com/eslint/eslint/commit/01d7142642c87241135699571e8010f5e8fcda4f) docs: Update README (GitHub Actions Bot)
-   [`e5182b7`](https://togithub.com/eslint/eslint/commit/e5182b723ff82bb3b55c50c06d64626055414b31) docs: Update README (GitHub Actions Bot)

#### Chores

-   [`6ca5b7c`](https://togithub.com/eslint/eslint/commit/6ca5b7ca3bac9e10c6cfee4cdc78446e94eb7607) chore: upgrade [@&#8203;eslint/js](https://togithub.com/eslint/js)[@&#8203;8](https://togithub.com/8).42.0 ([#&#8203;17236](https://togithub.com/eslint/eslint/issues/17236)) (Milos Djermanovic)
-   [`67fc5e7`](https://togithub.com/eslint/eslint/commit/67fc5e730e4dfc372dea11e15d3f5165bc812491) chore: package.json update for [@&#8203;eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins)
-   [`0892412`](https://togithub.com/eslint/eslint/commit/0892412556b2ba6c3d1b85152dafe47a3f4cba72) refactor: remove `Identifier` listener in no-irregular-whitespace ([#&#8203;17235](https://togithub.com/eslint/eslint/issues/17235)) (Milos Djermanovic)
-   [`f67d298`](https://togithub.com/eslint/eslint/commit/f67d2984c3c3f26497842a04d5166707587c1fca) test: Add `FlatESLint` tests with missing config files ([#&#8203;17164](https://togithub.com/eslint/eslint/issues/17164)) (Milos Djermanovic)
-   [`5b68d51`](https://togithub.com/eslint/eslint/commit/5b68d51e3e6bd003d6cf74d3434f7165691b4f4d) chore: Fix `fixedsize` attribute in code path analysis DOT debug output ([#&#8203;17202](https://togithub.com/eslint/eslint/issues/17202)) (Milos Djermanovic)
-   [`37432f2`](https://togithub.com/eslint/eslint/commit/37432f27dc15817d66cf42377792197dc2aeb8b2) chore: update descriptions in key-spacing tests ([#&#8203;17195](https://togithub.com/eslint/eslint/issues/17195)) (Milos Djermanovic)

### [`v8.41.0`](https://togithub.com/eslint/eslint/releases/tag/v8.41.0)

[Compare Source](https://togithub.com/eslint/eslint/compare/v8.40.0...v8.41.0)

#### Features

-   [`880a431`](https://togithub.com/eslint/eslint/commit/880a4317b949e575a4a6c5e8baaba1eea7674cc6) feat: change default ignore pattern to `**/node_modules/` in flat config ([#&#8203;17184](https://togithub.com/eslint/eslint/issues/17184)) (Milos Djermanovic)
-   [`8bf5505`](https://togithub.com/eslint/eslint/commit/8bf550594fca6d29fab1a3453e701c1a457767e1) feat: expose `shouldUseFlatConfig` ([#&#8203;17169](https://togithub.com/eslint/eslint/issues/17169)) (Connor Prussin)

#### Bug Fixes

-   [`4f5440d`](https://togithub.com/eslint/eslint/commit/4f5440db631707b17140c4e5cc7beb223afbd2b9) fix: incorrect warning message for ignored dotfiles ([#&#8203;17196](https://togithub.com/eslint/eslint/issues/17196)) (Milos Djermanovic)
-   [`94da96c`](https://togithub.com/eslint/eslint/commit/94da96cbf0fb2bb6694fa2e757eb1b3e74c40db7) fix: unify `LintMessage` type ([#&#8203;17076](https://togithub.com/eslint/eslint/issues/17076)) (Brandon Mills)
-   [`0c415cd`](https://togithub.com/eslint/eslint/commit/0c415cda5d76dbe5120ab9f3c4c81320538e35f0) fix: validate `ignorePatterns` constructor option in `FlatESLint` class ([#&#8203;17139](https://togithub.com/eslint/eslint/issues/17139)) (Milos Djermanovic)
-   [`9682d66`](https://togithub.com/eslint/eslint/commit/9682d669e4ee8641293914e21679f40fee8bc354) fix: switch `grapheme-splitter` to `graphemer` ([#&#8203;17160](https://togithub.com/eslint/eslint/issues/17160)) (fisker Cheung)

#### Documentation

-   [`7709b14`](https://togithub.com/eslint/eslint/commit/7709b14e18ad4e11c1119ed6575454243b8e7084) docs: Update README (GitHub Actions Bot)
-   [`7f183e0`](https://togithub.com/eslint/eslint/commit/7f183e020579380fa57473caaf9ed154470c25b3) docs: Update triage process description ([#&#8203;17157](https://togithub.com/eslint/eslint/issues/17157)) (Nicholas C. Zakas)
-   [`b68346b`](https://togithub.com/eslint/eslint/commit/b68346b290d55324e73868ca42b3854157b27375) docs: fix license to reflect relicensing of jshint ([#&#8203;17165](https://togithub.com/eslint/eslint/issues/17165)) (Stefan Bischof)

#### Chores

-   [`f43216a`](https://togithub.com/eslint/eslint/commit/f43216a8c77ab6cf1d0823978e8c728786b4cba7) chore: upgrade [@&#8203;eslint/js](https://togithub.com/eslint/js)[@&#8203;8](https://togithub.com/8).41.0 ([#&#8203;17200](https://togithub.com/eslint/eslint/issues/17200)) (Milos Djermanovic)
-   [`95c3007`](https://togithub.com/eslint/eslint/commit/95c300780a1cfd9ad680bc78850542eb55d7fbf4) chore: package.json update for [@&#8203;eslint/js](https://togithub.com/eslint/js) release (ESLint Jenkins)
-   [`ddc5291`](https://togithub.com/eslint/eslint/commit/ddc5291debd90ff476e17c532af7577e26720b91) chore: don't use deprecated `context` methods in `ast-utils` tests ([#&#8203;17194](https://togithub.com/eslint/eslint/issues/17194)) (Milos Djermanovic)
-   [`b1516db`](https://togithub.com/eslint/eslint/commit/b1516db51514032ed06e1425c4b1f955238dc682) chore: Fix return type of `findFlatConfigFile` ([#&#8203;17161](https://togithub.com/eslint/eslint/issues/17161)) (Milos Djermanovic)
-   [`918b0fd`](https://togithub.com/eslint/eslint/commit/918b0fd21723e84bd7acb17942a36606f1d8360a) perf: Store indent descriptors in a plain array ([#&#8203;17148](https://togithub.com/eslint/eslint/issues/17148)) (Francesco Trotta)
-   [`4caa344`](https://togithub.com/eslint/eslint/commit/4caa34449555d8a680222ec2049d97c59476c11e) refactor: locateConfigFileToUse returns an Error object ([#&#8203;17159](https://togithub.com/eslint/eslint/issues/17159)) (唯然)

</details>

<details>
<summary>gajus/eslint-config-canonical</summary>

### [`v41.0.5`](https://togithub.com/gajus/eslint-config-canonical/compare/v41.0.4...v41.0.5)

[Compare Source](https://togithub.com/gajus/eslint-config-canonical/compare/v41.0.4...v41.0.5)

</details>

<details>
<summary>francoismassart/eslint-plugin-tailwindcss</summary>

### [`v3.12.1`](https://togithub.com/francoismassart/eslint-plugin-tailwindcss/releases/tag/v3.12.1)

[Compare Source](https://togithub.com/francoismassart/eslint-plugin-tailwindcss/compare/v3.12.0...v3.12.1)

-   fix: [incorrect conflicting classnames](https://togithub.com/francoismassart/eslint-plugin-tailwindcss/issues/186)
-   fix: [do not handle non-ASCII whitespace as separator](https://togithub.com/francoismassart/eslint-plugin-tailwindcss/pull/246) (by [uhyo](https://togithub.com/uhyo) 🙏)
-   fix: [prefix support for named group/peer syntax](https://togithub.com/francoismassart/eslint-plugin-tailwindcss/pull/244) (by [bezbac](https://togithub.com/bezbac) 🙏)

</details>

<details>
<summary>webpro/knip</summary>

### [`v2.13.0`](https://togithub.com/webpro/knip/releases/tag/2.13.0)

[Compare Source](https://togithub.com/webpro/knip/compare/2.12.3...2.13.0)

-   Update dependencies ([`0f9cf03`](https://togithub.com/webpro/knip/commit/0f9cf03))
-   feat: add ignoreExportsUsedInFile option ([#&#8203;139](https://togithub.com/webpro/knip/issues/139)) ([`73bd68e`](https://togithub.com/webpro/knip/commit/73bd68e))

### [`v2.12.3`](https://togithub.com/webpro/knip/releases/tag/2.12.3)

[Compare Source](https://togithub.com/webpro/knip/compare/2.12.2...2.12.3)

-   Add Node.js v20 to test matrix ([`cb5bce0`](https://togithub.com/webpro/knip/commit/cb5bce0))
-   Improve handling of packages that may be internal and external imports ([`d239317`](https://togithub.com/webpro/knip/commit/d239317))
-   Make `getPackageNameFromModuleSpecifier` return `undefined` if not package name ([`f0d74ef`](https://togithub.com/webpro/knip/commit/f0d74ef))

### [`v2.12.2`](https://togithub.com/webpro/knip/releases/tag/2.12.2)

[Compare Source](https://togithub.com/webpro/knip/compare/2.12.1...2.12.2)

-   feat: add binaries type in config validator ([#&#8203;137](https://togithub.com/webpro/knip/issues/137)) ([`e800a01`](https://togithub.com/webpro/knip/commit/e800a01))
-   fix: correct devDependencies type in the table ([#&#8203;136](https://togithub.com/webpro/knip/issues/136)) ([`dde95ac`](https://togithub.com/webpro/knip/commit/dde95ac))

### [`v2.12.1`](https://togithub.com/webpro/knip/releases/tag/2.12.1)

[Compare Source](https://togithub.com/webpro/knip/compare/2.12.0...2.12.1)

-   Update dependencies ([`c68aeeb`](https://togithub.com/webpro/knip/commit/c68aeeb))
-   Update postcss config type ([`647e14f`](https://togithub.com/webpro/knip/commit/647e14f))
-   feat(postcss): enhance dependencies detection ([#&#8203;134](https://togithub.com/webpro/knip/issues/134)) ([`5b23334`](https://togithub.com/webpro/knip/commit/5b23334))

### [`v2.12.0`](https://togithub.com/webpro/knip/releases/tag/2.12.0)

[Compare Source](https://togithub.com/webpro/knip/compare/2.11.0...2.12.0)

-   Update dependencies ([`52a7bc6`](https://togithub.com/webpro/knip/commit/52a7bc6))
-   Fix postcss specs ([`b2f1592`](https://togithub.com/webpro/knip/commit/b2f1592))
-   Add `next` to `postcss` enablers (closes [#&#8203;131](https://togithub.com/webpro/knip/issues/131)) ([`1429d8c`](https://togithub.com/webpro/knip/commit/1429d8c))
-   Log file path for JSON parse errors ([`6befebf`](https://togithub.com/webpro/knip/commit/6befebf))
-   Add `postcss.config.json` to config file patterns ([`d00f8fc`](https://togithub.com/webpro/knip/commit/d00f8fc))
-   feat(storybook): add support for framework ([#&#8203;133](https://togithub.com/webpro/knip/issues/133)) ([`b1ba73e`](https://togithub.com/webpro/knip/commit/b1ba73e))

</details>

<details>
<summary>DavidAnson/markdownlint</summary>

### [`v0.29.0`](https://togithub.com/DavidAnson/markdownlint/blob/HEAD/CHANGELOG.md#&#8203;0290)

[Compare Source](https://togithub.com/DavidAnson/markdownlint/compare/v0.28.2...v0.29.0)

-   Update `micromark` parser dependencies for better performance
-   Use `micromark` in MD049/MD050
-   Improve MD034/MD037/MD044/MD049/MD050
-   Support multiple parsers in demo page
-   Remove support for end-of-life Node version 14
-   Update dependencies

</details>

<details>
<summary>iamvishnusankar/next-sitemap</summary>

### [`v4.1.3`](https://togithub.com/iamvishnusankar/next-sitemap/releases/tag/v4.1.3)

[Compare Source](https://togithub.com/iamvishnusankar/next-sitemap/compare/4.1.2...4.1.3)

#### Changes:

-   [`d51eca2`](https://togithub.com/iamvishnusankar/next-sitemap/commit/d51eca2d225c35917fd28095b5edbf3a801a160f) Merge pull request [#&#8203;641](https://togithub.com/iamvishnusankar/next-sitemap/issues/641) from iamvishnusankar/feat/static-export
-   [`d41367b`](https://togithub.com/iamvishnusankar/next-sitemap/commit/d41367ba690cafd7ce60482ab1351afedc78acff) Merge branch 'master' into feat/static-export
-   [`6cea253`](https://togithub.com/iamvishnusankar/next-sitemap/commit/6cea2534355552c4f5dc802e191db2ee50f48b7f) \[Fix] Missing build manifest error for static exports

This list of changes was [auto generated](https://dev.azure.com/iamvishnusankar/Public/\_build/results?buildId=4836\&view=logs).

### [`v4.1.2`](https://togithub.com/iamvishnusankar/next-sitemap/releases/tag/v4.1.2)

[Compare Source](https://togithub.com/iamvishnusankar/next-sitemap/compare/4.0.9...4.1.2)

#### Changes:

-   [`777cd4e`](https://togithub.com/iamvishnusankar/next-sitemap/commit/777cd4e1241658457c6a3e4e12e65b311da1f678) Merge pull request [#&#8203;640](https://togithub.com/iamvishnusankar/next-sitemap/issues/640) from iamvishnusankar/feat/static-export
-   [`e9e8614`](https://togithub.com/iamvishnusankar/next-sitemap/commit/e9e8614325cc9445378f9e74ac03559c6a84fd4e) Merge branch 'master' into feat/static-export
-   [`be66ff3`](https://togithub.com/iamvishnusankar/next-sitemap/commit/be66ff37a79ca1d6cfdeac539b23f48c98c8917a) \[Fix] Build pipeline
-   [`6c4c35c`](https://togithub.com/iamvishnusankar/next-sitemap/commit/6c4c35cff698c93baa021515cafeda68cf276eaf) Merge pull request [#&#8203;638](https://togithub.com/iamvishnusankar/next-sitemap/issues/638) from iamvishnusankar/feat/static-export
-   [`f083088`](https://togithub.com/iamvishnusankar/next-sitemap/commit/f083088a887af537d6f9e68408b97efd7fa8724b) Fix static-export demo
-   [`3c59bd0`](https://togithub.com/iamvishnusankar/next-sitemap/commit/3c59bd02d07b63d32ae78398c30dbe465fc8277f) Output optional
-   [`85bcb66`](https://togithub.com/iamvishnusankar/next-sitemap/commit/85bcb66bdae316895b16d24a22c379d6326faafb) Make output optional in readme
-   [`7aa08c1`](https://togithub.com/iamvishnusankar/next-sitemap/commit/7aa08c14902c110b71775f65f09e62d985b82233) \[Feat] Support Statically Exported Websites without next export \[ [#&#8203;637](https://togithub.com/iamvishnusankar/next-sitemap/issues/637) ]
-   [`706e1d3`](https://togithub.com/iamvishnusankar/next-sitemap/commit/706e1d3b711211c81c226254504ee066e85ba56c) \[WIP] Static export
-   [`dd7bd29`](https://togithub.com/iamvishnusankar/next-sitemap/commit/dd7bd297f1899abfc409cbc9f849e998b3bc0594) \[WIP] Upgraded packages

This list of changes was [auto generated](https://dev.azure.com/iamvishnusankar/Public/\_build/results?buildId=4835\&view=logs).

</details>

<details>
<summary>postcss/postcss</summary>

### [`v8.4.24`](https://togithub.com/postcss/postcss/blob/HEAD/CHANGELOG.md#&#8203;8424)

[Compare Source](https://togithub.com/postcss/postcss/compare/8.4.23...8.4.24)

-   Fixed `Plugin` types.

</details>

<details>
<summary>release-it/release-it</summary>

### [`v15.11.0`](https://togithub.com/release-it/release-it/releases/tag/15.11.0)

[Compare Source](https://togithub.com/release-it/release-it/compare/15.10.5...15.11.0)

-   Fix regression caused by [`46fc8fa`](https://togithub.com/release-it/release-it/commit/46fc8fa) ([`1ea14aa`](https://togithub.com/release-it/release-it/commit/1ea14aa))
-   Remove + ignore .DS_Store ([`0198b89`](https://togithub.com/release-it/release-it/commit/0198b89))
-   Fix lint issue ([`6158d7e`](https://togithub.com/release-it/release-it/commit/6158d7e))
-   feat: Adding publicPath option for npm publishConfig ([#&#8203;1010](https://togithub.com/release-it/release-it/issues/1010)) ([`fef8566`](https://togithub.com/release-it/release-it/commit/fef8566))

### [`v15.10.5`](https://togithub.com/release-it/release-it/releases/tag/15.10.5)

[Compare Source](https://togithub.com/release-it/release-it/compare/15.10.4...15.10.5)

-   Downgrade [@&#8203;octokit/request-error](https://togithub.com/octokit/request-error) ([`9b97b46`](https://togithub.com/release-it/release-it/commit/9b97b46))

### [`v15.10.4`](https://togithub.com/release-it/release-it/releases/tag/15.10.4)

[Compare Source](https://togithub.com/release-it/release-it/compare/15.10.3...15.10.4)

-   Start using GITHUB_TOKEN_RELEASE_IT locally ([`d13edef`](https://togithub.com/release-it/release-it/commit/d13edef))
-   Fix proxy-agent import ([`e28bdd6`](https://togithub.com/release-it/release-it/commit/e28bdd6))
-   Update dependencies ([`5472a58`](https://togithub.com/release-it/release-it/commit/5472a58))
-   Fix whitespace ([`75e970a`](https://togithub.com/release-it/release-it/commit/75e970a))
-   fix: use deep merge strategy for context and options in Plugin ([#&#8203;1009](https://togithub.com/release-it/release-it/issues/1009)) ([`f0f0cf3`](https://togithub.com/release-it/release-it/commit/f0f0cf3))
-   markdown-link-check ([`22bfb01`](https://togithub.com/release-it/release-it/commit/22bfb01))
-   fix: update gitlab CI documentation ([#&#8203;1007](https://togithub.com/release-it/release-it/issues/1007)) ([`433f85e`](https://togithub.com/release-it/release-it/commit/433f85e))
-   Add "videos, articles & examples" section (closes [#&#8203;1005](https://togithub.com/release-it/release-it/issues/1005)) ([`18abf36`](https://togithub.com/release-it/release-it/commit/18abf36))

</details>

<details>
<summary>stylelint/stylelint</summary>

### [`v15.7.0`](https://togithub.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#&#8203;1570)

[Compare Source](https://togithub.com/stylelint/stylelint/compare/15.6.3...15.7.0)

-   Added: `splitList: boolean` to `selector-nested-pattern` ([#&#8203;6896](https://togithub.com/stylelint/stylelint/pull/6896)) ([@&#8203;is2ei](https://togithub.com/is2ei)).
-   Fixed: `unit-no-unknown` false positives for `unicode-range` descriptors ([#&#8203;6892](https://togithub.com/stylelint/stylelint/pull/6892)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: segmentation fault errors for Cosmiconfig 8.2 ([#&#8203;6902](https://togithub.com/stylelint/stylelint/pull/6902)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).

### [`v15.6.3`](https://togithub.com/stylelint/stylelint/blob/HEAD/CHANGELOG.md#&#8203;1563)

[Compare Source](https://togithub.com/stylelint/stylelint/compare/15.6.2...15.6.3)

-   Fixed: `alpha-value-notation` false positives for `color()` ([#&#8203;6885](https://togithub.com/stylelint/stylelint/pull/6885)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `alpha-value-notation` performance with improved benchmark script ([#&#8203;6864](https://togithub.com/stylelint/stylelint/pull/6864)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `at-rule-property-required-list` performance ([#&#8203;6865](https://togithub.com/stylelint/stylelint/pull/6865)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `color-*` performance ([#&#8203;6868](https://togithub.com/stylelint/stylelint/pull/6868)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `length-zero-no-unit` false positives on new math functions ([#&#8203;6871](https://togithub.com/stylelint/stylelint/pull/6871)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).
-   Fixed: `string` formatter for unexpected truncation on non-ASCII characters ([#&#8203;6861](https://togithub.com/stylelint/stylelint/pull/6861)) ([@&#8203;Max10240](https://togithub.com/Max10240)).
-   Fixed: `unit-no-unknown` false positives for the second and subsequent `image-set()` with `x` descriptor ([#&#8203;6879](https://togithub.com/stylelint/stylelint/pull/6879)) ([@&#8203;romainmenke](https://togithub.com/romainmenke)).

</details>

<details>
<summary>vercel/turbo</summary>

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

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



#### What's Changed

##### Changelog

-   fix(turborepo): rust implementation of file hashing via git index by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/4967](https://togithub.com/vercel/turbo/pull/4967)
-   feat: rust pnpm lockfile implementation by [@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in [https://github.com/vercel/turbo/pull/4906](https://togithub.com/vercel/turbo/pull/4906)
-   Fix broken link for `--verbosity`. by [@&#8203;leerob](https://togithub.com/leerob) in [https://github.com/vercel/turbo/pull/5118](https://togithub.com/vercel/turbo/pull/5118)
-   Noting multiple global turbo installations. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/5119](https://togithub.com/vercel/turbo/pull/5119)
-   List dev command more consistently. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew) in [https://github.com/vercel/turbo/pull/5120](https://togithub.com/vercel/turbo/pull/5120)
-   fix: update storybook dev command by [@&#8203;ekafyi](https://togithub.com/ekafyi) in [https://github.com/vercel/turbo/pull/5105](https://togithub.com/vercel/turbo/pull/5105)
-   feat(turborepo): Move some shim paths over to AbsoluteSystemPath by [@&#8203;gsoltis](https://togithub.com/gsoltis) in [https://github.com/vercel/turbo/pull/5108](https://togithub.com/vercel/turbo/pull/5108)
-   feat(docs): update copy arg by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5090](https://togithub.com/vercel/turbo/pull/5090)
-   feat(docs): link examples with generators by [@&#8203;tknickman](https://togithub.com/tknickman) in [https://github.com/vercel/turbo/pull/5126](https://togithub.com/vercel/turbo/pull/5126)
-   sync dependencies with next.js by [@&#8203;sokra](https://togithub.com/sokra) in [https://github.com/vercel/turbo/pull/5131](https://togithub.com/vercel/turbo/pull/5131)
-   Include timeSaved metric when skipping cache check by [@&#8203;mehulkar](https://togithub.com/mehulkar) in [https://github.com/vercel/turbo/pull/4952]

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 4am on Monday" in timezone Asia/Kolkata, Automerge - At any time (no schedule defined).

🚦 **Automerge**: Enabled.

♻ **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://app.renovatebot.com/dashboard#github/timelessco/next-ts-app).
fwouts pushed a commit to fwouts/previewjs that referenced this pull request Jun 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.9.9` ->
`^1.10.3`](https://renovatebot.com/diffs/npm/turbo/1.9.9/1.10.3) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/compatibility-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/confidence-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5229
- fix(ffi): fix Rust dangling pointer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5230
- feat(turborepo): implement package.json discovery by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5225
- feat(run summary): Add whether turbo detected monorepo or not by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5241
- ci(examples): Skip npm install when setting up git for examples tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5240
- docs: document that multiple --filters are unions by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5247

**Full Changelog**:
vercel/turbo@v1.10.2...v1.10.3

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

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

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

#### What's Changed

##### Changelog

- fix(turborepo): rust implementation of file hashing via git index by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4967
- feat: rust pnpm lockfile implementation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4906
- Fix broken link for `--verbosity`. by
[@&#8203;leerob](https://togithub.com/leerob) in
[vercel/turbo#5118
- Noting multiple global turbo installations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5119
- List dev command more consistently. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5120
- fix: update storybook dev command by
[@&#8203;ekafyi](https://togithub.com/ekafyi) in
[vercel/turbo#5105
- feat(turborepo): Move some shim paths over to AbsoluteSystemPath by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5108
- feat(docs): update copy arg by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5090
- feat(docs): link examples with generators by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5126
- sync dependencies with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5131
- Include timeSaved metric when skipping cache check by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4952
- Update storybook.mdx by
[@&#8203;lofsigma](https://togithub.com/lofsigma) in
[vercel/turbo#5134
- refactor(turborepo): API Client Cleanup by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5084
- feat(turborepo): Set feature to use Go daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5147
- fix(turborepo): Handle unimplemented and failed_precondition in daemon
clients by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5151
- feat(types): publish turbo types by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5130
- feat(daemon): clean by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5152
- chore(turborepo): Port piece of kill_live_server test for version
mismatch by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5153
- feat(turborepo): Wait for a pid file, then a sock file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5158
- feat(create-turbo): use latest turbo by default by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5155
- Update existing-monorepo.mdx by
[@&#8203;tomheaton](https://togithub.com/tomheaton) in
[vercel/turbo#5149
- Merge timesaved and cache status data structures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5135
- chore: specify rust crates as inputs to building turborepo by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4664
- Organize tests a bit by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5116
- docs: add `--out-dir` reference for prune command by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5173
- fix(turborepo): Restructure reading from stderr, fix parsing of
ls-tree by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5181
- chore(cli): add note about changing run summary by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5186
- feat(turborepo): Remove as_absolute_path() in favor of Deref by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5194
- Update log message when cache restoration is skipped by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5127
- docs: Move deprecated options for run command to bottom by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5180
- Parallel ignores concurrency and dependencies, we don't need to
validate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5191
- feat(lockfiles): add support pnpm lockfile version 6.1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5195
- feat(turborepo): Remove anyhow from package manager detection by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5196
- Add codemod for glob syntax issues. by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5184
- fix(gen): swap to which for windows by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5208
- Add timeSaved value into dry run output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5171
- fix(turborepo): Repo config case normalization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5209
- release(turborepo): 1.10.2-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5212
- Update references to docs in code comments and help output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5179
- fix(turbo): remove npx version check for gen by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5216
- release(turborepo): 1.10.2-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5222

#### New Contributors

- [@&#8203;cool-little-fish](https://togithub.com/cool-little-fish) made
their first contribution in
[vercel/turbo#4902
- [@&#8203;ekafyi](https://togithub.com/ekafyi) made their first
contribution in
[vercel/turbo#5105
- [@&#8203;lofsigma](https://togithub.com/lofsigma) made their first
contribution in
[vercel/turbo#5134
- [@&#8203;tomheaton](https://togithub.com/tomheaton) made their first
contribution in
[vercel/turbo#5149

**Full Changelog**:
vercel/turbo@v1.10.1...v1.10.2

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

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

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

**Full Changelog**:
vercel/turbo@v1.10.0...v1.10.1

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

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

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

#### What's Changed

##### Changelog

- Exclude Pipeline Definition from Global Hash by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4545
- chore(turbo/gen): mark as experimental by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5016
- fix: no longer crash for single projects with global dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5002
- Add `dotEnv` to `turbo.json` by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4870
- Add missing `--copy` flag. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5021
- feat(basic): add generators to basic example by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5006
- feat(prune) allow pruning of projects using Yarn PnP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5019
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5039
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5041
- feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5020
- fix(create-turbo): default example messaging by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5059
- fix(daemon): kill daemon when root is removed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5038
- ci(turbo): allow publishing from non-main by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5062
- refactor(turborepo): Consolidated PathError and PathValidationError by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5060
- fix(create-turbo): git init must use add by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5058
- feat: go daemon opt-in feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5076
- Add codemod to transform literals to wildcards by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5054
- Wildcard env by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5017
- fix(daemon): plumb through flush watch errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5070
- Improve error message when repo is not linked or token is expired by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5089
- fix(turborepo):Support distinguishing unset env vars by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5086

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.9.9...v1.10.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.

---

- [x] <!-- 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://app.renovatebot.com/dashboard#github/fwouts/previewjs).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
mastondzn added a commit to mastondzn/synopsisbot that referenced this pull request Jun 13, 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.9.9` ->
`1.10.3`](https://renovatebot.com/diffs/npm/turbo/1.9.9/1.10.3) |
[![age](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/age-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/adoption-slim)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/compatibility-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://badges.renovateapi.com/packages/npm/turbo/1.10.3/confidence-slim/1.9.9)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

<details>
<summary>vercel/turbo</summary>

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5229
- fix(ffi): fix Rust dangling pointer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5230
- feat(turborepo): implement package.json discovery by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5225
- feat(run summary): Add whether turbo detected monorepo or not by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5241
- ci(examples): Skip npm install when setting up git for examples tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5240
- docs: document that multiple --filters are unions by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5247

**Full Changelog**:
vercel/turbo@v1.10.2...v1.10.3

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

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

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

##### What's Changed

##### Changelog

- fix(turborepo): rust implementation of file hashing via git index by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#4967
- feat: rust pnpm lockfile implementation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#4906
- Fix broken link for `--verbosity`. by
[@&#8203;leerob](https://togithub.com/leerob) in
[vercel/turbo#5118
- Noting multiple global turbo installations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5119
- List dev command more consistently. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5120
- fix: update storybook dev command by
[@&#8203;ekafyi](https://togithub.com/ekafyi) in
[vercel/turbo#5105
- feat(turborepo): Move some shim paths over to AbsoluteSystemPath by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5108
- feat(docs): update copy arg by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5090
- feat(docs): link examples with generators by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5126
- sync dependencies with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[vercel/turbo#5131
- Include timeSaved metric when skipping cache check by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4952
- Update storybook.mdx by
[@&#8203;lofsigma](https://togithub.com/lofsigma) in
[vercel/turbo#5134
- refactor(turborepo): API Client Cleanup by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5084
- feat(turborepo): Set feature to use Go daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5147
- fix(turborepo): Handle unimplemented and failed_precondition in daemon
clients by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5151
- feat(types): publish turbo types by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5130
- feat(daemon): clean by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5152
- chore(turborepo): Port piece of kill_live_server test for version
mismatch by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5153
- feat(turborepo): Wait for a pid file, then a sock file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5158
- feat(create-turbo): use latest turbo by default by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5155
- Update existing-monorepo.mdx by
[@&#8203;tomheaton](https://togithub.com/tomheaton) in
[vercel/turbo#5149
- Merge timesaved and cache status data structures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5135
- chore: specify rust crates as inputs to building turborepo by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#4664
- Organize tests a bit by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5116
- docs: add `--out-dir` reference for prune command by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5173
- fix(turborepo): Restructure reading from stderr, fix parsing of
ls-tree by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5181
- chore(cli): add note about changing run summary by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5186
- feat(turborepo): Remove as_absolute_path() in favor of Deref by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5194
- Update log message when cache restoration is skipped by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5127
- docs: Move deprecated options for run command to bottom by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5180
- Parallel ignores concurrency and dependencies, we don't need to
validate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5191
- feat(lockfiles): add support pnpm lockfile version 6.1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5195
- feat(turborepo): Remove anyhow from package manager detection by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5196
- Add codemod for glob syntax issues. by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5184
- fix(gen): swap to which for windows by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5208
- Add timeSaved value into dry run output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5171
- fix(turborepo): Repo config case normalization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5209
- release(turborepo): 1.10.2-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5212
- Update references to docs in code comments and help output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5179
- fix(turbo): remove npx version check for gen by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5216
- release(turborepo): 1.10.2-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[vercel/turbo#5222

##### New Contributors

- [@&#8203;cool-little-fish](https://togithub.com/cool-little-fish) made
their first contribution in
[vercel/turbo#4902
- [@&#8203;ekafyi](https://togithub.com/ekafyi) made their first
contribution in
[vercel/turbo#5105
- [@&#8203;lofsigma](https://togithub.com/lofsigma) made their first
contribution in
[vercel/turbo#5134
- [@&#8203;tomheaton](https://togithub.com/tomheaton) made their first
contribution in
[vercel/turbo#5149

**Full Changelog**:
vercel/turbo@v1.10.1...v1.10.2

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

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

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

**Full Changelog**:
vercel/turbo@v1.10.0...v1.10.1

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

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

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

#### What's Changed

##### Changelog

- Exclude Pipeline Definition from Global Hash by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4545
- chore(turbo/gen): mark as experimental by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5016
- fix: no longer crash for single projects with global dependencies by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5002
- Add `dotEnv` to `turbo.json` by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#4870
- Add missing `--copy` flag. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5021
- feat(basic): add generators to basic example by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5006
- feat(prune) allow pruning of projects using Yarn PnP by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5019
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5039
- Update skipping-tasks.mdx by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[vercel/turbo#5041
- feat(turborepo): remove RelativeSystemPathBuf, clean paths on join by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[vercel/turbo#5020
- fix(create-turbo): default example messaging by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5059
- fix(daemon): kill daemon when root is removed by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5038
- ci(turbo): allow publishing from non-main by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5062
- refactor(turborepo): Consolidated PathError and PathValidationError by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[vercel/turbo#5060
- fix(create-turbo): git init must use add by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[vercel/turbo#5058
- feat: go daemon opt-in feature flag by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[vercel/turbo#5076
- Add codemod to transform literals to wildcards by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5054
- Wildcard env by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5017
- fix(daemon): plumb through flush watch errors by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[vercel/turbo#5070
- Improve error message when repo is not linked or token is expired by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[vercel/turbo#5089
- fix(turborepo):Support distinguishing unset env vars by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[vercel/turbo#5086

#### New Contributors

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

**Full Changelog**:
vercel/turbo@v1.9.9...v1.10.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://app.renovatebot.com/dashboard#github/synopsisgg/bot).

<!--renovate-debug:eyJjcmVhdGVkSW5WZXIiOiIzNS4xMTAuMCIsInVwZGF0ZWRJblZlciI6IjM1LjExMC4wIiwidGFyZ2V0QnJhbmNoIjoibWFpbiJ9-->
benelan pushed a commit to Esri/calcite-design-system that referenced this pull request Aug 29, 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.1` ->
`1.10.13`](https://renovatebot.com/diffs/npm/turbo/1.10.1/1.10.13) |
[![age](https://developer.mend.io/api/mc/badges/age/npm/turbo/1.10.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![adoption](https://developer.mend.io/api/mc/badges/adoption/npm/turbo/1.10.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![passing](https://developer.mend.io/api/mc/badges/compatibility/npm/turbo/1.10.1/1.10.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|
[![confidence](https://developer.mend.io/api/mc/badges/confidence/npm/turbo/1.10.1/1.10.13?slim=true)](https://docs.renovatebot.com/merge-confidence/)
|

---

### Release Notes

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

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.12 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5611](https://togithub.com/vercel/turbo/pull/5611)
- Change READMEs of created turborepos (reflect appDir) by
[@&#8203;DerTimonius](https://togithub.com/DerTimonius) in
[https://github.com/vercel/turbo/pull/5583](https://togithub.com/vercel/turbo/pull/5583)
- chore: upgrade pnpm to version that support node 20 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5609](https://togithub.com/vercel/turbo/pull/5609)
- export namespace object instead commonjs interop object by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5619](https://togithub.com/vercel/turbo/pull/5619)
- fix esm export in build runtime by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5621](https://togithub.com/vercel/turbo/pull/5621)
- Revert "export namespace object instead commonjs interop object" by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5620](https://togithub.com/vercel/turbo/pull/5620)
- Allow fallback to be used outside VERCEL by
[@&#8203;cipriancaba](https://togithub.com/cipriancaba) in
[https://github.com/vercel/turbo/pull/5614](https://togithub.com/vercel/turbo/pull/5614)
- fix(turborepo): Parse turbo json with comments by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5623](https://togithub.com/vercel/turbo/pull/5623)
- remove require.cache clear from chunk loading by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5626](https://togithub.com/vercel/turbo/pull/5626)
- Snapshot tests: canonicalize with dunce by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5582](https://togithub.com/vercel/turbo/pull/5582)
- Turbopack: Sort env vars for compatibility by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5633](https://togithub.com/vercel/turbo/pull/5633)
- fix tracing span names by [@&#8203;sokra](https://togithub.com/sokra)
in
[https://github.com/vercel/turbo/pull/5624](https://togithub.com/vercel/turbo/pull/5624)
- WEB-1278: Turbopack build: Implement minification with swc minify by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5597](https://togithub.com/vercel/turbo/pull/5597)
- Update `swc_core` to `v0.79.33` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/5632](https://togithub.com/vercel/turbo/pull/5632)
- feat: wasm text format and import support by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[https://github.com/vercel/turbo/pull/5636](https://togithub.com/vercel/turbo/pull/5636)
- feature(turborepo): Port Async Cache and Cache Multiplexer by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5634](https://togithub.com/vercel/turbo/pull/5634)
- update swc_core and sync deps by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5666](https://togithub.com/vercel/turbo/pull/5666)
- \[2/n] no-context lint: migrate some crates by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5640](https://togithub.com/vercel/turbo/pull/5640)
- \[3/n] no-context: migrate `turbopack-core` by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5661](https://togithub.com/vercel/turbo/pull/5661)
- chore(docs): improve docs for loose & strict env modes by
[@&#8203;styfle](https://togithub.com/styfle) in
[https://github.com/vercel/turbo/pull/5671](https://togithub.com/vercel/turbo/pull/5671)
- Make Go play nicely with omitempty. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5673](https://togithub.com/vercel/turbo/pull/5673)
- add untracked trait reads by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5675](https://togithub.com/vercel/turbo/pull/5675)
- IssueFilePathExt -> IssueDescriptionExt by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5676](https://togithub.com/vercel/turbo/pull/5676)
- \[4/n] no-context: migrate `turbopack-ecmascript` by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5662](https://togithub.com/vercel/turbo/pull/5662)
- \[5/n] no-context: migrate remaining crates by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5663](https://togithub.com/vercel/turbo/pull/5663)
- Hide some turbo_tasks internals by
[@&#8203;alexkirsz](https://togithub.com/alexkirsz) in
[https://github.com/vercel/turbo/pull/5584](https://togithub.com/vercel/turbo/pull/5584)
- remove error in update by [@&#8203;sokra](https://togithub.com/sokra)
in
[https://github.com/vercel/turbo/pull/5686](https://togithub.com/vercel/turbo/pull/5686)
- chore(gen): reduce published bundle size by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5685](https://togithub.com/vercel/turbo/pull/5685)
- feat(codemod): upgrade refactor by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5279](https://togithub.com/vercel/turbo/pull/5279)
- release(turborepo): 1.10.13-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5690](https://togithub.com/vercel/turbo/pull/5690)
- Cleanup minify by [@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5696](https://togithub.com/vercel/turbo/pull/5696)
- feat: port task graph construction by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5652](https://togithub.com/vercel/turbo/pull/5652)
- fix(turborepo): Rationalize the install and execution process. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5695](https://togithub.com/vercel/turbo/pull/5695)
- docs(ci-github-actions): fix indent by
[@&#8203;mparramont](https://togithub.com/mparramont) in
[https://github.com/vercel/turbo/pull/5700](https://togithub.com/vercel/turbo/pull/5700)
- feat: support `?module` imports for WebAssembly by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[https://github.com/vercel/turbo/pull/5660](https://togithub.com/vercel/turbo/pull/5660)
- feature(turborepo): `turborepo-ui` crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5684](https://togithub.com/vercel/turbo/pull/5684)
- fix dynamic embedding after the `Vc<T>` update by
[@&#8203;ForsakenHarmony](https://togithub.com/ForsakenHarmony) in
[https://github.com/vercel/turbo/pull/5708](https://togithub.com/vercel/turbo/pull/5708)
- Update `swc_core` to `v0.79.55` by
[@&#8203;kdy1](https://togithub.com/kdy1) in
[https://github.com/vercel/turbo/pull/5699](https://togithub.com/vercel/turbo/pull/5699)
- AST-based modification of turbo.json by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5509](https://togithub.com/vercel/turbo/pull/5509)
- chore(docs): use correct npm flag in installation docs by
[@&#8203;itzjacki](https://togithub.com/itzjacki) in
[https://github.com/vercel/turbo/pull/5711](https://togithub.com/vercel/turbo/pull/5711)
- Update environment variable docs. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5706](https://togithub.com/vercel/turbo/pull/5706)
- chore(turborepo): Refactor globwatcher setup by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5704](https://togithub.com/vercel/turbo/pull/5704)
- chore(turbo): disable deployments for gh pages by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5713](https://togithub.com/vercel/turbo/pull/5713)
- Update `context` property in JS to match serialized Rust type by
[@&#8203;wbinnssmith](https://togithub.com/wbinnssmith) in
[https://github.com/vercel/turbo/pull/5715](https://togithub.com/vercel/turbo/pull/5715)
- feat: expose path to invalid package.json in error by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5629](https://togithub.com/vercel/turbo/pull/5629)
- fix(turbo): remove trailing comma by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5724](https://togithub.com/vercel/turbo/pull/5724)
- fix(turbo-gen): better placeholders by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5725](https://togithub.com/vercel/turbo/pull/5725)
- chore(labeler): add created-by label by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5726](https://togithub.com/vercel/turbo/pull/5726)
- Add a FileSystemPathOption::none for cached cell reuse by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5717](https://togithub.com/vercel/turbo/pull/5717)
- Use shallow references in `any_content_changed_of_module` by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5718](https://togithub.com/vercel/turbo/pull/5718)
- fix(turbo-workspaces): support alternate workspace format by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5712](https://togithub.com/vercel/turbo/pull/5712)
- chore(labeler): change team to owned-by by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5729](https://togithub.com/vercel/turbo/pull/5729)
- fix(Turborepo): Drop argument separator for yarn by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5709](https://togithub.com/vercel/turbo/pull/5709)
- Bump lockfile to account for turborepo-ci by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5733](https://togithub.com/vercel/turbo/pull/5733)
- fix(release): correct version script by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5735](https://togithub.com/vercel/turbo/pull/5735)
- feat: port task graph validation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5703](https://togithub.com/vercel/turbo/pull/5703)
- feat: add async graph walker by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5697](https://togithub.com/vercel/turbo/pull/5697)
- Misc comments in turbo_tasks by
[@&#8203;alexkirsz](https://togithub.com/alexkirsz) in
[https://github.com/vercel/turbo/pull/5723](https://togithub.com/vercel/turbo/pull/5723)
- chore(labels): consolidate issue labels by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5731](https://togithub.com/vercel/turbo/pull/5731)
- release(turborepo): 1.10.13-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5736](https://togithub.com/vercel/turbo/pull/5736)
- Transformation code necessary to support Server Actions by
[@&#8203;jridgewell](https://togithub.com/jridgewell) in
[https://github.com/vercel/turbo/pull/5705](https://togithub.com/vercel/turbo/pull/5705)
- fix(lockfile): use correct ffi method for global changes by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5742](https://togithub.com/vercel/turbo/pull/5742)
- feature(turbo): Port Run Cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5707](https://togithub.com/vercel/turbo/pull/5707)
- fix: Remove package_task.rs by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5747](https://togithub.com/vercel/turbo/pull/5747)
- fix: give name to package so that it works with rust codepath by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5727](https://togithub.com/vercel/turbo/pull/5727)
- feat: port run graph flag by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5728](https://togithub.com/vercel/turbo/pull/5728)
- chore: dedupe our lockfile names by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5749](https://togithub.com/vercel/turbo/pull/5749)
- release(turborepo): 1.10.13-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5741](https://togithub.com/vercel/turbo/pull/5741)
- chore: remove use of rc for task definitions by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5750](https://togithub.com/vercel/turbo/pull/5750)
- chore: remove pass through env from experimental fields by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5753](https://togithub.com/vercel/turbo/pull/5753)
- feat(turborepo): Framework inference by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5746](https://togithub.com/vercel/turbo/pull/5746)
- feature(turborepo): Spaces gets its own API client. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5674](https://togithub.com/vercel/turbo/pull/5674)
- fix(example): basic example react version in ui package by
[@&#8203;anmol242](https://togithub.com/anmol242) in
[https://github.com/vercel/turbo/pull/5757](https://togithub.com/vercel/turbo/pull/5757)
- Update to-cache-or-not-to-cache.mdx by
[@&#8203;uiolee](https://togithub.com/uiolee) in
[https://github.com/vercel/turbo/pull/5760](https://togithub.com/vercel/turbo/pull/5760)
- chore(types): consolidate packagejson type by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5754](https://togithub.com/vercel/turbo/pull/5754)
- fix(docs): fix docs 404 by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5767](https://togithub.com/vercel/turbo/pull/5767)
- fix(turborepo): Adopt std::cell::OnceCell by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5763](https://togithub.com/vercel/turbo/pull/5763)
- fix(turborepo): Force all URLs to be normalized during login. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5774](https://togithub.com/vercel/turbo/pull/5774)
- feat(examples): fix basic lint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5775](https://togithub.com/vercel/turbo/pull/5775)
- fix: make color selector threadsafe by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5771](https://togithub.com/vercel/turbo/pull/5771)
- fix: copy root json to full directory by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5769](https://togithub.com/vercel/turbo/pull/5769)
- fix(examples): rename basic eslint config by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5778](https://togithub.com/vercel/turbo/pull/5778)
- fix: take reference of run cache opts by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5779](https://togithub.com/vercel/turbo/pull/5779)
- feat(examples): update tailwind lint by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5777](https://togithub.com/vercel/turbo/pull/5777)
- fix(turborepo): Remove automatic linking. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5776](https://togithub.com/vercel/turbo/pull/5776)
- docs: clairify successful tasks are cached by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5782](https://togithub.com/vercel/turbo/pull/5782)
- Port filter and scope to rust by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5628](https://togithub.com/vercel/turbo/pull/5628)

#### New Contributors

- [@&#8203;DerTimonius](https://togithub.com/DerTimonius) made their
first contribution in
[https://github.com/vercel/turbo/pull/5583](https://togithub.com/vercel/turbo/pull/5583)
- [@&#8203;cipriancaba](https://togithub.com/cipriancaba) made their
first contribution in
[https://github.com/vercel/turbo/pull/5614](https://togithub.com/vercel/turbo/pull/5614)
- [@&#8203;mparramont](https://togithub.com/mparramont) made their first
contribution in
[https://github.com/vercel/turbo/pull/5700](https://togithub.com/vercel/turbo/pull/5700)
- [@&#8203;itzjacki](https://togithub.com/itzjacki) made their first
contribution in
[https://github.com/vercel/turbo/pull/5711](https://togithub.com/vercel/turbo/pull/5711)
- [@&#8203;anmol242](https://togithub.com/anmol242) made their first
contribution in
[https://github.com/vercel/turbo/pull/5757](https://togithub.com/vercel/turbo/pull/5757)
- [@&#8203;uiolee](https://togithub.com/uiolee) made their first
contribution in
[https://github.com/vercel/turbo/pull/5760](https://togithub.com/vercel/turbo/pull/5760)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.12...v1.10.13

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.11 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5600](https://togithub.com/vercel/turbo/pull/5600)
- fix(prune): copy pnpm workspace file to top level out directory by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5605](https://togithub.com/vercel/turbo/pull/5605)
- fix: use correct enum values for task output mode by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5607](https://togithub.com/vercel/turbo/pull/5607)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.11...v1.10.12

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.10 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5593](https://togithub.com/vercel/turbo/pull/5593)
- fix: re-enable go-daemon by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5596](https://togithub.com/vercel/turbo/pull/5596)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.10...v1.10.11

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

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

#### What's Changed

##### Changelog

- chore: no longer convert in relative unix path constructor by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5552](https://togithub.com/vercel/turbo/pull/5552)
- release(turborepo): 1.10.9-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5559](https://togithub.com/vercel/turbo/pull/5559)
- fix(lockfile): Fix directory resolution variant by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5551](https://togithub.com/vercel/turbo/pull/5551)
- feat(turborepo): Add proxy support to create-turbo and turbo-gen by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5554](https://togithub.com/vercel/turbo/pull/5554)
- release(turborepo): 1.10.9 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5565](https://togithub.com/vercel/turbo/pull/5565)
- feat: port prune to rust by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5531](https://togithub.com/vercel/turbo/pull/5531)
- fix: pnpm alias workspace deps by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5569](https://togithub.com/vercel/turbo/pull/5569)
- release(turborepo): 1.10.10-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5577](https://togithub.com/vercel/turbo/pull/5577)
- fix: Forward verbosity flags to local turbo by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5578](https://togithub.com/vercel/turbo/pull/5578)
- feat: port package graph validation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5566](https://togithub.com/vercel/turbo/pull/5566)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.9...v1.10.10

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.8 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5546](https://togithub.com/vercel/turbo/pull/5546)
- Update storybook.mdx by
[@&#8203;AmitGurbani](https://togithub.com/AmitGurbani) in
[https://github.com/vercel/turbo/pull/5537](https://togithub.com/vercel/turbo/pull/5537)
- docs: document log order by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5463](https://togithub.com/vercel/turbo/pull/5463)
- feat(turborepo): Add task ids to failure reports by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5535](https://togithub.com/vercel/turbo/pull/5535)
- fix(turborepo): Allow users to select a Vercel team when linking a
repository to a Space by
[@&#8203;mknichel](https://togithub.com/mknichel) in
[https://github.com/vercel/turbo/pull/5533](https://togithub.com/vercel/turbo/pull/5533)
- Remove binary optimization step. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5543](https://togithub.com/vercel/turbo/pull/5543)

#### New Contributors

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

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.8...v1.10.9

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.7 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5434](https://togithub.com/vercel/turbo/pull/5434)
- chore(turborepo-docs): typo in code generation by
[@&#8203;devdumpling](https://togithub.com/devdumpling) in
[https://github.com/vercel/turbo/pull/5445](https://togithub.com/vercel/turbo/pull/5445)
- docs: update create-new.mdx by
[@&#8203;tyler-lutz](https://togithub.com/tyler-lutz) in
[https://github.com/vercel/turbo/pull/5464](https://togithub.com/vercel/turbo/pull/5464)
- fix(turborepo): properly tag errors when running in GH Actions by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5435](https://togithub.com/vercel/turbo/pull/5435)
- feat(turborepo): Calculate package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5406](https://togithub.com/vercel/turbo/pull/5406)
- feat(lockfile) hide berry lockfile lifetime by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5436](https://togithub.com/vercel/turbo/pull/5436)
- feat(turborepo): More verbose status error by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5489](https://togithub.com/vercel/turbo/pull/5489)
- chore: suggest git upgrade by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5472](https://togithub.com/vercel/turbo/pull/5472)
- release(turborepo): 1.10.8-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5490](https://togithub.com/vercel/turbo/pull/5490)
- Use Workspace Configurations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5492](https://togithub.com/vercel/turbo/pull/5492)
- fix(turborepo): use serde_jsonc recommended pattern. by
[@&#8203;nathanhammond](https://togithub.com/nathanhammond) in
[https://github.com/vercel/turbo/pull/5491](https://togithub.com/vercel/turbo/pull/5491)
- chore: Fix clippy errors and remove old feature directives by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5497](https://togithub.com/vercel/turbo/pull/5497)
- feat(turborepo): Port HTTP Cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5065](https://togithub.com/vercel/turbo/pull/5065)
- fix(turborepo): Copy bytes from stdout and stderr before saving them
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5508](https://togithub.com/vercel/turbo/pull/5508)
- chore: Added clippy deny all to crates by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5514](https://togithub.com/vercel/turbo/pull/5514)
- Fix link. by [@&#8203;anthonyshew](https://togithub.com/anthonyshew)
in
[https://github.com/vercel/turbo/pull/5518](https://togithub.com/vercel/turbo/pull/5518)
- Better spot for link. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5520](https://togithub.com/vercel/turbo/pull/5520)
- Implement hashing fallback by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5505](https://togithub.com/vercel/turbo/pull/5505)
- release(turborepo): 1.10.8-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5523](https://togithub.com/vercel/turbo/pull/5523)
- chore: use fs-err in turborepo fs related libs by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5517](https://togithub.com/vercel/turbo/pull/5517)
- fix(turborepo): Rebuild turbo if Go code has changed by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5530](https://togithub.com/vercel/turbo/pull/5530)
- fix(turborepo): Export and match on our copy of BasicUI by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5532](https://togithub.com/vercel/turbo/pull/5532)
- release(turborepo): 1.10.8-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5534](https://togithub.com/vercel/turbo/pull/5534)
- feat(turborepo): FS Cache by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5473](https://togithub.com/vercel/turbo/pull/5473)

#### New Contributors

- [@&#8203;devdumpling](https://togithub.com/devdumpling) made their
first contribution in
[https://github.com/vercel/turbo/pull/5445](https://togithub.com/vercel/turbo/pull/5445)
- [@&#8203;tyler-lutz](https://togithub.com/tyler-lutz) made their first
contribution in
[https://github.com/vercel/turbo/pull/5464](https://togithub.com/vercel/turbo/pull/5464)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.7...v1.10.8

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.6 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5373](https://togithub.com/vercel/turbo/pull/5373)
- chore: replace `default_features` with `default-features` by
[@&#8203;mgrachev](https://togithub.com/mgrachev) in
[https://github.com/vercel/turbo/pull/5382](https://togithub.com/vercel/turbo/pull/5382)
- Fix misleading GitLab CI documentation by
[@&#8203;will3942](https://togithub.com/will3942) in
[https://github.com/vercel/turbo/pull/4635](https://togithub.com/vercel/turbo/pull/4635)
- Update docs with example of nested workspaces by
[@&#8203;maschwenk](https://togithub.com/maschwenk) in
[https://github.com/vercel/turbo/pull/4178](https://togithub.com/vercel/turbo/pull/4178)
- Plainer explanation for synthetic tasks. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5388](https://togithub.com/vercel/turbo/pull/5388)
- feat: port package graph by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5345](https://togithub.com/vercel/turbo/pull/5345)
- fix(turborepo): Drop implicit path conversions by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5375](https://togithub.com/vercel/turbo/pull/5375)
- refactor(turborepo): Enumerate the things we hash by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5401](https://togithub.com/vercel/turbo/pull/5401)
- feat(turborepo): Use Github log prefixes when running on Github
Actions by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5385](https://togithub.com/vercel/turbo/pull/5385)
- fix(turborepo): Handle globbing into directories that don't exist by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5404](https://togithub.com/vercel/turbo/pull/5404)
- release(turborepo): 1.10.7-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5413](https://togithub.com/vercel/turbo/pull/5413)
- feature(turborepo): Turbo Info Command by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5354](https://togithub.com/vercel/turbo/pull/5354)
- feat(turborepo): refactor scm and thread into scope calculation by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5405](https://togithub.com/vercel/turbo/pull/5405)
- perf(lockfiles): Eagerly parse berry resolutions by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5417](https://togithub.com/vercel/turbo/pull/5417)
- Remove experimental badge. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5422](https://togithub.com/vercel/turbo/pull/5422)
- Remove experimental warning. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5421](https://togithub.com/vercel/turbo/pull/5421)
- ci: remove replacement usage from goreleaser by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5424](https://togithub.com/vercel/turbo/pull/5424)
- fix(turborepo): Send spaces logs for all tasks, even ones that aren't
cached by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5425](https://togithub.com/vercel/turbo/pull/5425)
- release(turborepo): 1.10.7-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5428](https://togithub.com/vercel/turbo/pull/5428)
- fix(turborepo) Set package inference and single_package even without a
repo state by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5432](https://togithub.com/vercel/turbo/pull/5432)
- fix(glob): add glob pattern codemods into globwalk by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5431](https://togithub.com/vercel/turbo/pull/5431)

#### New Contributors

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

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.6...v1.10.7

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

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

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

#### What's Changed

##### Changelog

- feat(turborepo): Scripts to build a debug version on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5007](https://togithub.com/vercel/turbo/pull/5007)
- release(turborepo): 1.10.5 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5364](https://togithub.com/vercel/turbo/pull/5364)
- fix: prevent looking up workspace task if name is not in there by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5370](https://togithub.com/vercel/turbo/pull/5370)
- fix(turborepo): Restructure spaces client and test error handling by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5367](https://togithub.com/vercel/turbo/pull/5367)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.5...v1.10.6

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5349](https://togithub.com/vercel/turbo/pull/5349)
- feat(turborepo) Add timeout to api client json methods by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5350](https://togithub.com/vercel/turbo/pull/5350)
- feat(turborepo): Debugging output for e2e tests by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5351](https://togithub.com/vercel/turbo/pull/5351)
- feat(turbo): add main pointing to bin by
[@&#8203;wesleytodd](https://togithub.com/wesleytodd) in
[https://github.com/vercel/turbo/pull/5333](https://togithub.com/vercel/turbo/pull/5333)
- fix: Removed path slash conversion on unix by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5356](https://togithub.com/vercel/turbo/pull/5356)
- fix(turborepo): Fix single package inference by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5362](https://togithub.com/vercel/turbo/pull/5362)

#### New Contributors

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

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.4...v1.10.5

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.3-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5250](https://togithub.com/vercel/turbo/pull/5250)
- feat(turborepo): Port Manual hashing by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5237](https://togithub.com/vercel/turbo/pull/5237)
- Docs: prior to run testcases, add guides to install dependencies for
testcases. by [@&#8203;92hackers](https://togithub.com/92hackers) in
[https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
- fix(gen): fix ts config interference by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5263](https://togithub.com/vercel/turbo/pull/5263)
- release(turborepo): 1.10.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5262](https://togithub.com/vercel/turbo/pull/5262)
- feat(examples): update basic name on docs by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5224](https://togithub.com/vercel/turbo/pull/5224)
- feat(turborepo): port git-based hashing with inputs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5251](https://togithub.com/vercel/turbo/pull/5251)
- Update .gitignore by [@&#8203;ph55](https://togithub.com/ph55) in
[https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)
- feat(ci): conditionally set jest verbosity by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5271](https://togithub.com/vercel/turbo/pull/5271)
- fix(turborepo): Tighten build globs by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5274](https://togithub.com/vercel/turbo/pull/5274)
- fix(turborepo): Fix path match for parent dir in subtree match case by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5275](https://togithub.com/vercel/turbo/pull/5275)
- chore(turborepo): Move SCM to use vendored wax crate by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5277](https://togithub.com/vercel/turbo/pull/5277)
- release(turborepo): 1.10.4-canary.0 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5278](https://togithub.com/vercel/turbo/pull/5278)
- fix(turborepo): avoid globbing directories due to ancestor truncation
by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5273](https://togithub.com/vercel/turbo/pull/5273)
- release(turborepo): 1.10.4-canary.1 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5283](https://togithub.com/vercel/turbo/pull/5283)
- fix(spaces): read logs correctly when invoked from subdirectory by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5284](https://togithub.com/vercel/turbo/pull/5284)
- Synthesize --only by [@&#8203;gsoltis](https://togithub.com/gsoltis)
in
[https://github.com/vercel/turbo/pull/5285](https://togithub.com/vercel/turbo/pull/5285)
- feat(turborepo): Run outline pt 2 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5203](https://togithub.com/vercel/turbo/pull/5203)
- feat(lockfiles): add rust implementation for yarn1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5255](https://togithub.com/vercel/turbo/pull/5255)
- release(turborepo): 1.10.4-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5286](https://togithub.com/vercel/turbo/pull/5286)
- feat(turborepo): Report more details when go-turbo exits by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5287](https://togithub.com/vercel/turbo/pull/5287)
- docs(examples): update examples and docs to use node 18 by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5300](https://togithub.com/vercel/turbo/pull/5300)
- update dependencies to sync with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5303](https://togithub.com/vercel/turbo/pull/5303)
- feat(cache): Add ability to disable remote cache from turbo.json by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5305](https://togithub.com/vercel/turbo/pull/5305)
- feat(turborepo): Hash with libgit2 by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5309](https://togithub.com/vercel/turbo/pull/5309)
- Add --log-order option by
[@&#8203;rafaeltab](https://togithub.com/rafaeltab) in
[https://github.com/vercel/turbo/pull/3916](https://togithub.com/vercel/turbo/pull/3916)
- release(turborepo): 1.10.4-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5313](https://togithub.com/vercel/turbo/pull/5313)
- feat(turborepo): A few cleanup nits around log grouping by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5312](https://togithub.com/vercel/turbo/pull/5312)
- feat(run outline): Hide package graph internals by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5310](https://togithub.com/vercel/turbo/pull/5310)
- feat(logging): enable setting log order with an environment variable
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5316](https://togithub.com/vercel/turbo/pull/5316)
- feat(cli): Add ability to pass --remote-only=false from CLI by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5317](https://togithub.com/vercel/turbo/pull/5317)
- fix(turborepo): Re-enable some tests on windows by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5319](https://togithub.com/vercel/turbo/pull/5319)
- refactor(turborepo): cli::run and args processing by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5297](https://togithub.com/vercel/turbo/pull/5297)
- feat(logging): add "auto" options for log prefixing and ordering by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5320](https://togithub.com/vercel/turbo/pull/5320)
- Fix ESLint script command. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5322](https://togithub.com/vercel/turbo/pull/5322)
- feat(turborepo): Add context to glob errors by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5323](https://togithub.com/vercel/turbo/pull/5323)
- fix(turbo): print help message when turbo called with flags/env vars
but no commands by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5329](https://togithub.com/vercel/turbo/pull/5329)
- refactor(turborepo): Move paths to UTF-8 by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5248](https://togithub.com/vercel/turbo/pull/5248)
- Add Vercel to CI providers. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5342](https://togithub.com/vercel/turbo/pull/5342)
- fix(turborepo): Hashing symlinks is erroring by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5340](https://togithub.com/vercel/turbo/pull/5340)
- release(turborepo): 1.10.4-canary.4 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5344](https://togithub.com/vercel/turbo/pull/5344)
- fix: update ctrlc to 3.4.0 to allow have new signal handlers overwrite
by [@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5346](https://togithub.com/vercel/turbo/pull/5346)

#### New Contributors

- [@&#8203;aaronbrown-vercel](https://togithub.com/aaronbrown-vercel)
made their first contribution in
[https://github.com/vercel/turbo/pull/5252](https://togithub.com/vercel/turbo/pull/5252)
- [@&#8203;younggeeks](https://togithub.com/younggeeks) made their first
contribution in
[https://github.com/vercel/turbo/pull/4883](https://togithub.com/vercel/turbo/pull/4883)
- [@&#8203;92hackers](https://togithub.com/92hackers) made their first
contribution in
[https://github.com/vercel/turbo/pull/3090](https://togithub.com/vercel/turbo/pull/3090)
- [@&#8203;ph55](https://togithub.com/ph55) made their first
contribution in
[https://github.com/vercel/turbo/pull/5269](https://togithub.com/vercel/turbo/pull/5269)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.3...v1.10.4

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

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

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

#### What's Changed

##### Changelog

- release(turborepo): 1.10.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5229](https://togithub.com/vercel/turbo/pull/5229)
- fix(ffi): fix Rust dangling pointer by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5230](https://togithub.com/vercel/turbo/pull/5230)
- feat(turborepo): implement package.json discovery by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5225](https://togithub.com/vercel/turbo/pull/5225)
- feat(run summary): Add whether turbo detected monorepo or not by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5241](https://togithub.com/vercel/turbo/pull/5241)
- ci(examples): Skip npm install when setting up git for examples tests
by [@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5240](https://togithub.com/vercel/turbo/pull/5240)
- docs: document that multiple --filters are unions by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5247](https://togithub.com/vercel/turbo/pull/5247)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.2...v1.10.3

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

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

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

#### What's Changed

##### Changelog

- fix(turborepo): rust implementation of file hashing via git index by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/4967](https://togithub.com/vercel/turbo/pull/4967)
- feat: rust pnpm lockfile implementation by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/4906](https://togithub.com/vercel/turbo/pull/4906)
- Fix broken link for `--verbosity`. by
[@&#8203;leerob](https://togithub.com/leerob) in
[https://github.com/vercel/turbo/pull/5118](https://togithub.com/vercel/turbo/pull/5118)
- Noting multiple global turbo installations. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5119](https://togithub.com/vercel/turbo/pull/5119)
- List dev command more consistently. by
[@&#8203;anthonyshew](https://togithub.com/anthonyshew) in
[https://github.com/vercel/turbo/pull/5120](https://togithub.com/vercel/turbo/pull/5120)
- fix: update storybook dev command by
[@&#8203;ekafyi](https://togithub.com/ekafyi) in
[https://github.com/vercel/turbo/pull/5105](https://togithub.com/vercel/turbo/pull/5105)
- feat(turborepo): Move some shim paths over to AbsoluteSystemPath by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5108](https://togithub.com/vercel/turbo/pull/5108)
- feat(docs): update copy arg by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5090](https://togithub.com/vercel/turbo/pull/5090)
- feat(docs): link examples with generators by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5126](https://togithub.com/vercel/turbo/pull/5126)
- sync dependencies with next.js by
[@&#8203;sokra](https://togithub.com/sokra) in
[https://github.com/vercel/turbo/pull/5131](https://togithub.com/vercel/turbo/pull/5131)
- Include timeSaved metric when skipping cache check by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/4952](https://togithub.com/vercel/turbo/pull/4952)
- Update storybook.mdx by
[@&#8203;lofsigma](https://togithub.com/lofsigma) in
[https://github.com/vercel/turbo/pull/5134](https://togithub.com/vercel/turbo/pull/5134)
- refactor(turborepo): API Client Cleanup by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5084](https://togithub.com/vercel/turbo/pull/5084)
- feat(turborepo): Set feature to use Go daemon by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5147](https://togithub.com/vercel/turbo/pull/5147)
- fix(turborepo): Handle unimplemented and failed_precondition in daemon
clients by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5151](https://togithub.com/vercel/turbo/pull/5151)
- feat(types): publish turbo types by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5130](https://togithub.com/vercel/turbo/pull/5130)
- feat(daemon): clean by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5152](https://togithub.com/vercel/turbo/pull/5152)
- chore(turborepo): Port piece of kill_live_server test for version
mismatch by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5153](https://togithub.com/vercel/turbo/pull/5153)
- feat(turborepo): Wait for a pid file, then a sock file by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5158](https://togithub.com/vercel/turbo/pull/5158)
- feat(create-turbo): use latest turbo by default by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5155](https://togithub.com/vercel/turbo/pull/5155)
- Update existing-monorepo.mdx by
[@&#8203;tomheaton](https://togithub.com/tomheaton) in
[https://github.com/vercel/turbo/pull/5149](https://togithub.com/vercel/turbo/pull/5149)
- Merge timesaved and cache status data structures by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5135](https://togithub.com/vercel/turbo/pull/5135)
- chore: specify rust crates as inputs to building turborepo by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/4664](https://togithub.com/vercel/turbo/pull/4664)
- Organize tests a bit by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5116](https://togithub.com/vercel/turbo/pull/5116)
- docs: add `--out-dir` reference for prune command by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5173](https://togithub.com/vercel/turbo/pull/5173)
- fix(turborepo): Restructure reading from stderr, fix parsing of
ls-tree by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5181](https://togithub.com/vercel/turbo/pull/5181)
- chore(cli): add note about changing run summary by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5186](https://togithub.com/vercel/turbo/pull/5186)
- feat(turborepo): Remove as_absolute_path() in favor of Deref by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5194](https://togithub.com/vercel/turbo/pull/5194)
- Update log message when cache restoration is skipped by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5127](https://togithub.com/vercel/turbo/pull/5127)
- docs: Move deprecated options for run command to bottom by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5180](https://togithub.com/vercel/turbo/pull/5180)
- Parallel ignores concurrency and dependencies, we don't need to
validate by [@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5191](https://togithub.com/vercel/turbo/pull/5191)
- feat(lockfiles): add support pnpm lockfile version 6.1 by
[@&#8203;chris-olszewski](https://togithub.com/chris-olszewski) in
[https://github.com/vercel/turbo/pull/5195](https://togithub.com/vercel/turbo/pull/5195)
- feat(turborepo): Remove anyhow from package manager detection by
[@&#8203;gsoltis](https://togithub.com/gsoltis) in
[https://github.com/vercel/turbo/pull/5196](https://togithub.com/vercel/turbo/pull/5196)
- Add codemod for glob syntax issues. by
[@&#8203;arlyon](https://togithub.com/arlyon) in
[https://github.com/vercel/turbo/pull/5184](https://togithub.com/vercel/turbo/pull/5184)
- fix(gen): swap to which for windows by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5208](https://togithub.com/vercel/turbo/pull/5208)
- Add timeSaved value into dry run output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5171](https://togithub.com/vercel/turbo/pull/5171)
- fix(turborepo): Repo config case normalization by
[@&#8203;NicholasLYang](https://togithub.com/NicholasLYang) in
[https://github.com/vercel/turbo/pull/5209](https://togithub.com/vercel/turbo/pull/5209)
- release(turborepo): 1.10.2-canary.2 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5212](https://togithub.com/vercel/turbo/pull/5212)
- Update references to docs in code comments and help output by
[@&#8203;mehulkar](https://togithub.com/mehulkar) in
[https://github.com/vercel/turbo/pull/5179](https://togithub.com/vercel/turbo/pull/5179)
- fix(turbo): remove npx version check for gen by
[@&#8203;tknickman](https://togithub.com/tknickman) in
[https://github.com/vercel/turbo/pull/5216](https://togithub.com/vercel/turbo/pull/5216)
- release(turborepo): 1.10.2-canary.3 by
[@&#8203;github-actions](https://togithub.com/github-actions) in
[https://github.com/vercel/turbo/pull/5222](https://togithub.com/vercel/turbo/pull/5222)

#### New Contributors

- [@&#8203;cool-little-fish](https://togithub.com/cool-little-fish) made
their first contribution in
[https://github.com/vercel/turbo/pull/4902](https://togithub.com/vercel/turbo/pull/4902)
- [@&#8203;ekafyi](https://togithub.com/ekafyi) made their first
contribution in
[https://github.com/vercel/turbo/pull/5105](https://togithub.com/vercel/turbo/pull/5105)
- [@&#8203;lofsigma](https://togithub.com/lofsigma) made their first
contribution in
[https://github.com/vercel/turbo/pull/5134](https://togithub.com/vercel/turbo/pull/5134)
- [@&#8203;tomheaton](https://togithub.com/tomheaton) made their first
contribution in
[https://github.com/vercel/turbo/pull/5149](https://togithub.com/vercel/turbo/pull/5149)

**Full Changelog**:
https://github.com/vercel/turbo/compare/v1.10.1...v1.10.2

</details>

---

### Configuration

📅 **Schedule**: Branch creation - "before 5am on tuesday and thursday"
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:eyJjcmVhdGVkSW5WZXIiOiIzNi40My4yIiwidXBkYXRlZEluVmVyIjoiMzYuNjguMSIsInRhcmdldEJyYW5jaCI6Im1haW4ifQ==-->

Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

2 participants